Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenAPI Update #714

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion embedded/openapi/spec3.beta.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -62645,6 +62645,12 @@
"description": "Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.",
"type": "boolean"
},
"name": {
"description": "String indicating the name of the Configuration object, set by the user",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"object": {
"description": "String representing the object's type. Objects of the same type share the same value.",
"enum": [
Expand All @@ -62666,6 +62672,7 @@
"id",
"is_account_default",
"livemode",
"name",
"object"
],
"title": "TerminalConfigurationConfiguration",
Expand Down Expand Up @@ -68822,6 +68829,12 @@
"nullable": true,
"type": "string"
},
"payout": {
"description": "Set if the ReceivedDebit was created due to a [Payout](https://stripe.com/docs/api#payouts) object.",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"received_credit_capital_withholding": {
"description": "The ReceivedCredit that Capital withheld from",
"maxLength": 5000,
Expand All @@ -68833,7 +68846,8 @@
"debit_reversal",
"inbound_transfer",
"issuing_authorization",
"issuing_transaction"
"issuing_transaction",
"payout"
],
"title": "TreasuryReceivedDebitsResourceLinkedFlows",
"type": "object",
Expand Down Expand Up @@ -185537,6 +185551,11 @@
},
"type": "array"
},
"name": {
"description": "Name of the configuration",
"maxLength": 100,
"type": "string"
},
"offline": {
"anyOf": [
{
Expand Down Expand Up @@ -186187,6 +186206,11 @@
},
"type": "array"
},
"name": {
"description": "Name of the configuration",
"maxLength": 100,
"type": "string"
},
"offline": {
"anyOf": [
{
Expand Down
22 changes: 22 additions & 0 deletions embedded/openapi/spec3.json
Original file line number Diff line number Diff line change
Expand Up @@ -42580,6 +42580,12 @@
"description": "Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.",
"type": "boolean"
},
"name": {
"description": "String indicating the name of the Configuration object, set by the user",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"object": {
"description": "String representing the object's type. Objects of the same type share the same value.",
"enum": [
Expand Down Expand Up @@ -46556,6 +46562,12 @@
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"payout": {
"description": "Set if the ReceivedDebit was created due to a [Payout](https://stripe.com/docs/api#payouts) object.",
"maxLength": 5000,
"nullable": true,
"type": "string"
}
},
"title": "TreasuryReceivedDebitsResourceLinkedFlows",
Expand Down Expand Up @@ -134352,6 +134364,11 @@
},
"type": "array"
},
"name": {
"description": "Name of the configuration",
"maxLength": 100,
"type": "string"
},
"offline": {
"anyOf": [
{
Expand Down Expand Up @@ -134943,6 +134960,11 @@
},
"type": "array"
},
"name": {
"description": "Name of the configuration",
"maxLength": 100,
"type": "string"
},
"offline": {
"anyOf": [
{
Expand Down
Loading