Skip to content

Commit

Permalink
OpenAPI Update (#418)
Browse files Browse the repository at this point in the history
Update OpenAPI for b60682b24c8195b62681a4e084409e96f642203a

Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
  • Loading branch information
stripe-openapi[bot] committed May 19, 2023
1 parent 4f6e198 commit b9217a9
Show file tree
Hide file tree
Showing 2 changed files with 283 additions and 2 deletions.
28 changes: 28 additions & 0 deletions embedded/openapi/spec3.beta.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -3226,6 +3226,12 @@
"format": "unix-time",
"type": "integer"
},
"next_refresh_available_at": {
"description": "Time at which the next balance refresh can be initiated. This value will be `null` when when `status` is `pending`. Measured in seconds since the Unix epoch.",
"format": "unix-time",
"nullable": true,
"type": "integer"
},
"status": {
"description": "The status of the last refresh attempt.",
"enum": [
Expand Down Expand Up @@ -3256,6 +3262,12 @@
"format": "unix-time",
"type": "integer"
},
"next_refresh_available_at": {
"description": "Time at which the next inferred balance refresh can be initiated. This value will be `null` when when `status` is `pending`. Measured in seconds since the Unix epoch.",
"format": "unix-time",
"nullable": true,
"type": "integer"
},
"status": {
"description": "The status of the last refresh attempt.",
"enum": [
Expand All @@ -3268,6 +3280,7 @@
},
"required": [
"last_attempted_at",
"next_refresh_available_at",
"status"
],
"title": "BankConnectionsResourceInferredBalancesRefresh",
Expand Down Expand Up @@ -3383,6 +3396,12 @@
"format": "unix-time",
"type": "integer"
},
"next_refresh_available_at": {
"description": "Time at which the next ownership refresh can be initiated. This value will be `null` when when `status` is `pending`. Measured in seconds since the Unix epoch.",
"format": "unix-time",
"nullable": true,
"type": "integer"
},
"status": {
"description": "The status of the last refresh attempt.",
"enum": [
Expand Down Expand Up @@ -3418,6 +3437,12 @@
"format": "unix-time",
"type": "integer"
},
"next_refresh_available_at": {
"description": "Time at which the next transaction refresh can be initiated. This value will be `null` when when `status` is `pending`. Measured in seconds since the Unix epoch.",
"format": "unix-time",
"nullable": true,
"type": "integer"
},
"status": {
"description": "The status of the last refresh attempt.",
"enum": [
Expand All @@ -3431,6 +3456,7 @@
"required": [
"id",
"last_attempted_at",
"next_refresh_available_at",
"status"
],
"title": "BankConnectionsResourceTransactionRefresh",
Expand Down Expand Up @@ -155932,6 +155958,7 @@
"subscription_schedule.expiring",
"subscription_schedule.released",
"subscription_schedule.updated",
"tax.settings.updated",
"tax_rate.created",
"tax_rate.updated",
"terminal.reader.action_failed",
Expand Down Expand Up @@ -156412,6 +156439,7 @@
"subscription_schedule.expiring",
"subscription_schedule.released",
"subscription_schedule.updated",
"tax.settings.updated",
"tax_rate.created",
"tax_rate.updated",
"terminal.reader.action_failed",
Expand Down
257 changes: 255 additions & 2 deletions embedded/openapi/spec3.json
Original file line number Diff line number Diff line change
Expand Up @@ -20553,10 +20553,16 @@
},
"payment_intent_payment_method_options_blik": {
"description": "",
"properties": {},
"properties": {
"mandate_options": {
"$ref": "#/components/schemas/payment_intent_payment_method_options_mandate_options_blik"
}
},
"title": "payment_intent_payment_method_options_blik",
"type": "object",
"x-expandableFields": []
"x-expandableFields": [
"mandate_options"
]
},
"payment_intent_payment_method_options_card": {
"description": "",
Expand Down Expand Up @@ -20723,6 +20729,34 @@
"type": "object",
"x-expandableFields": []
},
"payment_intent_payment_method_options_mandate_options_blik": {
"description": "",
"properties": {
"expires_after": {
"description": "Date at which the mandate expires.",
"format": "unix-time",
"nullable": true,
"type": "integer"
},
"off_session": {
"$ref": "#/components/schemas/mandate_options_off_session_details_blik"
},
"type": {
"description": "Type of the mandate.",
"enum": [
"off_session",
"on_session"
],
"nullable": true,
"type": "string"
}
},
"title": "payment_intent_payment_method_options_mandate_options_blik",
"type": "object",
"x-expandableFields": [
"off_session"
]
},
"payment_intent_payment_method_options_mandate_options_sepa_debit": {
"description": "",
"properties": {},
Expand Down Expand Up @@ -85216,6 +85250,37 @@
"code": {
"maxLength": 5000,
"type": "string"
},
"mandate_options": {
"properties": {
"expires_after": {
"type": "integer"
},
"off_session": {
"properties": {
"interval": {
"enum": [
"day",
"month",
"week",
"year"
],
"type": "string"
},
"interval_count": {
"type": "integer"
}
},
"required": [
"interval",
"interval_count"
],
"title": "mandate_options_off_session_details_common_param",
"type": "object"
}
},
"title": "payment_intent_payment_method_options_mandate_options_param",
"type": "object"
}
},
"title": "payment_intent_payment_method_options_param",
Expand Down Expand Up @@ -87527,6 +87592,37 @@
"code": {
"maxLength": 5000,
"type": "string"
},
"mandate_options": {
"properties": {
"expires_after": {
"type": "integer"
},
"off_session": {
"properties": {
"interval": {
"enum": [
"day",
"month",
"week",
"year"
],
"type": "string"
},
"interval_count": {
"type": "integer"
}
},
"required": [
"interval",
"interval_count"
],
"title": "mandate_options_off_session_details_common_param",
"type": "object"
}
},
"title": "payment_intent_payment_method_options_mandate_options_param",
"type": "object"
}
},
"title": "payment_intent_payment_method_options_param",
Expand Down Expand Up @@ -89972,6 +90068,37 @@
"code": {
"maxLength": 5000,
"type": "string"
},
"mandate_options": {
"properties": {
"expires_after": {
"type": "integer"
},
"off_session": {
"properties": {
"interval": {
"enum": [
"day",
"month",
"week",
"year"
],
"type": "string"
},
"interval_count": {
"type": "integer"
}
},
"required": [
"interval",
"interval_count"
],
"title": "mandate_options_off_session_details_common_param",
"type": "object"
}
},
"title": "payment_intent_payment_method_options_mandate_options_param",
"type": "object"
}
},
"title": "payment_intent_payment_method_options_param",
Expand Down Expand Up @@ -104394,6 +104521,48 @@
"code": {
"maxLength": 5000,
"type": "string"
},
"mandate_options": {
"properties": {
"expires_after": {
"type": "integer"
},
"off_session": {
"properties": {
"amount": {
"type": "integer"
},
"currency": {
"enum": [
"pln"
],
"type": "string"
},
"interval": {
"enum": [
"day",
"month",
"week",
"year"
],
"type": "string"
},
"interval_count": {
"type": "integer"
}
},
"required": [
"amount",
"currency",
"interval",
"interval_count"
],
"title": "mandate_options_off_session_details_param",
"type": "object"
}
},
"title": "setup_intent_payment_method_options_mandate_options_param",
"type": "object"
}
},
"title": "setup_intent_payment_method_options_param",
Expand Down Expand Up @@ -105431,6 +105600,48 @@
"code": {
"maxLength": 5000,
"type": "string"
},
"mandate_options": {
"properties": {
"expires_after": {
"type": "integer"
},
"off_session": {
"properties": {
"amount": {
"type": "integer"
},
"currency": {
"enum": [
"pln"
],
"type": "string"
},
"interval": {
"enum": [
"day",
"month",
"week",
"year"
],
"type": "string"
},
"interval_count": {
"type": "integer"
}
},
"required": [
"amount",
"currency",
"interval",
"interval_count"
],
"title": "mandate_options_off_session_details_param",
"type": "object"
}
},
"title": "setup_intent_payment_method_options_mandate_options_param",
"type": "object"
}
},
"title": "setup_intent_payment_method_options_param",
Expand Down Expand Up @@ -106490,6 +106701,48 @@
"code": {
"maxLength": 5000,
"type": "string"
},
"mandate_options": {
"properties": {
"expires_after": {
"type": "integer"
},
"off_session": {
"properties": {
"amount": {
"type": "integer"
},
"currency": {
"enum": [
"pln"
],
"type": "string"
},
"interval": {
"enum": [
"day",
"month",
"week",
"year"
],
"type": "string"
},
"interval_count": {
"type": "integer"
}
},
"required": [
"amount",
"currency",
"interval",
"interval_count"
],
"title": "mandate_options_off_session_details_param",
"type": "object"
}
},
"title": "setup_intent_payment_method_options_mandate_options_param",
"type": "object"
}
},
"title": "setup_intent_payment_method_options_param",
Expand Down

0 comments on commit b9217a9

Please sign in to comment.