Skip to content

Commit

Permalink
Codegen for openapi edc4cae (#1133)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardm-stripe committed Mar 25, 2021
1 parent 5ae7d2a commit 5bffe16
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
5 changes: 4 additions & 1 deletion types/2020-08-27/Accounts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,10 @@ declare module 'stripe' {
| 'verification_failed_name_match'
| 'verification_failed_other'
| 'verification_failed_tax_id_match'
| 'verification_failed_tax_id_not_issued';
| 'verification_failed_tax_id_not_issued'
| 'verification_missing_executives'
| 'verification_missing_owners'
| 'verification_requires_additional_memorandum_of_associations';
}
}

Expand Down
5 changes: 4 additions & 1 deletion types/2020-08-27/Capabilities.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,10 @@ declare module 'stripe' {
| 'verification_failed_name_match'
| 'verification_failed_other'
| 'verification_failed_tax_id_match'
| 'verification_failed_tax_id_not_issued';
| 'verification_failed_tax_id_not_issued'
| 'verification_missing_executives'
| 'verification_missing_owners'
| 'verification_requires_additional_memorandum_of_associations';
}
}

Expand Down
4 changes: 3 additions & 1 deletion types/2020-08-27/Checkout/Sessions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ declare module 'stripe' {
| 'sk'
| 'sl'
| 'sv'
| 'th'
| 'tr'
| 'zh'
| 'zh-HK'
Expand Down Expand Up @@ -560,7 +561,7 @@ declare module 'stripe' {
/**
* This is the sum of all the line item shipping amounts.
*/
amount_shipping?: number | null;
amount_shipping: number | null;

/**
* This is the sum of all the line item tax amounts.
Expand Down Expand Up @@ -946,6 +947,7 @@ declare module 'stripe' {
| 'sk'
| 'sl'
| 'sv'
| 'th'
| 'tr'
| 'zh'
| 'zh-HK'
Expand Down
5 changes: 4 additions & 1 deletion types/2020-08-27/Persons.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,10 @@ declare module 'stripe' {
| 'verification_failed_name_match'
| 'verification_failed_other'
| 'verification_failed_tax_id_match'
| 'verification_failed_tax_id_not_issued';
| 'verification_failed_tax_id_not_issued'
| 'verification_missing_executives'
| 'verification_missing_owners'
| 'verification_requires_additional_memorandum_of_associations';
}
}

Expand Down

0 comments on commit 5bffe16

Please sign in to comment.