-
Notifications
You must be signed in to change notification settings - Fork 751
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update generated code for v485 * Update generated code for v486 * Update generated code for v488 * Update generated code for v489 * Update generated code for v490 * Update generated code for v491 * Update generated code for v492 * Update generated code for v493 * Update generated code for v495 * Update generated code for v497 * Update generated code for v499 --------- Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com> Co-authored-by: Richard Marmorstein <[email protected]>
- Loading branch information
1 parent
646e514
commit d5e905e
Showing
18 changed files
with
397 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v482 | ||
v499 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// File generated from our OpenAPI spec | ||
|
||
import {StripeResource} from '../StripeResource.js'; | ||
const stripeMethod = StripeResource.method; | ||
export const AccountSessions = StripeResource.extend({ | ||
create: stripeMethod({method: 'POST', fullPath: '/v1/account_sessions'}), | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
// File generated from our OpenAPI spec | ||
|
||
declare module 'stripe' { | ||
namespace Stripe { | ||
/** | ||
* An AccountSession allows a Connect platform to grant access to a connected account in Connect embedded components. | ||
* | ||
* We recommend that you create an AccountSession each time you need to display an embedded component | ||
* to your user. Do not save AccountSessions to your database as they expire relatively | ||
* quickly, and cannot be used more than once. | ||
* | ||
* Related guide: [Connect embedded components](https://stripe.com/docs/connect/get-started-connect-embedded-components) | ||
*/ | ||
interface AccountSession { | ||
/** | ||
* String representing the object's type. Objects of the same type share the same value. | ||
*/ | ||
object: 'account_session'; | ||
|
||
/** | ||
* The ID of the account the AccountSession was created for | ||
*/ | ||
account: string; | ||
|
||
/** | ||
* The client secret of this AccountSession. Used on the client to set up secure access to the given `account`. | ||
* | ||
* The client secret can be used to provide access to `account` from your frontend. It should not be stored, logged, or exposed to anyone other than the connected account. Make sure that you have TLS enabled on any page that includes the client secret. | ||
* | ||
* Refer to our docs to [setup Connect embedded components](https://stripe.com/docs/connect/get-started-connect-embedded-components) and learn about how `client_secret` should be handled. | ||
*/ | ||
client_secret: string; | ||
|
||
components: AccountSession.Components; | ||
|
||
/** | ||
* The timestamp at which this AccountSession will expire. | ||
*/ | ||
expires_at: number; | ||
|
||
/** | ||
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode. | ||
*/ | ||
livemode: boolean; | ||
} | ||
|
||
namespace AccountSession { | ||
interface Components { | ||
account_onboarding: Components.AccountOnboarding; | ||
} | ||
|
||
namespace Components { | ||
interface AccountOnboarding { | ||
/** | ||
* Whether the embedded component is enabled. | ||
*/ | ||
enabled: boolean; | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// File generated from our OpenAPI spec | ||
|
||
declare module 'stripe' { | ||
namespace Stripe { | ||
interface AccountSessionCreateParams { | ||
/** | ||
* The identifier of the account to create an Account Session for. | ||
*/ | ||
account: string; | ||
|
||
/** | ||
* Each key of the dictionary represents an embedded component, and each embedded component maps to its configuration (e.g. whether it has been enabled or not). | ||
*/ | ||
components: AccountSessionCreateParams.Components; | ||
|
||
/** | ||
* Specifies which fields in the response should be expanded. | ||
*/ | ||
expand?: Array<string>; | ||
} | ||
|
||
namespace AccountSessionCreateParams { | ||
interface Components { | ||
/** | ||
* Configuration for the account onboarding embedded component. | ||
*/ | ||
account_onboarding?: Components.AccountOnboarding; | ||
} | ||
|
||
namespace Components { | ||
interface AccountOnboarding { | ||
/** | ||
* Whether the embedded component is enabled. | ||
*/ | ||
enabled: boolean; | ||
} | ||
} | ||
} | ||
|
||
class AccountSessionsResource { | ||
/** | ||
* Creates a AccountSession object that includes a single-use token that the platform can use on their front-end to grant client-side API access. | ||
*/ | ||
create( | ||
params: AccountSessionCreateParams, | ||
options?: RequestOptions | ||
): Promise<Stripe.Response<Stripe.AccountSession>>; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.