Skip to content

Commit

Permalink
Merge branch 'EDU-12895-fix-request-match-received-skus-individually'…
Browse files Browse the repository at this point in the history
… of https://github.com/vtex/openapi-schemas into EDU-12895-fix-request-match-received-skus-individually
  • Loading branch information
anabaarbosa committed Sep 27, 2024
2 parents 432184d + 3cd83a8 commit 08446a2
Show file tree
Hide file tree
Showing 8 changed files with 4,511 additions and 2,372 deletions.
72 changes: 36 additions & 36 deletions PostmanCollections/VTEX - Antifraud Provider API.json

Large diffs are not rendered by default.

1,595 changes: 831 additions & 764 deletions PostmanCollections/VTEX - Marketplace APIs - Suggestions.json

Large diffs are not rendered by default.

80 changes: 40 additions & 40 deletions PostmanCollections/VTEX - Orders API (PII version).json

Large diffs are not rendered by default.

3,706 changes: 3,160 additions & 546 deletions PostmanCollections/VTEX - Payment Provider Protocol.json

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions VTEX - Antifraud Provider API.json
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,7 @@
},
"example": {
"cardholderDocument": "required",
"allowAntifraudOnGiftCard": true,
"customFields": [
{
"name": "AnalysisMode",
Expand Down Expand Up @@ -789,6 +790,10 @@
"type": "string",
"description": "Indicates the requirement of cardholder document in card transactions. The field has three possible values: `required`, `optional`, or `unused`."
},
"allowAntifraudOnGiftCard":{
"type": "boolean",
"description": "Indicates whether the anti-fraud provider can process payment transactions made using [gift cards](https://developers.vtex.com/docs/guides/gift-card-integration-guide)."
},
"customFields": {
"type": "array",
"description": "Describes the customized fields supported by the connector.",
Expand Down
17 changes: 14 additions & 3 deletions VTEX - Marketplace APIs - Suggestions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2348,9 +2348,20 @@
}
},
"Images": {
"type": "object",
"description": "Object that represent the SKU's images.",
"example":
"type": "array",
"description": "Array containing objects that represent the SKU's images. Each object should have a key representing the image file name and a value containing the URL of the image. The image must be sent through `https` protocol, otherwise it will not be rendered in VTEX Admin.",
"items": {
"type": "object",
"description": "An object that represents a single SKU image with a filename as the key and the image URL as the value.",
"properties": {
"imagem1.jpg": {
"type": "string",
"description": "The URL of the SKU's image. Must be an `https` URL.",
"example": "https://imageurl.example"
}
}
},
"example": [
{
"imagem1.jpg": "https://imageurl.example"
}
Expand Down
1,406 changes: 424 additions & 982 deletions VTEX - Orders API (PII version).json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion VTEX - Payment Provider Protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -2704,7 +2704,7 @@
},
"delayToCancel": {
"type": "integer",
"description": "Total time (in seconds) to wait for an authorization and make an automatic call to `/cancellations` to cancel the payment. The minimum value is 10 minutes (600 seconds). **NOTE 1**: If you set this field to a time period less than 24 hours (86399 seconds or less), the gateway will retry processing the payment every 1 hour. If you use a value of 24 hours (86400 seconds) or more in this field, the gateway will retry processing the payment every 4 hours. **NOTE 2**: For `delayToCancel` values between 5 minutes and 1 hour (300 and 3600 seconds), or when payment is made by [PIX](https://developers.vtex.com/docs/guides/payments-integration-pix-instant-payments-in-brazil) (Brazilian instant payment method), retry calls will occur every 5 minutes."
"description": "Total time (in seconds) to wait for an authorization and make an automatic call to `/cancellations` to cancel the payment. The minimum value is 10 minutes (600 seconds). **NOTE 1**: If you set this field to a time period less than 24 hours (86399 seconds or less), the gateway will retry processing the payment every 1 hour. If you use a value of 24 hours (86400 seconds) or more in this field, the gateway will retry processing the payment every 4 hours. **NOTE 2**: For `delayToCancel` values between 5 minutes and 1 hour (300 and 3600 seconds), or when payment is made by [PIX](https://developers.vtex.com/docs/guides/payments-integration-pix-instant-payments-in-brazil) (Brazilian instant payment method), retry calls will occur every 5 minutes. **NOTE 3**: The maximum value allowed for the `delayToCancel` field is 30 days (2592000 seconds)."
},
"maxValue": {
"type": "integer",
Expand Down

0 comments on commit 08446a2

Please sign in to comment.