Skip to content

Commit

Permalink
Merge upstream and update generated code for v1330
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Nov 5, 2024
2 parents 4cdece9 + d12717a commit 2395998
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 7 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1329
v1330
30 changes: 24 additions & 6 deletions types/AccountSessionsResource.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,11 +382,6 @@ declare module 'stripe' {
*/
external_account_collection?: boolean;

/**
* Whether to allow money movement features.
*/
money_movement?: boolean;

/**
* Whether to allow sending money.
*/
Expand All @@ -405,6 +400,9 @@ declare module 'stripe' {
*/
enabled: boolean;

/**
* The list of features enabled in the embedded component.
*/
features?: FinancialAccountTransactions.Features;
}

Expand All @@ -430,7 +428,27 @@ declare module 'stripe' {
}

namespace IssuingCard {
interface Features {}
interface Features {
/**
* Whether to allow card management features.
*/
card_management?: boolean;

/**
* Whether to allow card spend dispute management features.
*/
card_spend_dispute_management?: boolean;

/**
* Whether to allow cardholder management features.
*/
cardholder_management?: boolean;

/**
* Whether to allow spend control management features.
*/
spend_control_management?: boolean;
}
}

interface IssuingCardsList {
Expand Down

0 comments on commit 2395998

Please sign in to comment.