Releases: stripe/stripe-node
v19.2.0-alpha.4
- #2471 Update generated code for private-preview
- Add support for new resource
V2.Billing.PricingPlanSubscriptionComponents - Add support for
retrievemethod on resourceV2.Billing.PricingPlanSubscriptionComponents - Add support for
dimension_payload_keysonBilling.MeterCreateParamsandBilling.Meter - Add support for
dimension_filtersanddimension_group_by_keysonBilling.MeterListMeterEventSummariesParams - Add support for
dimensionsonBilling.MeterEventSummary - Add support for
fulfillment_detailsandpayment_method_dataonDelegatedCheckout.RequestedSessionCreateParamsandDelegatedCheckout.RequestedSessionUpdateParams - Add support for
line_item_details,metadata,payment_method, andshared_metadataonDelegatedCheckout.RequestedSessionCreateParams,DelegatedCheckout.RequestedSessionUpdateParams, andDelegatedCheckout.RequestedSession - Add support for
currency,customer, andrisk_detailsonDelegatedCheckout.RequestedSessionCreateParams - Add support for
seller_detailsandsetup_future_usageonDelegatedCheckout.RequestedSessionCreateParamsandDelegatedCheckout.RequestedSession - Add support for
amount_subtotal,amount_total,created_at,expires_at,order_details,shared_payment_issued_token,status,total_details, andupdated_atonDelegatedCheckout.RequestedSession - Add support for
address,email,fulfillment_options,name,phone, andselected_fulfillment_optiononDelegatedCheckout.RequestedSession.fulfillment_details - Add support for new values
billie,crypto,kr_card,kriya,mb_way,mondu,ng_bank_transfer,ng_bank,ng_card,ng_market,ng_ussd,ng_wallet,payco,paypay,rechnung,samsung_pay,satispay,scalapay,sequra,sunbit,us_bank_account, andvippson enumsEventsV2CoreHealthAuthorizationRateDropFiringEvent.impact.payment_method_type,EventsV2CoreHealthAuthorizationRateDropResolvedEvent.impact.payment_method_type,EventsV2CoreHealthPaymentMethodErrorFiringEvent.impact.payment_method_type, andEventsV2CoreHealthPaymentMethodErrorResolvedEvent.impact.payment_method_type
- Add support for new resource
v19.2.0-alpha.3
- #2463 Update generated code for private-preview
- Add support for new resources
DelegatedCheckout.RequestedSessionandIdentity.BlocklistEntry - Add support for
confirm,create,expire,retrieve, andupdatemethods on resourceDelegatedCheckout.RequestedSession - Add support for
create,disable,list, andretrievemethods on resourceIdentity.BlocklistEntry - Add support for
blocked_by_entryonIdentity.VerificationReport.document,Identity.VerificationReport.selfie, andIdentity.VerificationReportListParams
- Add support for new resources
v19.2.0-alpha.2
- #2457 Update generated code for private-preview
- Add support for new resource
PaymentMethodBalance - Add support for
check_balancemethod on resourcePaymentMethod - Add support for
benefitsonCard,Charge.payment_method_details.card,ConfirmationToken.payment_method_preview.card, andPaymentMethod.card - Add support for
benefitonPaymentIntent.payment_details,PaymentIntentConfirmParams.payment_details,PaymentIntentCreateParams.payment_details, andPaymentIntentUpdateParams.payment_details - Add support for
setup_detailsonSetupIntentConfirmParams,SetupIntentCreateParams,SetupIntentUpdateParams, andSetupIntent - Add support for new value
card_creatoron enumsV2.Core.Account.applied_configurationsandV2.Core.AccountCloseParams.applied_configurations - Add support for
card_creatoronV2.Core.Account.configuration,V2.Core.Account.identity.attestations.terms_of_service,V2.Core.AccountCreateParams.configuration,V2.Core.AccountCreateParams.identity.attestations.terms_of_service,V2.Core.AccountUpdateParams.configuration, andV2.Core.AccountUpdateParams.identity.attestations.terms_of_service - Add support for new values
commercial.celtic.charge_card,commercial.celtic.spend_card,commercial.cross_river_bank.charge_card,commercial.cross_river_bank.spend_card,commercial.stripe.charge_card, andcommercial.stripe.prepaid_cardon enumV2.Core.Account.requirements.entries[].impact.restricts_capabilities[].capability - Add support for new value
card_creatoron enumV2.Core.Account.requirements.entries[].impact.restricts_capabilities[].configuration - Add support for new value
configuration.card_creatoron enumsV2.Core.AccountCreateParams.include,V2.Core.AccountRetrieveParams.include, andV2.Core.AccountUpdateParams.include - Add support for thin events
V2CoreAccountIncludingConfigurationCardCreatorCapabilityStatusUpdatedEventandV2CoreAccountIncludingConfigurationCardCreatorUpdatedEventwith related objectV2.Core.Account - Remove support for thin events
V1CustomerDiscountCreatedEvent,V1CustomerDiscountDeletedEvent, andV1CustomerDiscountUpdatedEventwith related objectDiscount
- Add support for new resource
- #2449 Update changelog for private preview
v19.2.0-beta.1
- Contains bug fixes and improvements from v19.1.0.
v19.2.0-alpha.1
- Contains bug fixes and improvements from v19.1.0.
v19.1.0
-
#2453 add missing fetchEvent type for UnknownEventNotification
- Add missing
fetchEvent()declaration to theStripe.Events.UnknownEventNotificationinterface - Tweak
Stripe.Events.fetchRelatedObjectso that it's always defined and returnsnullif there's norelated_object. This fixes the situation where theUnknownEventNotificationsays thatfetchRelatedObject()is defined, but calling it throws an error.
- Add missing
-
#2447 Update param in deprecation docs link
-
#2444 Update CHANGELOG.md to point to right API version
v19.0.0
This release changes the pinned API version to 2025-09-30.clover and contains breaking changes (prefixed with
-
#2427 Move
V2.EventAPI resources toV2.Core.Events⚠️ Move the below event related interfaces and types fromStripe.V2toStripe.V2.Core. This enables us to correctly match the API path to the namespaceStripe.V2.EventDestination->Stripe.V2.Core.EventDestinationStripe.V2.Event->Stripe.V2.Core.EventStripe.V2.EventBase->Stripe.V2.Core.EventBaseStripe.V2.Events.RelatedObject->Stripe.V2.Core.Events.RelatedObject
-
#2370 Add strongly typed EventNotifications
We've overhauled how V2 Events are handled in the SDK! This approach should provide a lot more information at authoring and compile time, leading to more robust integrations. As part of this process, there are a number of changes to be aware of.⚠️ Rename functionStripeClient.parseThinEventtoStripeClient.parseEventNotificationand remove theStripe.ThinEventinterface.- This function now returns a
Stripe.V2.EventNotificationwhich is a union of all possible event notifications instead ofStripe.ThinEvent. When applicable, these event notifications will have therelatedObjectfield and a functionfetchRelatedObject(). They also have afetchEvent()method to retrieve their corresponding event. - If this union type does not cover a new event notification that you parsed, you can cast it to
UnknownEventNotificationto then access therelatedObjectfield and the functionfetchRelatedObject()
- This function now returns a
-
#2432 Drop support for Node < 16 & clarify policy
- Publish our new language version support policy and add a link to the README.
⚠️ Drop support for Node versions < 16- Node 16 support is deprecated and will be removed in the next scheduled major release (March 2026)
-
#2426 Add
StripeContextobject- Add the
StripeContextclass. It can be used anywhere the context option is supplied and gets serialized to a string when making requests. ⚠️ ChangeEventNotification(formerly known asThinEvent)'scontextproperty fromstringtoStripeContext⚠️ We no longer remove the stripe-context header from /v1 requests and the stripe-account header from /v2 requests. The server may reject a request with both of these headers, so if you're sending both, remove any reference to stripeAccount (since the headers are identical, but context is preferred)
- Add the
-
#2398
⚠️ Build SDK w/ V2 OpenAPI spec⚠️ The delete methods for v2 APIs (the ones in theStripeClient.v2namespace) now return aV2DeletedObjectwhich has the id of the object that has been deleted and a string representing the type of the object that has been deleted.⚠️ Change the types of nullable properties in objects returned by v2 APIs (the ones in theStripeClient.v2namespace) from a null union to optional (e.g.prop: string | null->prop?: string).
-
#2420 Fixed file uploading in Bun runtimes
- Fixed issue (#2416) with file uploads in runtimes using
FetchHttpClient(e.g. Bun). This bug affected Node SDK versions between 18.1.0 to 18.5.0.
- Fixed issue (#2416) with file uploads in runtimes using
-
#2405 support more npm tags
⚠️ Starting with this release, we'll no longer be tagging releases withbetanpm tag. Instead, we'll uselatest,public-preview, orprivate-previewto more closely align with Stripe's release phases
-
#2402, #2413, #2430, #2428 Update generated code based on incoming API changes in the
2025-09-30.cloverAPI version.⚠️ Remove support forbalance_reportandpayout_reconciliation_reportonAccountSession.componentsandAccountSessionCreateParams.components⚠️ Remove support for valuessaturdayandsundayfrom enumsAccount.settings.payouts.schedule.weekly_payout_days,AccountCreateParams.settings.payouts.schedule.weekly_payout_days, andAccountUpdateParams.settings.payouts.schedule.weekly_payout_days- Add support for new values
external_requestandunsupported_business_typeon enumsAccount.future_requirements.errors[].code,Account.requirements.errors[].code,BankAccount.future_requirements.errors[].code,BankAccount.requirements.errors[].code,Capability.future_requirements.errors[].code,Capability.requirements.errors[].code,Person.future_requirements.errors[].code, andPerson.requirements.errors[].code - Remove support for
linkandpay_by_bankonPaymentMethodUpdateParams
- Add support for new values
⚠️ Remove support forcoupononDiscount,PromotionCodeCreateParams, andPromotionCode. UseDiscount.source.coupon,PromotionCodeCreateParams.promotion.couponandPromotionCode.couponinstead.- Change
Invoice.idto be required. - Add support for new value
preventedon enumDispute.status - Add support for new resource
BalanceSettings - Add support for
retrieveandupdatemethods on resourceBalanceSettings - Add support for
mb_way_paymentsonAccount.capabilities,AccountCreateParams.capabilities, andAccountUpdateParams.capabilities - Add support for
sourceonDiscount - Add support for
trial_update_behavioronBillingPortal.Configuration.features.subscription_update,BillingPortal.ConfigurationCreateParams.features.subscription_update, andBillingPortal.ConfigurationUpdateParams.features.subscription_update - Add support for
mb_wayonCharge.payment_method_details,ConfirmationToken.payment_method_preview,ConfirmationTokenCreateParams.testHelpers.payment_method_data,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, andSetupIntentUpdateParams.payment_method_data - Add support for
branding_settingsandname_collectiononCheckout.SessionCreateParamsandCheckout.Session - Add support for
excluded_payment_method_typesonCheckout.SessionCreateParams,Checkout.Session,PaymentIntentConfirmParams, andPaymentIntentUpdateParams - Add support for
unit_labelonCheckout.SessionCreateParams.line_items[].price_data.product_data,InvoiceAddLinesParams.lines[].price_data.product_data,InvoiceLineItemUpdateParams.price_data.product_data,InvoiceUpdateLinesParams.lines[].price_data.product_data, andPaymentLinkCreateParams.line_items[].price_data.product_data - Add support for
alma,billie, andsatispayonCheckout.Session.payment_method_optionsandCheckout.SessionCreateParams.payment_method_options - Add support for
demo_payonCheckout.SessionCreateParams.payment_method_options - Add support for
capture_methodonCheckout.Session.payment_method_options.affirm,Checkout.Session.payment_method_options.afterpay_clearpay,Checkout.Session.payment_method_options.amazon_pay,Checkout.Session.payment_method_options.card,Checkout.Session.payment_method_options.cashapp,Checkout.Session.payment_method_options.klarna,Checkout.Session.payment_method_options.link,Checkout.Session.payment_method_options.mobilepay,Checkout.Session.payment_method_options.revolut_pay,Checkout.SessionCreateParams.payment_method_options.affirm,Checkout.SessionCreateParams.payment_method_options.afterpay_clearpay,Checkout.SessionCreateParams.payment_method_options.amazon_pay,Checkout.SessionCreateParams.payment_method_options.card,Checkout.SessionCreateParams.payment_method_options.cashapp,Checkout.SessionCreateParams.payment_method_options.klarna,Checkout.SessionCreateParams.payment_method_options.link,Checkout.SessionCreateParams.payment_method_options.mobilepay, andCheckout.SessionCreateParams.payment_method_options.revolut_pay - Add support for
flexibleonCheckout.SessionCreateParams.subscription_data.billing_mode,InvoiceCreatePreviewParams.schedule_details.billing_mode,InvoiceCreatePreviewParams.subscription_details.billing_mode,Quote.subscription_data.billing_mode,QuoteCreateParams.subscription_data.billing_mode,Subscription.billing_mode,SubscriptionCreateParams.billing_mode,SubscriptionMigrateParams.billing_mode,SubscriptionSchedule.billing_mode, andSubscriptionScheduleCreateParams.billing_mode - Add support for
business_nameandindividual_nameonCheckout.Session.collected_information,Checkout.Session.customer_details,CustomerCreateParams,CustomerUpdateParams, andCustomer - Add support for new values
mb_wayon enumsConfirmationTokenCreateParams.testHelpers.payment_method_data.type,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 `SetupIntentU...
v19.1.0-beta.1
This release changes the pinned API version to 2025-09-30.preview. It is built on top of SDK version 19.0.0 which contains breaking changes. Please review the changelog for 19.0.0 if upgrading from older SDK versions.
- #2422 Update generated code for beta
- Add support for
attach_cadencemethod on resourceSubscription - Add support for
billing_cadenceonInvoiceCreatePreviewParams,SubscriptionCreateParams,SubscriptionUpdateParams, andSubscription - Add support for
billing_cadence_detailsonInvoice.parentandQuotePreviewInvoice.parent - Add support for new value
billing_cadence_detailson enumsInvoice.parent.typeandQuotePreviewInvoice.parent.type
- Add support for
- #2410 Update generated code for beta
- Add support for new resources
V2.Billing.BillSettingVersion,V2.Billing.BillSetting,V2.Billing.Cadence,V2.Billing.CollectionSettingVersion,V2.Billing.CollectionSetting, andV2.Billing.Profile - Add support for
create,list,retrieve, andupdatemethods on resourcesV2.Billing.BillSetting,V2.Billing.CollectionSetting, andV2.Billing.Profile - Add support for
listandretrievemethods on resourcesV2.Billing.BillSettingVersionandV2.Billing.CollectionSettingVersion - Add support for
cancel,create,list,retrieve, andupdatemethods on resourceV2.Billing.Cadence - Add support for new value
crypto_walleton enumV2.Core.Account.configuration.recipient.default_outbound_destination.type - Add support for
profileonV2.Core.Account.defaults,V2.Core.AccountCreateParams.defaults, andV2.Core.AccountUpdateParams.defaults - Add support for
i_ponV2.Core.Account.identity.attestations.directorship_declaration,V2.Core.Account.identity.attestations.ownership_declaration,V2.Core.Account.identity.attestations.terms_of_service.account,V2.Core.Account.identity.attestations.terms_of_service.storer,V2.Core.Account.identity.individual.additional_terms_of_service.account,V2.Core.AccountCreateParams.identity.attestations.terms_of_service.account,V2.Core.AccountCreateParams.identity.attestations.terms_of_service.storer,V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.account,V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.storer,V2.Core.Person.additional_terms_of_service.account,V2.Core.PersonCreateParams.additional_terms_of_service.account, andV2.Core.PersonUpdateParams.additional_terms_of_service.account - Remove support for
iponV2.Core.Account.identity.attestations.directorship_declaration,V2.Core.Account.identity.attestations.ownership_declaration,V2.Core.Account.identity.attestations.terms_of_service.account,V2.Core.Account.identity.attestations.terms_of_service.storer,V2.Core.Account.identity.individual.additional_terms_of_service.account,V2.Core.AccountCreateParams.identity.attestations.terms_of_service.account,V2.Core.AccountCreateParams.identity.attestations.terms_of_service.storer,V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.account,V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.storer,V2.Core.Person.additional_terms_of_service.account,V2.Core.PersonCreateParams.additional_terms_of_service.account, andV2.Core.PersonUpdateParams.additional_terms_of_service.account - Remove support for
doing_business_as,product_description, andurlonV2.Core.Account.identity.business_details,V2.Core.AccountCreateParams.identity.business_details, andV2.Core.AccountUpdateParams.identity.business_details - Add support for
settlement_currencyonV2.MoneyManagement.FinancialAddress - Add support for
sepa_bank_accountonV2.MoneyManagement.FinancialAddress.credentialsandV2.MoneyManagement.ReceivedCredit.bank_transfer - Add support for new value
sepa_bank_accounton enumV2.MoneyManagement.FinancialAddress.credentials.type - Add support for
amount_detailsandpayments_orchestrationonV2.Payments.OffSessionPaymentCreateParamsandV2.Payments.OffSessionPayment - Add support for new value
authorization_expiredon enumV2.Payments.OffSessionPayment.failure_reason - Add support for
retry_policyonV2.Payments.OffSessionPayment.retry_detailsandV2.Payments.OffSessionPaymentCreateParams.retry_details - Add support for new values
heuristicandscheduledon enumsV2.Payments.OffSessionPayment.retry_details.retry_strategyandV2.Payments.OffSessionPaymentCreateParams.retry_details.retry_strategy - Change type of
V2.MoneyManagement.OutboundPaymentQuote.fx_quote.lock_durationfromliteral('five_minutes')toenum('five_minutes'|'none') - Change type of
V2.MoneyManagement.OutboundPaymentQuote.fx_quote.lock_expires_atfromDateTimetoDateTime | null - Add support for new value
noneon enumV2.MoneyManagement.OutboundPaymentQuote.fx_quote.lock_status - Add support for new value
crypto_walleton enumsV2.MoneyManagement.OutboundSetupIntentCreateParams.payout_method_data.type,V2.MoneyManagement.OutboundSetupIntentUpdateParams.payout_method_data.type, andV2.MoneyManagement.PayoutMethod.type - Add support for
origin_typeonV2.MoneyManagement.ReceivedCredit.bank_transfer - Remove support for
payment_method_typeonV2.MoneyManagement.ReceivedCredit.bank_transfer - Add support for new value
preventedon enumDispute.status - Add support for
mandate_dataandpayment_method_optionsonV2.Payments.OffSessionPaymentCreateParams - Add support for
typeonV2.MoneyManagement.FinancialAddressCreateParams - Remove support for
currencyonV2.MoneyManagement.FinancialAddressCreateParams - Add support for new values
financial_addressses.crypto_wallets,holds_currencies.usdc,outbound_payments.crypto_wallets, andoutbound_transfers.crypto_walletson enumEventsV2CoreAccountIncludingConfigurationStorerCapabilityStatusUpdatedEvent.updated_capability - Add support for thin event
V2BillingBillSettingUpdatedEventwith related objectV2.Billing.BillSetting - Add support for error type
RateLimitError - Add support for error code
invalid_payout_method_crypto_walletonInvalidPayoutMethodError
- Add support for new resources
- #2397 Update generated code for beta
- Add support for new resources
Billing.Analytics.MeterUsageRowandBilling.Analytics.MeterUsage - Remove support for resources
Billing.MeterUsageRowandBilling.MeterUsage - Add support for
retrievemethod on resourceBilling.Analytics.MeterUsage - Remove support for
retrievemethod on resourceBilling.MeterUsage - Add support for
report_payment_attempt_informationalmethod on resourcePaymentRecord - Add support for
minimum_balance_by_currencyonBalanceSettingUpdateParams.payments.payoutsandBalanceSettings.payments.payouts - Remove support for values
saturdayandsundayfrom enumsBalanceSettingUpdateParams.payments.payouts.schedule.weekly_payout_daysandBalanceSettings.payments.payouts.schedule.weekly_payout_days - Change type of
BalanceSettingUpdateParams.payments.settlement_timing.delay_days_overridefromlongIntegertoemptyable(longInteger) - Change
BalanceSettingUpdateParams.paymentsto be optional - Add support for
delay_days_overrideonBalanceSettings.payments.settlement_timing - Add support for
automatic_taxandinvoice_creationonCheckout.SessionUpdateParams - Add support for
unit_labelonCheckout.SessionUpdateParams.line_items[].price_data.product_data - Add support for
invoice_settingsonCheckout.SessionUpdateParams.subscription_data - Change
Checkout.Session.collected_information.business_nameto be required - Add support for
intended_submission_methodonDisputeUpdateParamsandDispute - Change type of
Dispute.smart_disputes.recommended_evidencefromstringtoarray(string) - Add support for
pixonInvoice.payment_settings.payment_method_options,InvoiceCreateParams.payment_settings.payment_method_options,InvoiceUpdateParams.payment_settings.payment_method_options,QuotePreviewInvoice.payment_settings.payment_method_options,Subscription.payment_settings.payment_method_options,SubscriptionCreateParams.payment_settings.payment_method_options, andSubscriptionUpdateParams.payment_settings.payment_method_options - Add support for new value
pixon enumsInvoice.payment_settings.payment_method_types,InvoiceCreateParams.payment_settings.payment_method_types,InvoiceUpdateParams.payment_settings.payment_method_types,QuotePreviewInvoice.payment_settings.payment_method_types,Subscription.payment_settings.payment_method_types,SubscriptionCreateParams.payment_settings.payment_method_types, andSubscriptionUpdateParams.payment_settings.payment_method_types - Add support for
billing_schedulesonInvoiceCreatePreviewParams.subscription_details,SubscriptionCreateParams,SubscriptionUpdateParams, andSubscription - Add support for
paypayonPaymentAttemptRecord.payment_method_detailsandPaymentRecord.payment_method_details - Add support for
walletonPaymentAttemptRecord.payment_method_details.cardandPaymentRecord.payment_method_details.card - Change type of
PaymentAttemptRecord.processor_details.custom.payment_referenceandPaymentRecord.processor_details.custom.payment_referencefromstringtostring | null - Add support for
flexibleonQuotePreviewSubscriptionSchedule.billing_mode - Add support for
billed_untilonSubscriptionItem - Add support for error codes
financial_connections_account_pending_account_numbersandfinancial_connections_account_unavailable_account_numberson `Quot...
- Add support for new resources
v19.1.0-alpha.1
This release changes the pinned API version to 2025-09-30.preview. It is built on top of SDK version 19.0.0 and 19.1.0-beta.1 which contain breaking changes. Please review the changelog for these versions if upgrading from older SDK versions.
- #2417 parseThinEvent__experimental is no longer needed
⚠️ Remove theStripeClient.parseThinEvent__experimentalandPushedThinEventclasses. They've been replaced withStripeClient.parseEventNotificationand the *EventNotificationclasses respectively.
- #2409 Update generated code for private-preview
- Add support for new resource
V2.MoneyManagement.RecipientVerification - Add support for
acknowledge,create,recipient_verifications, andretrievemethods on resourceV2.MoneyManagement.RecipientVerification - Add support for
updatemethod on resourcesV2.Billing.PricingPlanSubscriptionandV2.Billing.ServiceAction - Add support for
crypto_walletsonV2.Account.configuration.recipient_data.features,V2.AccountCreateParams.configuration.recipient_data.features,V2.AccountUpdateParams.configuration.recipient_data.features,V2.Core.Account.configuration.recipient.capabilities,V2.Core.AccountCreateParams.configuration.recipient.capabilities, andV2.Core.AccountUpdateParams.configuration.recipient.capabilities - Add support for new value
cryptoon enumV2.Core.Account.requirements.entries[].impact.restricts_capabilities[].capability - Add support for new value
crypto_walleton enumV2.Account.configuration.recipient_data.default_outbound_destination.type - Add support for new value
crypto_walletson enumV2.Account.configuration.supportable_features.recipient_data - Add support for new value
crypto_walletson enumV2.Account.requirements[].impact.required_for_features - Add support for
lookup_keyonV2.Billing.CadenceCreateParams,V2.Billing.CadenceUpdateParams, andV2.Billing.Cadence - Add support for
settings_dataonV2.Billing.Cadence - Change type of
V2.Billing.Cadence.payer.billing_profilefromstring | nulltostring - Add support for
v1_event_idonV2.Core.Event - Add support for
recipient_verificationonV2.MoneyManagement.OutboundPaymentCreateParams,V2.MoneyManagement.OutboundPayment,V2.MoneyManagement.OutboundTransferCreateParams, andV2.MoneyManagement.OutboundTransfer - Add support for
crypto_walletonV2.MoneyManagement.OutboundSetupIntentCreateParams.payout_method_dataandV2.MoneyManagement.PayoutMethod - Add support for
custom_pricing_unit_detailsonV2.Billing.RateCardRate.custom_pricing_unit_amount,V2.Billing.ServiceAction.credit_grant.amount.custom_pricing_unit, andV2.Billing.ServiceAction.credit_grant_per_tenant.amount.custom_pricing_unit - Add support for
origin_typeonV2.MoneyManagement.ReceivedDebit.bank_transfer - Add support for new value
sepa_credit_transferon enumV2.FinancialAddressCreditSimulationCreditParams.network - Add support for new value
credentials.sepa_bank_account.ibanon enumsV2.MoneyManagement.FinancialAddressListParams.includeandV2.MoneyManagement.FinancialAddressRetrieveParams.include - Add support for
sepa_bank_accountonV2.MoneyManagement.FinancialAddressCreateParams - Remove support for
priceonV2.Billing.RateCardRateCreateParams - Change
V2.Billing.LicenseFeeUpdateParams.display_nameto be optional - Add support for
lookup_keysonV2.Billing.CadenceListParams - Change type of
V2.Billing.CadenceCancelParams.include,V2.Billing.CadenceCreateParams.include,V2.Billing.CadenceListParams.include,V2.Billing.CadenceRetrieveParams.include, andV2.Billing.CadenceUpdateParams.includefromliteral('invoice_discount_rules')toenum('invoice_discount_rules'|'settings_data') - Remove support for
customerandtypeonV2.Billing.CadenceCreateParams.payer - Change
V2.Billing.CadenceCreateParams.payer.billing_profileto be required - Add support for new value
crypto_walletson enumEventsAccountConfigurationRecipientDataFeatureStatusUpdatedEvent.feature_name - Add support for new value
crypto_wallets_v2on enumEventsV2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent.updated_capability - Remove support for
alert_idonEventsV2CoreHealthApiErrorResolvedEvent,EventsV2CoreHealthApiLatencyResolvedEvent,EventsV2CoreHealthAuthorizationRateDropResolvedEvent,EventsV2CoreHealthIssuingAuthorizationRequestTimeoutResolvedEvent,EventsV2CoreHealthPaymentMethodErrorResolvedEvent,EventsV2CoreHealthTrafficVolumeDropResolvedEvent, andEventsV2CoreHealthWebhookLatencyResolvedEvent - Add support for thin event
V1AccountUpdatedEventwith related objectV2.Account - Add support for thin events
V1ApplicationFeeCreatedEvent,V1ApplicationFeeRefundedEvent,V1BillingPortalConfigurationCreatedEvent,V1BillingPortalConfigurationUpdatedEvent,V1CapabilityUpdatedEvent,V1ChargeCapturedEvent,V1ChargeDisputeClosedEvent,V1ChargeDisputeCreatedEvent,V1ChargeDisputeFundsReinstatedEvent,V1ChargeDisputeFundsWithdrawnEvent,V1ChargeDisputeUpdatedEvent,V1ChargeExpiredEvent,V1ChargeFailedEvent,V1ChargePendingEvent,V1ChargeRefundUpdatedEvent,V1ChargeRefundedEvent,V1ChargeSucceededEvent,V1ChargeUpdatedEvent,V1CheckoutSessionAsyncPaymentFailedEvent,V1CheckoutSessionAsyncPaymentSucceededEvent,V1CheckoutSessionCompletedEvent,V1CheckoutSessionExpiredEvent,V1ClimateOrderCanceledEvent,V1ClimateOrderCreatedEvent,V1ClimateOrderDelayedEvent,V1ClimateOrderDeliveredEvent,V1ClimateOrderProductSubstitutedEvent,V1ClimateProductCreatedEvent,V1ClimateProductPricingUpdatedEvent,V1CouponCreatedEvent,V1CouponDeletedEvent,V1CouponUpdatedEvent,V1CreditNoteCreatedEvent,V1CreditNoteUpdatedEvent,V1CreditNoteVoidedEvent,V1CustomerCreatedEvent,V1CustomerDeletedEvent,V1CustomerDiscountCreatedEvent,V1CustomerDiscountDeletedEvent,V1CustomerDiscountUpdatedEvent,V1CustomerSubscriptionCreatedEvent,V1CustomerSubscriptionDeletedEvent,V1CustomerSubscriptionPausedEvent,V1CustomerSubscriptionPendingUpdateAppliedEvent,V1CustomerSubscriptionPendingUpdateExpiredEvent,V1CustomerSubscriptionResumedEvent,V1CustomerSubscriptionTrialWillEndEvent,V1CustomerSubscriptionUpdatedEvent,V1CustomerTaxIdCreatedEvent,V1CustomerTaxIdDeletedEvent,V1CustomerTaxIdUpdatedEvent,V1CustomerUpdatedEvent,V1FileCreatedEvent,V1FinancialConnectionsAccountCreatedEvent,V1FinancialConnectionsAccountDeactivatedEvent,V1FinancialConnectionsAccountDisconnectedEvent,V1FinancialConnectionsAccountReactivatedEvent,V1FinancialConnectionsAccountRefreshedBalanceEvent,V1FinancialConnectionsAccountRefreshedOwnershipEvent,V1FinancialConnectionsAccountRefreshedTransactionsEvent,V1IdentityVerificationSessionCanceledEvent,V1IdentityVerificationSessionCreatedEvent,V1IdentityVerificationSessionProcessingEvent,V1IdentityVerificationSessionRedactedEvent,V1IdentityVerificationSessionRequiresInputEvent,V1IdentityVerificationSessionVerifiedEvent,V1InvoiceCreatedEvent,V1InvoiceDeletedEvent,V1InvoiceFinalizationFailedEvent,V1InvoiceFinalizedEvent,V1InvoiceMarkedUncollectibleEvent,V1InvoiceOverdueEvent,V1InvoiceOverpaidEvent,V1InvoicePaidEvent,V1InvoicePaymentActionRequiredEvent,V1InvoicePaymentFailedEvent,V1InvoicePaymentPaidEvent,V1InvoicePaymentSucceededEvent,V1InvoiceSentEvent,V1InvoiceUpcomingEvent,V1InvoiceUpdatedEvent,V1InvoiceVoidedEvent,V1InvoiceWillBeDueEvent,V1InvoiceitemCreatedEvent,V1InvoiceitemDeletedEvent,V1IssuingAuthorizationCreatedEvent,V1IssuingAuthorizationRequestEvent,V1IssuingAuthorizationUpdatedEvent,V1IssuingCardCreatedEvent,V1IssuingCardUpdatedEvent,V1IssuingCardholderCreatedEvent,V1IssuingCardholderUpdatedEvent,V1IssuingDisputeClosedEvent,V1IssuingDisputeCreatedEvent,V1IssuingDisputeFundsReinstatedEvent,V1IssuingDisputeFundsRescindedEvent,V1IssuingDisputeSubmittedEvent,V1IssuingDisputeUpdatedEvent,V1IssuingPersonalizationDesignActivatedEvent,V1IssuingPersonalizationDesignDeactivatedEvent,V1IssuingPersonalizationDesignRejectedEvent,V1IssuingPersonalizationDesignUpdatedEvent,V1IssuingTokenCreatedEvent,V1IssuingTokenUpdatedEvent,V1IssuingTransactionCreatedEvent,V1IssuingTransactionPurchaseDetailsReceiptUpdatedEvent,V1IssuingTransactionUpdatedEvent,V1MandateUpdatedEvent,V1PaymentIntentAmountCapturableUpdatedEvent,V1PaymentIntentCanceledEvent,V1PaymentIntentCreatedEvent,V1PaymentIntentPartiallyFundedEvent,V1PaymentIntentPaymentFailedEvent,V1PaymentIntentProcessingEvent,V1PaymentIntentRequiresActionEvent,V1PaymentIntentSucceededEvent,V1PaymentLinkCreatedEvent,V1PaymentLinkUpdatedEvent,V1PaymentMethodAttachedEvent,V1PaymentMethodAutomaticallyUpdatedEvent,V1PaymentMethodDetachedEvent,V1PaymentMethodUpdatedEvent,V1PayoutCanceledEvent,V1PayoutCreatedEvent,V1PayoutFailedEvent,V1PayoutPaidEvent,V1PayoutReconciliationCompletedEvent,V1PayoutUpdatedEvent,V1PersonCreatedEvent,V1PersonDeletedEvent,V1PersonUpdatedEvent,V1PlanCreatedEvent,V1PlanDeletedEvent,V1PlanUpdatedEvent,V1PriceCreatedEvent,V1PriceDeletedEvent,V1PriceUpdatedEvent,V1ProductCreatedEvent,V1ProductDeletedEvent,V1ProductUpdatedEvent,V1PromotionCodeCreatedEvent,V1PromotionCodeUpdatedEvent,V1QuoteAcceptedEvent,V1QuoteCanceledEvent,V1QuoteCreatedEvent,V1QuoteFinalizedEvent,V1RadarEarlyFraudWarningCreatedEvent,V1RadarEarlyFraudWarningUpdatedEvent,V1RefundCreatedEvent,V1RefundFailedEvent,V1RefundUpdatedEvent,V1ReviewClosedEvent,V1ReviewOpenedEvent,V1SetupIntentCanceledEvent, `V1SetupInt...
- Add support for new resource
v18.6.0-alpha.2
- #2404 Update generated code for private-preview
- Add support for
retrievemethod on resourceV2.Core.ClaimableSandbox - Add support for
month_of_yearonV2.Billing.Cadence#create.billing_cycle.monthandV2.Billing.Cadence.billing_cycle.month - Add support for
claimed_at,expires_at,sandbox_details, andstatusonV2.Core.ClaimableSandbox - Remove support for
api_keysonV2.Core.ClaimableSandbox - Change type of
V2.Core.ClaimableSandbox.claim_urlfromstringtonullable(string) - Add support for new value
current_billing_period_endon enumsV2.Billing.Intent#create.actions[].deactivate.effective_at.typeandV2.Billing.IntentAction.deactivate.effective_at.type - Add support for
will_activate_atandwill_cancel_atonV2.Billing.PricingPlanSubscription.servicing_status_transitionsandV2.Billing.RateCardSubscription.servicing_status_transitions - Add support for
categoryandpriorityonV2.Billing.ServiceAction#create.credit_grant_per_tenant,V2.Billing.ServiceAction#create.credit_grant,V2.Billing.ServiceAction.credit_grant_per_tenant, andV2.Billing.ServiceAction.credit_grant - Change
V2.Billing.LicenseFee#update.display_nameto be optional - Add support for
invoicesonEventsV2BillingCadenceBilledEvent - Add support for thin events
V2CoreClaimableSandboxClaimedEvent,V2CoreClaimableSandboxExpiredEvent,V2CoreClaimableSandboxExpiringEvent, andV2CoreClaimableSandboxSandboxDetailsOwnerAccountUpdatedEventwith related objectV2.Core.ClaimableSandbox - Remove support for thin event
V2BillingCadenceErroredEventwith related objectV2.Billing.Cadence
- Add support for