Skip to content

Commit 2dd9154

Browse files
Update generated code for v1374
1 parent bb394f1 commit 2dd9154

File tree

4 files changed

+33
-2
lines changed

4 files changed

+33
-2
lines changed

OPENAPI_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1373
1+
v1374

test/resources/generated_examples_test.spec.js

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

types/Accounts.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,11 @@ declare module 'stripe' {
249249
*/
250250
au_becs_debit_payments?: Capabilities.AuBecsDebitPayments;
251251

252+
/**
253+
* The status of the automatic_indirect_tax capability of the account.
254+
*/
255+
automatic_indirect_tax?: Capabilities.AutomaticIndirectTax;
256+
252257
/**
253258
* The status of the Bacs Direct Debits payments capability of the account, or whether the account can directly process Bacs Direct Debits charges.
254259
*/
@@ -558,6 +563,8 @@ declare module 'stripe' {
558563

559564
type AuBecsDebitPayments = 'active' | 'inactive' | 'pending';
560565

566+
type AutomaticIndirectTax = 'active' | 'inactive' | 'pending';
567+
561568
type BacsDebitPayments = 'active' | 'inactive' | 'pending';
562569

563570
type BancontactPayments = 'active' | 'inactive' | 'pending';

types/AccountsResource.d.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,11 @@ declare module 'stripe' {
234234
*/
235235
au_becs_debit_payments?: Capabilities.AuBecsDebitPayments;
236236

237+
/**
238+
* The automatic_indirect_tax capability.
239+
*/
240+
automatic_indirect_tax?: Capabilities.AutomaticIndirectTax;
241+
237242
/**
238243
* The bacs_debit_payments capability.
239244
*/
@@ -573,6 +578,13 @@ declare module 'stripe' {
573578
requested?: boolean;
574579
}
575580

581+
interface AutomaticIndirectTax {
582+
/**
583+
* Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
584+
*/
585+
requested?: boolean;
586+
}
587+
576588
interface BacsDebitPayments {
577589
/**
578590
* Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
@@ -2180,6 +2192,11 @@ declare module 'stripe' {
21802192
*/
21812193
au_becs_debit_payments?: Capabilities.AuBecsDebitPayments;
21822194

2195+
/**
2196+
* The automatic_indirect_tax capability.
2197+
*/
2198+
automatic_indirect_tax?: Capabilities.AutomaticIndirectTax;
2199+
21832200
/**
21842201
* The bacs_debit_payments capability.
21852202
*/
@@ -2519,6 +2536,13 @@ declare module 'stripe' {
25192536
requested?: boolean;
25202537
}
25212538

2539+
interface AutomaticIndirectTax {
2540+
/**
2541+
* Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
2542+
*/
2543+
requested?: boolean;
2544+
}
2545+
25222546
interface BacsDebitPayments {
25232547
/**
25242548
* Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.

0 commit comments

Comments
 (0)