diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 5c880f4289..0000000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,25 +0,0 @@ - -# Contributing - -We welcome bug reports, feature requests, and code contributions in a pull request. - -For most pull requests, we request that you identify or create an associated issue that has the necessary context. We use these issues to reach agreement on an approach and save the PR author from having to redo work. Fixing typos or documentation issues likely do not need an issue; for any issue that introduces substantial code changes, changes the public interface, or if you aren't sure, please find or [create an issue](https://www.github.com/stripe/stripe-node/issues/new/choose). - -## Contributor License Agreement - -All contributors must sign the Contributor License Agreement (CLA) before we can accept their contribution. If you have not yet signed the agreement, you will be given an option to do so when you open a pull request. You can then sign by clicking on the badge in the comment from @CLAassistant. - -## Generated code - -This project has a combination of manually maintained code and code generated from our private code generator. If your contribution involves changes to generated code, please call this out in the issue or pull request as we will likely need to make a change to our code generator before accepting the contribution. - -To identify files with purely generated code, look for the comment `File generated from our OpenAPI spec.` at the start of the file. Generated blocks of code within hand-written files will be between comments that say `The beginning of the section generated from our OpenAPI spec` and `The end of the section generated from our OpenAPI spec`. - -## Compatibility with supported language and runtime versions - -This project supports [many different langauge and runtime versions](README.md#requirements) and we are unable to accept any contribution that does not work on _all_ supported versions. If, after discussing the approach in the associated issue, your change must use an API / feature that isn't available in all supported versions, please call this out explicitly in the issue or pull request so we can help figure out the best way forward. - -## Set up your dev environment - -Please refer to this project's [README.md](README.md#development) for instructions on how to set up your development environment. - diff --git a/OPENAPI_VERSION b/OPENAPI_VERSION index 217ac84ad0..ddf5ac5449 100644 --- a/OPENAPI_VERSION +++ b/OPENAPI_VERSION @@ -1 +1 @@ -v1455 \ No newline at end of file +v1505 \ No newline at end of file diff --git a/src/apiVersion.ts b/src/apiVersion.ts index 6267ead251..436a7469c2 100644 --- a/src/apiVersion.ts +++ b/src/apiVersion.ts @@ -1,3 +1,3 @@ // File generated from our OpenAPI spec -export const ApiVersion = '2025-01-27.acacia'; +export const ApiVersion = '2025-02-24.acacia'; diff --git a/types/Balance.d.ts b/types/Balance.d.ts index 48c6fef665..774eeb8e09 100644 --- a/types/Balance.d.ts +++ b/types/Balance.d.ts @@ -67,17 +67,17 @@ declare module 'stripe' { namespace Available { interface SourceTypes { /** - * Amount for bank account. + * Amount coming from [legacy US ACH payments](https://docs.stripe.com/ach-deprecated). */ bank_account?: number; /** - * Amount for card. + * Amount coming from most payment methods, including cards as well as [non-legacy bank debits](https://docs.stripe.com/payments/bank-debits). */ card?: number; /** - * Amount for FPX. + * Amount coming from [FPX](https://docs.stripe.com/payments/fpx), a Malaysian payment method. */ fpx?: number; } @@ -100,17 +100,17 @@ declare module 'stripe' { namespace ConnectReserved { interface SourceTypes { /** - * Amount for bank account. + * Amount coming from [legacy US ACH payments](https://docs.stripe.com/ach-deprecated). */ bank_account?: number; /** - * Amount for card. + * Amount coming from most payment methods, including cards as well as [non-legacy bank debits](https://docs.stripe.com/payments/bank-debits). */ card?: number; /** - * Amount for FPX. + * Amount coming from [FPX](https://docs.stripe.com/payments/fpx), a Malaysian payment method. */ fpx?: number; } @@ -153,17 +153,17 @@ declare module 'stripe' { namespace NetAvailable { interface SourceTypes { /** - * Amount for bank account. + * Amount coming from [legacy US ACH payments](https://docs.stripe.com/ach-deprecated). */ bank_account?: number; /** - * Amount for card. + * Amount coming from most payment methods, including cards as well as [non-legacy bank debits](https://docs.stripe.com/payments/bank-debits). */ card?: number; /** - * Amount for FPX. + * Amount coming from [FPX](https://docs.stripe.com/payments/fpx), a Malaysian payment method. */ fpx?: number; } @@ -171,17 +171,17 @@ declare module 'stripe' { interface SourceTypes { /** - * Amount for bank account. + * Amount coming from [legacy US ACH payments](https://docs.stripe.com/ach-deprecated). */ bank_account?: number; /** - * Amount for card. + * Amount coming from most payment methods, including cards as well as [non-legacy bank debits](https://docs.stripe.com/payments/bank-debits). */ card?: number; /** - * Amount for FPX. + * Amount coming from [FPX](https://docs.stripe.com/payments/fpx), a Malaysian payment method. */ fpx?: number; } @@ -212,17 +212,17 @@ declare module 'stripe' { namespace Available { interface SourceTypes { /** - * Amount for bank account. + * Amount coming from [legacy US ACH payments](https://docs.stripe.com/ach-deprecated). */ bank_account?: number; /** - * Amount for card. + * Amount coming from most payment methods, including cards as well as [non-legacy bank debits](https://docs.stripe.com/payments/bank-debits). */ card?: number; /** - * Amount for FPX. + * Amount coming from [FPX](https://docs.stripe.com/payments/fpx), a Malaysian payment method. */ fpx?: number; } @@ -246,17 +246,17 @@ declare module 'stripe' { namespace Pending { interface SourceTypes { /** - * Amount for bank account. + * Amount coming from [legacy US ACH payments](https://docs.stripe.com/ach-deprecated). */ bank_account?: number; /** - * Amount for card. + * Amount coming from most payment methods, including cards as well as [non-legacy bank debits](https://docs.stripe.com/payments/bank-debits). */ card?: number; /** - * Amount for FPX. + * Amount coming from [FPX](https://docs.stripe.com/payments/fpx), a Malaysian payment method. */ fpx?: number; } diff --git a/types/Billing/CreditBalanceSummaryResource.d.ts b/types/Billing/CreditBalanceSummaryResource.d.ts index 09cf01f44c..6909f8d088 100644 --- a/types/Billing/CreditBalanceSummaryResource.d.ts +++ b/types/Billing/CreditBalanceSummaryResource.d.ts @@ -43,7 +43,21 @@ declare module 'stripe' { /** * The price type that credit grants can apply to. We currently only support the `metered` price type. */ - price_type: 'metered'; + price_type?: 'metered'; + + /** + * A list of prices that the credit grant can apply to. We currently only support the `metered` prices. + */ + prices?: Array; + } + + namespace ApplicabilityScope { + interface Price { + /** + * The price ID this credit grant should apply to. + */ + id: string; + } } type Type = 'applicability_scope' | 'credit_grant'; diff --git a/types/Billing/CreditGrants.d.ts b/types/Billing/CreditGrants.d.ts index 6f50ed5aea..c4e3738fcc 100644 --- a/types/Billing/CreditGrants.d.ts +++ b/types/Billing/CreditGrants.d.ts @@ -63,6 +63,11 @@ declare module 'stripe' { */ name: string | null; + /** + * The priority for applying this credit grant. The highest priority is 0 and the lowest is 100. + */ + priority?: number | null; + /** * ID of the test clock this credit grant belongs to. */ @@ -115,7 +120,21 @@ declare module 'stripe' { /** * The price type that credit grants can apply to. We currently only support the `metered` price type. This refers to prices that have a [Billing Meter](https://docs.stripe.com/api/billing/meter) attached to them. */ - price_type: 'metered'; + price_type?: 'metered'; + + /** + * The prices that credit grants can apply to. We currently only support `metered` prices. This refers to prices that have a [Billing Meter](https://docs.stripe.com/api/billing/meter) attached to them. + */ + prices?: Array; + } + + namespace Scope { + interface Price { + /** + * Unique identifier for the object. + */ + id: string | null; + } } } diff --git a/types/Billing/CreditGrantsResource.d.ts b/types/Billing/CreditGrantsResource.d.ts index 58509065b7..d5ab6318ac 100644 --- a/types/Billing/CreditGrantsResource.d.ts +++ b/types/Billing/CreditGrantsResource.d.ts @@ -10,7 +10,7 @@ declare module 'stripe' { amount: CreditGrantCreateParams.Amount; /** - * Configuration specifying what this credit grant applies to. + * Configuration specifying what this credit grant applies to. We currently only support `metered` prices that have a [Billing Meter](https://docs.stripe.com/api/billing/meter) attached to them. */ applicability_config: CreditGrantCreateParams.ApplicabilityConfig; @@ -48,6 +48,11 @@ declare module 'stripe' { * A descriptive name shown in the Dashboard. */ name?: string; + + /** + * The desired priority for applying this credit grant. If not specified, it will be set to the default value of 50. The highest priority is 0 and the lowest is 100. + */ + priority?: number; } namespace CreditGrantCreateParams { @@ -89,7 +94,21 @@ declare module 'stripe' { /** * The price type that credit grants can apply to. We currently only support the `metered` price type. */ - price_type: 'metered'; + price_type?: 'metered'; + + /** + * A list of prices that the credit grant can apply to. We currently only support the `metered` prices. + */ + prices?: Array; + } + + namespace Scope { + interface Price { + /** + * The price ID this credit grant should apply to. + */ + id: string; + } } } diff --git a/types/Billing/MeterEventSummaries.d.ts b/types/Billing/MeterEventSummaries.d.ts index a94bfa7446..fa9480b7e8 100644 --- a/types/Billing/MeterEventSummaries.d.ts +++ b/types/Billing/MeterEventSummaries.d.ts @@ -6,6 +6,8 @@ declare module 'stripe' { /** * A billing meter event summary represents an aggregated view of a customer's billing meter events within a specified timeframe. It indicates how much * usage was accrued by a customer for that period. + * + * Note: Meters events are aggregated asynchronously so the meter event summaries provide an eventually consistent view of the reported usage. */ interface MeterEventSummary { /** diff --git a/types/Charges.d.ts b/types/Charges.d.ts index b94572e02b..4c130740b6 100644 --- a/types/Charges.d.ts +++ b/types/Charges.d.ts @@ -483,7 +483,7 @@ declare module 'stripe' { twint?: PaymentMethodDetails.Twint; /** - * The type of transaction-specific details of the payment method used in the payment, one of `ach_credit_transfer`, `ach_debit`, `acss_debit`, `alipay`, `au_becs_debit`, `bancontact`, `card`, `card_present`, `eps`, `giropay`, `ideal`, `klarna`, `multibanco`, `p24`, `sepa_debit`, `sofort`, `stripe_account`, or `wechat`. + * The type of transaction-specific details of the payment method used in the payment. See [PaymentMethod.type](https://stripe.com/docs/api/payment_methods/object#payment_method_object-type) for the full list of possible types. * An additional hash is included on `payment_method_details` with a name matching this value. * It contains information specific to the payment method. */ @@ -889,7 +889,7 @@ declare module 'stripe' { network_token?: Card.NetworkToken | null; /** - * This is used by the financial networks to identify a transaction. Visa calls this the Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the Acquirer Reference Data. The first three digits of the Trace ID is the Financial Network Code, the next 6 digits is the Banknet Reference Number, and the last 4 digits represent the date (MM/DD). This field will be available for successful Visa, Mastercard, or American Express transactions and always null for other card brands. + * This is used by the financial networks to identify a transaction. Visa calls this the Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the Acquirer Reference Data. This value will be present if it is returned by the financial network in the authorization response, and null otherwise. */ network_transaction_id: string | null; @@ -1274,7 +1274,7 @@ declare module 'stripe' { network: string | null; /** - * This is used by the financial networks to identify a transaction. Visa calls this the Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the Acquirer Reference Data. The first three digits of the Trace ID is the Financial Network Code, the next 6 digits is the Banknet Reference Number, and the last 4 digits represent the date (MM/DD). This field will be available for successful Visa, Mastercard, or American Express transactions and always null for other card brands. + * This is used by the financial networks to identify a transaction. Visa calls this the Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the Acquirer Reference Data. This value will be present if it is returned by the financial network in the authorization response, and null otherwise. */ network_transaction_id: string | null; @@ -1671,7 +1671,7 @@ declare module 'stripe' { network: string | null; /** - * This is used by the financial networks to identify a transaction. Visa calls this the Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the Acquirer Reference Data. The first three digits of the Trace ID is the Financial Network Code, the next 6 digits is the Banknet Reference Number, and the last 4 digits represent the date (MM/DD). This field will be available for successful Visa, Mastercard, or American Express transactions and always null for other card brands. + * This is used by the financial networks to identify a transaction. Visa calls this the Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the Acquirer Reference Data. This value will be present if it is returned by the financial network in the authorization response, and null otherwise. */ network_transaction_id: string | null; diff --git a/types/Checkout/Sessions.d.ts b/types/Checkout/Sessions.d.ts index 90bf71d6bf..ee84954a77 100644 --- a/types/Checkout/Sessions.d.ts +++ b/types/Checkout/Sessions.d.ts @@ -79,6 +79,11 @@ declare module 'stripe' { */ client_secret: string | null; + /** + * Information about the customer collected within the Checkout Session. + */ + collected_information?: Session.CollectedInformation | null; + /** * Results of `consent_collection` for this session. */ @@ -142,7 +147,7 @@ declare module 'stripe' { /** * List of coupons and promotion codes attached to the Checkout Session. */ - discounts?: Array | null; + discounts: Array | null; /** * The timestamp at which the Checkout Session will expire. @@ -390,6 +395,39 @@ declare module 'stripe' { type BillingAddressCollection = 'auto' | 'required'; + interface CollectedInformation { + /** + * Shipping information for this Checkout Session. + */ + shipping_details?: CollectedInformation.ShippingDetails | null; + } + + namespace CollectedInformation { + interface ShippingDetails { + address?: Stripe.Address; + + /** + * The delivery service that shipped a physical product, such as Fedex, UPS, USPS, etc. + */ + carrier?: string | null; + + /** + * Recipient name. + */ + name?: string; + + /** + * Recipient phone (including extension). + */ + phone?: string | null; + + /** + * The tracking number for a physical product, obtained from the delivery service. If multiple tracking numbers were generated for this purchase, please separate them with commas. + */ + tracking_number?: string | null; + } + } + interface Consent { /** * If `opt_in`, the customer consents to receiving promotional communications @@ -1045,6 +1083,11 @@ declare module 'stripe' { */ setup_future_usage?: AcssDebit.SetupFutureUsage; + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; + /** * Bank account verification method. */ @@ -1161,6 +1204,11 @@ declare module 'stripe' { * When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](https://stripe.com/strong-customer-authentication). */ setup_future_usage?: 'none'; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } interface BacsDebit { @@ -1176,6 +1224,11 @@ declare module 'stripe' { * When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](https://stripe.com/strong-customer-authentication). */ setup_future_usage?: BacsDebit.SetupFutureUsage; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace BacsDebit { @@ -1252,6 +1305,8 @@ declare module 'stripe' { */ request_three_d_secure: Card.RequestThreeDSecure; + restrictions?: Card.Restrictions; + /** * Indicates that you intend to make future payments with this PaymentIntent's payment method. * @@ -1292,6 +1347,21 @@ declare module 'stripe' { type RequestThreeDSecure = 'any' | 'automatic' | 'challenge'; + interface Restrictions { + /** + * Specify the card brands to block in the Checkout Session. If a customer enters or selects a card belonging to a blocked brand, they can't complete the Session. + */ + brands_blocked?: Array; + } + + namespace Restrictions { + type BrandsBlocked = + | 'american_express' + | 'discover_global_network' + | 'mastercard' + | 'visa'; + } + type SetupFutureUsage = 'none' | 'off_session' | 'on_session'; } @@ -1698,6 +1768,11 @@ declare module 'stripe' { * When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](https://stripe.com/strong-customer-authentication). */ setup_future_usage?: SepaDebit.SetupFutureUsage; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace SepaDebit { @@ -1745,6 +1820,11 @@ declare module 'stripe' { */ setup_future_usage?: UsBankAccount.SetupFutureUsage; + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; + /** * Bank account verification method. */ @@ -2121,9 +2201,9 @@ declare module 'stripe' { amount: number; /** - * Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax. + * Tax rates can be applied to [invoices](https://stripe.com/invoicing/taxes/tax-rates), [subscriptions](https://stripe.com/billing/taxes/tax-rates) and [Checkout Sessions](https://stripe.com/payments/checkout/use-manual-tax-rates) to collect tax. * - * Related guide: [Tax rates](https://stripe.com/docs/billing/taxes/tax-rates) + * Related guide: [Tax rates](https://stripe.com/billing/taxes/tax-rates) */ rate: Stripe.TaxRate; @@ -2269,9 +2349,9 @@ declare module 'stripe' { amount: number; /** - * Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax. + * Tax rates can be applied to [invoices](https://stripe.com/invoicing/taxes/tax-rates), [subscriptions](https://stripe.com/billing/taxes/tax-rates) and [Checkout Sessions](https://stripe.com/payments/checkout/use-manual-tax-rates) to collect tax. * - * Related guide: [Tax rates](https://stripe.com/docs/billing/taxes/tax-rates) + * Related guide: [Tax rates](https://stripe.com/billing/taxes/tax-rates) */ rate: Stripe.TaxRate; diff --git a/types/Checkout/SessionsResource.d.ts b/types/Checkout/SessionsResource.d.ts index fc0bfd9ec0..4c3d4c6ff7 100644 --- a/types/Checkout/SessionsResource.d.ts +++ b/types/Checkout/SessionsResource.d.ts @@ -1216,6 +1216,11 @@ declare module 'stripe' { */ setup_future_usage?: AcssDebit.SetupFutureUsage; + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; + /** * Verification method for the intent */ @@ -1334,6 +1339,11 @@ declare module 'stripe' { * When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](https://stripe.com/strong-customer-authentication). */ setup_future_usage?: 'none'; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } interface BacsDebit { @@ -1352,6 +1362,11 @@ declare module 'stripe' { * When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](https://stripe.com/strong-customer-authentication). */ setup_future_usage?: BacsDebit.SetupFutureUsage; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace BacsDebit { @@ -1431,6 +1446,11 @@ declare module 'stripe' { */ request_three_d_secure?: Card.RequestThreeDSecure; + /** + * Restrictions to apply to the card payment method. For example, you can block specific card brands. + */ + restrictions?: Card.Restrictions; + /** * Indicates that you intend to make future payments with this PaymentIntent's payment method. * @@ -1472,6 +1492,21 @@ declare module 'stripe' { type RequestThreeDSecure = 'any' | 'automatic' | 'challenge'; + interface Restrictions { + /** + * Specify the card brands to block in the Checkout Session. If a customer enters or selects a card belonging to a blocked brand, they can't complete the Session. + */ + brands_blocked?: Array; + } + + namespace Restrictions { + type BrandsBlocked = + | 'american_express' + | 'discover_global_network' + | 'mastercard' + | 'visa'; + } + type SetupFutureUsage = 'off_session' | 'on_session'; } @@ -1935,6 +1970,11 @@ declare module 'stripe' { * When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](https://stripe.com/strong-customer-authentication). */ setup_future_usage?: SepaDebit.SetupFutureUsage; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace SepaDebit { @@ -1985,6 +2025,11 @@ declare module 'stripe' { */ setup_future_usage?: UsBankAccount.SetupFutureUsage; + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; + /** * Verification method for the intent */ @@ -2688,6 +2733,11 @@ declare module 'stripe' { } interface SessionUpdateParams { + /** + * Information about the customer collected within the Checkout Session. + */ + collected_information?: SessionUpdateParams.CollectedInformation; + /** * Specifies which fields in the response should be expanded. */ @@ -2699,6 +2749,63 @@ declare module 'stripe' { metadata?: Stripe.Emptyable; } + namespace SessionUpdateParams { + interface CollectedInformation { + /** + * The shipping details to apply to this Session. + */ + shipping_details?: CollectedInformation.ShippingDetails; + } + + namespace CollectedInformation { + interface ShippingDetails { + /** + * The address of the customer + */ + address: ShippingDetails.Address; + + /** + * The name of customer + */ + name: string; + } + + namespace ShippingDetails { + interface Address { + /** + * City, district, suburb, town, or village. + */ + city?: string; + + /** + * Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)). + */ + country: string; + + /** + * Address line 1 (e.g., street, PO Box, or company name). + */ + line1: string; + + /** + * Address line 2 (e.g., apartment, suite, unit, or building). + */ + line2?: string; + + /** + * ZIP or postal code. + */ + postal_code?: string; + + /** + * State, county, province, or region. + */ + state?: string; + } + } + } + } + interface SessionListParams extends PaginationParams { /** * Only return Checkout Sessions that were created during the given date interval. diff --git a/types/ConfirmationTokens.d.ts b/types/ConfirmationTokens.d.ts index 40480d6887..85599e155f 100644 --- a/types/ConfirmationTokens.d.ts +++ b/types/ConfirmationTokens.d.ts @@ -584,7 +584,7 @@ declare module 'stripe' { network: string | null; /** - * This is used by the financial networks to identify a transaction. Visa calls this the Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the Acquirer Reference Data. The first three digits of the Trace ID is the Financial Network Code, the next 6 digits is the Banknet Reference Number, and the last 4 digits represent the date (MM/DD). This field will be available for successful Visa, Mastercard, or American Express transactions and always null for other card brands. + * This is used by the financial networks to identify a transaction. Visa calls this the Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the Acquirer Reference Data. This value will be present if it is returned by the financial network in the authorization response, and null otherwise. */ network_transaction_id: string | null; @@ -711,7 +711,7 @@ declare module 'stripe' { interface Networks { /** - * All available networks for the card. + * All networks available for selection via [payment_method_options.card.network](https://stripe.com/api/payment_intents/confirm#confirm_payment_intent-payment_method_options-card-network). */ available: Array; @@ -911,7 +911,7 @@ declare module 'stripe' { namespace CardPresent { interface Networks { /** - * All available networks for the card. + * All networks available for selection via [payment_method_options.card.network](https://stripe.com/api/payment_intents/confirm#confirm_payment_intent-payment_method_options-card-network). */ available: Array; @@ -1177,7 +1177,7 @@ declare module 'stripe' { namespace InteracPresent { interface Networks { /** - * All available networks for the card. + * All networks available for selection via [payment_method_options.card.network](https://stripe.com/api/payment_intents/confirm#confirm_payment_intent-payment_method_options-card-network). */ available: Array; diff --git a/types/CreditNotes.d.ts b/types/CreditNotes.d.ts index f83d7dda60..ffa72104e5 100644 --- a/types/CreditNotes.d.ts +++ b/types/CreditNotes.d.ts @@ -249,9 +249,9 @@ declare module 'stripe' { amount: number; /** - * Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax. + * Tax rates can be applied to [invoices](https://stripe.com/invoicing/taxes/tax-rates), [subscriptions](https://stripe.com/billing/taxes/tax-rates) and [Checkout Sessions](https://stripe.com/payments/checkout/use-manual-tax-rates) to collect tax. * - * Related guide: [Tax rates](https://stripe.com/docs/billing/taxes/tax-rates) + * Related guide: [Tax rates](https://stripe.com/billing/taxes/tax-rates) */ rate: Stripe.TaxRate; diff --git a/types/Invoices.d.ts b/types/Invoices.d.ts index 88036ba429..e9f2750170 100644 --- a/types/Invoices.d.ts +++ b/types/Invoices.d.ts @@ -1327,9 +1327,9 @@ declare module 'stripe' { amount: number; /** - * Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax. + * Tax rates can be applied to [invoices](https://stripe.com/invoicing/taxes/tax-rates), [subscriptions](https://stripe.com/billing/taxes/tax-rates) and [Checkout Sessions](https://stripe.com/payments/checkout/use-manual-tax-rates) to collect tax. * - * Related guide: [Tax rates](https://stripe.com/docs/billing/taxes/tax-rates) + * Related guide: [Tax rates](https://stripe.com/billing/taxes/tax-rates) */ rate: Stripe.TaxRate; diff --git a/types/LineItems.d.ts b/types/LineItems.d.ts index c18577584a..157d0b7520 100644 --- a/types/LineItems.d.ts +++ b/types/LineItems.d.ts @@ -90,9 +90,9 @@ declare module 'stripe' { amount: number; /** - * Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax. + * Tax rates can be applied to [invoices](https://stripe.com/invoicing/taxes/tax-rates), [subscriptions](https://stripe.com/billing/taxes/tax-rates) and [Checkout Sessions](https://stripe.com/payments/checkout/use-manual-tax-rates) to collect tax. * - * Related guide: [Tax rates](https://stripe.com/docs/billing/taxes/tax-rates) + * Related guide: [Tax rates](https://stripe.com/billing/taxes/tax-rates) */ rate: Stripe.TaxRate; diff --git a/types/PaymentIntents.d.ts b/types/PaymentIntents.d.ts index b26fd57b12..251477b78e 100644 --- a/types/PaymentIntents.d.ts +++ b/types/PaymentIntents.d.ts @@ -1450,6 +1450,11 @@ declare module 'stripe' { */ setup_future_usage?: AcssDebit.SetupFutureUsage; + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; + /** * Bank account verification method. */ @@ -1594,6 +1599,11 @@ declare module 'stripe' { * When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](https://stripe.com/strong-customer-authentication). */ setup_future_usage?: AuBecsDebit.SetupFutureUsage; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace AuBecsDebit { @@ -1613,6 +1623,11 @@ declare module 'stripe' { * When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](https://stripe.com/strong-customer-authentication). */ setup_future_usage?: BacsDebit.SetupFutureUsage; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace BacsDebit { @@ -2413,6 +2428,11 @@ declare module 'stripe' { * When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](https://stripe.com/strong-customer-authentication). */ setup_future_usage?: SepaDebit.SetupFutureUsage; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace SepaDebit { @@ -2509,6 +2529,11 @@ declare module 'stripe' { */ setup_future_usage?: UsBankAccount.SetupFutureUsage; + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; + /** * Bank account verification method. */ @@ -2677,14 +2702,14 @@ declare module 'stripe' { interface TransferData { /** - * Amount intended to be collected by this PaymentIntent. A positive integer representing how much to charge in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal) (e.g., 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency). The minimum amount is $0.50 US or [equivalent in charge currency](https://stripe.com/docs/currencies#minimum-and-maximum-charge-amounts). The amount value supports up to eight digits (e.g., a value of 99999999 for a USD charge of $999,999.99). + * The amount transferred to the destination account. This transfer will occur automatically after the payment succeeds. If no amount is specified, by default the entire payment amount is transferred to the destination account. + * The amount must be less than or equal to the [amount](https://stripe.com/docs/api/payment_intents/object#payment_intent_object-amount), and must be a positive integer + * representing how much to transfer in the smallest currency unit (e.g., 100 cents to charge $1.00). */ amount?: number; /** - * The account (if any) that the payment is attributed to for tax - * reporting, and where funds from the payment are transferred to after - * payment success. + * The account (if any) that the payment is attributed to for tax reporting, and where funds from the payment are transferred to after payment success. */ destination: string | Stripe.Account; } diff --git a/types/PaymentIntentsResource.d.ts b/types/PaymentIntentsResource.d.ts index 779dcbd1b5..b4e14f5f0b 100644 --- a/types/PaymentIntentsResource.d.ts +++ b/types/PaymentIntentsResource.d.ts @@ -1179,6 +1179,11 @@ declare module 'stripe' { */ setup_future_usage?: Stripe.Emptyable; + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; + /** * Bank account verification method. */ @@ -1349,6 +1354,11 @@ declare module 'stripe' { * If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`. */ setup_future_usage?: Stripe.Emptyable; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace AuBecsDebit { @@ -1373,6 +1383,11 @@ declare module 'stripe' { * If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`. */ setup_future_usage?: Stripe.Emptyable; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace BacsDebit { @@ -2453,6 +2468,11 @@ declare module 'stripe' { * If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`. */ setup_future_usage?: Stripe.Emptyable; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace SepaDebit { @@ -2570,6 +2590,11 @@ declare module 'stripe' { */ setup_future_usage?: Stripe.Emptyable; + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; + /** * Bank account verification method. */ @@ -2579,7 +2604,7 @@ declare module 'stripe' { namespace UsBankAccount { interface FinancialConnections { /** - * Provide filters for the linked accounts that the customer can select for the payment method + * Provide filters for the linked accounts that the customer can select for the payment method. */ filters?: FinancialConnections.Filters; @@ -3805,6 +3830,11 @@ declare module 'stripe' { */ setup_future_usage?: Stripe.Emptyable; + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; + /** * Bank account verification method. */ @@ -3975,6 +4005,11 @@ declare module 'stripe' { * If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`. */ setup_future_usage?: Stripe.Emptyable; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace AuBecsDebit { @@ -3999,6 +4034,11 @@ declare module 'stripe' { * If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`. */ setup_future_usage?: Stripe.Emptyable; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace BacsDebit { @@ -5079,6 +5119,11 @@ declare module 'stripe' { * If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`. */ setup_future_usage?: Stripe.Emptyable; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace SepaDebit { @@ -5196,6 +5241,11 @@ declare module 'stripe' { */ setup_future_usage?: Stripe.Emptyable; + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; + /** * Bank account verification method. */ @@ -5205,7 +5255,7 @@ declare module 'stripe' { namespace UsBankAccount { interface FinancialConnections { /** - * Provide filters for the linked accounts that the customer can select for the payment method + * Provide filters for the linked accounts that the customer can select for the payment method. */ filters?: FinancialConnections.Filters; @@ -6541,6 +6591,11 @@ declare module 'stripe' { */ setup_future_usage?: Stripe.Emptyable; + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; + /** * Bank account verification method. */ @@ -6711,6 +6766,11 @@ declare module 'stripe' { * If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`. */ setup_future_usage?: Stripe.Emptyable; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace AuBecsDebit { @@ -6735,6 +6795,11 @@ declare module 'stripe' { * If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`. */ setup_future_usage?: Stripe.Emptyable; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace BacsDebit { @@ -7815,6 +7880,11 @@ declare module 'stripe' { * If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`. */ setup_future_usage?: Stripe.Emptyable; + + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; } namespace SepaDebit { @@ -7932,6 +8002,11 @@ declare module 'stripe' { */ setup_future_usage?: Stripe.Emptyable; + /** + * Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now. + */ + target_date?: string; + /** * Bank account verification method. */ @@ -7941,7 +8016,7 @@ declare module 'stripe' { namespace UsBankAccount { interface FinancialConnections { /** - * Provide filters for the linked accounts that the customer can select for the payment method + * Provide filters for the linked accounts that the customer can select for the payment method. */ filters?: FinancialConnections.Filters; diff --git a/types/PaymentMethods.d.ts b/types/PaymentMethods.d.ts index 36f53b4120..f441a41c23 100644 --- a/types/PaymentMethods.d.ts +++ b/types/PaymentMethods.d.ts @@ -486,7 +486,7 @@ declare module 'stripe' { network: string | null; /** - * This is used by the financial networks to identify a transaction. Visa calls this the Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the Acquirer Reference Data. The first three digits of the Trace ID is the Financial Network Code, the next 6 digits is the Banknet Reference Number, and the last 4 digits represent the date (MM/DD). This field will be available for successful Visa, Mastercard, or American Express transactions and always null for other card brands. + * This is used by the financial networks to identify a transaction. Visa calls this the Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the Acquirer Reference Data. This value will be present if it is returned by the financial network in the authorization response, and null otherwise. */ network_transaction_id: string | null; @@ -613,7 +613,7 @@ declare module 'stripe' { interface Networks { /** - * All available networks for the card. + * All networks available for selection via [payment_method_options.card.network](https://stripe.com/api/payment_intents/confirm#confirm_payment_intent-payment_method_options-card-network). */ available: Array; @@ -813,7 +813,7 @@ declare module 'stripe' { namespace CardPresent { interface Networks { /** - * All available networks for the card. + * All networks available for selection via [payment_method_options.card.network](https://stripe.com/api/payment_intents/confirm#confirm_payment_intent-payment_method_options-card-network). */ available: Array; @@ -1079,7 +1079,7 @@ declare module 'stripe' { namespace InteracPresent { interface Networks { /** - * All available networks for the card. + * All networks available for selection via [payment_method_options.card.network](https://stripe.com/api/payment_intents/confirm#confirm_payment_intent-payment_method_options-card-network). */ available: Array; diff --git a/types/ProductsResource.d.ts b/types/ProductsResource.d.ts index e5fdab2bfd..e18581300c 100644 --- a/types/ProductsResource.d.ts +++ b/types/ProductsResource.d.ts @@ -106,6 +106,11 @@ declare module 'stripe' { */ custom_unit_amount?: DefaultPriceData.CustomUnitAmount; + /** + * Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`. + */ + metadata?: Stripe.MetadataParam; + /** * The recurring components of a price such as `interval` and `interval_count`. */ diff --git a/types/Quotes.d.ts b/types/Quotes.d.ts index 7645f85ae6..ad69164479 100644 --- a/types/Quotes.d.ts +++ b/types/Quotes.d.ts @@ -301,9 +301,9 @@ declare module 'stripe' { amount: number; /** - * Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax. + * Tax rates can be applied to [invoices](https://stripe.com/invoicing/taxes/tax-rates), [subscriptions](https://stripe.com/billing/taxes/tax-rates) and [Checkout Sessions](https://stripe.com/payments/checkout/use-manual-tax-rates) to collect tax. * - * Related guide: [Tax rates](https://stripe.com/docs/billing/taxes/tax-rates) + * Related guide: [Tax rates](https://stripe.com/billing/taxes/tax-rates) */ rate: Stripe.TaxRate; @@ -415,9 +415,9 @@ declare module 'stripe' { amount: number; /** - * Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax. + * Tax rates can be applied to [invoices](https://stripe.com/invoicing/taxes/tax-rates), [subscriptions](https://stripe.com/billing/taxes/tax-rates) and [Checkout Sessions](https://stripe.com/payments/checkout/use-manual-tax-rates) to collect tax. * - * Related guide: [Tax rates](https://stripe.com/docs/billing/taxes/tax-rates) + * Related guide: [Tax rates](https://stripe.com/billing/taxes/tax-rates) */ rate: Stripe.TaxRate; @@ -590,9 +590,9 @@ declare module 'stripe' { amount: number; /** - * Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax. + * Tax rates can be applied to [invoices](https://stripe.com/invoicing/taxes/tax-rates), [subscriptions](https://stripe.com/billing/taxes/tax-rates) and [Checkout Sessions](https://stripe.com/payments/checkout/use-manual-tax-rates) to collect tax. * - * Related guide: [Tax rates](https://stripe.com/docs/billing/taxes/tax-rates) + * Related guide: [Tax rates](https://stripe.com/billing/taxes/tax-rates) */ rate: Stripe.TaxRate; diff --git a/types/Refunds.d.ts b/types/Refunds.d.ts index d0dfaba75b..d42a5fbc2d 100644 --- a/types/Refunds.d.ts +++ b/types/Refunds.d.ts @@ -192,7 +192,7 @@ declare module 'stripe' { /** * For refunds declined by the network, a decline code provided by the network which indicates the reason the refund failed. */ - network_decline_code?: string | null; + network_decline_code: string | null; /** * The reference assigned to the refund. @@ -341,7 +341,7 @@ declare module 'stripe' { /** * For refunds declined by the network, a decline code provided by the network which indicates the reason the refund failed. */ - network_decline_code?: string | null; + network_decline_code: string | null; /** * The reference assigned to the refund. diff --git a/types/SetupIntentsResource.d.ts b/types/SetupIntentsResource.d.ts index 416c39f78c..afc3a24bb3 100644 --- a/types/SetupIntentsResource.d.ts +++ b/types/SetupIntentsResource.d.ts @@ -1229,7 +1229,7 @@ declare module 'stripe' { namespace UsBankAccount { interface FinancialConnections { /** - * Provide filters for the linked accounts that the customer can select for the payment method + * Provide filters for the linked accounts that the customer can select for the payment method. */ filters?: FinancialConnections.Filters; @@ -2432,7 +2432,7 @@ declare module 'stripe' { namespace UsBankAccount { interface FinancialConnections { /** - * Provide filters for the linked accounts that the customer can select for the payment method + * Provide filters for the linked accounts that the customer can select for the payment method. */ filters?: FinancialConnections.Filters; @@ -3684,7 +3684,7 @@ declare module 'stripe' { namespace UsBankAccount { interface FinancialConnections { /** - * Provide filters for the linked accounts that the customer can select for the payment method + * Provide filters for the linked accounts that the customer can select for the payment method. */ filters?: FinancialConnections.Filters; diff --git a/types/Tax/CalculationLineItems.d.ts b/types/Tax/CalculationLineItems.d.ts index 5ad96d0132..434fc77c3a 100644 --- a/types/Tax/CalculationLineItems.d.ts +++ b/types/Tax/CalculationLineItems.d.ts @@ -113,7 +113,7 @@ declare module 'stripe' { level: Jurisdiction.Level; /** - * [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2:US), without country prefix. For example, "NY" for New York, United States. + * [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2), without country prefix. For example, "NY" for New York, United States. */ state: string | null; } diff --git a/types/Tax/Calculations.d.ts b/types/Tax/Calculations.d.ts index 9eddd136fe..b1e050ab36 100644 --- a/types/Tax/Calculations.d.ts +++ b/types/Tax/Calculations.d.ts @@ -322,7 +322,7 @@ declare module 'stripe' { level: Jurisdiction.Level; /** - * [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2:US), without country prefix. For example, "NY" for New York, United States. + * [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2), without country prefix. For example, "NY" for New York, United States. */ state: string | null; } diff --git a/types/Tax/Transactions.d.ts b/types/Tax/Transactions.d.ts index a398cd079a..a5cc3e8f66 100644 --- a/types/Tax/Transactions.d.ts +++ b/types/Tax/Transactions.d.ts @@ -334,7 +334,7 @@ declare module 'stripe' { level: Jurisdiction.Level; /** - * [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2:US), without country prefix. For example, "NY" for New York, United States. + * [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2), without country prefix. For example, "NY" for New York, United States. */ state: string | null; } diff --git a/types/TaxRates.d.ts b/types/TaxRates.d.ts index 367a957de6..28df4d0a88 100644 --- a/types/TaxRates.d.ts +++ b/types/TaxRates.d.ts @@ -3,9 +3,9 @@ declare module 'stripe' { namespace Stripe { /** - * Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax. + * Tax rates can be applied to [invoices](https://stripe.com/invoicing/taxes/tax-rates), [subscriptions](https://stripe.com/billing/taxes/tax-rates) and [Checkout Sessions](https://stripe.com/payments/checkout/use-manual-tax-rates) to collect tax. * - * Related guide: [Tax rates](https://stripe.com/docs/billing/taxes/tax-rates) + * Related guide: [Tax rates](https://stripe.com/billing/taxes/tax-rates) */ interface TaxRate { /** @@ -91,7 +91,7 @@ declare module 'stripe' { rate_type: TaxRate.RateType | null; /** - * [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2:US), without country prefix. For example, "NY" for New York, United States. + * [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2), without country prefix. For example, "NY" for New York, United States. */ state: string | null; diff --git a/types/TaxRatesResource.d.ts b/types/TaxRatesResource.d.ts index eb307b6f9b..4c9ab695c9 100644 --- a/types/TaxRatesResource.d.ts +++ b/types/TaxRatesResource.d.ts @@ -49,7 +49,7 @@ declare module 'stripe' { metadata?: Stripe.MetadataParam; /** - * [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2:US), without country prefix. For example, "NY" for New York, United States. + * [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2), without country prefix. For example, "NY" for New York, United States. */ state?: string; @@ -121,7 +121,7 @@ declare module 'stripe' { metadata?: Stripe.Emptyable; /** - * [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2:US), without country prefix. For example, "NY" for New York, United States. + * [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2), without country prefix. For example, "NY" for New York, United States. */ state?: string; diff --git a/types/WebhookEndpointsResource.d.ts b/types/WebhookEndpointsResource.d.ts index 6a66d57e0f..6c0766ace8 100644 --- a/types/WebhookEndpointsResource.d.ts +++ b/types/WebhookEndpointsResource.d.ts @@ -147,7 +147,8 @@ declare module 'stripe' { | '2024-10-28.acacia' | '2024-11-20.acacia' | '2024-12-18.acacia' - | '2025-01-27.acacia'; + | '2025-01-27.acacia' + | '2025-02-24.acacia'; type EnabledEvent = | '*' diff --git a/types/lib.d.ts b/types/lib.d.ts index e9940c2cf6..201d8ded77 100644 --- a/types/lib.d.ts +++ b/types/lib.d.ts @@ -27,7 +27,7 @@ declare module 'stripe' { }): (...args: any[]) => Response; //eslint-disable-line @typescript-eslint/no-explicit-any static MAX_BUFFERED_REQUEST_METRICS: number; } - export type LatestApiVersion = '2025-01-27.acacia'; + export type LatestApiVersion = '2025-02-24.acacia'; export type HttpAgent = Agent; export type HttpProtocol = 'http' | 'https'; diff --git a/types/test/typescriptTest.ts b/types/test/typescriptTest.ts index 2500374bf6..a21707a4ca 100644 --- a/types/test/typescriptTest.ts +++ b/types/test/typescriptTest.ts @@ -9,7 +9,7 @@ import Stripe from 'stripe'; let stripe = new Stripe('sk_test_123', { - apiVersion: '2025-01-27.acacia', + apiVersion: '2025-02-24.acacia', }); stripe = new Stripe('sk_test_123'); @@ -26,7 +26,7 @@ stripe = new Stripe('sk_test_123', { // Check config object. stripe = new Stripe('sk_test_123', { - apiVersion: '2025-01-27.acacia', + apiVersion: '2025-02-24.acacia', typescript: true, maxNetworkRetries: 1, timeout: 1000, @@ -44,7 +44,7 @@ stripe = new Stripe('sk_test_123', { description: 'test', }; const opts: Stripe.RequestOptions = { - apiVersion: '2025-01-27.acacia', + apiVersion: '2025-02-24.acacia', }; const customer: Stripe.Customer = await stripe.customers.create(params, opts);