-
Notifications
You must be signed in to change notification settings - Fork 758
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 v745 * Update generated code for v747 * Update generated code for v748 * Update generated code for v750 * Update generated code for v752 * Update generated code for v753 * Update generated code for v755 * Update generated code for v755 * Update generated code for v755 * Update generated code for v755 --------- Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
- Loading branch information
1 parent
2be4b01
commit 46e067a
Showing
20 changed files
with
269 additions
and
30 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 @@ | ||
v742 | ||
v755 |
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 CustomerSessions = StripeResource.extend({ | ||
create: stripeMethod({method: 'POST', fullPath: '/v1/customer_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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
// File generated from our OpenAPI spec | ||
|
||
declare module 'stripe' { | ||
namespace Stripe { | ||
/** | ||
* A customer session allows you to grant client access to Stripe's frontend SDKs (like StripeJs) | ||
* control over a customer. | ||
*/ | ||
interface CustomerSession { | ||
/** | ||
* String representing the object's type. Objects of the same type share the same value. | ||
*/ | ||
object: 'customer_session'; | ||
|
||
/** | ||
* The client secret of this customer session. Used on the client to set up secure access to the given `customer`. | ||
* | ||
* The client secret can be used to provide access to `customer` from your frontend. It should not be stored, logged, or exposed to anyone other than the relevant customer. Make sure that you have TLS enabled on any page that includes the client secret. | ||
*/ | ||
client_secret: string; | ||
|
||
/** | ||
* Configuration for the components supported by this customer session. | ||
*/ | ||
components?: CustomerSession.Components; | ||
|
||
/** | ||
* Time at which the object was created. Measured in seconds since the Unix epoch. | ||
*/ | ||
created: number; | ||
|
||
/** | ||
* The customer the customer session was created for. | ||
*/ | ||
customer: string | Stripe.Customer; | ||
|
||
/** | ||
* The timestamp at which this customer session 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 CustomerSession { | ||
interface Components { | ||
/** | ||
* This hash contains whether the buy button is enabled. | ||
*/ | ||
buy_button?: Components.BuyButton; | ||
|
||
/** | ||
* This hash contains whether the pricing table is enabled. | ||
*/ | ||
pricing_table?: Components.PricingTable; | ||
} | ||
|
||
namespace Components { | ||
interface BuyButton { | ||
/** | ||
* Whether the buy button is enabled. | ||
*/ | ||
enabled: boolean; | ||
} | ||
|
||
interface PricingTable { | ||
/** | ||
* Whether the pricing table 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,62 @@ | ||
// File generated from our OpenAPI spec | ||
|
||
declare module 'stripe' { | ||
namespace Stripe { | ||
interface CustomerSessionCreateParams { | ||
/** | ||
* Configuration for each component. 1 component must be enabled. | ||
*/ | ||
components: CustomerSessionCreateParams.Components; | ||
|
||
/** | ||
* The ID of an existing customer for which to create the customer session. | ||
*/ | ||
customer: string; | ||
|
||
/** | ||
* Specifies which fields in the response should be expanded. | ||
*/ | ||
expand?: Array<string>; | ||
} | ||
|
||
namespace CustomerSessionCreateParams { | ||
interface Components { | ||
/** | ||
* Configuration for buy button. | ||
*/ | ||
buy_button?: Components.BuyButton; | ||
|
||
/** | ||
* Configuration for the pricing table. | ||
*/ | ||
pricing_table?: Components.PricingTable; | ||
} | ||
|
||
namespace Components { | ||
interface BuyButton { | ||
/** | ||
* Whether the buy button is enabled. | ||
*/ | ||
enabled: boolean; | ||
} | ||
|
||
interface PricingTable { | ||
/** | ||
* Whether the pricing table is enabled. | ||
*/ | ||
enabled: boolean; | ||
} | ||
} | ||
} | ||
|
||
class CustomerSessionsResource { | ||
/** | ||
* Creates a customer session object that includes a single-use client secret that you can use on your front-end to grant client-side API access for certain customer resources. | ||
*/ | ||
create( | ||
params: CustomerSessionCreateParams, | ||
options?: RequestOptions | ||
): Promise<Stripe.Response<Stripe.CustomerSession>>; | ||
} | ||
} | ||
} |
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.