Skip to content

Commit

Permalink
breaking-change fix: Renamed Collection response object field to be c…
Browse files Browse the repository at this point in the history
…onsistent with NFT object (#1400)
  • Loading branch information
allan-almeida-imtbl authored Jan 24, 2024
1 parent 18ab3af commit dee644c
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 5 deletions.
35 changes: 32 additions & 3 deletions packages/internal/generated-clients/src/mr-openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3180,6 +3180,30 @@
"schema": {
"type": "string"
}
},
"MintRequestsLimit": {
"description": "The mint requests limit available to the project for each time window.",
"schema": {
"type": "string"
}
},
"MintRequestsLimitReset": {
"description": "The expiry date of the current time window.",
"schema": {
"type": "string"
}
},
"MintRequestsLimitRemaining": {
"description": "The number of mint requests remaining in the current window.",
"schema": {
"type": "string"
}
},
"MintRequestsRetryAfter": {
"description": "The number of seconds until the next refresh request can be made.",
"schema": {
"type": "string"
}
}
},
"schemas": {
Expand Down Expand Up @@ -3742,7 +3766,7 @@
"example": "2022-08-16T17:43:26.991388Z",
"description": "When the collection was last updated"
},
"last_metadata_synced_at": {
"metadata_synced_at": {
"type": "string",
"format": "date-time",
"nullable": true,
Expand All @@ -3763,7 +3787,7 @@
"metadata_uri",
"indexed_at",
"updated_at",
"last_metadata_synced_at"
"metadata_synced_at"
]
},
"ListCollectionsResult": {
Expand Down Expand Up @@ -3921,6 +3945,8 @@
"properties": {
"metadata": {
"type": "array",
"maxItems": 10,
"minItems": 1,
"items": {
"$ref": "#/components/schemas/RefreshMetadataByID"
}
Expand Down Expand Up @@ -4588,6 +4614,8 @@
"nft_metadata": {
"type": "array",
"description": "List of nft metadata to be refreshed",
"maxItems": 10,
"minItems": 1,
"items": {
"$ref": "#/components/schemas/RefreshMetadataByTokenID"
}
Expand Down Expand Up @@ -5112,7 +5140,8 @@
},
"required": [
"order_id",
"fees"
"fees",
"taker_address"
]
},
"FulfillableOrder": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export interface Collection {
* @type {string}
* @memberof Collection
*/
'last_metadata_synced_at': string | null;
'metadata_synced_at': string | null;
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export interface FulfillmentDataRequest {
* @type {string}
* @memberof FulfillmentDataRequest
*/
'taker_address'?: string;
'taker_address': string;
/**
*
* @type {Array<Fee>}
Expand Down

0 comments on commit dee644c

Please sign in to comment.