You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: types/AccountSessions.d.ts
+5-5
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ declare module 'stripe' {
84
84
/**
85
85
* Disables Stripe user authentication for this embedded component. This feature can only be false for accounts where you're responsible for collecting updated information when requirements are due or change, like custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
86
86
*/
87
-
disable_stripe_user_authentication?: boolean;
87
+
disable_stripe_user_authentication: boolean;
88
88
89
89
/**
90
90
* Whether to allow platforms to control bank account collection for their connected accounts. This feature can only be false for accounts where you're responsible for collecting updated information when requirements are due or change, like custom accounts. Otherwise, bank account collection is determined by compliance requirements. The default value for this feature is `true`.
@@ -107,7 +107,7 @@ declare module 'stripe' {
107
107
/**
108
108
* Disables Stripe user authentication for this embedded component. This feature can only be false for accounts where you're responsible for collecting updated information when requirements are due or change, like custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
109
109
*/
110
-
disable_stripe_user_authentication?: boolean;
110
+
disable_stripe_user_authentication: boolean;
111
111
112
112
/**
113
113
* Whether to allow platforms to control bank account collection for their connected accounts. This feature can only be false for accounts where you're responsible for collecting updated information when requirements are due or change, like custom accounts. Otherwise, bank account collection is determined by compliance requirements. The default value for this feature is `true`.
@@ -130,7 +130,7 @@ declare module 'stripe' {
130
130
/**
131
131
* Disables Stripe user authentication for this embedded component. This feature can only be false for accounts where you're responsible for collecting updated information when requirements are due or change, like custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
132
132
*/
133
-
disable_stripe_user_authentication?: boolean;
133
+
disable_stripe_user_authentication: boolean;
134
134
135
135
/**
136
136
* Whether to allow payout schedule to be changed. Default `true` when Stripe owns Loss Liability, default `false` otherwise.
@@ -181,7 +181,7 @@ declare module 'stripe' {
181
181
/**
182
182
* Disables Stripe user authentication for this embedded component. This feature can only be false for accounts where you're responsible for collecting updated information when requirements are due or change, like custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
183
183
*/
184
-
disable_stripe_user_authentication?: boolean;
184
+
disable_stripe_user_authentication: boolean;
185
185
186
186
/**
187
187
* Whether to allow platforms to control bank account collection for their connected accounts. This feature can only be false for accounts where you're responsible for collecting updated information when requirements are due or change, like custom accounts. Otherwise, bank account collection is determined by compliance requirements. The default value for this feature is `true`.
@@ -270,7 +270,7 @@ declare module 'stripe' {
270
270
/**
271
271
* Disables Stripe user authentication for this embedded component. This feature can only be false for accounts where you're responsible for collecting updated information when requirements are due or change, like custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
272
272
*/
273
-
disable_stripe_user_authentication?: boolean;
273
+
disable_stripe_user_authentication: boolean;
274
274
275
275
/**
276
276
* Whether to allow payout schedule to be changed. Default `true` when Stripe owns Loss Liability, default `false` otherwise.
* Fields that are `currently_due` and need to be collected again because validation or verification failed.
@@ -947,6 +947,23 @@ declare module 'stripe' {
947
947
original_fields_due: Array<string>;
948
948
}
949
949
950
+
typeDisabledReason=
951
+
|'action_required.requested_capabilities'
952
+
|'listed'
953
+
|'other'
954
+
|'platform_paused'
955
+
|'rejected.fraud'
956
+
|'rejected.incomplete_verification'
957
+
|'rejected.listed'
958
+
|'rejected.other'
959
+
|'rejected.platform_fraud'
960
+
|'rejected.platform_other'
961
+
|'rejected.platform_terms_of_service'
962
+
|'rejected.terms_of_service'
963
+
|'requirements.past_due'
964
+
|'requirements.pending_verification'
965
+
|'under_review';
966
+
950
967
interfaceError{
951
968
/**
952
969
* The code for the type of error.
@@ -1083,9 +1100,9 @@ declare module 'stripe' {
1083
1100
currently_due: Array<string>|null;
1084
1101
1085
1102
/**
1086
-
* If the account is disabled, this string describes why. [Learn more about handling verification issues](https://stripe.com/docs/connect/handling-api-verification). Can be `action_required.requested_capabilities`, `requirements.past_due`, `requirements.pending_verification`, `listed`, `platform_paused`, `rejected.fraud`, `rejected.incomplete_verification`, `rejected.listed`, `rejected.other`, `rejected.terms_of_service`, `under_review`, or `other`.
1103
+
* If the account is disabled, this enum describes why. [Learn more about handling verification issues](https://stripe.com/docs/connect/handling-api-verification).
Copy file name to clipboardexpand all lines: types/AccountsResource.d.ts
+15
Original file line number
Diff line number
Diff line change
@@ -3637,6 +3637,11 @@ declare module 'stripe' {
3637
3637
}
3638
3638
3639
3639
interfaceRelationship{
3640
+
/**
3641
+
* Whether the person is the authorizer of the account's representative.
3642
+
*/
3643
+
authorizer?: boolean;
3644
+
3640
3645
/**
3641
3646
* Whether the person is a director of the account's legal entity. Directors are typically members of the governing board of the company, or responsible for ensuring the company meets its regulatory obligations.
3642
3647
*/
@@ -3753,6 +3758,11 @@ declare module 'stripe' {
3753
3758
3754
3759
namespaceAccountListPersonsParams{
3755
3760
interfaceRelationship{
3761
+
/**
3762
+
* A filter on the list of people returned based on whether these people are authorizers of the account's representative.
3763
+
*/
3764
+
authorizer?: boolean;
3765
+
3756
3766
/**
3757
3767
* A filter on the list of people returned based on whether these people are directors of the account's company.
3758
3768
*/
@@ -4167,6 +4177,11 @@ declare module 'stripe' {
4167
4177
}
4168
4178
4169
4179
interfaceRelationship{
4180
+
/**
4181
+
* Whether the person is the authorizer of the account's representative.
4182
+
*/
4183
+
authorizer?: boolean;
4184
+
4170
4185
/**
4171
4186
* Whether the person is a director of the account's legal entity. Directors are typically members of the governing board of the company, or responsible for ensuring the company meets its regulatory obligations.
* The time when the billing credits become effective i.e when they are eligible to be used.
42
+
* The time when the billing credits become effective—when they're eligible for use.
44
43
*/
45
44
effective_at: number|null;
46
45
47
46
/**
48
-
* The time when the billing credits will expire. If not present, the billing credits will never expire.
47
+
* The time when the billing credits expire. If not present, the billing credits don't expire.
49
48
*/
50
49
expires_at: number|null;
51
50
@@ -114,7 +113,7 @@ declare module 'stripe' {
114
113
namespaceApplicabilityConfig{
115
114
interfaceScope{
116
115
/**
117
-
* The price type to which credit grants can apply to. We currently only support `metered` price type. This refers to prices that have a [Billing Meter](https://docs.stripe.com/api/billing/meter) attached to them.
116
+
* The price type for which credit grants can apply. We currently only support the `metered` price type. This refers to prices that have a [Billing Meter](https://docs.stripe.com/api/billing/meter) attached to them.
Copy file name to clipboardexpand all lines: types/Billing/CreditGrantsResource.d.ts
+11-11
Original file line number
Diff line number
Diff line change
@@ -20,12 +20,12 @@ declare module 'stripe' {
20
20
category: CreditGrantCreateParams.Category;
21
21
22
22
/**
23
-
* ID of the customer to whom the billing credits should be granted.
23
+
* ID of the customer to receive the billing credits.
24
24
*/
25
25
customer: string;
26
26
27
27
/**
28
-
* The time when the billing credits become effective i.e when they are eligible to be used. Defaults to the current timestamp if not specified.
28
+
* The time when the billing credits become effective—when they're eligible for use. Defaults to the current timestamp if not specified.
29
29
*/
30
30
effective_at?: number;
31
31
@@ -35,17 +35,17 @@ declare module 'stripe' {
35
35
expand?: Array<string>;
36
36
37
37
/**
38
-
* The time when the billing credits will expire. If not specified, the billing credits will never expire.
38
+
* The time when the billing credits will expire. If not specified, the billing credits don't expire.
39
39
*/
40
40
expires_at?: number;
41
41
42
42
/**
43
-
* Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object (ex: cost basis) in a structured format.
43
+
* Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object (for example, cost basis) in a structured format.
44
44
*/
45
45
metadata?: Stripe.MetadataParam;
46
46
47
47
/**
48
-
* A descriptive name shown in dashboard.
48
+
* A descriptive name shown in the Dashboard.
49
49
*/
50
50
name?: string;
51
51
}
@@ -87,7 +87,7 @@ declare module 'stripe' {
87
87
namespaceApplicabilityConfig{
88
88
interfaceScope{
89
89
/**
90
-
* The price type to which credit grants can apply to. We currently only support `metered` price type.
90
+
* The price type for which credit grants can apply. We currently only support the `metered` price type.
91
91
*/
92
92
price_type: 'metered';
93
93
}
@@ -110,12 +110,12 @@ declare module 'stripe' {
110
110
expand?: Array<string>;
111
111
112
112
/**
113
-
* The time when the billing credits created by this credit grant will expire. If set to empty, the billing credits will never expire.
113
+
* The time when the billing credits created by this credit grant expire. If set to empty, the billing credits never expire.
114
114
*/
115
115
expires_at?: Stripe.Emptyable<number>;
116
116
117
117
/**
118
-
* Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object (ex: cost basis) in a structured format.
118
+
* Set of key-value pairs you can attach to an object. This can be useful for storing additional information about the object (for example, cost basis) in a structured format.
Copy file name to clipboardexpand all lines: types/Billing/MeterEventsResource.d.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ declare module 'stripe' {
22
22
expand?: Array<string>;
23
23
24
24
/**
25
-
* A unique identifier for the event. If not provided, one will be generated. We recommend using a globally unique identifier for this. We'll enforce uniqueness within a rolling 24 hour period.
25
+
* A unique identifier for the event. If not provided, one will be generated. We strongly advise using UUID-like identifiers. We will enforce uniqueness within a rolling period of at least 24 hours. The enforcement of uniqueness primarily addresses issues arising from accidental retries or other problems occurring within extremely brief time intervals. This approach helps prevent duplicate entries and ensures data integrity in high-frequency operations.
Copy file name to clipboardexpand all lines: types/Charges.d.ts
+5-5
Original file line number
Diff line number
Diff line change
@@ -725,7 +725,7 @@ declare module 'stripe' {
725
725
authorization_code: string|null;
726
726
727
727
/**
728
-
* Card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
728
+
* Card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `link`, `mastercard`, `unionpay`, `visa`, or `unknown`.
729
729
*/
730
730
brand: string|null;
731
731
@@ -810,7 +810,7 @@ declare module 'stripe' {
810
810
multicapture?: Card.Multicapture;
811
811
812
812
/**
813
-
* Identifies which network this charge was processed on. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `eftpos_au`, `interac`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
813
+
* Identifies which network this charge was processed on. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `eftpos_au`, `interac`, `jcb`, `link`, `mastercard`, `unionpay`, `visa`, or `unknown`.
814
814
*/
815
815
network: string|null;
816
816
@@ -1106,7 +1106,7 @@ declare module 'stripe' {
1106
1106
amount_authorized: number|null;
1107
1107
1108
1108
/**
1109
-
* Card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
1109
+
* Card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `link`, `mastercard`, `unionpay`, `visa`, or `unknown`.
1110
1110
*/
1111
1111
brand: string|null;
1112
1112
@@ -1188,7 +1188,7 @@ declare module 'stripe' {
1188
1188
last4: string|null;
1189
1189
1190
1190
/**
1191
-
* Identifies which network this charge was processed on. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `eftpos_au`, `interac`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
1191
+
* Identifies which network this charge was processed on. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `eftpos_au`, `interac`, `jcb`, `link`, `mastercard`, `unionpay`, `visa`, or `unknown`.
1192
1192
*/
1193
1193
network: string|null;
1194
1194
@@ -1585,7 +1585,7 @@ declare module 'stripe' {
1585
1585
last4: string|null;
1586
1586
1587
1587
/**
1588
-
* Identifies which network this charge was processed on. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `eftpos_au`, `interac`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
1588
+
* Identifies which network this charge was processed on. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `eftpos_au`, `interac`, `jcb`, `link`, `mastercard`, `unionpay`, `visa`, or `unknown`.
0 commit comments