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 #833

Merged
merged 1 commit into from
May 22, 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
6 changes: 4 additions & 2 deletions embedded/openapi/fixtures3.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,8 @@
"features": {
"edit_payout_schedule": false,
"instant_payouts": false,
"standard_payouts": false
"standard_payouts": false,
"external_account_collection": true
}
},
"account_management": {
Expand All @@ -191,7 +192,8 @@
"features": {
"edit_payout_schedule": true,
"instant_payouts": true,
"standard_payouts": true
"standard_payouts": true,
"external_account_collection": true
}
},
"payouts_list": {
Expand Down
13 changes: 13 additions & 0 deletions embedded/openapi/spec3.beta.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -10429,6 +10429,10 @@
"description": "Whether to allow payout schedule to be changed. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
},
"external_account_collection": {
"description": "Whether to allow platforms to control bank account collection for their connected accounts. This feature can only be false for custom accounts (or accounts where the platform is compliance owner). Otherwise, bank account collection is determined by compliance requirements.",
"type": "boolean"
},
"instant_payouts": {
"description": "Whether to allow creation of instant payouts. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
Expand All @@ -10440,6 +10444,7 @@
},
"required": [
"edit_payout_schedule",
"external_account_collection",
"instant_payouts",
"standard_payouts"
],
Expand Down Expand Up @@ -72412,6 +72417,10 @@
"description": "Whether to allow payout schedule to be changed. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
},
"external_account_collection": {
"description": "Whether to allow platforms to control bank account collection for their connected accounts. This feature can only be false for custom accounts (or accounts where the platform is compliance owner). Otherwise, bank account collection is determined by compliance requirements.",
"type": "boolean"
},
"instant_payouts": {
"description": "Whether to allow creation of instant payouts. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
Expand Down Expand Up @@ -72724,6 +72733,10 @@
"description": "Whether to allow payout schedule to be changed. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
},
"external_account_collection": {
"description": "Whether to allow platforms to control bank account collection for their connected accounts. This feature can only be false for custom accounts (or accounts where the platform is compliance owner). Otherwise, bank account collection is determined by compliance requirements.",
"type": "boolean"
},
"instant_payouts": {
"description": "Whether to allow creation of instant payouts. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
Expand Down
11 changes: 11 additions & 0 deletions embedded/openapi/spec3.json
Original file line number Diff line number Diff line change
Expand Up @@ -7410,6 +7410,10 @@
"description": "Whether to allow payout schedule to be changed. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
},
"external_account_collection": {
"description": "Whether to allow platforms to control bank account collection for their connected accounts. This feature can only be false for custom accounts (or accounts where the platform is compliance owner). Otherwise, bank account collection is determined by compliance requirements.",
"type": "boolean"
},
"instant_payouts": {
"description": "Whether to allow creation of instant payouts. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
Expand All @@ -7421,6 +7425,7 @@
},
"required": [
"edit_payout_schedule",
"external_account_collection",
"instant_payouts",
"standard_payouts"
],
Expand Down Expand Up @@ -50055,6 +50060,9 @@
"edit_payout_schedule": {
"type": "boolean"
},
"external_account_collection": {
"type": "boolean"
},
"instant_payouts": {
"type": "boolean"
},
Expand Down Expand Up @@ -50180,6 +50188,9 @@
"edit_payout_schedule": {
"type": "boolean"
},
"external_account_collection": {
"type": "boolean"
},
"instant_payouts": {
"type": "boolean"
},
Expand Down
Loading