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

Merged
merged 1 commit into from
Dec 20, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
39 changes: 38 additions & 1 deletion embedded/openapi/spec3.beta.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -9385,7 +9385,25 @@
},
"connect_embedded_payouts_features": {
"description": "",
"properties": {},
"properties": {
"edit_payout_schedule": {
"description": "Whether to allow payout schedule to be changed. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
},
"instant_payouts": {
"description": "Whether to allow creation of instant payouts. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
},
"standard_payouts": {
"description": "Whether to allow creation of standard payouts. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
}
},
"required": [
"edit_payout_schedule",
"instant_payouts",
"standard_payouts"
],
"title": "ConnectEmbeddedPayoutsFeatures",
"type": "object",
"x-expandableFields": [],
Expand Down Expand Up @@ -67699,6 +67717,25 @@
"enabled": {
"description": "Whether the embedded component is enabled.",
"type": "boolean"
},
"features": {
"description": "The list of features enabled in the embedded component.",
"properties": {
"edit_payout_schedule": {
"description": "Whether to allow payout schedule to be changed. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
},
"instant_payouts": {
"description": "Whether to allow creation of instant payouts. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
},
"standard_payouts": {
"description": "Whether to allow creation of standard payouts. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
}
},
"title": "payouts_features_param",
"type": "object"
}
},
"required": [
Expand Down
35 changes: 34 additions & 1 deletion embedded/openapi/spec3.json
Original file line number Diff line number Diff line change
Expand Up @@ -6137,7 +6137,25 @@
},
"connect_embedded_payouts_features": {
"description": "",
"properties": {},
"properties": {
"edit_payout_schedule": {
"description": "Whether to allow payout schedule to be changed. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
},
"instant_payouts": {
"description": "Whether to allow creation of instant payouts. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
},
"standard_payouts": {
"description": "Whether to allow creation of standard payouts. Default `true` when Stripe owns Loss Liability, default `false` otherwise.",
"type": "boolean"
}
},
"required": [
"edit_payout_schedule",
"instant_payouts",
"standard_payouts"
],
"title": "ConnectEmbeddedPayoutsFeatures",
"type": "object",
"x-expandableFields": []
Expand Down Expand Up @@ -45837,6 +45855,21 @@
"properties": {
"enabled": {
"type": "boolean"
},
"features": {
"properties": {
"edit_payout_schedule": {
"type": "boolean"
},
"instant_payouts": {
"type": "boolean"
},
"standard_payouts": {
"type": "boolean"
}
},
"title": "payouts_features_param",
"type": "object"
}
},
"required": [
Expand Down