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

Merged
merged 1 commit into from
Jul 15, 2024
Merged
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
83 changes: 83 additions & 0 deletions embedded/openapi/spec3.beta.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -1235,6 +1235,33 @@
"errors"
]
},
"account_capital_settings": {
"description": "",
"properties": {
"payout_destination": {
"additionalProperties": {
"maxLength": 5000,
"type": "string"
},
"description": "Per-currency mapping of user-selected destination accounts used to pay out loans.",
"type": "object"
},
"payout_destination_selector": {
"additionalProperties": {
"items": {
"maxLength": 5000,
"type": "string"
},
"type": "array"
},
"description": "Per-currency mapping of all destination accounts eligible to receive loan payouts.",
"type": "object"
}
},
"title": "AccountCapitalSettings",
"type": "object",
"x-expandableFields": []
},
"account_card_issuing_settings": {
"description": "",
"properties": {
Expand Down Expand Up @@ -2067,6 +2094,9 @@
"branding": {
"$ref": "#/components/schemas/account_branding_settings"
},
"capital": {
"$ref": "#/components/schemas/account_capital_settings"
},
"card_issuing": {
"$ref": "#/components/schemas/account_card_issuing_settings"
},
Expand Down Expand Up @@ -2106,6 +2136,7 @@
"x-expandableFields": [
"bacs_debit_payments",
"branding",
"capital",
"card_issuing",
"card_payments",
"dashboard",
Expand Down Expand Up @@ -75779,6 +75810,32 @@
"title": "branding_settings_specs",
"type": "object"
},
"capital": {
"description": "Settings specific to the account's use of the Capital product.",
"properties": {
"payout_destination": {
"additionalProperties": {
"maxLength": 5000,
"type": "string"
},
"description": "Per-currency mapping of user-selected destination accounts used to pay out loans.",
"type": "object"
},
"payout_destination_selector": {
"additionalProperties": {
"items": {
"maxLength": 5000,
"type": "string"
},
"type": "array"
},
"description": "Per-currency mapping of all destination accounts eligible to receive Capital financing payouts.",
"type": "object"
}
},
"title": "capital_settings_specs",
"type": "object"
},
"card_issuing": {
"description": "Settings specific to the account's use of the Card Issuing product.",
"properties": {
Expand Down Expand Up @@ -77841,6 +77898,32 @@
"title": "branding_settings_specs",
"type": "object"
},
"capital": {
"description": "Settings specific to the account's use of the Capital product.",
"properties": {
"payout_destination": {
"additionalProperties": {
"maxLength": 5000,
"type": "string"
},
"description": "Per-currency mapping of user-selected destination accounts used to pay out loans.",
"type": "object"
},
"payout_destination_selector": {
"additionalProperties": {
"items": {
"maxLength": 5000,
"type": "string"
},
"type": "array"
},
"description": "Per-currency mapping of all destination accounts eligible to receive Capital financing payouts.",
"type": "object"
}
},
"title": "capital_settings_specs",
"type": "object"
},
"card_issuing": {
"description": "Settings specific to the account's use of the Card Issuing product.",
"properties": {
Expand Down
Loading