stripe 16.0.0 → 16.2.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +761 -109
- package/README.md +33 -0
- package/VERSION +1 -1
- package/cjs/RequestSender.js +66 -5
- package/cjs/StripeResource.js +1 -1
- package/cjs/apiVersion.js +2 -1
- package/cjs/multipart.js +1 -1
- package/cjs/resources/AccountNotices.js +21 -0
- package/cjs/resources/Capital/FinancingOffers.js +21 -0
- package/cjs/resources/Capital/FinancingSummary.js +12 -0
- package/cjs/resources/Capital/FinancingTransactions.js +17 -0
- package/cjs/resources/FinancialConnections/Accounts.js +5 -0
- package/cjs/resources/GiftCards/Cards.js +23 -0
- package/cjs/resources/GiftCards/Transactions.js +33 -0
- package/cjs/resources/Invoices.js +25 -0
- package/cjs/resources/Issuing/CreditUnderwritingRecords.js +33 -0
- package/cjs/resources/Margins.js +22 -0
- package/cjs/resources/OAuth.js +1 -1
- package/cjs/resources/Orders.js +24 -0
- package/cjs/resources/PaymentIntents.js +4 -0
- package/cjs/resources/QuotePhases.js +22 -0
- package/cjs/resources/Quotes.js +32 -0
- package/cjs/resources/SubscriptionSchedules.js +4 -0
- package/cjs/resources/Tax/Forms.js +20 -0
- package/cjs/resources/Terminal/Readers.js +12 -0
- package/cjs/resources.js +36 -10
- package/cjs/stripe.core.js +6 -3
- package/cjs/utils.js +30 -3
- package/esm/RequestSender.js +67 -6
- package/esm/StripeResource.js +2 -2
- package/esm/apiVersion.js +1 -0
- package/esm/multipart.js +2 -2
- package/esm/resources/AccountNotices.js +18 -0
- package/esm/resources/Capital/FinancingOffers.js +18 -0
- package/esm/resources/Capital/FinancingSummary.js +9 -0
- package/esm/resources/Capital/FinancingTransactions.js +14 -0
- package/esm/resources/FinancialConnections/Accounts.js +5 -0
- package/esm/resources/GiftCards/Cards.js +20 -0
- package/esm/resources/GiftCards/Transactions.js +30 -0
- package/esm/resources/Invoices.js +25 -0
- package/esm/resources/Issuing/CreditUnderwritingRecords.js +30 -0
- package/esm/resources/Margins.js +19 -0
- package/esm/resources/OAuth.js +2 -2
- package/esm/resources/Orders.js +21 -0
- package/esm/resources/PaymentIntents.js +4 -0
- package/esm/resources/QuotePhases.js +19 -0
- package/esm/resources/Quotes.js +32 -0
- package/esm/resources/SubscriptionSchedules.js +4 -0
- package/esm/resources/Tax/Forms.js +17 -0
- package/esm/resources/Terminal/Readers.js +12 -0
- package/esm/resources.js +22 -0
- package/esm/stripe.core.js +6 -3
- package/esm/utils.js +27 -1
- package/package.json +1 -1
- package/types/AccountLinksResource.d.ts +5 -1
- package/types/AccountNotices.d.ts +110 -0
- package/types/AccountNoticesResource.d.ts +98 -0
- package/types/AccountSessions.d.ts +15 -0
- package/types/AccountSessionsResource.d.ts +205 -0
- package/types/Accounts.d.ts +88 -1
- package/types/AccountsResource.d.ts +204 -0
- package/types/Billing/MetersResource.d.ts +6 -2
- package/types/Capabilities.d.ts +1 -1
- package/types/Capital/FinancingOffers.d.ts +188 -0
- package/types/Capital/FinancingOffersResource.d.ts +97 -0
- package/types/Capital/FinancingSummary.d.ts +106 -0
- package/types/Capital/FinancingSummaryResource.d.ts +27 -0
- package/types/Capital/FinancingTransactions.d.ts +135 -0
- package/types/Capital/FinancingTransactionsResource.d.ts +68 -0
- package/types/Charges.d.ts +67 -0
- package/types/ChargesResource.d.ts +1294 -0
- package/types/Checkout/Sessions.d.ts +36 -1
- package/types/Checkout/SessionsResource.d.ts +15 -1
- package/types/ConfirmationTokens.d.ts +83 -0
- package/types/Coupons.d.ts +1 -1
- package/types/CouponsResource.d.ts +1 -1
- package/types/CreditNotes.d.ts +21 -0
- package/types/CreditNotesResource.d.ts +72 -0
- package/types/CustomerSessions.d.ts +48 -0
- package/types/CustomerSessionsResource.d.ts +48 -0
- package/types/CustomersResource.d.ts +2 -0
- package/types/Disputes.d.ts +167 -0
- package/types/DisputesResource.d.ts +120 -0
- package/types/EventTypes.d.ts +426 -0
- package/types/Events.d.ts +83 -0
- package/types/FinancialConnections/AccountInferredBalances.d.ts +38 -0
- package/types/FinancialConnections/Accounts.d.ts +29 -1
- package/types/FinancialConnections/AccountsResource.d.ts +35 -3
- package/types/FinancialConnections/Sessions.d.ts +58 -1
- package/types/FinancialConnections/SessionsResource.d.ts +47 -1
- package/types/GiftCards/Cards.d.ts +118 -0
- package/types/GiftCards/CardsResource.d.ts +159 -0
- package/types/GiftCards/Transactions.d.ts +129 -0
- package/types/GiftCards/TransactionsResource.d.ts +201 -0
- package/types/InvoiceItems.d.ts +5 -0
- package/types/InvoiceItemsResource.d.ts +98 -0
- package/types/InvoiceLineItems.d.ts +22 -0
- package/types/InvoicePayments.d.ts +91 -0
- package/types/Invoices.d.ts +123 -1
- package/types/InvoicesResource.d.ts +6477 -2302
- package/types/Issuing/CardholdersResource.d.ts +2 -1
- package/types/Issuing/Cards.d.ts +34 -0
- package/types/Issuing/CardsResource.d.ts +125 -0
- package/types/Issuing/CreditUnderwritingRecords.d.ts +446 -0
- package/types/Issuing/CreditUnderwritingRecordsResource.d.ts +1017 -0
- package/types/LineItems.d.ts +7 -0
- package/types/Mandates.d.ts +77 -0
- package/types/Margins.d.ts +56 -0
- package/types/MarginsResource.d.ts +114 -0
- package/types/Orders.d.ts +1057 -0
- package/types/OrdersResource.d.ts +2711 -0
- package/types/PaymentIntents.d.ts +476 -1
- package/types/PaymentIntentsResource.d.ts +6735 -3354
- package/types/PaymentLinks.d.ts +4 -1
- package/types/PaymentLinksResource.d.ts +8 -2
- package/types/PaymentMethods.d.ts +62 -0
- package/types/PaymentMethodsResource.d.ts +110 -0
- package/types/Prices.d.ts +22 -0
- package/types/PricesResource.d.ts +22 -0
- package/types/Products.d.ts +39 -0
- package/types/ProductsResource.d.ts +36 -0
- package/types/QuoteLines.d.ts +634 -0
- package/types/QuotePhases.d.ts +198 -0
- package/types/QuotePhasesResource.d.ts +67 -0
- package/types/QuotePreviewInvoices.d.ts +1528 -0
- package/types/QuotePreviewSubscriptionSchedules.d.ts +778 -0
- package/types/Quotes.d.ts +578 -1
- package/types/QuotesResource.d.ts +3174 -265
- package/types/SetupAttempts.d.ts +8 -0
- package/types/SetupIntents.d.ts +117 -1
- package/types/SetupIntentsResource.d.ts +531 -3
- package/types/Sources.d.ts +23 -0
- package/types/SubscriptionItems.d.ts +21 -0
- package/types/SubscriptionItemsResource.d.ts +109 -0
- package/types/SubscriptionSchedules.d.ts +164 -0
- package/types/SubscriptionSchedulesResource.d.ts +1234 -16
- package/types/Subscriptions.d.ts +54 -1
- package/types/SubscriptionsResource.d.ts +369 -2
- package/types/Tax/Forms.d.ts +133 -0
- package/types/Tax/FormsResource.d.ts +90 -0
- package/types/Terminal/Configurations.d.ts +14 -0
- package/types/Terminal/ConfigurationsResource.d.ts +36 -0
- package/types/Terminal/Readers.d.ts +278 -0
- package/types/Terminal/ReadersResource.d.ts +208 -0
- package/types/TestHelpers/ConfirmationTokensResource.d.ts +55 -0
- package/types/TestHelpers/Treasury/ReceivedCreditsResource.d.ts +26 -0
- package/types/TestHelpers/Treasury/ReceivedDebitsResource.d.ts +26 -0
- package/types/Treasury/OutboundTransfers.d.ts +26 -0
- package/types/Treasury/OutboundTransfersResource.d.ts +26 -0
- package/types/Treasury/ReceivedCredits.d.ts +26 -0
- package/types/Treasury/ReceivedDebits.d.ts +31 -0
- package/types/WebhookEndpointsResource.d.ts +50 -0
- package/types/index.d.ts +61 -0
- package/types/lib.d.ts +12 -0
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
|
|
3
|
+
declare module 'stripe' {
|
|
4
|
+
namespace Stripe {
|
|
5
|
+
namespace GiftCards {
|
|
6
|
+
interface CardCreateParams {
|
|
7
|
+
/**
|
|
8
|
+
* Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
|
|
9
|
+
*/
|
|
10
|
+
currency: string;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* The active state for the new gift card, defaults to false. The active state can be updated after creation.
|
|
14
|
+
*/
|
|
15
|
+
active?: boolean;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Related objects which created this gift card.
|
|
19
|
+
*/
|
|
20
|
+
created_by?: CardCreateParams.CreatedBy;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Specifies which fields in the response should be expanded.
|
|
24
|
+
*/
|
|
25
|
+
expand?: Array<string>;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* The initial amount to load onto the new gift card, defaults to 0.
|
|
29
|
+
*/
|
|
30
|
+
initial_amount?: number;
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
|
|
34
|
+
*/
|
|
35
|
+
metadata?: Stripe.MetadataParam;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
namespace CardCreateParams {
|
|
39
|
+
interface CreatedBy {
|
|
40
|
+
/**
|
|
41
|
+
* The details for the payment that created this object.
|
|
42
|
+
*/
|
|
43
|
+
payment: CreatedBy.Payment;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* The type of event that created this object.
|
|
47
|
+
*/
|
|
48
|
+
type: 'payment';
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
namespace CreatedBy {
|
|
52
|
+
interface Payment {
|
|
53
|
+
/**
|
|
54
|
+
* The PaymentIntent used to collect payment for this object.
|
|
55
|
+
*/
|
|
56
|
+
payment_intent: string;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
interface CardRetrieveParams {
|
|
62
|
+
/**
|
|
63
|
+
* Specifies which fields in the response should be expanded.
|
|
64
|
+
*/
|
|
65
|
+
expand?: Array<string>;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
interface CardUpdateParams {
|
|
69
|
+
/**
|
|
70
|
+
* The new active state for the gift card.
|
|
71
|
+
*/
|
|
72
|
+
active?: boolean;
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Specifies which fields in the response should be expanded.
|
|
76
|
+
*/
|
|
77
|
+
expand?: Array<string>;
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
|
|
81
|
+
*/
|
|
82
|
+
metadata?: Stripe.Emptyable<Stripe.MetadataParam>;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
interface CardListParams extends PaginationParams {
|
|
86
|
+
/**
|
|
87
|
+
* Specifies which fields in the response should be expanded.
|
|
88
|
+
*/
|
|
89
|
+
expand?: Array<string>;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
interface CardValidateParams {
|
|
93
|
+
/**
|
|
94
|
+
* The gift card code to be validated.
|
|
95
|
+
*/
|
|
96
|
+
code: string;
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* Specifies which fields in the response should be expanded.
|
|
100
|
+
*/
|
|
101
|
+
expand?: Array<string>;
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* The pin associated with the gift card. Not all gift cards have pins.
|
|
105
|
+
*/
|
|
106
|
+
giftcard_pin?: string;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
class CardsResource {
|
|
110
|
+
/**
|
|
111
|
+
* Creates a new gift card object.
|
|
112
|
+
*/
|
|
113
|
+
create(
|
|
114
|
+
params: CardCreateParams,
|
|
115
|
+
options?: RequestOptions
|
|
116
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Card>>;
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* Retrieve a gift card by id
|
|
120
|
+
*/
|
|
121
|
+
retrieve(
|
|
122
|
+
id: string,
|
|
123
|
+
params?: CardRetrieveParams,
|
|
124
|
+
options?: RequestOptions
|
|
125
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Card>>;
|
|
126
|
+
retrieve(
|
|
127
|
+
id: string,
|
|
128
|
+
options?: RequestOptions
|
|
129
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Card>>;
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Update a gift card
|
|
133
|
+
*/
|
|
134
|
+
update(
|
|
135
|
+
id: string,
|
|
136
|
+
params?: CardUpdateParams,
|
|
137
|
+
options?: RequestOptions
|
|
138
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Card>>;
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* List gift cards for an account
|
|
142
|
+
*/
|
|
143
|
+
list(
|
|
144
|
+
params?: CardListParams,
|
|
145
|
+
options?: RequestOptions
|
|
146
|
+
): ApiListPromise<Stripe.GiftCards.Card>;
|
|
147
|
+
list(options?: RequestOptions): ApiListPromise<Stripe.GiftCards.Card>;
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Validates a gift card code, returning the matching gift card object if it exists.
|
|
151
|
+
*/
|
|
152
|
+
validate(
|
|
153
|
+
params: CardValidateParams,
|
|
154
|
+
options?: RequestOptions
|
|
155
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Card>>;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
|
|
3
|
+
declare module 'stripe' {
|
|
4
|
+
namespace Stripe {
|
|
5
|
+
namespace GiftCards {
|
|
6
|
+
/**
|
|
7
|
+
* A gift card transaction represents a single transaction on a referenced gift card.
|
|
8
|
+
* A transaction is in one of three states, `confirmed`, `held` or `canceled`. A `confirmed`
|
|
9
|
+
* transaction is one that has added/deducted funds. A `held` transaction has created a
|
|
10
|
+
* temporary hold on funds, which can then be cancelled or confirmed. A `held` transaction
|
|
11
|
+
* can be confirmed into a `confirmed` transaction, or canceled into a `canceled` transaction.
|
|
12
|
+
* A `canceled` transaction has no effect on a gift card's balance.
|
|
13
|
+
*/
|
|
14
|
+
interface Transaction {
|
|
15
|
+
/**
|
|
16
|
+
* Unique identifier for the object.
|
|
17
|
+
*/
|
|
18
|
+
id: string;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* String representing the object's type. Objects of the same type share the same value.
|
|
22
|
+
*/
|
|
23
|
+
object: 'gift_cards.transaction';
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* The amount of this transaction. A positive value indicates that funds were added to the gift card. A negative value indicates that funds were removed from the gift card.
|
|
27
|
+
*/
|
|
28
|
+
amount: number | null;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Time at which the transaction was confirmed. Measured in seconds since the Unix epoch.
|
|
32
|
+
*/
|
|
33
|
+
confirmed_at: number | null;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Time at which the object was created. Measured in seconds since the Unix epoch.
|
|
37
|
+
*/
|
|
38
|
+
created: number | null;
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* The related Stripe objects that created this gift card transaction.
|
|
42
|
+
*/
|
|
43
|
+
created_by: Transaction.CreatedBy | null;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
|
|
47
|
+
*/
|
|
48
|
+
currency: string | null;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* An arbitrary string attached to the object. Often useful for displaying to users.
|
|
52
|
+
*/
|
|
53
|
+
description: string | null;
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* The gift card that this transaction occurred on
|
|
57
|
+
*/
|
|
58
|
+
gift_card: string | null;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
|
|
62
|
+
*/
|
|
63
|
+
metadata: Stripe.Metadata | null;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Status of this transaction, one of `held`, `confirmed`, or `canceled`.
|
|
67
|
+
*/
|
|
68
|
+
status: Transaction.Status | null;
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* A string that identifies this transaction as part of a group. See the [Connect documentation](https://stripe.com/docs/connect/separate-charges-and-transfers) for details.
|
|
72
|
+
*/
|
|
73
|
+
transfer_group: string | null;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
namespace Transaction {
|
|
77
|
+
interface CreatedBy {
|
|
78
|
+
checkout?: CreatedBy.Checkout;
|
|
79
|
+
|
|
80
|
+
order?: CreatedBy.Order;
|
|
81
|
+
|
|
82
|
+
payment?: CreatedBy.Payment;
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* The type of event that created this object.
|
|
86
|
+
*/
|
|
87
|
+
type: CreatedBy.Type;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
namespace CreatedBy {
|
|
91
|
+
interface Checkout {
|
|
92
|
+
/**
|
|
93
|
+
* The Stripe CheckoutSession that created this object.
|
|
94
|
+
*/
|
|
95
|
+
checkout_session: string;
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* The Stripe CheckoutSession LineItem that created this object.
|
|
99
|
+
*/
|
|
100
|
+
line_item: string | null;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
interface Order {
|
|
104
|
+
/**
|
|
105
|
+
* The Stripe Order LineItem that created this object.
|
|
106
|
+
*/
|
|
107
|
+
line_item: string | null;
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* The Stripe Order that created this object.
|
|
111
|
+
*/
|
|
112
|
+
order: string;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
interface Payment {
|
|
116
|
+
/**
|
|
117
|
+
* The PaymentIntent that created this object.
|
|
118
|
+
*/
|
|
119
|
+
payment_intent: string;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
type Type = 'checkout' | 'order' | 'payment';
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
type Status = 'canceled' | 'confirmed' | 'held' | 'invalid';
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
|
|
3
|
+
declare module 'stripe' {
|
|
4
|
+
namespace Stripe {
|
|
5
|
+
namespace GiftCards {
|
|
6
|
+
interface TransactionCreateParams {
|
|
7
|
+
/**
|
|
8
|
+
* The amount of the transaction. A negative amount deducts funds, and a positive amount adds funds.
|
|
9
|
+
*/
|
|
10
|
+
amount: number;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* The currency of the transaction. This must match the currency of the gift card.
|
|
14
|
+
*/
|
|
15
|
+
currency: string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* The gift card to create a new transaction on.
|
|
19
|
+
*/
|
|
20
|
+
gift_card: string;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Whether this is a confirmed transaction. A confirmed transaction immediately deducts from/adds to the `amount_available` on the gift card. Otherwise, it creates a held transaction that increments the `amount_held` on the gift card.
|
|
24
|
+
*/
|
|
25
|
+
confirm?: boolean;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Related objects which created this transaction.
|
|
29
|
+
*/
|
|
30
|
+
created_by?: TransactionCreateParams.CreatedBy;
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* An arbitrary string attached to the object. Often useful for displaying to users.
|
|
34
|
+
*/
|
|
35
|
+
description?: string;
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Specifies which fields in the response should be expanded.
|
|
39
|
+
*/
|
|
40
|
+
expand?: Array<string>;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
|
|
44
|
+
*/
|
|
45
|
+
metadata?: Stripe.MetadataParam;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* A string that identifies this transaction as part of a group. See the [Connect documentation](https://stripe.com/docs/connect/separate-charges-and-transfers) for details.
|
|
49
|
+
*/
|
|
50
|
+
transfer_group?: string;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
namespace TransactionCreateParams {
|
|
54
|
+
interface CreatedBy {
|
|
55
|
+
/**
|
|
56
|
+
* The details for the payment that created this object.
|
|
57
|
+
*/
|
|
58
|
+
payment: CreatedBy.Payment;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* The type of event that created this object.
|
|
62
|
+
*/
|
|
63
|
+
type: 'payment';
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
namespace CreatedBy {
|
|
67
|
+
interface Payment {
|
|
68
|
+
/**
|
|
69
|
+
* The PaymentIntent used to collect payment for this object.
|
|
70
|
+
*/
|
|
71
|
+
payment_intent: string;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
interface TransactionRetrieveParams {
|
|
77
|
+
/**
|
|
78
|
+
* Specifies which fields in the response should be expanded.
|
|
79
|
+
*/
|
|
80
|
+
expand?: Array<string>;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
interface TransactionUpdateParams {
|
|
84
|
+
/**
|
|
85
|
+
* An arbitrary string attached to the object. Often useful for displaying to users.
|
|
86
|
+
*/
|
|
87
|
+
description?: string;
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* Specifies which fields in the response should be expanded.
|
|
91
|
+
*/
|
|
92
|
+
expand?: Array<string>;
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
|
|
96
|
+
*/
|
|
97
|
+
metadata?: Stripe.Emptyable<Stripe.MetadataParam>;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
interface TransactionListParams extends PaginationParams {
|
|
101
|
+
/**
|
|
102
|
+
* Specifies which fields in the response should be expanded.
|
|
103
|
+
*/
|
|
104
|
+
expand?: Array<string>;
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* The gift card to list transactions for.
|
|
108
|
+
*/
|
|
109
|
+
gift_card?: string;
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* A string that identifies this transaction as part of a group. See the [Connect documentation](https://stripe.com/docs/connect/separate-charges-and-transfers) for details.
|
|
113
|
+
*/
|
|
114
|
+
transfer_group?: string;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
interface TransactionCancelParams {
|
|
118
|
+
/**
|
|
119
|
+
* Specifies which fields in the response should be expanded.
|
|
120
|
+
*/
|
|
121
|
+
expand?: Array<string>;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
interface TransactionConfirmParams {
|
|
125
|
+
/**
|
|
126
|
+
* Specifies which fields in the response should be expanded.
|
|
127
|
+
*/
|
|
128
|
+
expand?: Array<string>;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
class TransactionsResource {
|
|
132
|
+
/**
|
|
133
|
+
* Create a gift card transaction
|
|
134
|
+
*/
|
|
135
|
+
create(
|
|
136
|
+
params: TransactionCreateParams,
|
|
137
|
+
options?: RequestOptions
|
|
138
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Retrieves the gift card transaction.
|
|
142
|
+
*/
|
|
143
|
+
retrieve(
|
|
144
|
+
id: string,
|
|
145
|
+
params?: TransactionRetrieveParams,
|
|
146
|
+
options?: RequestOptions
|
|
147
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
148
|
+
retrieve(
|
|
149
|
+
id: string,
|
|
150
|
+
options?: RequestOptions
|
|
151
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Update a gift card transaction
|
|
155
|
+
*/
|
|
156
|
+
update(
|
|
157
|
+
id: string,
|
|
158
|
+
params?: TransactionUpdateParams,
|
|
159
|
+
options?: RequestOptions
|
|
160
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* List gift card transactions for a gift card
|
|
164
|
+
*/
|
|
165
|
+
list(
|
|
166
|
+
params?: TransactionListParams,
|
|
167
|
+
options?: RequestOptions
|
|
168
|
+
): ApiListPromise<Stripe.GiftCards.Transaction>;
|
|
169
|
+
list(
|
|
170
|
+
options?: RequestOptions
|
|
171
|
+
): ApiListPromise<Stripe.GiftCards.Transaction>;
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* Cancel a gift card transaction
|
|
175
|
+
*/
|
|
176
|
+
cancel(
|
|
177
|
+
id: string,
|
|
178
|
+
params?: TransactionCancelParams,
|
|
179
|
+
options?: RequestOptions
|
|
180
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
181
|
+
cancel(
|
|
182
|
+
id: string,
|
|
183
|
+
options?: RequestOptions
|
|
184
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* Confirm a gift card transaction
|
|
188
|
+
*/
|
|
189
|
+
confirm(
|
|
190
|
+
id: string,
|
|
191
|
+
params?: TransactionConfirmParams,
|
|
192
|
+
options?: RequestOptions
|
|
193
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
194
|
+
confirm(
|
|
195
|
+
id: string,
|
|
196
|
+
options?: RequestOptions
|
|
197
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
package/types/InvoiceItems.d.ts
CHANGED
|
@@ -96,6 +96,11 @@ declare module 'stripe' {
|
|
|
96
96
|
*/
|
|
97
97
|
livemode: boolean;
|
|
98
98
|
|
|
99
|
+
/**
|
|
100
|
+
* The margins which apply to the invoice item. When set, the `default_margins` on the invoice do not apply to this invoice item.
|
|
101
|
+
*/
|
|
102
|
+
margins?: Array<string | Stripe.Margin> | null;
|
|
103
|
+
|
|
99
104
|
/**
|
|
100
105
|
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
|
|
101
106
|
*/
|
|
@@ -43,6 +43,11 @@ declare module 'stripe' {
|
|
|
43
43
|
*/
|
|
44
44
|
invoice?: string;
|
|
45
45
|
|
|
46
|
+
/**
|
|
47
|
+
* The ids of the margins to apply to the invoice item. When set, the `default_margins` on the invoice do not apply to this invoice item.
|
|
48
|
+
*/
|
|
49
|
+
margins?: Array<string>;
|
|
50
|
+
|
|
46
51
|
/**
|
|
47
52
|
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
|
|
48
53
|
*/
|
|
@@ -111,12 +116,56 @@ declare module 'stripe' {
|
|
|
111
116
|
*/
|
|
112
117
|
discount?: string;
|
|
113
118
|
|
|
119
|
+
/**
|
|
120
|
+
* Details to determine how long the discount should be applied for.
|
|
121
|
+
*/
|
|
122
|
+
discount_end?: Discount.DiscountEnd;
|
|
123
|
+
|
|
114
124
|
/**
|
|
115
125
|
* ID of the promotion code to create a new discount for.
|
|
116
126
|
*/
|
|
117
127
|
promotion_code?: string;
|
|
118
128
|
}
|
|
119
129
|
|
|
130
|
+
namespace Discount {
|
|
131
|
+
interface DiscountEnd {
|
|
132
|
+
/**
|
|
133
|
+
* Time span for the redeemed discount.
|
|
134
|
+
*/
|
|
135
|
+
duration?: DiscountEnd.Duration;
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* A precise Unix timestamp for the discount to end. Must be in the future.
|
|
139
|
+
*/
|
|
140
|
+
timestamp?: number;
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* The type of calculation made to determine when the discount ends.
|
|
144
|
+
*/
|
|
145
|
+
type: DiscountEnd.Type;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
namespace DiscountEnd {
|
|
149
|
+
interface Duration {
|
|
150
|
+
/**
|
|
151
|
+
* Specifies a type of interval unit. Either `day`, `week`, `month` or `year`.
|
|
152
|
+
*/
|
|
153
|
+
interval: Duration.Interval;
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* The number of intervals, as an whole number greater than 0. Stripe multiplies this by the interval type to get the overall duration.
|
|
157
|
+
*/
|
|
158
|
+
interval_count: number;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
namespace Duration {
|
|
162
|
+
type Interval = 'day' | 'month' | 'week' | 'year';
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
type Type = 'duration' | 'timestamp';
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
120
169
|
interface Period {
|
|
121
170
|
/**
|
|
122
171
|
* The end of the period, which must be greater than or equal to the start. This value is inclusive.
|
|
@@ -196,6 +245,11 @@ declare module 'stripe' {
|
|
|
196
245
|
*/
|
|
197
246
|
expand?: Array<string>;
|
|
198
247
|
|
|
248
|
+
/**
|
|
249
|
+
* The ids of the margins to apply to the invoice item. When set, the `default_margins` on the invoice do not apply to this invoice item.
|
|
250
|
+
*/
|
|
251
|
+
margins?: Stripe.Emptyable<Array<string>>;
|
|
252
|
+
|
|
199
253
|
/**
|
|
200
254
|
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
|
|
201
255
|
*/
|
|
@@ -259,12 +313,56 @@ declare module 'stripe' {
|
|
|
259
313
|
*/
|
|
260
314
|
discount?: string;
|
|
261
315
|
|
|
316
|
+
/**
|
|
317
|
+
* Details to determine how long the discount should be applied for.
|
|
318
|
+
*/
|
|
319
|
+
discount_end?: Discount.DiscountEnd;
|
|
320
|
+
|
|
262
321
|
/**
|
|
263
322
|
* ID of the promotion code to create a new discount for.
|
|
264
323
|
*/
|
|
265
324
|
promotion_code?: string;
|
|
266
325
|
}
|
|
267
326
|
|
|
327
|
+
namespace Discount {
|
|
328
|
+
interface DiscountEnd {
|
|
329
|
+
/**
|
|
330
|
+
* Time span for the redeemed discount.
|
|
331
|
+
*/
|
|
332
|
+
duration?: DiscountEnd.Duration;
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* A precise Unix timestamp for the discount to end. Must be in the future.
|
|
336
|
+
*/
|
|
337
|
+
timestamp?: number;
|
|
338
|
+
|
|
339
|
+
/**
|
|
340
|
+
* The type of calculation made to determine when the discount ends.
|
|
341
|
+
*/
|
|
342
|
+
type: DiscountEnd.Type;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
namespace DiscountEnd {
|
|
346
|
+
interface Duration {
|
|
347
|
+
/**
|
|
348
|
+
* Specifies a type of interval unit. Either `day`, `week`, `month` or `year`.
|
|
349
|
+
*/
|
|
350
|
+
interval: Duration.Interval;
|
|
351
|
+
|
|
352
|
+
/**
|
|
353
|
+
* The number of intervals, as an whole number greater than 0. Stripe multiplies this by the interval type to get the overall duration.
|
|
354
|
+
*/
|
|
355
|
+
interval_count: number;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
namespace Duration {
|
|
359
|
+
type Interval = 'day' | 'month' | 'week' | 'year';
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
type Type = 'duration' | 'timestamp';
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
268
366
|
interface Period {
|
|
269
367
|
/**
|
|
270
368
|
* The end of the period, which must be greater than or equal to the start. This value is inclusive.
|
|
@@ -66,6 +66,16 @@ declare module 'stripe' {
|
|
|
66
66
|
*/
|
|
67
67
|
livemode: boolean;
|
|
68
68
|
|
|
69
|
+
/**
|
|
70
|
+
* The amount of margin calculated per margin for this line item.
|
|
71
|
+
*/
|
|
72
|
+
margin_amounts?: Array<InvoiceLineItem.MarginAmount> | null;
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* The margins applied to the line item. When set, the `default_margins` on the invoice do not apply to the line item. Use `expand[]=margins` to expand each margin.
|
|
76
|
+
*/
|
|
77
|
+
margins?: Array<string | Stripe.Margin> | null;
|
|
78
|
+
|
|
69
79
|
/**
|
|
70
80
|
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Note that for line items with `type=subscription`, `metadata` reflects the current metadata from the subscription associated with the line item, unless the invoice line was directly updated with different metadata after creation.
|
|
71
81
|
*/
|
|
@@ -142,6 +152,18 @@ declare module 'stripe' {
|
|
|
142
152
|
discount: string | Stripe.Discount | Stripe.DeletedDiscount;
|
|
143
153
|
}
|
|
144
154
|
|
|
155
|
+
interface MarginAmount {
|
|
156
|
+
/**
|
|
157
|
+
* The amount, in cents (or local equivalent), of the reduction in line item amount.
|
|
158
|
+
*/
|
|
159
|
+
amount: number;
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* The margin that was applied to get this margin amount.
|
|
163
|
+
*/
|
|
164
|
+
margin: string | Stripe.Margin;
|
|
165
|
+
}
|
|
166
|
+
|
|
145
167
|
interface Period {
|
|
146
168
|
/**
|
|
147
169
|
* The end of the period, which must be greater than or equal to the start. This value is inclusive.
|