stripe 14.2.0 → 14.3.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 +486 -109
- package/README.md +33 -0
- package/VERSION +1 -1
- package/cjs/RequestSender.js +65 -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/ConfirmationTokens.js +12 -0
- package/cjs/resources/CustomerSessions.js +9 -0
- package/cjs/resources/FinancialConnections/Accounts.js +13 -0
- package/cjs/resources/FinancialConnections/Transactions.js +13 -0
- package/cjs/resources/GiftCards/Cards.js +23 -0
- package/cjs/resources/GiftCards/Transactions.js +33 -0
- package/cjs/resources/Issuing/CreditUnderwritingRecords.js +33 -0
- package/cjs/resources/Issuing/PersonalizationDesigns.js +25 -0
- package/cjs/resources/Issuing/PhysicalBundles.js +17 -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/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/Tax/Registrations.js +18 -0
- package/cjs/resources/Terminal/Readers.js +12 -0
- package/cjs/resources/TestHelpers/Issuing/PersonalizationDesigns.js +20 -0
- package/cjs/resources.js +50 -10
- package/cjs/stripe.core.js +6 -3
- package/cjs/utils.js +30 -3
- package/esm/RequestSender.js +66 -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/ConfirmationTokens.js +9 -0
- package/esm/resources/CustomerSessions.js +6 -0
- package/esm/resources/FinancialConnections/Accounts.js +13 -0
- package/esm/resources/FinancialConnections/Transactions.js +10 -0
- package/esm/resources/GiftCards/Cards.js +20 -0
- package/esm/resources/GiftCards/Transactions.js +30 -0
- package/esm/resources/Issuing/CreditUnderwritingRecords.js +30 -0
- package/esm/resources/Issuing/PersonalizationDesigns.js +22 -0
- package/esm/resources/Issuing/PhysicalBundles.js +14 -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/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/Tax/Registrations.js +15 -0
- package/esm/resources/Terminal/Readers.js +12 -0
- package/esm/resources/TestHelpers/Issuing/PersonalizationDesigns.js +17 -0
- package/esm/resources.js +34 -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 +75 -0
- package/types/AccountSessionsResource.d.ts +102 -0
- package/types/Accounts.d.ts +48 -0
- package/types/AccountsResource.d.ts +95 -0
- package/types/Capital/FinancingOffers.d.ts +183 -0
- package/types/Capital/FinancingOffersResource.d.ts +94 -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 +26 -0
- package/types/ChargesResource.d.ts +580 -0
- package/types/Checkout/Sessions.d.ts +62 -1
- package/types/Checkout/SessionsResource.d.ts +91 -1
- package/types/ConfirmationTokens.d.ts +1159 -0
- package/types/ConfirmationTokensResource.d.ts +27 -0
- package/types/Coupons.d.ts +1 -1
- package/types/CouponsResource.d.ts +1 -1
- package/types/CustomerSessions.d.ts +38 -0
- package/types/CustomerSessionsResource.d.ts +27 -0
- package/types/Discounts.d.ts +10 -0
- package/types/EventTypes.d.ts +438 -0
- package/types/Events.d.ts +87 -0
- package/types/FinancialConnections/AccountInferredBalances.d.ts +38 -0
- package/types/FinancialConnections/Accounts.d.ts +74 -0
- package/types/FinancialConnections/AccountsResource.d.ts +75 -1
- package/types/FinancialConnections/Sessions.d.ts +44 -1
- package/types/FinancialConnections/SessionsResource.d.ts +33 -1
- package/types/FinancialConnections/Transactions.d.ts +85 -0
- package/types/FinancialConnections/TransactionsResource.d.ts +48 -0
- package/types/FundingInstructions.d.ts +60 -2
- 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/Invoices.d.ts +103 -2
- package/types/InvoicesResource.d.ts +620 -2
- package/types/Issuing/Authorizations.d.ts +25 -0
- package/types/Issuing/CardholdersResource.d.ts +4 -2
- package/types/Issuing/Cards.d.ts +42 -0
- package/types/Issuing/CardsResource.d.ts +134 -0
- package/types/Issuing/CreditUnderwritingRecords.d.ts +427 -0
- package/types/Issuing/CreditUnderwritingRecordsResource.d.ts +979 -0
- package/types/Issuing/PersonalizationDesigns.d.ts +132 -0
- package/types/Issuing/PersonalizationDesignsResource.d.ts +253 -0
- package/types/Issuing/PhysicalBundles.d.ts +68 -0
- package/types/Issuing/PhysicalBundlesResource.d.ts +63 -0
- package/types/Issuing/Transactions.d.ts +17 -0
- package/types/LineItems.d.ts +7 -0
- package/types/Mandates.d.ts +11 -0
- package/types/Margins.d.ts +56 -0
- package/types/MarginsResource.d.ts +114 -0
- package/types/Orders.d.ts +1049 -0
- package/types/OrdersResource.d.ts +2691 -0
- package/types/PaymentIntents.d.ts +246 -3
- package/types/PaymentIntentsResource.d.ts +1438 -59
- package/types/PaymentLinks.d.ts +76 -0
- package/types/PaymentLinksResource.d.ts +152 -0
- package/types/PaymentMethods.d.ts +16 -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 +580 -0
- package/types/QuotePhases.d.ts +193 -0
- package/types/QuotePhasesResource.d.ts +67 -0
- package/types/QuotePreviewInvoices.d.ts +1441 -0
- package/types/QuotePreviewSubscriptionSchedules.d.ts +752 -0
- package/types/Quotes.d.ts +580 -1
- package/types/QuotesResource.d.ts +3124 -215
- package/types/SetupAttempts.d.ts +4 -0
- package/types/SetupIntents.d.ts +34 -1
- package/types/SetupIntentsResource.d.ts +104 -3
- package/types/Sources.d.ts +23 -0
- package/types/SubscriptionItems.d.ts +23 -0
- package/types/SubscriptionItemsResource.d.ts +147 -0
- package/types/SubscriptionSchedules.d.ts +306 -0
- package/types/SubscriptionSchedulesResource.d.ts +1540 -61
- package/types/Subscriptions.d.ts +76 -2
- package/types/SubscriptionsResource.d.ts +549 -2
- package/types/Tax/Forms.d.ts +133 -0
- package/types/Tax/FormsResource.d.ts +90 -0
- package/types/Tax/Registrations.d.ts +1010 -0
- package/types/Tax/RegistrationsResource.d.ts +1284 -0
- package/types/Terminal/Readers.d.ts +183 -0
- package/types/Terminal/ReadersResource.d.ts +171 -0
- package/types/TestHelpers/Issuing/AuthorizationsResource.d.ts +22 -0
- package/types/TestHelpers/Issuing/PersonalizationDesignsResource.d.ts +113 -0
- package/types/TestHelpers/Issuing/TransactionsResource.d.ts +4 -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 +58 -0
- package/types/index.d.ts +80 -0
- package/types/lib.d.ts +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 14.3.0-beta.1 - 2023-10-26
|
|
4
|
+
* [#1938](https://github.com/stripe/stripe-node/pull/1938) Update generated code for beta
|
|
5
|
+
* Add support for new resource `Margin`
|
|
6
|
+
* Add support for `create`, `list`, `retrieve`, and `update` methods on resource `Margin`
|
|
7
|
+
* Add support for `subsellers` on `Checkout.SessionCreateParams.payment_method_options.paypal`, `Order.payment.settings.payment_method_options.paypal`, `OrderCreateParams.payment.settings.payment_method_options.paypal`, `OrderUpdateParams.payment.settings.payment_method_options.paypal`, `PaymentIntent.payment_method_options.paypal`, `PaymentIntentConfirmParams.payment_method_options.paypal`, `PaymentIntentCreateParams.payment_method_options.paypal`, `PaymentIntentUpdateParams.payment_method_options.paypal`, `SetupIntent.payment_method_options.paypal`, `SetupIntentConfirmParams.payment_method_options.paypal`, `SetupIntentCreateParams.payment_method_options.paypal`, and `SetupIntentUpdateParams.payment_method_options.paypal`
|
|
8
|
+
* Add support for `default_margins` on `InvoiceCreateParams`, `InvoiceUpdateParams`, and `Invoice`
|
|
9
|
+
* Add support for `total_margin_amounts` on `Invoice`
|
|
10
|
+
* Add support for `margins` on `InvoiceItemCreateParams`, `InvoiceItemUpdateParams`, and `InvoiceItem`
|
|
11
|
+
* Add support for new values `applicant_is_not_beneficial_owner`, `current_account_tier_ineligible`, `customer_requested_account_closure`, `dispute_rate_too_high`, and `invalid_business_license` on enums `Issuing.CreditUnderwritingRecord.decision.credit_limit_decreased.reasons[]`, `Issuing.CreditUnderwritingRecord.decision.credit_line_closed.reasons[]`, `Issuing.CreditUnderwritingRecordCorrectParams.decision.credit_limit_decreased.reasons[]`, `Issuing.CreditUnderwritingRecordCorrectParams.decision.credit_line_closed.reasons[]`, `Issuing.CreditUnderwritingRecordCreateFromProactiveReviewParams.decision.credit_limit_decreased.reasons[]`, and `Issuing.CreditUnderwritingRecordCreateFromProactiveReviewParams.decision.credit_line_closed.reasons[]`
|
|
12
|
+
* Add support for new values `applicant_is_not_beneficial_owner`, `current_account_tier_ineligible`, `customer_requested_account_closure`, `dispute_rate_too_high`, and `invalid_business_license` on enums `Issuing.CreditUnderwritingRecord.decision.application_rejected.reasons[]`, `Issuing.CreditUnderwritingRecordCorrectParams.decision.application_rejected.reasons[]`, and `Issuing.CreditUnderwritingRecordReportDecisionParams.decision.application_rejected.reasons[]`
|
|
13
|
+
* Remove support for values `change_in_financial_state`, `change_in_utilization_of_credit_line`, `decrease_in_income_to_expense_ratio`, `decrease_in_social_media_performance`, `exceeds_acceptable_platform_exposure`, `has_recent_credit_limit_increase`, `insufficient_credit_utilization`, `insufficient_usage_as_qualified_expenses`, and `poor_payment_history_with_platform` from enums `Issuing.CreditUnderwritingRecord.decision.application_rejected.reasons[]`, `Issuing.CreditUnderwritingRecordCorrectParams.decision.application_rejected.reasons[]`, and `Issuing.CreditUnderwritingRecordReportDecisionParams.decision.application_rejected.reasons[]`
|
|
14
|
+
* Add support for `is_default` on `Issuing.PersonalizationDesign.preferences`, `Issuing.PersonalizationDesignCreateParams.preferences`, `Issuing.PersonalizationDesignListParams.preferences`, and `Issuing.PersonalizationDesignUpdateParams.preferences`
|
|
15
|
+
* Add support for `is_platform_default` on `Issuing.PersonalizationDesign.preferences` and `Issuing.PersonalizationDesignListParams.preferences`
|
|
16
|
+
* Remove support for `account_default` on `Issuing.PersonalizationDesign.preferences`, `Issuing.PersonalizationDesignCreateParams.preferences`, `Issuing.PersonalizationDesignListParams.preferences`, and `Issuing.PersonalizationDesignUpdateParams.preferences`
|
|
17
|
+
* Remove support for `platform_default` on `Issuing.PersonalizationDesign.preferences` and `Issuing.PersonalizationDesignListParams.preferences`
|
|
18
|
+
* Add support for `liability` on `PaymentLink.automatic_tax`, `PaymentLinkCreateParams.automatic_tax`, and `PaymentLinkUpdateParams.automatic_tax`
|
|
19
|
+
* Add support for `issuer` on `PaymentLink.invoice_creation.invoice_data`, `PaymentLinkCreateParams.invoice_creation.invoice_data`, and `PaymentLinkUpdateParams.invoice_creation.invoice_data`
|
|
20
|
+
* Add support for `invoice_settings` on `PaymentLink.subscription_data`, `PaymentLinkCreateParams.subscription_data`, and `PaymentLinkUpdateParams.subscription_data`
|
|
21
|
+
* Add support for new value `accept_failed_validations` on enum `Quote.status_details.stale.last_reason.type`
|
|
22
|
+
|
|
3
23
|
## 14.2.0 - 2023-10-26
|
|
4
24
|
* [#1939](https://github.com/stripe/stripe-node/pull/1939) Update generated code
|
|
5
25
|
* Add support for new value `balance_invalid_parameter` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
|
|
6
26
|
* Change `Issuing.Cardholder.individual.card_issuing` to be optional
|
|
7
27
|
* [#1940](https://github.com/stripe/stripe-node/pull/1940) Do not require passing apiVersion
|
|
8
28
|
|
|
29
|
+
## 14.2.0-beta.1 - 2023-10-17
|
|
30
|
+
* [#1935](https://github.com/stripe/stripe-node/pull/1935) Update generated code for beta
|
|
31
|
+
* [#1930](https://github.com/stripe/stripe-node/pull/1930) Update generated code for beta
|
|
32
|
+
- Update pinned API version to `2023-10-16`
|
|
33
|
+
|
|
9
34
|
## 14.1.0 - 2023-10-17
|
|
10
35
|
* [#1933](https://github.com/stripe/stripe-node/pull/1933) Update generated code
|
|
11
36
|
* Add support for new value `invalid_dob_age_under_minimum` on enums `Account.future_requirements.errors[].code`, `Account.requirements.errors[].code`, `BankAccount.future_requirements.errors[].code`, and `BankAccount.requirements.errors[].code`
|
|
@@ -19,6 +44,9 @@
|
|
|
19
44
|
* Add support for `additional_tos_acceptances` on `TokenCreateParams.person`
|
|
20
45
|
* Add support for new value `2023-10-16` on enum `WebhookEndpointCreateParams.api_version`
|
|
21
46
|
|
|
47
|
+
## 13.12.0-beta.1 - 2023-10-16
|
|
48
|
+
* [#1925](https://github.com/stripe/stripe-node/pull/1925) Update generated code for beta
|
|
49
|
+
|
|
22
50
|
## 13.11.0 - 2023-10-16
|
|
23
51
|
* [#1924](https://github.com/stripe/stripe-node/pull/1924) Update generated code
|
|
24
52
|
* Add support for new values `issuing_token.created` and `issuing_token.updated` on enum `Event.type`
|
|
@@ -26,6 +54,17 @@
|
|
|
26
54
|
* [#1926](https://github.com/stripe/stripe-node/pull/1926) Add named unions for all polymorphic types
|
|
27
55
|
* [#1921](https://github.com/stripe/stripe-node/pull/1921) Add event types
|
|
28
56
|
|
|
57
|
+
## 13.11.0-beta.1 - 2023-10-11
|
|
58
|
+
* [#1919](https://github.com/stripe/stripe-node/pull/1919) Update generated code for beta
|
|
59
|
+
* Add support for new resources `AccountNotice` and `Issuing.CreditUnderwritingRecord`
|
|
60
|
+
* Add support for `list`, `retrieve`, and `update` methods on resource `AccountNotice`
|
|
61
|
+
* Add support for `correct`, `create_from_application`, `create_from_proactive_review`, `list`, `report_decision`, and `retrieve` methods on resource `CreditUnderwritingRecord`
|
|
62
|
+
* Change type of `Checkout.Session.automatic_tax.liability.account`, `Checkout.Session.invoice_creation.invoice_data.issuer.account`, `Invoice.automatic_tax.liability.account`, `Invoice.issuer.account`, `Quote.automatic_tax.liability.account`, `Quote.invoice_settings.issuer.account`, `Subscription.automatic_tax.liability.account`, `SubscriptionSchedule.default_settings.automatic_tax.liability.account`, `SubscriptionSchedule.default_settings.invoice_settings.issuer.account`, `SubscriptionSchedule.phases[].automatic_tax.liability.account`, and `SubscriptionSchedule.phases[].invoice_settings.issuer.account` from `expandable(Account) | null` to `expandable(Account)`
|
|
63
|
+
* Change `Checkout.Session.automatic_tax.liability.account`, `Checkout.Session.invoice_creation.invoice_data.issuer.account`, `Invoice.automatic_tax.liability.account`, `Invoice.issuer.account`, `Issuing.Transaction.network_data.processing_date`, `Quote.automatic_tax.liability.account`, `Quote.invoice_settings.issuer.account`, `Subscription.automatic_tax.liability.account`, `SubscriptionSchedule.default_settings.automatic_tax.liability.account`, `SubscriptionSchedule.default_settings.invoice_settings.issuer.account`, `SubscriptionSchedule.phases[].automatic_tax.liability.account`, and `SubscriptionSchedule.phases[].invoice_settings.issuer.account` to be optional
|
|
64
|
+
* Add support for new values `account_notice.created` and `account_notice.updated` on enum `Event.type`
|
|
65
|
+
* Add support for new values `local_amusement_tax` and `state_communications_tax` on enums `Tax.Registration.country_options.us.type` and `Tax.RegistrationCreateParams.country_options.us.type`
|
|
66
|
+
* Add support for new values `account_notice.created` and `account_notice.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
|
|
67
|
+
|
|
29
68
|
## 13.10.0 - 2023-10-11
|
|
30
69
|
* [#1920](https://github.com/stripe/stripe-node/pull/1920) Update generated code
|
|
31
70
|
* Add support for `redirect_on_completion`, `return_url`, and `ui_mode` on `Checkout.SessionCreateParams` and `Checkout.Session`
|
|
@@ -39,6 +78,16 @@
|
|
|
39
78
|
* Add support for `offline` on `Terminal.ConfigurationCreateParams`, `Terminal.ConfigurationUpdateParams`, and `Terminal.Configuration`
|
|
40
79
|
* [#1914](https://github.com/stripe/stripe-node/pull/1914) Bump get-func-name from 2.0.0 to 2.0.2
|
|
41
80
|
|
|
81
|
+
## 13.10.0-beta.1 - 2023-10-05
|
|
82
|
+
* [#1917](https://github.com/stripe/stripe-node/pull/1917) Update generated code for beta
|
|
83
|
+
* Add support for `mark_draft` and `mark_stale` methods on resource `Quote`
|
|
84
|
+
* Remove support for `draft_quote`, `mark_stale_quote`, and `preview_invoice_lines` methods on resource `Quote`
|
|
85
|
+
* Add support for `liability` on `Checkout.Session.automatic_tax` and `Checkout.SessionCreateParams.automatic_tax`
|
|
86
|
+
* Add support for `issuer` on `Checkout.Session.invoice_creation.invoice_data` and `Checkout.SessionCreateParams.invoice_creation.invoice_data`
|
|
87
|
+
* Add support for `invoice_settings` on `Checkout.SessionCreateParams.subscription_data`
|
|
88
|
+
* Add support for `personalization_design` on `Issuing.CardListParams`
|
|
89
|
+
* Add support for `allow_backdated_lines` on `QuoteCreateParams`, `QuoteUpdateParams`, and `Quote`
|
|
90
|
+
|
|
42
91
|
## 13.9.0 - 2023-10-05
|
|
43
92
|
* [#1916](https://github.com/stripe/stripe-node/pull/1916) Update generated code
|
|
44
93
|
* Add support for new resource `Issuing.Token`
|
|
@@ -53,15 +102,49 @@
|
|
|
53
102
|
* Add support for `statement_descriptor_suffix` and `statement_descriptor` on `PaymentLink.payment_intent_data` and `PaymentLinkCreateParams.payment_intent_data`
|
|
54
103
|
* Add support for `payment_intent_data` and `subscription_data` on `PaymentLinkUpdateParams`
|
|
55
104
|
|
|
105
|
+
## 13.9.0-beta.1 - 2023-09-28
|
|
106
|
+
* [#1910](https://github.com/stripe/stripe-node/pull/1910) Update generated code for beta
|
|
107
|
+
* Rename resources `Issuing.CardDesign` and `Issuing.CardBundle` to `Issuing.PersonalizationDesign` and `Issuing.PhysicalBundle`
|
|
108
|
+
* Add support for new values `capital_financing_offer` and `capital_financing_reporting` on enum `AccountLinkCreateParams.type`
|
|
109
|
+
* Add support for `features` on `AccountSession.components.payment_details`, `AccountSession.components.payments`, `AccountSession.components.payouts`, `AccountSessionCreateParams.components.account_onboarding`, `AccountSessionCreateParams.components.payment_details`, `AccountSessionCreateParams.components.payments`, and `AccountSessionCreateParams.components.payouts`
|
|
110
|
+
* Change `ConfirmationToken.payment_method_preview.us_bank_account.financial_connections_account` and `ConfirmationToken.payment_method_preview.us_bank_account.status_details` to be required
|
|
111
|
+
* Add support for `reason` on `Event`
|
|
112
|
+
|
|
56
113
|
## 13.8.0 - 2023-09-28
|
|
57
114
|
* [#1911](https://github.com/stripe/stripe-node/pull/1911) Update generated code
|
|
58
115
|
* Add support for `rendering` on `InvoiceCreateParams`, `InvoiceUpdateParams`, and `Invoice`
|
|
59
116
|
* Change `PaymentMethod.us_bank_account.financial_connections_account` and `PaymentMethod.us_bank_account.status_details` to be required
|
|
60
117
|
|
|
118
|
+
## 13.8.0-beta.1 - 2023-09-21
|
|
119
|
+
* [#1906](https://github.com/stripe/stripe-node/pull/1906) Update generated code for beta
|
|
120
|
+
* Remove support for `customer` on `ConfirmationToken`
|
|
121
|
+
* Add support for `issuer` on `InvoiceCreateParams`, `InvoiceUpcomingLinesParams`, `InvoiceUpcomingParams`, `InvoiceUpdateParams`, `Invoice`, `Quote.invoice_settings`, `QuoteCreateParams.invoice_settings`, `QuoteUpdateParams.invoice_settings`, `SubscriptionSchedule.default_settings.invoice_settings`, `SubscriptionSchedule.phases[].invoice_settings`, `SubscriptionScheduleCreateParams.default_settings.invoice_settings`, `SubscriptionScheduleCreateParams.phases[].invoice_settings`, `SubscriptionScheduleUpdateParams.default_settings.invoice_settings`, and `SubscriptionScheduleUpdateParams.phases[].invoice_settings`
|
|
122
|
+
* Add support for `on_behalf_of` on `InvoiceUpcomingLinesParams` and `InvoiceUpcomingParams`
|
|
123
|
+
* Add support for `liability` on `Invoice.automatic_tax`, `InvoiceCreateParams.automatic_tax`, `InvoiceUpcomingLinesParams.automatic_tax`, `InvoiceUpcomingParams.automatic_tax`, `InvoiceUpdateParams.automatic_tax`, `Quote.automatic_tax`, `QuoteCreateParams.automatic_tax`, `QuoteUpdateParams.automatic_tax`, `Subscription.automatic_tax`, `SubscriptionCreateParams.automatic_tax`, `SubscriptionSchedule.default_settings.automatic_tax`, `SubscriptionSchedule.phases[].automatic_tax`, `SubscriptionScheduleCreateParams.default_settings.automatic_tax`, `SubscriptionScheduleCreateParams.phases[].automatic_tax`, `SubscriptionScheduleUpdateParams.default_settings.automatic_tax`, `SubscriptionScheduleUpdateParams.phases[].automatic_tax`, and `SubscriptionUpdateParams.automatic_tax`
|
|
124
|
+
* Change type of `Issuing.CardDesignUpdateParams.carrier_text` from `carrier_text_param` to `emptyStringable(carrier_text_param)`
|
|
125
|
+
* Add support for `invoice_settings` on `SubscriptionCreateParams` and `SubscriptionUpdateParams`
|
|
126
|
+
|
|
61
127
|
## 13.7.0 - 2023-09-21
|
|
62
128
|
* [#1907](https://github.com/stripe/stripe-node/pull/1907) Update generated code
|
|
63
129
|
* Add support for `terms_of_service_acceptance` on `Checkout.Session.custom_text`, `Checkout.SessionCreateParams.custom_text`, `PaymentLink.custom_text`, `PaymentLinkCreateParams.custom_text`, and `PaymentLinkUpdateParams.custom_text`
|
|
64
130
|
|
|
131
|
+
## 13.7.0-beta.1 - 2023-09-14
|
|
132
|
+
* [#1900](https://github.com/stripe/stripe-node/pull/1900) Update generated code for beta
|
|
133
|
+
* Add support for new resource `ConfirmationToken`
|
|
134
|
+
* Add support for `retrieve` method on resource `ConfirmationToken`
|
|
135
|
+
* Add support for `create` method on resource `Issuing.CardDesign`
|
|
136
|
+
* Add support for `reject_testmode` test helper method on resource `Issuing.CardDesign`
|
|
137
|
+
* Add support for new value `issuing_card_design.rejected` on enum `Event.type`
|
|
138
|
+
* Add support for `features` on `Issuing.CardBundle`
|
|
139
|
+
* Add support for `preferences` on `Issuing.CardDesignListParams`, `Issuing.CardDesignUpdateParams`, and `Issuing.CardDesign`
|
|
140
|
+
* Remove support for `preference` on `Issuing.CardDesignListParams`, `Issuing.CardDesignUpdateParams`, and `Issuing.CardDesign`
|
|
141
|
+
* Add support for `card_bundle` on `Issuing.CardDesignUpdateParams`
|
|
142
|
+
* Add support for `card_logo` and `carrier_text` on `Issuing.CardDesignUpdateParams` and `Issuing.CardDesign`
|
|
143
|
+
* Change type of `Issuing.CardDesignUpdateParams.lookup_key` and `Issuing.CardDesignUpdateParams.name` from `string` to `emptyStringable(string)`
|
|
144
|
+
* Add support for `rejection_reasons` on `Issuing.CardDesign`
|
|
145
|
+
* Add support for `confirmation_token` on `PaymentIntentConfirmParams`, `PaymentIntentCreateParams`, `SetupIntentConfirmParams`, and `SetupIntentCreateParams`
|
|
146
|
+
* Add support for new value `issuing_card_design.rejected` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
|
|
147
|
+
|
|
65
148
|
## 13.6.0 - 2023-09-14
|
|
66
149
|
* [#1905](https://github.com/stripe/stripe-node/pull/1905) Update generated code
|
|
67
150
|
* Add support for new resource `PaymentMethodConfiguration`
|
|
@@ -78,6 +161,16 @@
|
|
|
78
161
|
* [#1895](https://github.com/stripe/stripe-node/pull/1895) feat: webhook signing Nestjs
|
|
79
162
|
* [#1878](https://github.com/stripe/stripe-node/pull/1878) Use src/apiVersion.ts, not API_VERSION as source of truth
|
|
80
163
|
|
|
164
|
+
## 13.6.0-beta.1 - 2023-09-07
|
|
165
|
+
* [#1898](https://github.com/stripe/stripe-node/pull/1898) Update generated code for beta
|
|
166
|
+
* Release specs are identical.
|
|
167
|
+
* [#1892](https://github.com/stripe/stripe-node/pull/1892) Update generated code for beta
|
|
168
|
+
* Remove support for `submit_card` test helper method on resource `Issuing.Card`
|
|
169
|
+
* Add support for `tax_forms` on `Account.settings`, `AccountCreateParams.settings`, and `AccountUpdateParams.settings`
|
|
170
|
+
* Add support for `card_design` on `Issuing.CardUpdateParams`
|
|
171
|
+
* Remove support for value `submitted` from enum `Issuing.Card.shipping.status`
|
|
172
|
+
* Add support for new value `platform_default` on enums `Issuing.CardDesign.preference` and `Issuing.CardDesignListParams.preference`
|
|
173
|
+
|
|
81
174
|
## 13.5.0 - 2023-09-07
|
|
82
175
|
* [#1893](https://github.com/stripe/stripe-node/pull/1893) Update generated code
|
|
83
176
|
* Add support for new resource `PaymentMethodDomain`
|
|
@@ -89,6 +182,10 @@
|
|
|
89
182
|
* Add support for `features` on `ProductCreateParams`, `ProductUpdateParams`, and `Product`
|
|
90
183
|
* Remove support for value `invoiceitem.updated` from enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
|
|
91
184
|
|
|
185
|
+
## 13.5.0-beta.1 - 2023-08-31
|
|
186
|
+
* [#1883](https://github.com/stripe/stripe-node/pull/1883) Update generated code for beta
|
|
187
|
+
* Rename `Quote.listPreviewSubscriptionSchedules` to `Quote.listPreviewSchedules` and `Quote.listPreview
|
|
188
|
+
|
|
92
189
|
## 13.4.0 - 2023-08-31
|
|
93
190
|
* [#1884](https://github.com/stripe/stripe-node/pull/1884) Update generated code
|
|
94
191
|
* Add support for new resource `AccountSession`
|
|
@@ -155,12 +252,37 @@
|
|
|
155
252
|
* These fields are not fully operational.
|
|
156
253
|
* ⚠️Add support for new value `2023-08-16` on enum `WebhookEndpointCreateParams.api_version`
|
|
157
254
|
|
|
255
|
+
## 13.0.0-beta.1 - 2023-08-24
|
|
256
|
+
* [#1873](https://github.com/stripe/stripe-node/pull/1873) Update generated code for beta
|
|
257
|
+
* Add support for new resources `QuotePreviewInvoice` and `QuotePreviewSchedule`
|
|
258
|
+
* Change `Checkout.Session.payment_method_options.us_bank_account.financial_connections.prefetch`, `FinancialConnections.Session.prefetch`, `Invoice.charge`, `Invoice.customer`, `Invoice.payment_settings.payment_method_options.us_bank_account.financial_connections.prefetch`, `PaymentIntent.payment_method_options.us_bank_account.financial_connections.prefetch`, `SetupIntent.payment_method_options.us_bank_account.financial_connections.prefetch`, and `Subscription.payment_settings.payment_method_options.us_bank_account.financial_connections.prefetch` to be required
|
|
259
|
+
* Remove support for `applies_to` on `Invoice` and `SubscriptionSchedule`
|
|
260
|
+
* Add support for `cl`, `co`, `id`, `kr`, `mx`, `my`, `sa`, `th`, `tr`, and `vn` on `Tax.Registration.country_options` and `Tax.RegistrationCreateParams.country_options`
|
|
261
|
+
* Remove support for `hk` on `Tax.Registration.country_options` and `Tax.RegistrationCreateParams.country_options`
|
|
262
|
+
|
|
263
|
+
## 12.19.0-beta.1 - 2023-08-10
|
|
264
|
+
* [#1868](https://github.com/stripe/stripe-node/pull/1868) Update generated code for beta
|
|
265
|
+
* Add support for `paypal` on `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, and `PaymentMethodConfiguration`
|
|
266
|
+
* Add support for new value `quote.accept_failed` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
|
|
267
|
+
|
|
158
268
|
## 12.18.0 - 2023-08-10
|
|
159
269
|
* [#1867](https://github.com/stripe/stripe-node/pull/1867) Update generated code
|
|
160
270
|
* Add support for new values `incorporated_partnership` and `unincorporated_partnership` on enums `Account.company.structure`, `AccountCreateParams.company.structure`, `AccountUpdateParams.company.structure`, and `TokenCreateParams.account.company.structure`
|
|
161
271
|
* Add support for new value `payment_reversal` on enum `BalanceTransaction.type`
|
|
162
272
|
* Change `Invoice.subscription_details.metadata` and `Invoice.subscription_details` to be required
|
|
163
273
|
|
|
274
|
+
## 12.18.0-beta.1 - 2023-08-03
|
|
275
|
+
* [#1861](https://github.com/stripe/stripe-node/pull/1861) Update generated code for beta
|
|
276
|
+
* Add support for `submit_card` test helper method on resource `Issuing.Card`
|
|
277
|
+
* Add support for `address_validation` on `Issuing.Card.shipping` and `Issuing.CardCreateParams.shipping`
|
|
278
|
+
* Add support for `shipping` on `Issuing.CardUpdateParams`
|
|
279
|
+
* Add support for new value `submitted` on enum `Issuing.Card.shipping.status`
|
|
280
|
+
* Change type of `OrderCreateParams.line_items[].product_data.description`, `OrderCreateParams.line_items[].product_data.tax_code`, `OrderCreateParams.shipping_details.phone`, `OrderUpdateParams.description`, `OrderUpdateParams.line_items[].product_data.description`, `OrderUpdateParams.line_items[].product_data.tax_code`, `OrderUpdateParams.shipping_details.phone`, `PaymentMethodConfigurationListParams.application`, and `QuoteUpdateParams.subscription_data_overrides[].description` from `string` to `emptyStringable(string)`
|
|
281
|
+
* Add support for `reason` on `QuoteMarkStaleQuoteParams`
|
|
282
|
+
* Add support for `marked_stale` on `Quote.status_details.stale.last_reason`
|
|
283
|
+
* Change `Tax.FormListParams.payee.type` to be optional
|
|
284
|
+
* [#1864](https://github.com/stripe/stripe-node/pull/1864) Remove developer_message support
|
|
285
|
+
|
|
164
286
|
## 12.17.0 - 2023-08-03
|
|
165
287
|
* [#1863](https://github.com/stripe/stripe-node/pull/1863) Update generated code
|
|
166
288
|
* Change many types from `string` to `emptyStringable(string)`
|
|
@@ -169,14 +291,14 @@
|
|
|
169
291
|
* Add support for new values `sepa_debit_fingerprint` and `us_bank_account_fingerprint` on enums `Radar.ValueList.item_type` and `Radar.ValueListCreateParams.item_type`
|
|
170
292
|
* [#1866](https://github.com/stripe/stripe-node/pull/1866) Allow monkey patching http / https
|
|
171
293
|
|
|
294
|
+
## 12.17.0-beta.1 - 2023-07-27
|
|
295
|
+
* Updated stable APIs to the latest version
|
|
296
|
+
|
|
172
297
|
## 12.16.0 - 2023-07-27
|
|
173
298
|
* [#1853](https://github.com/stripe/stripe-node/pull/1853) Update generated code
|
|
174
299
|
* Add support for `monthly_estimated_revenue` on `Account.business_profile`, `AccountCreateParams.business_profile`, and `AccountUpdateParams.business_profile`
|
|
175
300
|
* [#1859](https://github.com/stripe/stripe-node/pull/1859) Revert "import * as http -> import http from 'http'"
|
|
176
301
|
|
|
177
|
-
## 12.15.0 - 2023-07-27 (DEPRECATED ⚠️ )
|
|
178
|
-
* This version included a breaking change [#1859](https://github.com/stripe/stripe-node/pull/1859) that we should not have released. It has been deprecated on npmjs.org. Please do not use this version.
|
|
179
|
-
|
|
180
302
|
## 12.14.0 - 2023-07-20
|
|
181
303
|
* [#1842](https://github.com/stripe/stripe-node/pull/1842) Update generated code
|
|
182
304
|
* Add support for new value `ro_tin` on enums `Checkout.Session.customer_details.tax_ids[].type`, `Invoice.customer_tax_ids[].type`, `Tax.Calculation.customer_details.tax_ids[].type`, and `Tax.Transaction.customer_details.tax_ids[].type`
|
|
@@ -187,6 +309,17 @@
|
|
|
187
309
|
* [#1849](https://github.com/stripe/stripe-node/pull/1849) Changelog: fix delimiterless namespaced param types
|
|
188
310
|
* [#1848](https://github.com/stripe/stripe-node/pull/1848) Changelog: `CheckoutSessionCreateParams` -> `Checkout.SessionCreateParams`
|
|
189
311
|
|
|
312
|
+
## 12.14.0-beta.1 - 2023-07-13
|
|
313
|
+
* [#1840](https://github.com/stripe/stripe-node/pull/1840) Update generated code for beta
|
|
314
|
+
Release specs are identical.
|
|
315
|
+
* [#1837](https://github.com/stripe/stripe-node/pull/1837) Update generated code for beta
|
|
316
|
+
* Add support for new resource `PaymentMethodConfiguration`
|
|
317
|
+
* Add support for `create`, `list`, `retrieve`, and `update` methods on resource `PaymentMethodConfiguration`
|
|
318
|
+
* Add support for `payment_method_configuration` on `PaymentIntentCreateParams` and `PaymentIntentUpdateParams`
|
|
319
|
+
* Add support for `payment_method_configuration_details` on `PaymentIntent`
|
|
320
|
+
* Rename `Tax.SettingRetrieveParam` to `Tax.SettingsRetrieveParam` and `Tax.SettingUpdateParams` to `Tax.SettingsUpdateParams` (parity with main release)
|
|
321
|
+
* [#1832](https://github.com/stripe/stripe-node/pull/1832) Update generated code for beta
|
|
322
|
+
|
|
190
323
|
## 12.13.0 - 2023-07-13
|
|
191
324
|
* [#1838](https://github.com/stripe/stripe-node/pull/1838) Update generated code
|
|
192
325
|
* Add support for new resource `Tax.Settings`
|
|
@@ -203,6 +336,11 @@
|
|
|
203
336
|
* Add support for `numeric` and `text` on `PaymentLink.custom_fields[]`
|
|
204
337
|
* Add support for `automatic_tax` on `SubscriptionListParams`
|
|
205
338
|
|
|
339
|
+
## 12.12.0-beta.1 - 2023-06-29
|
|
340
|
+
* [#1824](https://github.com/stripe/stripe-node/pull/1824) Update generated code for beta
|
|
341
|
+
* Add support for `metadata` on `Invoice.subscription_details`
|
|
342
|
+
* Change `Invoice.subscription_details.pause_collection` to be optional
|
|
343
|
+
|
|
206
344
|
## 12.11.0 - 2023-06-29
|
|
207
345
|
* [#1823](https://github.com/stripe/stripe-node/pull/1823) Update generated code
|
|
208
346
|
* Add support for new value `application_fees_not_allowed` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
|
|
@@ -210,16 +348,26 @@
|
|
|
210
348
|
* Add support for `effective_at` on `CreditNoteCreateParams`, `CreditNotePreviewLinesParams`, `CreditNotePreviewParams`, `CreditNote`, `InvoiceCreateParams`, `InvoiceUpdateParams`, and `Invoice`
|
|
211
349
|
* [#1828](https://github.com/stripe/stripe-node/pull/1828) Better CryptoProvider error
|
|
212
350
|
|
|
351
|
+
## 12.11.0-beta.1 - 2023-06-22
|
|
352
|
+
* [#1821](https://github.com/stripe/stripe-node/pull/1821) Update generated code for beta
|
|
353
|
+
* Add support for new resource `CustomerSession`
|
|
354
|
+
* Add support for `create` method on resource `CustomerSession`
|
|
355
|
+
* Change type of `Tax.Registration.country_options.us.type` and `TaxRegistrationCreateParams.country_options.us.type` from `literal('state_sales_tax')` to `enum('local_lease_tax'|'state_sales_tax')`
|
|
356
|
+
|
|
213
357
|
## 12.10.0 - 2023-06-22
|
|
214
358
|
* [#1820](https://github.com/stripe/stripe-node/pull/1820) Update generated code
|
|
215
359
|
* Add support for `on_behalf_of` on `Mandate`
|
|
216
|
-
* [#1817](https://github.com/stripe/stripe-node/pull/1817) Update README.md
|
|
217
|
-
* [#1819](https://github.com/stripe/stripe-node/pull/1819) Update generated code
|
|
218
|
-
* Release specs are identical.
|
|
219
360
|
* [#1813](https://github.com/stripe/stripe-node/pull/1813) Update generated code
|
|
220
361
|
* Change type of `Checkout.Session.success_url` from `string` to `string | null`
|
|
221
|
-
|
|
222
|
-
|
|
362
|
+
|
|
363
|
+
## 12.10.0-beta.2 - 2023-06-15
|
|
364
|
+
* [#1818](https://github.com/stripe/stripe-node/pull/1818) Update generated code for beta
|
|
365
|
+
* Add support for `payment_details` on `ChargeCaptureParams`, `ChargeUpdateParams`, `PaymentIntentCaptureParams`, `PaymentIntentConfirmParams`, `PaymentIntentCreateParams`, `PaymentIntentUpdateParams`, and `PaymentIntent`
|
|
366
|
+
* Add support for `statement_details` on `PaymentIntent.payment_method_options.card`, `PaymentIntentConfirmParams.payment_method_options.card`, `PaymentIntentCreateParams.payment_method_options.card`, and `PaymentIntentUpdateParams.payment_method_options.card`
|
|
367
|
+
* [#1814](https://github.com/stripe/stripe-node/pull/1814) Update generated code for beta
|
|
368
|
+
|
|
369
|
+
## 12.10.0-beta.1 - 2023-06-08
|
|
370
|
+
* [#1811](https://github.com/stripe/stripe-node/pull/1811) Update generated code for beta
|
|
223
371
|
|
|
224
372
|
## 12.9.0 - 2023-06-08
|
|
225
373
|
* [#1809](https://github.com/stripe/stripe-node/pull/1809) Update generated code
|
|
@@ -227,6 +375,20 @@
|
|
|
227
375
|
* Add support for `taxability_reason` on `Tax.Calculation.tax_breakdown[]`
|
|
228
376
|
* [#1812](https://github.com/stripe/stripe-node/pull/1812) More helpful error when signing secrets contain whitespace
|
|
229
377
|
|
|
378
|
+
## 12.9.0-beta.1 - 2023-06-01
|
|
379
|
+
* [#1801](https://github.com/stripe/stripe-node/pull/1801) Update generated code for beta
|
|
380
|
+
* Add support for `subscription_details` on `Invoice`
|
|
381
|
+
* Add support for new values `aba` and `swift` on enums `Order.payment.settings.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, `OrderCreateParams.payment.settings.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, and `OrderUpdateParams.payment.settings.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`
|
|
382
|
+
* Add support for new value `us_bank_transfer` on enums `Order.payment.settings.payment_method_options.customer_balance.bank_transfer.type`, `OrderCreateParams.payment.settings.payment_method_options.customer_balance.bank_transfer.type`, and `OrderUpdateParams.payment.settings.payment_method_options.customer_balance.bank_transfer.type`
|
|
383
|
+
* Add support for `set_pause_collection` on `QuoteCreateParams.lines[]`, `QuoteLine`, `QuoteUpdateParams.lines[]`, and `SubscriptionScheduleAmendParams.amendments[]`
|
|
384
|
+
* Add support for new value `pause_collection_start` on enums `Quote.subscription_data.bill_on_acceptance.bill_from.type`, `Quote.subscription_data_overrides[].bill_on_acceptance.bill_from.type`, `QuoteCreateParams.subscription_data.bill_on_acceptance.bill_from.type`, `QuoteCreateParams.subscription_data_overrides[].bill_on_acceptance.bill_from.type`, `QuoteUpdateParams.subscription_data.bill_on_acceptance.bill_from.type`, and `QuoteUpdateParams.subscription_data_overrides[].bill_on_acceptance.bill_from.type`
|
|
385
|
+
* Add support for `pause_collection` on `SubscriptionSchedule.phases[]`, `SubscriptionScheduleCreateParams.phases[]`, and `SubscriptionScheduleUpdateParams.phases[]`
|
|
386
|
+
* Add support for `local_amusement_tax` on `Tax.Registration.country_options.us` and `TaxRegistrationCreateParams.country_options.us`
|
|
387
|
+
* Remove support for `locations` on `Tax.Settings` and `TaxSettingUpdateParams`
|
|
388
|
+
* Add support for new values `customer.subscription.collection_paused` and `customer.subscription.collection_resumed` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
|
|
389
|
+
* [#1775](https://github.com/stripe/stripe-node/pull/1775) Introduce stripe.rawRequest as a canonical way to request APIs without definitions
|
|
390
|
+
* Please refer to the [Custom Requests README section](https://github.com/stripe/stripe-node/tree/beta#custom-requests) for usage instructions.
|
|
391
|
+
|
|
230
392
|
## 12.8.0 - 2023-06-01
|
|
231
393
|
* [#1799](https://github.com/stripe/stripe-node/pull/1799) Update generated code
|
|
232
394
|
* Add support for `numeric` and `text` on `Checkout.SessionCreateParams.custom_fields[]`, `PaymentLinkCreateParams.custom_fields[]`, and `PaymentLinkUpdateParams.custom_fields[]`
|
|
@@ -237,6 +399,9 @@
|
|
|
237
399
|
* Add support for `description`, `iin`, and `issuer` on `PaymentMethod.card_present` and `PaymentMethod.interac_present`
|
|
238
400
|
* Add support for `payer_email` on `PaymentMethod.paypal`
|
|
239
401
|
|
|
402
|
+
## 12.8.0-beta.1 - 2023-05-25
|
|
403
|
+
* [#1795](https://github.com/stripe/stripe-node/pull/1795) Update generated code for beta
|
|
404
|
+
|
|
240
405
|
## 12.7.0 - 2023-05-25
|
|
241
406
|
* [#1797](https://github.com/stripe/stripe-node/pull/1797) Update generated code
|
|
242
407
|
* Add support for `zip_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
|
|
@@ -247,6 +412,13 @@
|
|
|
247
412
|
* Add support for new value `zip` on enums `PaymentIntentConfirmParams.payment_method_data.type`, `PaymentIntentCreateParams.payment_method_data.type`, `PaymentIntentUpdateParams.payment_method_data.type`, `SetupIntentConfirmParams.payment_method_data.type`, `SetupIntentCreateParams.payment_method_data.type`, and `SetupIntentUpdateParams.payment_method_data.type`
|
|
248
413
|
* Add support for new value `zip` on enum `PaymentMethod.type`
|
|
249
414
|
|
|
415
|
+
## 12.7.0-beta.1 - 2023-05-19
|
|
416
|
+
* [#1788](https://github.com/stripe/stripe-node/pull/1788) Update generated code for beta
|
|
417
|
+
* Add support for `subscribe` and `unsubscribe` methods on resource `FinancialConnections.Account`
|
|
418
|
+
* Add support for `next_refresh_available_at` on `FinancialConnections.Account.balance_refresh`, `FinancialConnections.Account.inferred_balances_refresh`, `FinancialConnections.Account.ownership_refresh`, and `FinancialConnections.Account.transaction_refresh`
|
|
419
|
+
* Add support for `status_details` and `status` on `Tax.Settings`
|
|
420
|
+
* Add support for new value `tax.settings.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
|
|
421
|
+
|
|
250
422
|
## 12.6.0 - 2023-05-19
|
|
251
423
|
* [#1787](https://github.com/stripe/stripe-node/pull/1787) Update generated code
|
|
252
424
|
* Add support for `subscription_update_confirm` and `subscription_update` on `BillingPortal.Session.flow` and `BillingPortal.SessionCreateParams.flow_data`
|
|
@@ -255,6 +427,18 @@
|
|
|
255
427
|
* Add support for `buyer_id` and `cashtag` on `Charge.payment_method_details.cashapp` and `PaymentMethod.cashapp`
|
|
256
428
|
* Add support for new values `amusement_tax` and `communications_tax` on enums `TaxRate.tax_type`, `TaxRateCreateParams.tax_type`, and `TaxRateUpdateParams.tax_type`
|
|
257
429
|
|
|
430
|
+
## 12.6.0-beta.1 - 2023-05-11
|
|
431
|
+
* [#1786](https://github.com/stripe/stripe-node/pull/1786) Update generated code for beta
|
|
432
|
+
* Add support for `payer_email`, `payer_name`, and `seller_protection` on `Charge.payment_method_details.paypal`
|
|
433
|
+
* Change `Charge.payment_method_details.paypal.payer_id`, `Charge.payment_method_details.paypal.verified_email`, `Charge.payment_method_details.paypal.verified_name`, `SetupIntent.payment_method_options.paypal.currency`, and `Tax.Settings.locations` to be optional
|
|
434
|
+
* Add support for `capture_method`, `preferred_locale`, `reference_id`, and `setup_future_usage` on `CheckoutSessionCreateParams.payment_method_options.paypal`
|
|
435
|
+
* Add support for `reference` on `CheckoutSessionCreateParams.payment_method_options.paypal`, `Order.payment.settings.payment_method_options.paypal`, `OrderCreateParams.payment.settings.payment_method_options.paypal`, `OrderUpdateParams.payment.settings.payment_method_options.paypal`, `PaymentIntent.payment_method_options.paypal`, `PaymentIntentConfirmParams.payment_method_options.paypal`, `PaymentIntentCreateParams.payment_method_options.paypal`, and `PaymentIntentUpdateParams.payment_method_options.paypal`
|
|
436
|
+
* Add support for `risk_correlation_id` on `CheckoutSessionCreateParams.payment_method_options.paypal`, `OrderCreateParams.payment.settings.payment_method_options.paypal`, `OrderUpdateParams.payment.settings.payment_method_options.paypal`, `PaymentIntentConfirmParams.payment_method_options.paypal`, `PaymentIntentCreateParams.payment_method_options.paypal`, and `PaymentIntentUpdateParams.payment_method_options.paypal`
|
|
437
|
+
* Remove support for `billing_agreement_id` and `currency` on `CheckoutSessionCreateParams.payment_method_options.paypal`
|
|
438
|
+
* Add support for `fingerprint`, `payer_id`, and `verified_email` on `Mandate.payment_method_details.paypal` and `PaymentMethod.paypal`
|
|
439
|
+
* Add support for `taxability_reason` and `taxable_amount` on `Order.shipping_cost.taxes[]`, `Order.total_details.breakdown.taxes[]`, and `QuotePhase.total_details.breakdown.taxes[]`
|
|
440
|
+
* Add support for `head_office` on `Tax.Settings` and `TaxSettingUpdateParams`
|
|
441
|
+
|
|
258
442
|
## 12.5.0 - 2023-05-11
|
|
259
443
|
* [#1785](https://github.com/stripe/stripe-node/pull/1785) Update generated code
|
|
260
444
|
* Add support for `paypal` on `Charge.payment_method_details`, `Checkout.SessionCreateParams.payment_method_options`, `Mandate.payment_method_details`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodCreateParams`, `PaymentMethod`, `SetupAttempt.payment_method_details`, `SetupIntent.payment_method_options`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentConfirmParams.payment_method_options`, `SetupIntentCreateParams.payment_method_data`, `SetupIntentCreateParams.payment_method_options`, `SetupIntentUpdateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_options`
|
|
@@ -272,12 +456,34 @@
|
|
|
272
456
|
* Add support for `effective_percentage` on `TaxRate`
|
|
273
457
|
* Add support for `gb_bank_transfer` and `jp_bank_transfer` on `CustomerCashBalanceTransaction.Funded.BankTransfer`
|
|
274
458
|
|
|
459
|
+
## 12.5.0-beta.1 - 2023-05-04
|
|
460
|
+
* [#1773](https://github.com/stripe/stripe-node/pull/1773) Update generated code for beta
|
|
461
|
+
* Updated stable APIs to the latest version
|
|
462
|
+
|
|
275
463
|
## 12.4.0 - 2023-05-04
|
|
276
464
|
* [#1774](https://github.com/stripe/stripe-node/pull/1774) Update generated code
|
|
277
465
|
* Add support for `link` on `Checkout.Session.payment_method_options` and `Checkout.SessionCreateParams.payment_method_options`
|
|
278
466
|
* Add support for `brand`, `country`, `description`, `exp_month`, `exp_year`, `fingerprint`, `funding`, `iin`, `issuer`, `last4`, `network`, and `wallet` on `SetupAttempt.payment_method_details.card`
|
|
279
467
|
* [#1782](https://github.com/stripe/stripe-node/pull/1782) Let user supply a timestamp when verifying webhooks
|
|
280
468
|
|
|
469
|
+
## 12.4.0-beta.1 - 2023-04-27
|
|
470
|
+
* [#1769](https://github.com/stripe/stripe-node/pull/1769) Update generated code for beta
|
|
471
|
+
* Add support for `billing_cycle_anchor` and `proration_behavior` on `CheckoutSessionCreateParams.subscription_data`
|
|
472
|
+
* Add support for `terminal_id` on `Issuing.Authorization.merchant_data` and `Issuing.Transaction.merchant_data`
|
|
473
|
+
* Add support for `metadata` on `PaymentIntentCaptureParams`
|
|
474
|
+
* Add support for `checks` on `SetupAttempt.payment_method_details.card`
|
|
475
|
+
* Add support for `tax_breakdown` on `Tax.Calculation.shipping_cost` and `Tax.Transaction.shipping_cost`
|
|
476
|
+
* Change type of `TaxRegistrationCreateParams.active_from`, `TaxRegistrationUpdateParams.active_from`, and `TaxRegistrationUpdateParams.expires_at` from `longInteger` to `longInteger | literal('now')`
|
|
477
|
+
|
|
478
|
+
## 12.3.0 - 2023-04-27
|
|
479
|
+
* [#1770](https://github.com/stripe/stripe-node/pull/1770) Update generated code
|
|
480
|
+
* Add support for `billing_cycle_anchor` and `proration_behavior` on `Checkout.SessionCreateParams.subscription_data`
|
|
481
|
+
* Add support for `terminal_id` on `Issuing.Authorization.merchant_data` and `Issuing.Transaction.merchant_data`
|
|
482
|
+
* Add support for `metadata` on `PaymentIntentCaptureParams`
|
|
483
|
+
* Add support for `checks` on `SetupAttempt.payment_method_details.card`
|
|
484
|
+
* Add support for `tax_breakdown` on `Tax.Calculation.shipping_cost` and `Tax.Transaction.shipping_cost`
|
|
485
|
+
* Change type of `TaxRegistrationCreateParams.active_from`, `TaxRegistrationUpdateParams.active_from`, and `TaxRegistrationUpdateParams.expires_at` from `longInteger` to `longInteger | literal('now')`
|
|
486
|
+
|
|
281
487
|
## 12.3.0 - 2023-04-27
|
|
282
488
|
* [#1770](https://github.com/stripe/stripe-node/pull/1770) Update generated code
|
|
283
489
|
* Add support for `billing_cycle_anchor` and `proration_behavior` on `Checkout.SessionCreateParams.subscription_data`
|
|
@@ -286,6 +492,12 @@
|
|
|
286
492
|
* Add support for `checks` on `SetupAttempt.payment_method_details.card`
|
|
287
493
|
* Add support for `tax_breakdown` on `Tax.Calculation.shipping_cost` and `Tax.Transaction.shipping_cost`
|
|
288
494
|
|
|
495
|
+
## 12.3.0-beta.1 - 2023-04-20
|
|
496
|
+
* [#1760](https://github.com/stripe/stripe-node/pull/1760) Update generated code for beta
|
|
497
|
+
* Add support for `zip` on `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_options`, and `PaymentIntentUpdateParams.payment_method_options`
|
|
498
|
+
* Add support for `country_options` on `Tax.Registration` and `TaxRegistrationCreateParams`
|
|
499
|
+
* Remove support for `state` and `type` on `Tax.Registration` and `TaxRegistrationCreateParams`
|
|
500
|
+
|
|
289
501
|
## 12.2.0 - 2023-04-20
|
|
290
502
|
* [#1759](https://github.com/stripe/stripe-node/pull/1759) Update generated code
|
|
291
503
|
* Change `Checkout.Session.currency_conversion` to be required
|
|
@@ -295,6 +507,16 @@
|
|
|
295
507
|
* [#1762](https://github.com/stripe/stripe-node/pull/1762) Add Deno webhook signing example
|
|
296
508
|
* [#1761](https://github.com/stripe/stripe-node/pull/1761) Add Deno usage instructions in README
|
|
297
509
|
|
|
510
|
+
## 12.2.0-beta.1 - 2023-04-13
|
|
511
|
+
* [#1751](https://github.com/stripe/stripe-node/pull/1751) Update generated code for beta
|
|
512
|
+
* Add support for `collect_payment_method` and `confirm_payment_intent` methods on resource `Terminal.Reader`
|
|
513
|
+
* Add support for `paypal_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
|
|
514
|
+
* Add support for new value `REVOIE23` on enums `Charge.payment_method_details.ideal.bic`, `PaymentMethod.ideal.bic`, and `SetupAttempt.payment_method_details.ideal.bic`
|
|
515
|
+
* Add support for `collect_payment_method` and `confirm_payment_intent` on `Terminal.Reader.action`
|
|
516
|
+
* Add support for `stripe_account` on `Terminal.Reader.action.process_payment_intent` and `Terminal.Reader.action.refund_payment`
|
|
517
|
+
* Add support for new values `collect_payment_method` and `confirm_payment_intent` on enum `Terminal.Reader.action.type`
|
|
518
|
+
* Add support for new value `terminal.reader.action_updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
|
|
519
|
+
|
|
298
520
|
## 12.1.1 - 2023-04-13
|
|
299
521
|
No product changes.
|
|
300
522
|
|
|
@@ -303,6 +525,16 @@ No product changes.
|
|
|
303
525
|
* Add support for new value `REVOIE23` on enums `Charge.payment_method_details.ideal.bic`, `PaymentMethod.ideal.bic`, and `SetupAttempt.payment_method_details.ideal.bic`
|
|
304
526
|
* [#1749](https://github.com/stripe/stripe-node/pull/1749) Type extend and ResourceNamespace better
|
|
305
527
|
|
|
528
|
+
## 12.1.0-beta.1 - 2023-04-06
|
|
529
|
+
* [#1737](https://github.com/stripe/stripe-node/pull/1737) Update generated code for beta
|
|
530
|
+
* Add support for `treasury_transaction` on `CapitalFinancingTransactionListParams`
|
|
531
|
+
* Add support for `transaction` on `Capital.FinancingTransaction.details`
|
|
532
|
+
* Add support for new value `link` on enums `Charge.payment_method_details.card.wallet.type` and `PaymentMethod.card.wallet.type`
|
|
533
|
+
* Change `IssuingCardholderCreateParams.type` to be optional
|
|
534
|
+
* Add support for `country` on `PaymentMethod.link`
|
|
535
|
+
* Add support for `status_details` on `PaymentMethod.us_bank_account`
|
|
536
|
+
* [#1750](https://github.com/stripe/stripe-node/pull/1750) Merge master into beta
|
|
537
|
+
|
|
306
538
|
## 12.0.0 - 2023-04-06
|
|
307
539
|
* [#1743](https://github.com/stripe/stripe-node/pull/1743) Remove `Stripe.default` and `Stripe.Stripe`
|
|
308
540
|
This was added to maintain backwards compatibility during the transition of stripe-node to a dual ES module / CommonJS package, and should not be functionally necessary.
|
|
@@ -345,6 +577,11 @@ This was added to maintain backwards compatibility during the transition of stri
|
|
|
345
577
|
* Add support for `status_details` on `PaymentMethod.us_bank_account`
|
|
346
578
|
* [#1747](https://github.com/stripe/stripe-node/pull/1747) (Typescript) remove deprecated properties
|
|
347
579
|
|
|
580
|
+
## 11.18.0-beta.1 - 2023-03-30
|
|
581
|
+
* [#1735](https://github.com/stripe/stripe-node/pull/1735) Update generated code
|
|
582
|
+
* Add support for new value `ioss` on enums `Tax.Registration.type` and `TaxRegistrationCreateParams.type`
|
|
583
|
+
* Change `TerminalReaderCollectInputsParams.inputs[].custom_text.description` to be optional
|
|
584
|
+
|
|
348
585
|
## 11.17.0 - 2023-03-30
|
|
349
586
|
* [#1734](https://github.com/stripe/stripe-node/pull/1734) Update generated code
|
|
350
587
|
* Remove support for `create` method on resource `Tax.Transaction`
|
|
@@ -354,6 +591,21 @@ This was added to maintain backwards compatibility during the transition of stri
|
|
|
354
591
|
* This is not a breaking change, as `deleted` was never returned or accepted as input.
|
|
355
592
|
* Add support for `amount_tip` on `Terminal.ReaderPresentPaymentMethodParams.testHelpers`
|
|
356
593
|
|
|
594
|
+
## 11.17.0-beta.1 - 2023-03-23
|
|
595
|
+
* [#1724](https://github.com/stripe/stripe-node/pull/1724) Update generated code for beta (new)
|
|
596
|
+
* Add support for new resources `Tax.CalculationLineItem` and `Tax.TransactionLineItem`
|
|
597
|
+
* Add support for `collect_inputs` method on resource `Terminal.Reader`
|
|
598
|
+
* Add support for `financing_offer` on `Capital.FinancingSummary`
|
|
599
|
+
* Add support for new value `link` on enum `CheckoutSessionCreateParams.payment_method_types[]`
|
|
600
|
+
* Add support for `fx_rate` on `Checkout.Session.currency_conversion`
|
|
601
|
+
* Add support for new value `link` on enums `PaymentLink.payment_method_types[]`, `PaymentLinkCreateParams.payment_method_types[]`, and `PaymentLinkUpdateParams.payment_method_types[]`
|
|
602
|
+
* Add support for `automatic_payment_methods` on `SetupIntentCreateParams` and `SetupIntent`
|
|
603
|
+
* Remove support for `preview` on `TaxCalculationCreateParams`
|
|
604
|
+
* Change type of `Tax.Calculation.line_items[]` from `LineItem` to `Tax.CalculationLineItem`
|
|
605
|
+
* Change type of `Tax.Transaction.line_items[]` from `LineItem` to `Tax.TransactionLineItem`
|
|
606
|
+
* Add support for `collect_inputs` on `Terminal.Reader.action`
|
|
607
|
+
* Add support for new value `collect_inputs` on enum `Terminal.Reader.action.type`
|
|
608
|
+
|
|
357
609
|
## 11.16.0 - 2023-03-23
|
|
358
610
|
* [#1730](https://github.com/stripe/stripe-node/pull/1730) Update generated code
|
|
359
611
|
* Add support for new resources `Tax.CalculationLineItem`, `Tax.Calculation`, `Tax.TransactionLineItem`, and `Tax.Transaction`
|
|
@@ -365,6 +617,19 @@ This was added to maintain backwards compatibility during the transition of stri
|
|
|
365
617
|
* Add support for `automatic_payment_methods` on `SetupIntentCreateParams` and `SetupIntent`
|
|
366
618
|
* [#1726](https://github.com/stripe/stripe-node/pull/1726) Add Deno entry point
|
|
367
619
|
|
|
620
|
+
## 11.16.0-beta.1 - 2023-03-17
|
|
621
|
+
* [#1713](https://github.com/stripe/stripe-node/pull/1713) API Updates
|
|
622
|
+
* Add support for `create_from_calculation` method on resource `Tax.Transaction`
|
|
623
|
+
* Change type of `Invoice.applies_to` from `QuotesResourceQuoteLinesAppliesTo | null` to `QuotesResourceQuoteLinesAppliesTo`
|
|
624
|
+
* Add support for `paypal` on `Mandate.payment_method_details`, `SetupAttempt.payment_method_details`, `SetupIntent.payment_method_options`, `SetupIntentConfirmParams.payment_method_options`, `SetupIntentCreateParams.payment_method_options`, and `SetupIntentUpdateParams.payment_method_options`
|
|
625
|
+
* Add support for new value `automatic_async` on enums `Order.payment.settings.payment_method_options.afterpay_clearpay.capture_method`, `Order.payment.settings.payment_method_options.card.capture_method`, `OrderCreateParams.payment.settings.payment_method_options.afterpay_clearpay.capture_method`, `OrderCreateParams.payment.settings.payment_method_options.card.capture_method`, `OrderUpdateParams.payment.settings.payment_method_options.afterpay_clearpay.capture_method`, and `OrderUpdateParams.payment.settings.payment_method_options.card.capture_method`
|
|
626
|
+
* Add support for `setup_future_usage` on `Order.payment.settings.payment_method_options.paypal`, `OrderCreateParams.payment.settings.payment_method_options.paypal`, `OrderUpdateParams.payment.settings.payment_method_options.paypal`, `PaymentIntent.payment_method_options.paypal`, `PaymentIntentConfirmParams.payment_method_options.paypal`, `PaymentIntentCreateParams.payment_method_options.paypal`, and `PaymentIntentUpdateParams.payment_method_options.paypal`
|
|
627
|
+
* Change `PaymentIntent.next_action.cashapp_handle_redirect_or_display_qr_code.hosted_instructions_url`, `PaymentIntent.next_action.cashapp_handle_redirect_or_display_qr_code.mobile_auth_url`, `PaymentIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code.expires_at`, `PaymentIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code.image_url_png`, `PaymentIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code.image_url_svg`, `PaymentIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code`, `SetupIntent.next_action.cashapp_handle_redirect_or_display_qr_code.hosted_instructions_url`, `SetupIntent.next_action.cashapp_handle_redirect_or_display_qr_code.mobile_auth_url`, `SetupIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code.expires_at`, `SetupIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code.image_url_png`, `SetupIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code.image_url_svg`, and `SetupIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code` to be required
|
|
628
|
+
* Remove support for `applies_to` on `QuotePreviewInvoiceLinesParams`
|
|
629
|
+
* Add support for `shipping_cost` on `Tax.Calculation`, `Tax.Transaction`, `TaxCalculationCreateParams`, and `TaxTransactionCreateReversalParams`
|
|
630
|
+
* Add support for `tax_breakdown` on `Tax.Calculation`
|
|
631
|
+
* Remove support for `tax_summary` on `Tax.Calculation`
|
|
632
|
+
|
|
368
633
|
## 11.15.0 - 2023-03-16
|
|
369
634
|
* [#1714](https://github.com/stripe/stripe-node/pull/1714) API Updates
|
|
370
635
|
* Add support for `cashapp_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
|
|
@@ -393,6 +658,16 @@ This was added to maintain backwards compatibility during the transition of stri
|
|
|
393
658
|
* Add support for new value `cashapp` on enum `PaymentMethod.type`
|
|
394
659
|
* Add support for new value `payout.reconciliation_completed` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
|
|
395
660
|
|
|
661
|
+
## 11.15.0-beta.1 - 2023-03-09
|
|
662
|
+
* [#1705](https://github.com/stripe/stripe-node/pull/1705) API Updates for beta branch
|
|
663
|
+
* Updated stable APIs to the latest version
|
|
664
|
+
* Remove support for `list_transactions` method on resource `Tax.Transaction`
|
|
665
|
+
* Add support for `amendment_start` and `timestamp` on `SubscriptionScheduleAmendParams.prebilling[].bill_from`
|
|
666
|
+
* Change type of `SubscriptionScheduleAmendParams.prebilling[].bill_from.type` from `literal('now')` to `enum('amendment_start'|'now'|'timestamp')`
|
|
667
|
+
* Change type of `SubscriptionSchedule.applies_to` from `QuotesResourceQuoteLinesAppliesTo | null` to `QuotesResourceQuoteLinesAppliesTo`
|
|
668
|
+
* Add support for new value `lease_tax` on enum `Tax.Calculation.tax_summary[].tax_rate_details.tax_type`
|
|
669
|
+
* Add support for `tax_behavior` on `Tax.Settings.defaults` and `TaxSettingUpdateParams.defaults`
|
|
670
|
+
|
|
396
671
|
## 11.14.0 - 2023-03-09
|
|
397
672
|
* [#1703](https://github.com/stripe/stripe-node/pull/1703) API Updates
|
|
398
673
|
* Add support for `card_issuing` on `Issuing.CardholderCreateParams.individual` and `Issuing.CardholderUpdateParams.individual`
|
|
@@ -403,6 +678,25 @@ This was added to maintain backwards compatibility during the transition of stri
|
|
|
403
678
|
* [#1695](https://github.com/stripe/stripe-node/pull/1695) Migrate generated files to ES module syntax
|
|
404
679
|
* [#1699](https://github.com/stripe/stripe-node/pull/1699) Remove extra test directory
|
|
405
680
|
|
|
681
|
+
## 11.14.0-beta.2 - 2023-03-03
|
|
682
|
+
* [#1698](https://github.com/stripe/stripe-node/pull/1698) API Updates for beta branch
|
|
683
|
+
* Updated stable APIs to the latest version
|
|
684
|
+
* Add support for `update_behavior` on `Subscription.prebilling`, `SubscriptionCreateParams.prebilling`, `SubscriptionSchedule.prebilling`, `SubscriptionScheduleCreateParams.prebilling`, `SubscriptionScheduleUpdateParams.prebilling`, and `SubscriptionUpdateParams.prebilling`
|
|
685
|
+
* Add support for `prebilling` on `SubscriptionScheduleAmendParams`
|
|
686
|
+
* Add support for `taxability_override` on `Tax.Calculation.customer_details`, `Tax.Transaction.customer_details`, and `TaxCalculationCreateParams.customer_details`
|
|
687
|
+
* Add support for `tax_summary` on `Tax.Calculation`
|
|
688
|
+
* Remove support for `tax_breakdown` on `Tax.Calculation`
|
|
689
|
+
|
|
690
|
+
## 11.14.0-beta.1 - 2023-03-02
|
|
691
|
+
* [#1697](https://github.com/stripe/stripe-node/pull/1697) API Updates for beta branch
|
|
692
|
+
* Updated stable APIs to the latest version
|
|
693
|
+
* Add support for new resources `Issuing.CardBundle` and `Issuing.CardDesign`
|
|
694
|
+
* Add support for `list` and `retrieve` methods on resource `CardBundle`
|
|
695
|
+
* Add support for `list`, `retrieve`, and `update` methods on resource `CardDesign`
|
|
696
|
+
* Remove support for `controller` on `AccountUpdateParams`
|
|
697
|
+
* Add support for `card_design` on `Issuing.Card` and `IssuingCardCreateParams`
|
|
698
|
+
* Add support for new values `issuing_card_design.activated`, `issuing_card_design.deactivated`, and `issuing_card_design.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
|
|
699
|
+
|
|
406
700
|
## 11.13.0 - 2023-03-02
|
|
407
701
|
* [#1696](https://github.com/stripe/stripe-node/pull/1696) API Updates
|
|
408
702
|
* Add support for new values `electric_vehicle_charging`, `emergency_services_gcas_visa_use_only`, `government_licensed_horse_dog_racing_us_region_only`, `government_licensed_online_casions_online_gambling_us_region_only`, `government_owned_lotteries_non_us_region`, `government_owned_lotteries_us_region_only`, and `marketplaces` on spending control categories.
|
|
@@ -411,6 +705,14 @@ This was added to maintain backwards compatibility during the transition of stri
|
|
|
411
705
|
|
|
412
706
|
* [#1689](https://github.com/stripe/stripe-node/pull/1689) Update v11.8.0 changelog with breaking change disclaimer
|
|
413
707
|
|
|
708
|
+
## 11.13.0-beta.1 - 2023-02-23
|
|
709
|
+
* [#1690](https://github.com/stripe/stripe-node/pull/1690) API Updates for beta branch
|
|
710
|
+
* Updated stable APIs to the latest version
|
|
711
|
+
* Add support for `manual_entry` on `Checkout.Session.payment_method_options.us_bank_account.financial_connections`, `PaymentIntent.payment_method_options.us_bank_account.financial_connections`, `PaymentIntentConfirmParams.payment_method_options.us_bank_account.financial_connections`, `PaymentIntentCreateParams.payment_method_options.us_bank_account.financial_connections`, `PaymentIntentUpdateParams.payment_method_options.us_bank_account.financial_connections`, `SetupIntent.payment_method_options.us_bank_account.financial_connections`, `SetupIntentConfirmParams.payment_method_options.us_bank_account.financial_connections`, `SetupIntentCreateParams.payment_method_options.us_bank_account.financial_connections`, and `SetupIntentUpdateParams.payment_method_options.us_bank_account.financial_connections`
|
|
712
|
+
* Add support for new value `igst` on enum `Tax.Calculation.tax_breakdown[].tax_rate_details.tax_type`
|
|
713
|
+
* Change `TaxTransactionCreateParams.reference` to be required
|
|
714
|
+
* Add support for new values `capital.financing_offer.accepted`, `capital.financing_offer.canceled`, `capital.financing_offer.created`, `capital.financing_offer.expired`, `capital.financing_offer.fully_repaid`, `capital.financing_offer.paid_out`, `capital.financing_offer.rejected`, and `capital.financing_offer.replacement_created` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
|
|
715
|
+
|
|
414
716
|
## 11.12.0 - 2023-02-23
|
|
415
717
|
* [#1688](https://github.com/stripe/stripe-node/pull/1688) API Updates
|
|
416
718
|
* Add support for new value `yoursafe` on enums `Charge.payment_method_details.ideal.bank`, `PaymentIntentConfirmParams.payment_method_data.ideal.bank`, `PaymentIntentCreateParams.payment_method_data.ideal.bank`, `PaymentIntentUpdateParams.payment_method_data.ideal.bank`, `PaymentMethod.ideal.bank`, `PaymentMethodCreateParams.ideal.bank`, `SetupAttempt.payment_method_details.ideal.bank`, `SetupIntentConfirmParams.payment_method_data.ideal.bank`, `SetupIntentCreateParams.payment_method_data.ideal.bank`, and `SetupIntentUpdateParams.payment_method_data.ideal.bank`
|
|
@@ -418,6 +720,15 @@ This was added to maintain backwards compatibility during the transition of stri
|
|
|
418
720
|
* Add support for new value `igst` on enums `TaxRate.tax_type`, `TaxRateCreateParams.tax_type`, and `TaxRateUpdateParams.tax_type`
|
|
419
721
|
* [#1687](https://github.com/stripe/stripe-node/pull/1687) Convert TypeScript files to use ES modules
|
|
420
722
|
|
|
723
|
+
## 11.12.0-beta.1 - 2023-02-16
|
|
724
|
+
* [#1686](https://github.com/stripe/stripe-node/pull/1686) API Updates for beta branch
|
|
725
|
+
* Updated stable APIs to the latest version
|
|
726
|
+
* Change type of `Quote.status_details.canceled` from `QuotesResourceStatusDetailsCanceledStatusDetails | null` to `QuotesResourceStatusDetailsCanceledStatusDetails`
|
|
727
|
+
* Change type of `Quote.status_details.stale` from `QuotesResourceStatusDetailsStaleStatusDetails | null` to `QuotesResourceStatusDetailsStaleStatusDetails`
|
|
728
|
+
* Change `Quote.status_details.canceled` and `Quote.status_details.stale` to be optional
|
|
729
|
+
* Remove support for `reference` on `Tax.Calculation` and `TaxCalculationCreateParams`
|
|
730
|
+
* Add support for `reference` on `TaxTransactionCreateParams`
|
|
731
|
+
|
|
421
732
|
## 11.11.0 - 2023-02-16
|
|
422
733
|
* [#1681](https://github.com/stripe/stripe-node/pull/1681) API Updates
|
|
423
734
|
* Add support for `refund_payment` method on resource `Terminal.Reader`
|
|
@@ -432,9 +743,32 @@ This was added to maintain backwards compatibility during the transition of stri
|
|
|
432
743
|
* [#1685](https://github.com/stripe/stripe-node/pull/1685) Add more webhook parsing checks
|
|
433
744
|
* [#1684](https://github.com/stripe/stripe-node/pull/1684) Add infrastructure for mocked tests
|
|
434
745
|
|
|
746
|
+
## 11.11.0-beta.1 - 2023-02-13
|
|
747
|
+
* [#1676](https://github.com/stripe/stripe-node/pull/1676) API Updates for beta branch
|
|
748
|
+
* Updated stable APIs to the latest version
|
|
749
|
+
* Add support for `currency_conversion` on `Checkout.Session`
|
|
750
|
+
* Add support for `limits` on `FinancialConnections.Session` and `FinancialConnectionsSessionCreateParams`
|
|
751
|
+
* Remove support for `enabled` on `FinancialConnectionsSessionCreateParams.manual_entry`
|
|
752
|
+
|
|
435
753
|
## 11.10.0 - 2023-02-09
|
|
436
754
|
* [#1679](https://github.com/stripe/stripe-node/pull/1679) Enable library to work in worker environments without extra configuration.
|
|
437
755
|
|
|
756
|
+
## 11.10.0-beta.1 - 2023-02-02
|
|
757
|
+
* [#1671](https://github.com/stripe/stripe-node/pull/1671) API Updates for beta branch
|
|
758
|
+
* Updated stable APIs to the latest version
|
|
759
|
+
* Add support for new resource `FinancialConnections.Transaction`
|
|
760
|
+
* Add support for `list` method on resource `Transaction`
|
|
761
|
+
* Add support for `prefetch` on `.payment_method_options.us_bank_account.financial_connections` across several APIs
|
|
762
|
+
* Change `CheckoutSessionCreateParams.payment_method_options.paypal.currency`, `IssuingCardholderCreateParams.individual.first_name`, `IssuingCardholderCreateParams.individual.last_name`, `IssuingCardholderUpdateParams.individual.first_name`, `IssuingCardholderUpdateParams.individual.last_name`, and `Quote.subscription_data_overrides[].bill_on_acceptance` to be optional
|
|
763
|
+
* Add support for new values `inferred_balances` and `transactions` on enum `FinancialConnectionsAccountRefreshParams.features[]`
|
|
764
|
+
* Add support for `inferred_balances_refresh`, `subscriptions`, and `transaction_refresh` on `FinancialConnections.Account`
|
|
765
|
+
* Add support for `manual_entry` on `FinancialConnections.Session` and `FinancialConnectionsSessionCreateParams`
|
|
766
|
+
* Add support for `status_details` and `status` on `FinancialConnections.Session`
|
|
767
|
+
* Add support for new value `ownership` on enums `Invoice.payment_settings.payment_method_options.us_bank_account.financial_connections.permissions[]` and `Subscription.payment_settings.payment_method_options.us_bank_account.financial_connections.permissions[]`
|
|
768
|
+
* Add support for `account_number` on `PaymentMethod.us_bank_account`
|
|
769
|
+
* Remove support for `id` on `QuoteCreateParams.lines[].starts_at.line_ends_at`
|
|
770
|
+
* Add support for new values `customer.subscription.paused`, `customer.subscription.resumed`, `financial_connections.account.refreshed_inferred_balances`, `financial_connections.account.refreshed_ownership`, `financial_connections.account.refreshed_transactions`, and `financial_connections.session.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
|
|
771
|
+
|
|
438
772
|
## 11.9.1 - 2023-02-03
|
|
439
773
|
* [#1672](https://github.com/stripe/stripe-node/pull/1672) Update main entrypoint on package.json
|
|
440
774
|
|
|
@@ -460,12 +794,23 @@ This was added to maintain backwards compatibility during the transition of stri
|
|
|
460
794
|
* [#1668](https://github.com/stripe/stripe-node/pull/1668) Use EventTarget in worker / browser runtimes
|
|
461
795
|
* [#1667](https://github.com/stripe/stripe-node/pull/1667) fix: added support for TypeScript "NodeNext" module resolution
|
|
462
796
|
|
|
797
|
+
## 11.9.0-beta.1 - 2023-01-26
|
|
798
|
+
* [#1666](https://github.com/stripe/stripe-node/pull/1666) API Updates for beta branch
|
|
799
|
+
* Updated stable APIs to the latest version
|
|
800
|
+
* Add support for `billing_agreement_id` on `CheckoutSessionCreateParams.payment_method_options.paypal`
|
|
801
|
+
* Add support for `list_transactions` method on resource `Tax.Transaction`
|
|
802
|
+
* Change type of `QuoteUpdateParams.subscription_data_overrides` from `array(create_specs)` to `emptyStringable(array(update_specs))`
|
|
803
|
+
|
|
463
804
|
## 11.8.0 - 2023-01-26
|
|
464
805
|
* [#1665](https://github.com/stripe/stripe-node/pull/1665) API Updates
|
|
465
806
|
* Add support for new value `BE` on enums `Checkout.Session.payment_method_options.customer_balance.bank_transfer.eu_bank_transfer.country`, `Invoice.payment_settings.payment_method_options.customer_balance.bank_transfer.eu_bank_transfer.country`, `PaymentIntent.payment_method_options.customer_balance.bank_transfer.eu_bank_transfer.country`, and `Subscription.payment_settings.payment_method_options.customer_balance.bank_transfer.eu_bank_transfer.country`
|
|
466
807
|
* Add support for new values `cs-CZ`, `el-GR`, `en-CZ`, and `en-GR` on enums `PaymentIntentConfirmParams.payment_method_options.klarna.preferred_locale`, `PaymentIntentCreateParams.payment_method_options.klarna.preferred_locale`, and `PaymentIntentUpdateParams.payment_method_options.klarna.preferred_locale`
|
|
467
808
|
* [#1660](https://github.com/stripe/stripe-node/pull/1660) Introduce separate entry point for worker environments
|
|
468
|
-
|
|
809
|
+
|
|
810
|
+
## 11.8.0-beta.1 - 2023-01-19
|
|
811
|
+
* [#1662](https://github.com/stripe/stripe-node/pull/1662) API Updates for beta branch
|
|
812
|
+
* Updated stable APIs to the latest version
|
|
813
|
+
* Add support for `Tax.Settings` resource.
|
|
469
814
|
|
|
470
815
|
## 11.7.0 - 2023-01-19
|
|
471
816
|
* [#1661](https://github.com/stripe/stripe-node/pull/1661) API Updates
|
|
@@ -473,10 +818,39 @@ This was added to maintain backwards compatibility during the transition of stri
|
|
|
473
818
|
* Add support for new values `refund.created` and `refund.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
|
|
474
819
|
* [#1647](https://github.com/stripe/stripe-node/pull/1647) Bump json5 from 2.2.1 to 2.2.3
|
|
475
820
|
|
|
821
|
+
## 11.7.0-beta.2 - 2023-01-12
|
|
822
|
+
* [#1653](https://github.com/stripe/stripe-node/pull/1653) API Updates for beta branch
|
|
823
|
+
* Updated stable APIs to the latest version
|
|
824
|
+
* Add support for new resource `Tax.Registration`
|
|
825
|
+
* Add support for `create`, `list`, and `update` methods on resource `Registration`
|
|
826
|
+
* Add support for `controller` on `AccountCreateParams` and `AccountUpdateParams`
|
|
827
|
+
* Add support for `application` and `dashboard` on `Account.controller`
|
|
828
|
+
* Change type of `Quote.subscription_data_overrides[].proration_behavior` from `enum('always_invoice'|'create_prorations'|'none')` to `enum('always_invoice'|'create_prorations'|'none') | null`
|
|
829
|
+
* Remove support for `timestamp` on `QuoteLine.actions[].add_discount.discount_end`
|
|
830
|
+
* Change type of `QuoteLine.actions[].add_discount.discount_end.type` from `literal('timestamp')` to `literal('line_ends_at')`
|
|
831
|
+
* Remove support for `index` on `QuoteLine.actions[].add_item.discounts[]`, `QuoteLine.actions[].remove_discount`, `QuoteLine.actions[].set_discounts[]`, `QuoteLine.actions[].set_items[].discounts[]`, `SubscriptionSchedule.phases[].add_invoice_items[].discounts[]`, `SubscriptionSchedule.phases[].discounts[]`, and `SubscriptionSchedule.phases[].items[].discounts[]`
|
|
832
|
+
* Change `QuoteLine.actions[].add_discount.index` to be required
|
|
833
|
+
* Add support for new values `quote.accepting`, `quote.reestimated`, and `quote.stale` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
|
|
834
|
+
|
|
835
|
+
* Change `quote.draft_quote` implementation from hitting `POST /v1/quotes/{quote}/draft` to `POST /v1/quotes/{quote}/mark_draft`
|
|
836
|
+
|
|
837
|
+
## 11.7.0-beta.1 - 2023-01-05
|
|
838
|
+
* [#1648](https://github.com/stripe/stripe-node/pull/1648) API Updates for beta branch
|
|
839
|
+
* Updated stable APIs to the latest version
|
|
840
|
+
* Add support for `mark_stale_quote` method on resource `Quote`
|
|
841
|
+
* Add support for `duration` and `line_ends_at` on `QuoteCreateParams.subscription_data.bill_on_acceptance.bill_until`, `QuoteCreateParams.subscription_data_overrides[].bill_on_acceptance.bill_until`, `QuoteUpdateParams.subscription_data.bill_on_acceptance.bill_until`, and `QuoteUpdateParams.subscription_data_overrides[].bill_on_acceptance.bill_until`
|
|
842
|
+
* Remove support for `line_starts_at` on `QuoteCreateParams.subscription_data.bill_on_acceptance.bill_until`, `QuoteCreateParams.subscription_data_overrides[].bill_on_acceptance.bill_until`, `QuoteUpdateParams.subscription_data.bill_on_acceptance.bill_until`, and `QuoteUpdateParams.subscription_data_overrides[].bill_on_acceptance.bill_until`
|
|
843
|
+
* Add support for `metadata` on `Terminal.Reader.action.refund_payment` and `TerminalReaderRefundPaymentParams`
|
|
844
|
+
|
|
476
845
|
## 11.6.0 - 2023-01-05
|
|
477
846
|
* [#1646](https://github.com/stripe/stripe-node/pull/1646) API Updates
|
|
478
847
|
* Add support for `card_issuing` on `Issuing.Cardholder.individual`
|
|
479
848
|
|
|
849
|
+
## 11.6.0-beta.1 - 2022-12-22
|
|
850
|
+
* [#1643](https://github.com/stripe/stripe-node/pull/1643) API Updates for beta branch
|
|
851
|
+
* Updated stable APIs to the latest version
|
|
852
|
+
* Move `stripe.taxCalculations` to `stripe.tax.calculations` and `stripe.taxTransactions` to `stripe.tax.transactions`.
|
|
853
|
+
|
|
480
854
|
## 11.5.0 - 2022-12-22
|
|
481
855
|
* [#1642](https://github.com/stripe/stripe-node/pull/1642) API Updates
|
|
482
856
|
* Add support for new value `merchant_default` on enums `CashBalanceUpdateParams.settings.reconciliation_mode`, `CustomerCreateParams.cash_balance.settings.reconciliation_mode`, and `CustomerUpdateParams.cash_balance.settings.reconciliation_mode`
|
|
@@ -484,6 +858,13 @@ This was added to maintain backwards compatibility during the transition of stri
|
|
|
484
858
|
* Change `Checkout.SessionCreateParams.cancel_url` to be optional
|
|
485
859
|
* Change type of `Checkout.Session.cancel_url` from `string` to `string | null`
|
|
486
860
|
|
|
861
|
+
## 11.5.0-beta.1 - 2022-12-15
|
|
862
|
+
* [#1640](https://github.com/stripe/stripe-node/pull/1640) API Updates for beta branch
|
|
863
|
+
* Updated stable APIs to the latest version
|
|
864
|
+
* Add support for new resources `QuoteLine`, `TaxCalculation`, and `TaxTransaction`
|
|
865
|
+
* Add support for `create` and `list_line_items` methods on resource `TaxCalculation`
|
|
866
|
+
* Add support for `create_reversal`, `create`, and `retrieve` methods on resource `TaxTransaction`
|
|
867
|
+
|
|
487
868
|
## 11.4.0 - 2022-12-15
|
|
488
869
|
* [#1639](https://github.com/stripe/stripe-node/pull/1639) API Updates
|
|
489
870
|
* Add support for new value `invoice_overpaid` on enum `CustomerBalanceTransaction.type`
|
|
@@ -493,6 +874,12 @@ This was added to maintain backwards compatibility during the transition of stri
|
|
|
493
874
|
* [#1634](https://github.com/stripe/stripe-node/pull/1634) API Updates
|
|
494
875
|
* Change `CustomerListPaymentMethodsParams.type` and `PaymentMethodListParams.type` to be optional
|
|
495
876
|
|
|
877
|
+
## 11.3.0-beta.1 - 2022-12-08
|
|
878
|
+
* [#1635](https://github.com/stripe/stripe-node/pull/1635) API Updates for beta branch
|
|
879
|
+
* Updated stable APIs to the latest version
|
|
880
|
+
* [#1633](https://github.com/stripe/stripe-node/pull/1633) API Updates for beta branch
|
|
881
|
+
* Updated stable APIs to the latest version
|
|
882
|
+
|
|
496
883
|
## 11.2.0 - 2022-12-06
|
|
497
884
|
* [#1632](https://github.com/stripe/stripe-node/pull/1632) API Updates
|
|
498
885
|
* Add support for `flow_data` on `BillingPortal.SessionCreateParams`
|
|
@@ -516,7 +903,6 @@ This was added to maintain backwards compatibility during the transition of stri
|
|
|
516
903
|
* Add support for `custom_text` on `Checkout.Session`, `Checkout.SessionCreateParams`, `PaymentLinkCreateParams`, `PaymentLinkUpdateParams`, and `PaymentLink`
|
|
517
904
|
* Add support for `hosted_instructions_url` on `PaymentIntent.next_action.paynow_display_qr_code`
|
|
518
905
|
|
|
519
|
-
|
|
520
906
|
## 11.0.0 - 2022-11-16
|
|
521
907
|
|
|
522
908
|
This release includes breaking changes resulting from moving to use the new API version "2022-11-15". To learn more about these changes to Stripe products, see https://stripe.com/docs/upgrades#2022-11-15
|
|
@@ -529,62 +915,11 @@ This release includes breaking changes resulting from moving to use the new API
|
|
|
529
915
|
* [#1615](https://github.com/stripe/stripe-node/pull/1615) API Updates
|
|
530
916
|
* ⚠️ Remove support for `tos_shown_and_accepted` on `Checkout.SessionCreateParams.payment_method_options.paynow`. The property was mistakenly released and never worked.
|
|
531
917
|
|
|
532
|
-
|
|
533
|
-
*
|
|
534
|
-
*
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
* Remove `Orders` resource. (#1580)
|
|
538
|
-
* Remove `SKU` resource (#1583)
|
|
539
|
-
* Remove deprecated `Checkout.SessionCreateParams.subscription_data.items`. (#1580)
|
|
540
|
-
* Remove deprecated configuration setter methods (`setHost`, `setProtocol`, `setPort`, `setApiVersion`, `setApiKey`, `setTimeout`, `setAppInfo`, `setHttpAgent`, `setMaxNetworkRetries`, and `setTelemetryEnabled`). (#1597)
|
|
541
|
-
|
|
542
|
-
Use the config object to set these options instead, for example:
|
|
543
|
-
```typescript
|
|
544
|
-
const stripe = Stripe('sk_test_...', {
|
|
545
|
-
apiVersion: '2019-08-08',
|
|
546
|
-
maxNetworkRetries: 1,
|
|
547
|
-
httpAgent: new ProxyAgent(process.env.http_proxy),
|
|
548
|
-
timeout: 1000,
|
|
549
|
-
host: 'api.example.com',
|
|
550
|
-
port: 123,
|
|
551
|
-
telemetry: true,
|
|
552
|
-
});
|
|
553
|
-
```
|
|
554
|
-
* Remove deprecated basic method definitions. (#1600)
|
|
555
|
-
Use basic methods defined on the resource instead.
|
|
556
|
-
```typescript
|
|
557
|
-
// Before
|
|
558
|
-
basicMethods: true
|
|
559
|
-
|
|
560
|
-
// After
|
|
561
|
-
create: stripeMethod({
|
|
562
|
-
method: 'POST',
|
|
563
|
-
fullPath: '/v1/resource',
|
|
564
|
-
}),
|
|
565
|
-
list: stripeMethod({
|
|
566
|
-
method: 'GET',
|
|
567
|
-
methodType: 'list',
|
|
568
|
-
fullPath: '/v1/resource',
|
|
569
|
-
}),
|
|
570
|
-
retrieve: stripeMethod({
|
|
571
|
-
method: 'GET',
|
|
572
|
-
fullPath: '/v1/resource/{id}',
|
|
573
|
-
}),
|
|
574
|
-
update: stripeMethod({
|
|
575
|
-
method: 'POST',
|
|
576
|
-
fullPath: '/v1/resource/{id}',
|
|
577
|
-
}),
|
|
578
|
-
// Avoid 'delete' keyword in JS
|
|
579
|
-
del: stripeMethod({
|
|
580
|
-
method: 'DELETE',
|
|
581
|
-
fullPath: '/v1/resource/{id}',
|
|
582
|
-
}),
|
|
583
|
-
```
|
|
584
|
-
* Remove deprecated option names. Use the following option names instead (`OLD`->`NEW`): `api_key`->`apiKey`, `idempotency_key`->`idempotencyKey`, `stripe_account`->`stripeAccount`, `stripe_version`->`apiVersion`, `stripeVersion`->`apiVersion`. (#1600)
|
|
585
|
-
* Remove `charges` field on `PaymentIntent` and replace it with `latest_charge`. (#1614 )
|
|
586
|
-
* Remove deprecated `amount` field on `Checkout.Session.LineItem`. (#1614 )
|
|
587
|
-
* Remove support for `tos_shown_and_accepted` on `Checkout.Session.PaymentMethodOptions.Paynow`. (#1614 )
|
|
918
|
+
## 10.18.0-beta.1 - 2022-11-10
|
|
919
|
+
* [#1616](https://github.com/stripe/stripe-node/pull/1616) API Updates for beta branch
|
|
920
|
+
* Updated stable APIs to the latest version
|
|
921
|
+
* Add `discount_end` to `Discount`.
|
|
922
|
+
* Add `url` to `MerchantData`.
|
|
588
923
|
|
|
589
924
|
## 10.17.0 - 2022-11-08
|
|
590
925
|
* [#1610](https://github.com/stripe/stripe-node/pull/1610) API Updates
|
|
@@ -598,6 +933,22 @@ This release includes breaking changes resulting from moving to use the new API
|
|
|
598
933
|
* Add support for `on_behalf_of` on `Checkout.SessionCreateParams.subscription_data`, `SubscriptionCreateParams`, `SubscriptionSchedule.default_settings`, `SubscriptionSchedule.phases[]`, `SubscriptionScheduleCreateParams.default_settings`, `SubscriptionScheduleCreateParams.phases[]`, `SubscriptionScheduleUpdateParams.default_settings`, `SubscriptionScheduleUpdateParams.phases[]`, `SubscriptionUpdateParams`, and `Subscription`
|
|
599
934
|
* Add support for `tax_behavior` and `tax_code` on `InvoiceItemCreateParams`, `InvoiceItemUpdateParams`, `InvoiceUpcomingLinesParams.invoice_items[]`, and `InvoiceUpcomingParams.invoice_items[]`
|
|
600
935
|
|
|
936
|
+
## 10.16.0-beta.2 - 2022-11-02
|
|
937
|
+
* [#1598](https://github.com/stripe/stripe-node/pull/1598) API Updates for beta branch
|
|
938
|
+
* Updated beta APIs to the latest stable version
|
|
939
|
+
* Add support for `cashappPayments` and `zipPayments` on `Account`.
|
|
940
|
+
* Add support for `cashapp` and `zip` on `Charge`, `PaymentMethod`.
|
|
941
|
+
* Add support for `trialSettings` on `SubscriptionSchedule`.
|
|
942
|
+
|
|
943
|
+
## 10.16.0-beta.1 - 2022-10-21
|
|
944
|
+
* [#1589](https://github.com/stripe/stripe-node/pull/1589) API Updates for beta branch
|
|
945
|
+
* Updated stable APIs to the latest version
|
|
946
|
+
* Add support for new value `revoked` on enum `CapitalFinancingOfferListParams.status`
|
|
947
|
+
* Add support for `paypal` on `Charge.payment_method_details` and `Source`
|
|
948
|
+
* Add support for `network_data` on `Issuing.Transaction`
|
|
949
|
+
* Add support for new value `paypal` on enum `Source.type`
|
|
950
|
+
* Add support for `billing_cycle_anchor` on `SubscriptionScheduleAmendParams.amendments[]`
|
|
951
|
+
|
|
601
952
|
## 10.15.0 - 2022-10-20
|
|
602
953
|
* [#1588](https://github.com/stripe/stripe-node/pull/1588) API Updates
|
|
603
954
|
* Add support for new values `jp_trn` and `ke_pin` on enums `Checkout.Session.customer_details.tax_ids[].type`, `Invoice.customer_tax_ids[].type`, `Order.tax_details.tax_ids[].type`, and `TaxId.type`
|
|
@@ -605,6 +956,11 @@ This release includes breaking changes resulting from moving to use the new API
|
|
|
605
956
|
* Add support for `tipping` on `Terminal.Reader.action.process_payment_intent.process_config` and `Terminal.ReaderProcessPaymentIntentParams.process_config`
|
|
606
957
|
* [#1585](https://github.com/stripe/stripe-node/pull/1585) use native UUID method if available
|
|
607
958
|
|
|
959
|
+
## 10.15.0-beta.1 - 2022-10-14
|
|
960
|
+
* Add support for `schedule_settings` on `SubscriptionScheduleAmendParams`
|
|
961
|
+
* Add support for new value `upcoming_invoice` on enum `SubscriptionScheduleAmendParams.amendments[].amendment_end.type`
|
|
962
|
+
* Add support for new values `schedule_end` and `upcoming_invoice` on enum `SubscriptionScheduleAmendParams.amendments[].amendment_start.type`
|
|
963
|
+
|
|
608
964
|
## 10.14.0 - 2022-10-13
|
|
609
965
|
* [#1582](https://github.com/stripe/stripe-node/pull/1582) API Updates
|
|
610
966
|
* Add support for new values `invalid_representative_country` and `verification_failed_residential_address` on enums `Account.future_requirements.errors[].code`, `Account.requirements.errors[].code`, `Capability.future_requirements.errors[].code`, `Capability.requirements.errors[].code`, `Person.future_requirements.errors[].code`, and `Person.requirements.errors[].code`
|
|
@@ -612,6 +968,11 @@ This release includes breaking changes resulting from moving to use the new API
|
|
|
612
968
|
* Add support for `network_data` on `Issuing.Authorization`
|
|
613
969
|
* ⚠️ Remove `currency`, `description`, `images`, and `name` from `Checkout.SessionCreateParams`. These properties do not work on the latest API version. (fixes #1575)
|
|
614
970
|
|
|
971
|
+
## 10.14.0-beta.1 - 2022-10-07
|
|
972
|
+
* [#1572](https://github.com/stripe/stripe-node/pull/1572) API Updates for beta branch
|
|
973
|
+
* Updated stable APIs to the latest version
|
|
974
|
+
* Add `reference_id` to `Paypal` interface.
|
|
975
|
+
|
|
615
976
|
## 10.13.0 - 2022-10-06
|
|
616
977
|
* [#1571](https://github.com/stripe/stripe-node/pull/1571) API Updates
|
|
617
978
|
* Add support for new value `invalid_dob_age_under_18` on enums `Account.future_requirements.errors[].code`, `Account.requirements.errors[].code`, `Capability.future_requirements.errors[].code`, `Capability.requirements.errors[].code`, `Person.future_requirements.errors[].code`, and `Person.requirements.errors[].code`
|
|
@@ -632,6 +993,11 @@ This release includes breaking changes resulting from moving to use the new API
|
|
|
632
993
|
* [#1562](https://github.com/stripe/stripe-node/pull/1562) Restore lib after generating
|
|
633
994
|
* [#1551](https://github.com/stripe/stripe-node/pull/1551) Re-introduce Typescript changes
|
|
634
995
|
|
|
996
|
+
## 10.12.0-beta.1 - 2022-09-26
|
|
997
|
+
* [#1561](https://github.com/stripe/stripe-node/pull/1561) API Updates for beta branch
|
|
998
|
+
* Updated stable APIs to the latest version
|
|
999
|
+
* Add `FinancingOffer`, `FinancingSummary` and `FinancingTransaction` resources.
|
|
1000
|
+
|
|
635
1001
|
## 10.11.0 - 2022-09-22
|
|
636
1002
|
* [#1560](https://github.com/stripe/stripe-node/pull/1560) API Updates
|
|
637
1003
|
* Add support for `terms_of_service` on `Checkout.Session.consent_collection`, `Checkout.Session.consent`, `Checkout.SessionCreateParams.consent_collection`, `PaymentLink.consent_collection`, and `PaymentLinkCreateParams.consent_collection`
|
|
@@ -639,7 +1005,6 @@ This release includes breaking changes resulting from moving to use the new API
|
|
|
639
1005
|
* Add support for `statement_descriptor` on `PaymentIntentIncrementAuthorizationParams`
|
|
640
1006
|
* Change `SubscriptionSchedule.phases[].currency` to be required
|
|
641
1007
|
|
|
642
|
-
|
|
643
1008
|
## 10.10.0 - 2022-09-15
|
|
644
1009
|
* [#1552](https://github.com/stripe/stripe-node/pull/1552) API Updates
|
|
645
1010
|
* Add support for `pix` on `Charge.payment_method_details`, `Checkout.Session.payment_method_options`, `Checkout.SessionCreateParams.payment_method_options`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodCreateParams`, `PaymentMethod`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
|
|
@@ -682,6 +1047,11 @@ This release includes breaking changes resulting from moving to use the new API
|
|
|
682
1047
|
* [#1532](https://github.com/stripe/stripe-node/pull/1532) Update coveralls step to run for one node version, remove finish step
|
|
683
1048
|
* [#1531](https://github.com/stripe/stripe-node/pull/1531) Regen yarn.lock.
|
|
684
1049
|
|
|
1050
|
+
## 10.6.0-beta.1 - 2022-08-26
|
|
1051
|
+
* [#1529](https://github.com/stripe/stripe-node/pull/1529) API Updates for beta branch
|
|
1052
|
+
* Updated stable APIs to the latest version
|
|
1053
|
+
* Add support for the beta [Gift Card API](https://stripe.com/docs/gift-cards).
|
|
1054
|
+
|
|
685
1055
|
## 10.5.0 - 2022-08-24
|
|
686
1056
|
* [#1527](https://github.com/stripe/stripe-node/pull/1527) fix: Update FetchHttpClient to send empty string for empty POST/PUT/PATCH requests.
|
|
687
1057
|
* [#1528](https://github.com/stripe/stripe-node/pull/1528) Update README.md to use a new NOTE notation
|
|
@@ -696,6 +1066,11 @@ This release includes breaking changes resulting from moving to use the new API
|
|
|
696
1066
|
* Change the return type of `Customer.fundCashBalance` test helper from `CustomerBalanceTransaction` to `CustomerCashBalanceTransaction`.
|
|
697
1067
|
* This would generally be considered a breaking change, but we've worked with all existing users to migrate and are comfortable releasing this as a minor as it is solely a test helper method. This was essentially broken prior to this change.
|
|
698
1068
|
|
|
1069
|
+
## 10.4.0-beta.1 - 2022-08-23
|
|
1070
|
+
* [#1523](https://github.com/stripe/stripe-node/pull/1523) API Updates for beta branch
|
|
1071
|
+
- Updated stable APIs to the latest version
|
|
1072
|
+
- `Stripe-Version` beta headers are not pinned by-default and need to be manually specified, please refer to [beta SDKs README section](https://github.com/stripe/stripe-node/blob/master/README.md#beta-sdks)
|
|
1073
|
+
* [#1521](https://github.com/stripe/stripe-node/pull/1521) fix: Update FetchHttpClient to send empty string for empty POST/PUT/PATCH requests.
|
|
699
1074
|
|
|
700
1075
|
## 10.3.0 - 2022-08-19
|
|
701
1076
|
* [#1516](https://github.com/stripe/stripe-node/pull/1516) API Updates
|
|
@@ -708,11 +1083,15 @@ This release includes breaking changes resulting from moving to use the new API
|
|
|
708
1083
|
* Add support for new value `customer_cash_balance_transaction.created` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
|
|
709
1084
|
* [#1515](https://github.com/stripe/stripe-node/pull/1515) Add a support section to the readme
|
|
710
1085
|
|
|
1086
|
+
## 10.3.0-beta.1 - 2022-08-11
|
|
1087
|
+
* [#1511](https://github.com/stripe/stripe-node/pull/1511) API Updates for beta branch
|
|
1088
|
+
- Updated stable APIs to the latest version
|
|
1089
|
+
- Add refund_payment method to Terminal resource
|
|
1090
|
+
|
|
711
1091
|
## 10.2.0 - 2022-08-11
|
|
712
1092
|
* [#1510](https://github.com/stripe/stripe-node/pull/1510) API Updates
|
|
713
1093
|
* Add support for `payment_method_collection` on `Checkout.Session`, `Checkout.SessionCreateParams`, `PaymentLinkCreateParams`, `PaymentLinkUpdateParams`, and `PaymentLink`
|
|
714
1094
|
|
|
715
|
-
|
|
716
1095
|
## 10.1.0 - 2022-08-09
|
|
717
1096
|
* [#1506](https://github.com/stripe/stripe-node/pull/1506) API Updates
|
|
718
1097
|
* Add support for `process_config` on `Terminal.Reader.action.process_payment_intent`
|
|
@@ -722,50 +1101,22 @@ This release includes breaking changes resulting from moving to use the new API
|
|
|
722
1101
|
* [#1503](https://github.com/stripe/stripe-node/pull/1503) API Updates
|
|
723
1102
|
* Add support for `expires_at` on `Apps.Secret` and `Apps.SecretCreateParams`
|
|
724
1103
|
|
|
1104
|
+
## 10.1.0-beta.1 - 2022-08-03
|
|
1105
|
+
* [#1498](https://github.com/stripe/stripe-node/pull/1498) API Updates for beta branch
|
|
1106
|
+
- Updated stable APIs to the latest version
|
|
1107
|
+
- Added the `Order` resource support
|
|
1108
|
+
|
|
725
1109
|
## 10.0.0 - 2022-08-02
|
|
726
1110
|
|
|
727
|
-
|
|
1111
|
+
Major version release for API version 2022-08-01. Default API version changed to "2022-08-01".
|
|
728
1112
|
|
|
729
|
-
|
|
730
|
-
* Cleaning up the SDK to remove deprecated/unused APIs and rename classes/methods/properties to sync with product APIs. Read more detailed description at https://github.com/stripe/stripe-node/wiki/Migration-guide-for-v10.
|
|
1113
|
+
Breaking changes that arose during code generation of the library that we postponed for the next major version. For changes to the SDK, read more detailed description at https://github.com/stripe/stripe-node/wiki/Migration-guide-for-v10. For changes to the Stripe products, read more at https://stripe.com/docs/upgrades#2022-08-01.
|
|
731
1114
|
|
|
732
1115
|
"⚠️" symbol highlights breaking changes.
|
|
733
1116
|
|
|
734
1117
|
* [#1497](https://github.com/stripe/stripe-node/pull/1497) API Updates
|
|
735
1118
|
* [#1493](https://github.com/stripe/stripe-node/pull/1493) Next major release changes
|
|
736
1119
|
|
|
737
|
-
### Added
|
|
738
|
-
* Add support for new value `invalid_tos_acceptance` on enums `Account.future_requirements.errors[].code`, `Account.requirements.errors[].code`, `Capability.future_requirements.errors[].code`, `Capability.requirements.errors[].code`, `Person.future_requirements.errors[].code`, and `Person.requirements.errors[].code`
|
|
739
|
-
* Add support for `shipping_cost` and `shipping_details` on `Checkout.Session`
|
|
740
|
-
|
|
741
|
-
### ⚠️ Changed
|
|
742
|
-
* Change type of `business_profile`, `business_type`, `country`, `default_currency`, and `settings` properties on `Account` resource to be nullable.
|
|
743
|
-
* Change type of `currency` property on `Checkout.Session` resource from `string` to `'cad' | 'usd'`.
|
|
744
|
-
* Change location of TypeScript definitions for `CreditNoteLineItemListPreviewParams`, `CreditNoteLineItemListPreviewParams.Line`, `CreditNoteLineItemListPreviewParams.Line.Type`, and `CreditNoteLineItemListPreviewParams.Line.Reason` interfaces from `CreditNoteLineItems.d.ts` to `CreditNotes.d.ts`.
|
|
745
|
-
* Change type of `address`, `currency`, `delinquent`, `discount`, `invoice_prefix`, `name`, `phone`, and `preferred_locales` properties on `Customer` resource to be nullable.
|
|
746
|
-
* Rename `InvoiceRetrieveUpcomingParams` to `InvoiceListUpcomingLinesParams`.
|
|
747
|
-
|
|
748
|
-
### ⚠️ Removed
|
|
749
|
-
* Remove for `AlipayAccount`, `DeletedAlipayAccount`, `BitcoinReceiver`, `DeletedBitcoinReceiver`, `BitcoinTransaction`, and `BitcoinTransactionListParams` definitions.
|
|
750
|
-
* Remove `AlipayAccount` and `BitcoinReceiver` from `CustomerSource`.
|
|
751
|
-
* Remove `Stripe.DeletedAlipayAccount` and `Stripe.DeletedBitcoinReceiver` from possible values of `source` property in `PaymentIntent`.
|
|
752
|
-
* Remove `IssuerFraudRecord`, `IssuerFraudRecordRetrieveParams`, `IssuerFraudRecordListParams`, and `IssuerFraudRecordsResource`, definitions.
|
|
753
|
-
* Remove `treasury.received_credit.reversed` webhook event constant. Please use `treasury.received_credit.returned` instead.
|
|
754
|
-
* Remove `order.payment_failed`, `transfer.failed`, and `transfer.paid`. The events were deprecated.
|
|
755
|
-
* Remove `retrieveDetails` method from `Issuing.Card` resource. The method was unsupported. Read more at https://stripe.com/docs/issuing/cards/virtual.
|
|
756
|
-
* Remove `Issuing.CardDetails` and `CardRetrieveDetailsParams` definition.
|
|
757
|
-
* Remove `IssuerFraudRecords` resource.
|
|
758
|
-
* Remove `Recipient` resource and`recipient` property from `Card` resource.
|
|
759
|
-
* Remove `InvoiceMarkUncollectibleParams` definition.
|
|
760
|
-
* Remove deprecated `Stripe.Errors` and `StripeError` (and derived `StripeCardError`, `StripeInvalidRequestError`, `StripeAPIError`, `StripeAuthenticationError`, `StripePermissionError`, `StripeRateLimitError`, `StripeConnectionError`, `StripeSignatureVerificationError`, `StripeIdempotencyError`, and `StripeInvalidGrantError`) definitions.
|
|
761
|
-
* Remove `redirect_url` from `LoginLinks` definition. The property is no longer supported.
|
|
762
|
-
* Remove `LineItemListParams` definition. The interface was no longer in use.
|
|
763
|
-
|
|
764
|
-
### ⚠️ Renamed
|
|
765
|
-
* Rename `listUpcomingLineItems` method on `Invoice` resource to `listUpcomingLines`.
|
|
766
|
-
* Rename `InvoiceLineItemListUpcomingParams` to `InvoiceListUpcomingLinesParams`.
|
|
767
|
-
* Rename `InvoiceRetrieveUpcomingParams` to `InvoiceListUpcomingLinesParams`.
|
|
768
|
-
|
|
769
1120
|
## 9.16.0 - 2022-07-26
|
|
770
1121
|
* [#1492](https://github.com/stripe/stripe-node/pull/1492) API Updates
|
|
771
1122
|
* Add support for new value `exempted` on enums `Charge.payment_method_details.card.three_d_secure.result` and `SetupAttempt.payment_method_details.card.three_d_secure.result`
|
|
@@ -782,6 +1133,20 @@ This release includes breaking changes resulting from:
|
|
|
782
1133
|
* Add support for `mandate` on `InvoicePayParams`
|
|
783
1134
|
* Add support for `product_data` on `OrderCreateParams.line_items[]` and `OrderUpdateParams.line_items[]`
|
|
784
1135
|
|
|
1136
|
+
## 9.15.0-beta.1 - 2022-07-22
|
|
1137
|
+
* [#1485](https://github.com/stripe/stripe-node/pull/1485) API Updates for beta branch
|
|
1138
|
+
- Updated stable APIs to the latest version
|
|
1139
|
+
* [#1483](https://github.com/stripe/stripe-node/pull/1483) API Updates for beta branch
|
|
1140
|
+
- Updated stable APIs to the latest version
|
|
1141
|
+
- Add `QuotePhase` resource
|
|
1142
|
+
* [#1479](https://github.com/stripe/stripe-node/pull/1479) API Updates for beta branch
|
|
1143
|
+
- Updated stable APIs to the latest version
|
|
1144
|
+
- Add `Price.migrate_to` property
|
|
1145
|
+
- Add `SubscriptionSchedule.amend` method.
|
|
1146
|
+
- Add `Discount.subscription_item` property.
|
|
1147
|
+
- Add `Quote.subscription_data.billing_behavior`, `billing_cycle_anchor`, `end_behavior`, `from_schedule`, `from_subscription`, `prebilling`, `proration_behavior` properties.
|
|
1148
|
+
- Add `phases` parameter to `Quote.create`
|
|
1149
|
+
- Add `Subscription.discounts`, `prebilling` properties.
|
|
785
1150
|
|
|
786
1151
|
## 9.14.0 - 2022-07-18
|
|
787
1152
|
* [#1477](https://github.com/stripe/stripe-node/pull/1477) API Updates
|
|
@@ -805,6 +1170,18 @@ This release includes breaking changes resulting from:
|
|
|
805
1170
|
* Change `Transfer.source_type` to be optional and not nullable
|
|
806
1171
|
* [#1471](https://github.com/stripe/stripe-node/pull/1471) Update readme to include a note on beta packages
|
|
807
1172
|
|
|
1173
|
+
## 9.13.0-beta.1 - 2022-07-07
|
|
1174
|
+
* [#1469](https://github.com/stripe/stripe-node/pull/1469) API Updates for beta branch
|
|
1175
|
+
- Include `server_side_confirmation_beta=v1` beta
|
|
1176
|
+
- Add `secretKeyConfirmation` to `PaymentIntent`
|
|
1177
|
+
* [#1451](https://github.com/stripe/stripe-node/pull/1451) API Updates
|
|
1178
|
+
- Updated stable APIs to the latest version
|
|
1179
|
+
* [#1457](https://github.com/stripe/stripe-node/pull/1457) Use the generated API version
|
|
1180
|
+
* [#1445](https://github.com/stripe/stripe-node/pull/1445) Support updating pre-release versions
|
|
1181
|
+
* [#1442](https://github.com/stripe/stripe-node/pull/1442) API Updates
|
|
1182
|
+
* Add support for `network_details` method on resource `ReceivedCredits`/`ReceivedDebits`
|
|
1183
|
+
* [#1444](https://github.com/stripe/stripe-node/pull/1444) Merge master branch into beta branch
|
|
1184
|
+
|
|
808
1185
|
## 9.12.0 - 2022-07-07
|
|
809
1186
|
* [#1468](https://github.com/stripe/stripe-node/pull/1468) API Updates
|
|
810
1187
|
* Add support for `currency` on `Checkout.SessionCreateParams`, `InvoiceUpcomingLinesParams`, `InvoiceUpcomingParams`, `PaymentLinkCreateParams`, `SubscriptionCreateParams`, `SubscriptionSchedule.phases[]`, `SubscriptionScheduleCreateParams.phases[]`, `SubscriptionScheduleUpdateParams.phases[]`, and `Subscription`
|
|
@@ -867,6 +1244,10 @@ This release includes breaking changes resulting from:
|
|
|
867
1244
|
* Change type of `Order.payment.settings.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, `OrderCreateParams.payment.settings.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, `OrderUpdateParams.payment.settings.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, `PaymentIntent.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, `PaymentIntentConfirmParams.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, `PaymentIntentCreateParams.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, and `PaymentIntentUpdateParams.payment_method_options.customer_balance.bank_transfer.requested_address_types[]` from `literal('zengin')` to `enum`
|
|
868
1245
|
* Add support for `custom_unit_amount` on `PriceCreateParams` and `Price`
|
|
869
1246
|
|
|
1247
|
+
## 9.8.0-beta.1 - 2022-06-08
|
|
1248
|
+
* [#1442](https://github.com/stripe/stripe-node/pull/1442) API Updates
|
|
1249
|
+
* Add support for `network_details` method on resource `ReceivedCredits`/`ReceivedDebits`
|
|
1250
|
+
|
|
870
1251
|
## 9.7.0 - 2022-06-08
|
|
871
1252
|
* [#1441](https://github.com/stripe/stripe-node/pull/1441) API Updates
|
|
872
1253
|
* Add support for `affirm`, `bancontact`, `card`, `ideal`, `p24`, and `sofort` on `Checkout.Session.payment_method_options` and `Checkout.SessionCreateParams.payment_method_options`
|
|
@@ -887,7 +1268,6 @@ This release includes breaking changes resulting from:
|
|
|
887
1268
|
* Add support for `network` on `SetupIntent.payment_method_options.card`
|
|
888
1269
|
* Add support for new value `simulated_wisepos_e` on enums `Terminal.Reader.device_type` and `Terminal.ReaderListParams.device_type`
|
|
889
1270
|
|
|
890
|
-
|
|
891
1271
|
## 9.5.0 - 2022-05-26
|
|
892
1272
|
* [#1434](https://github.com/stripe/stripe-node/pull/1434) API Updates
|
|
893
1273
|
* Add support for `affirm_payments` and `link_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
|
|
@@ -958,7 +1338,6 @@ Major version release - The [migration guide](https://github.com/stripe/stripe-n
|
|
|
958
1338
|
* Add support for `default_price` on `ProductUpdateParams` and `Product`
|
|
959
1339
|
* Add support for `instructions_email` on `RefundCreateParams` and `Refund`
|
|
960
1340
|
|
|
961
|
-
|
|
962
1341
|
## 8.221.0 - 2022-05-05
|
|
963
1342
|
* [#1413](https://github.com/stripe/stripe-node/pull/1413) API Updates
|
|
964
1343
|
* Add support for new resources `FinancialConnections.AccountOwner`, `FinancialConnections.AccountOwnership`, `FinancialConnections.Account`, and `FinancialConnections.Session`
|
|
@@ -1235,7 +1614,6 @@ Major version release - The [migration guide](https://github.com/stripe/stripe-n
|
|
|
1235
1614
|
* [#1297](https://github.com/stripe/stripe-node/pull/1297) API Updates
|
|
1236
1615
|
* Add support for `automatic_payment_methods` on `PaymentIntentCreateParams` and `PaymentIntent`
|
|
1237
1616
|
|
|
1238
|
-
|
|
1239
1617
|
## 8.189.0 - 2021-11-16
|
|
1240
1618
|
* [#1295](https://github.com/stripe/stripe-node/pull/1295) API Updates
|
|
1241
1619
|
* Add support for new resource `ShippingRate`
|
|
@@ -1258,7 +1636,6 @@ Major version release - The [migration guide](https://github.com/stripe/stripe-n
|
|
|
1258
1636
|
* Remove support for `ownership_declaration_shown_and_signed` on `TokenCreateParams.account`. This API was unused.
|
|
1259
1637
|
* Add support for `ownership_declaration_shown_and_signed` on `TokenCreateParams.account.company`
|
|
1260
1638
|
|
|
1261
|
-
|
|
1262
1639
|
## 8.186.0 - 2021-11-01
|
|
1263
1640
|
* [#1283](https://github.com/stripe/stripe-node/pull/1283) API Updates
|
|
1264
1641
|
* Add support for `ownership_declaration` on `AccountUpdateParams.company`, `AccountCreateParams.company`, `Account.company`, and `TokenCreateParams.account.company`
|
|
@@ -1402,7 +1779,6 @@ Major version release - The [migration guide](https://github.com/stripe/stripe-n
|
|
|
1402
1779
|
* Add support for `wallet` on `Issuing.Transaction`
|
|
1403
1780
|
* Add support for `ideal` on `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentIntentConfirmParams.payment_method_options`, and `PaymentIntent.payment_method_options`
|
|
1404
1781
|
|
|
1405
|
-
|
|
1406
1782
|
## 8.163.0 - 2021-07-15
|
|
1407
1783
|
* [#1102](https://github.com/stripe/stripe-node/pull/1102), [#1191](https://github.com/stripe/stripe-node/pull/1191) Add support for `stripeAccount` when initializing the client
|
|
1408
1784
|
|
|
@@ -2935,7 +3311,7 @@ Pull requests included in this release (cf. [#606](https://github.com/stripe/str
|
|
|
2935
3311
|
|
|
2936
3312
|
- [BUGFIX] Fix incorrect deleteDiscount method & related spec(s)
|
|
2937
3313
|
|
|
2938
|
-
|
|
3314
|
+
## 2.2.1 - 2013-12-01
|
|
2939
3315
|
|
|
2940
3316
|
- [BUGFIX] Fix user-agent header issue (see issue #75)
|
|
2941
3317
|
|
|
@@ -2998,3 +3374,4 @@ Pull requests included in this release (cf. [#606](https://github.com/stripe/str
|
|
|
2998
3374
|
## 0.0.2 - 2011-09-28
|
|
2999
3375
|
|
|
3000
3376
|
- Initial release with customers and tokens APIs
|
|
3377
|
+
|