@stripe/stripe-js 3.0.4 → 3.0.6
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/dist/index.d.mts +13 -22
- package/dist/index.d.ts +13 -22
- package/dist/stripe.js +1 -1
- package/dist/stripe.mjs +1 -1
- package/package.json +1 -1
- package/pure/index.d.mts +9522 -9562
- package/pure/index.d.ts +9522 -9562
- package/pure/index.js +1 -1
- package/pure/index.mjs +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1769,6 +1769,17 @@ interface ConfirmCashappSetupData extends SetupIntentConfirmParams {
|
|
|
1769
1769
|
return_url?: string;
|
|
1770
1770
|
}
|
|
1771
1771
|
|
|
1772
|
+
/**
|
|
1773
|
+
* An options object to control the behavior of `stripe.confirmCashappSetup`.
|
|
1774
|
+
*/
|
|
1775
|
+
interface ConfirmCashappSetupOptions {
|
|
1776
|
+
/*
|
|
1777
|
+
* Set this to `false` if you want to [manually handle the authorization QR code or redirect](https://stripe.com/docs/payments/cash-app-pay/set-up-payment?platform=web&ui=API#web-create-setup-intent).
|
|
1778
|
+
* Default is `true`.
|
|
1779
|
+
*/
|
|
1780
|
+
handleActions?: boolean;
|
|
1781
|
+
}
|
|
1782
|
+
|
|
1772
1783
|
/**
|
|
1773
1784
|
* Data to be sent with a `stripe.confirmIdealSetup` request.
|
|
1774
1785
|
* Refer to the [Setup Intents API](https://stripe.com/docs/api/setup_intents/confirm) for a full list of parameters.
|
|
@@ -1950,26 +1961,6 @@ interface CollectBankAccountForSetupOptions {
|
|
|
1950
1961
|
expand?: Array<string>;
|
|
1951
1962
|
}
|
|
1952
1963
|
|
|
1953
|
-
type setupIntents_ConfirmCardSetupData = ConfirmCardSetupData;
|
|
1954
|
-
type setupIntents_ConfirmCardSetupOptions = ConfirmCardSetupOptions;
|
|
1955
|
-
type setupIntents_ConfirmCashappSetupData = ConfirmCashappSetupData;
|
|
1956
|
-
type setupIntents_ConfirmIdealSetupData = ConfirmIdealSetupData;
|
|
1957
|
-
type setupIntents_ConfirmPayPalSetupData = ConfirmPayPalSetupData;
|
|
1958
|
-
type setupIntents_ConfirmSepaDebitSetupData = ConfirmSepaDebitSetupData;
|
|
1959
|
-
type setupIntents_ConfirmSofortSetupData = ConfirmSofortSetupData;
|
|
1960
|
-
type setupIntents_ConfirmSofortSetupOptions = ConfirmSofortSetupOptions;
|
|
1961
|
-
type setupIntents_ConfirmAuBecsDebitSetupData = ConfirmAuBecsDebitSetupData;
|
|
1962
|
-
type setupIntents_ConfirmBacsDebitSetupData = ConfirmBacsDebitSetupData;
|
|
1963
|
-
type setupIntents_ConfirmBancontactSetupData = ConfirmBancontactSetupData;
|
|
1964
|
-
type setupIntents_ConfirmAcssDebitSetupData = ConfirmAcssDebitSetupData;
|
|
1965
|
-
type setupIntents_ConfirmAcssDebitSetupOptions = ConfirmAcssDebitSetupOptions;
|
|
1966
|
-
type setupIntents_VerifyMicrodepositsForSetupData = VerifyMicrodepositsForSetupData;
|
|
1967
|
-
type setupIntents_ConfirmUsBankAccountSetupData = ConfirmUsBankAccountSetupData;
|
|
1968
|
-
type setupIntents_CollectBankAccountForSetupOptions = CollectBankAccountForSetupOptions;
|
|
1969
|
-
declare namespace setupIntents {
|
|
1970
|
-
export type { setupIntents_ConfirmCardSetupData as ConfirmCardSetupData, setupIntents_ConfirmCardSetupOptions as ConfirmCardSetupOptions, setupIntents_ConfirmCashappSetupData as ConfirmCashappSetupData, setupIntents_ConfirmIdealSetupData as ConfirmIdealSetupData, setupIntents_ConfirmPayPalSetupData as ConfirmPayPalSetupData, setupIntents_ConfirmSepaDebitSetupData as ConfirmSepaDebitSetupData, setupIntents_ConfirmSofortSetupData as ConfirmSofortSetupData, setupIntents_ConfirmSofortSetupOptions as ConfirmSofortSetupOptions, setupIntents_ConfirmAuBecsDebitSetupData as ConfirmAuBecsDebitSetupData, setupIntents_ConfirmBacsDebitSetupData as ConfirmBacsDebitSetupData, setupIntents_ConfirmBancontactSetupData as ConfirmBancontactSetupData, setupIntents_ConfirmAcssDebitSetupData as ConfirmAcssDebitSetupData, setupIntents_ConfirmAcssDebitSetupOptions as ConfirmAcssDebitSetupOptions, setupIntents_VerifyMicrodepositsForSetupData as VerifyMicrodepositsForSetupData, setupIntents_ConfirmUsBankAccountSetupData as ConfirmUsBankAccountSetupData, setupIntents_CollectBankAccountForSetupOptions as CollectBankAccountForSetupOptions };
|
|
1971
|
-
}
|
|
1972
|
-
|
|
1973
1964
|
/**
|
|
1974
1965
|
* Parameters that will be passed on to the Stripe API to confirm payment for an Order's PaymentIntent.
|
|
1975
1966
|
*/
|
|
@@ -3665,7 +3656,7 @@ interface Stripe {
|
|
|
3665
3656
|
confirmCashappSetup(
|
|
3666
3657
|
clientSecret: string,
|
|
3667
3658
|
data?: ConfirmCashappSetupData,
|
|
3668
|
-
options?:
|
|
3659
|
+
options?: ConfirmCashappSetupOptions
|
|
3669
3660
|
): Promise<SetupIntentResult>;
|
|
3670
3661
|
|
|
3671
3662
|
/**
|
|
@@ -12623,4 +12614,4 @@ declare global {
|
|
|
12623
12614
|
}
|
|
12624
12615
|
}
|
|
12625
12616
|
|
|
12626
|
-
export { type AccountAddressParam, type Address, type AddressMode, type AddressParam, type Appearance, type ApplePayButtonTheme, type ApplePayButtonType, type AvailablePaymentMethods, type BankAccount, type BankAccountToken, BillingDetails, type ButtonThemeOption, type ButtonTypeOption, type CanMakePaymentResult, Card, type CardNetworkBrand, type CartDescriptor, type CartItemDetails, type CartShowOnAdd, type ChangeResolveDetails, type CheckoutLocale, type ClickResolveDetails, type CollectBankAccountForPaymentOptions, type CollectBankAccountForSetupOptions, type CollectBankAccountParams, type CollectBankAccountPaymentMethodData, type CollectBankAccountTokenOptions, type CollectBankAccountTokenResult, type CollectFinancialConnectionsAccountsOptions, type ConfirmAcssDebitPaymentData, type ConfirmAcssDebitPaymentOptions, type ConfirmAcssDebitSetupData, type ConfirmAcssDebitSetupOptions, type ConfirmAffirmPaymentData, type ConfirmAffirmPaymentOptions, type ConfirmAfterpayClearpayPaymentData, type ConfirmAfterpayClearpayPaymentOptions, type ConfirmAlipayPaymentData, type ConfirmAlipayPaymentOptions, type ConfirmAuBecsDebitPaymentData, type ConfirmAuBecsDebitSetupData, type ConfirmBacsDebitSetupData, type ConfirmBancontactPaymentData, type ConfirmBancontactPaymentOptions, type ConfirmBancontactSetupData, type ConfirmBlikPaymentData, type ConfirmBlikPaymentOptions, type ConfirmBoletoPaymentData, type ConfirmBoletoPaymentOptions, type ConfirmCardPaymentData, type ConfirmCardPaymentOptions, type ConfirmCardSetupData, type ConfirmCardSetupOptions, type ConfirmCashappPaymentData, type ConfirmCashappPaymentOptions, type ConfirmCashappSetupData, type ConfirmCustomerBalancePaymentData, type ConfirmCustomerBalancePaymentOptions, type ConfirmEpsPaymentData, type ConfirmEpsPaymentOptions, type ConfirmFpxPaymentData, type ConfirmFpxPaymentOptions, type ConfirmGiropayPaymentData, type ConfirmGiropayPaymentOptions, type ConfirmGrabPayPaymentData, type ConfirmGrabPayPaymentOptions, type ConfirmIdealPaymentData, type ConfirmIdealPaymentOptions, type ConfirmIdealSetupData, type ConfirmKlarnaPaymentData, type ConfirmKlarnaPaymentOptions, type ConfirmKonbiniPaymentData, type ConfirmKonbiniPaymentOptions, type ConfirmOxxoPaymentData, type ConfirmOxxoPaymentOptions, type ConfirmP24PaymentData, type ConfirmP24PaymentOptions, type ConfirmPayNowPaymentData, type ConfirmPayNowPaymentOptions, type ConfirmPayPalPaymentData, type ConfirmPayPalSetupData, type ConfirmPaymentData, type ConfirmPixPaymentData, type ConfirmPixPaymentOptions, type ConfirmPromptPayPaymentData, type ConfirmPromptPayPaymentOptions, type ConfirmSepaDebitPaymentData, type ConfirmSepaDebitSetupData, type ConfirmSofortPaymentData, type ConfirmSofortPaymentOptions, type ConfirmSofortSetupData, type ConfirmSofortSetupOptions, type ConfirmUsBankAccountPaymentData, type ConfirmUsBankAccountSetupData, type ConfirmWechatPayPaymentData, type ConfirmWechatPayPaymentOptions, type ContactOption, type CreatePaymentMethodAcssDebitData, type CreatePaymentMethodAffirmData, type CreatePaymentMethodAfterpayClearpayData, type CreatePaymentMethodAlipayData, type CreatePaymentMethodAuBecsDebitData, type CreatePaymentMethodBacsDebitData, type CreatePaymentMethodBancontactData, type CreatePaymentMethodBlikData, type CreatePaymentMethodBoletoData, type CreatePaymentMethodCardData, type CreatePaymentMethodCashappData, type CreatePaymentMethodCustomerBalanceData, type CreatePaymentMethodData, type CreatePaymentMethodEpsData, type CreatePaymentMethodFpxData, type CreatePaymentMethodFromElement, type CreatePaymentMethodFromElements, type CreatePaymentMethodGiropayData, type CreatePaymentMethodGrabPayData, type CreatePaymentMethodIdealData, type CreatePaymentMethodKlarnaData, type CreatePaymentMethodKonbiniData, type CreatePaymentMethodOxxoData, type CreatePaymentMethodP24Data, type CreatePaymentMethodPayNowData, type CreatePaymentMethodPayPalData, type CreatePaymentMethodPixData, type CreatePaymentMethodPromptPayData, type CreatePaymentMethodSepaDebitData, type CreatePaymentMethodSofortData, type CreatePaymentMethodUsBankAccountData, type CreatePaymentMethodWechatPayData, CreateSourceData, type CreateTokenBankAccountData, type CreateTokenCardData, type CreateTokenIbanData, type CreateTokenPiiData, type CssFontSource, type CustomFontSource, type CustomerOptions, type DefaultValuesOption, type DeliveryEstimate, type DeliveryUnit, type EphemeralKeyNonceOptions, type EphemeralKeyNonceResult, type ExpressCheckoutAddress, type ExpressCheckoutPartialAddress, type ExpressCheckoutWalletOption, type ExpressCheckoutWalletsOption, type ExpressPaymentType, type FieldOption, type FieldsOption, FinancialConnectionsSession, type FinancialConnectionsSessionResult, type GooglePayButtonTheme, type GooglePayButtonType, type JapanAddressParam, type Layout, type LayoutObject, type LayoutOption, type LineItem, type Metadata, type MetadataParam, Order, PaymentIntent, PaymentIntentConfirmParams, type PaymentIntentOrSetupIntentResult, type PaymentIntentResult, PaymentMethod, PaymentMethodCreateParams, type PaymentMethodResult, type PaymentRequest, type PaymentRequestCompleteStatus, type PaymentRequestEvent, type PaymentRequestItem, type PaymentRequestOptions, type PaymentRequestPaymentMethodEvent, type PaymentRequestShippingAddress, type PaymentRequestShippingAddressEvent, type PaymentRequestShippingOption, type PaymentRequestShippingOptionEvent, type PaymentRequestSourceEvent, type PaymentRequestTokenEvent, type PaymentRequestUpdateDetails, type PaymentRequestUpdateDetailsStatus, type PaymentRequestUpdateOptions, type PaymentRequestWallet, type PaymentWalletOption, type PaymentWalletsOption, type ProcessOrderParams, type ProcessOrderResult, type RadarSessionPayload, type RedirectToCheckoutClientOptions, type RedirectToCheckoutOptions, type RedirectToCheckoutServerOptions, type RetrieveOrderResult, type RetrieveSourceParam, SetupIntent, type SetupIntentConfirmParams, type SetupIntentResult, type ShippingAddress, type ShippingRate, Source, SourceCreateParams, type SourceResult, type Stripe, type StripeAddressElement, type StripeAddressElementChangeEvent, type StripeAddressElementOptions, type StripeAffirmMessageElement, type StripeAffirmMessageElementOptions, type StripeAfterpayClearpayMessageElement, type StripeAfterpayClearpayMessageElementOptions, type StripeAuBankAccountElement, type StripeAuBankAccountElementChangeEvent, type StripeAuBankAccountElementOptions, type StripeCardCvcElement, type StripeCardCvcElementChangeEvent, type StripeCardCvcElementOptions, type StripeCardElement, type StripeCardElementChangeEvent, type StripeCardElementOptions, type StripeCardElementUpdateOptions, type StripeCardExpiryElement, type StripeCardExpiryElementChangeEvent, type StripeCardExpiryElementOptions, type StripeCardNumberElement, type StripeCardNumberElementChangeEvent, type StripeCardNumberElementOptions, type StripeCardNumberElementUpdateOptions, type StripeCartElement, type StripeCartElementLineItemClickEvent, type StripeCartElementOptions, type StripeCartElementPayloadEvent, type StripeCartElementUpdateOptions, type StripeConstructor, type StripeConstructorOptions, type StripeCustomCheckout, type StripeCustomCheckoutActions, type StripeCustomCheckoutAddress, type StripeCustomCheckoutAddressElementOptions, type StripeCustomCheckoutBillingInterval, type StripeCustomCheckoutConfirmationRequirement, type StripeCustomCheckoutContact, type StripeCustomCheckoutDeliveryEstimate, type StripeCustomCheckoutDiscountAmount, type StripeCustomCheckoutElementsActions, type StripeCustomCheckoutElementsOptions, type StripeCustomCheckoutEstimate, type StripeCustomCheckoutLineItem, type StripeCustomCheckoutOptions, type StripeCustomCheckoutPaymentElementOptions, type StripeCustomCheckoutResult, type StripeCustomCheckoutSession, type StripeCustomCheckoutShipping, type StripeCustomCheckoutShippingOption, type StripeCustomCheckoutTaxAmount, type StripeCustomCheckoutTotalSummary, type StripeCustomCheckoutUpdateHandler, type StripeElement, type StripeElementBase, type StripeElementCSSProperties, type StripeElementChangeEvent, type StripeElementClasses, type StripeElementLocale, type StripeElementStyle, type StripeElementStyleVariant, type StripeElementType, type StripeElements, type StripeElementsOptions, type StripeElementsOptionsClientSecret, type StripeElementsOptionsMode, type StripeElementsUpdateOptions, type StripeEmbeddedCheckout, type StripeEmbeddedCheckoutOptions, type StripeEpsBankElement, type StripeEpsBankElementChangeEvent, type StripeEpsBankElementOptions, type StripeError, type StripeErrorType, type StripeExpressCheckoutElement, type StripeExpressCheckoutElementClickEvent, type StripeExpressCheckoutElementConfirmEvent, type StripeExpressCheckoutElementOptions, type StripeExpressCheckoutElementReadyEvent, type StripeExpressCheckoutElementShippingAddressChangeEvent, type StripeExpressCheckoutElementShippingRateChangeEvent, type StripeExpressCheckoutElementUpdateOptions, type StripeFpxBankElement, type StripeFpxBankElementChangeEvent, type StripeFpxBankElementOptions, type StripeIbanElement, type StripeIbanElementChangeEvent, type StripeIbanElementOptions, type StripeIdealBankElement, type StripeIdealBankElementChangeEvent, type StripeIdealBankElementOptions, type StripeIssuingCardCopyButtonElement, type StripeIssuingCardCopyButtonElementOptions, type StripeIssuingCardCvcDisplayElement, type StripeIssuingCardCvcDisplayElementOptions, type StripeIssuingCardExpiryDisplayElement, type StripeIssuingCardExpiryDisplayElementOptions, type StripeIssuingCardNumberDisplayElement, type StripeIssuingCardNumberDisplayElementOptions, type StripeIssuingCardPinDisplayElement, type StripeIssuingCardPinDisplayElementOptions, type StripeLinkAuthenticationElement, type StripeLinkAuthenticationElementChangeEvent, type StripeLinkAuthenticationElementOptions, type StripeP24BankElement, type StripeP24BankElementChangeEvent, type StripeP24BankElementOptions, type StripePaymentElement, type StripePaymentElementChangeEvent, type StripePaymentElementOptions, type StripePaymentMethodMessagingElement, type StripePaymentMethodMessagingElementOptions, type StripePaymentRequestButtonElement, type StripePaymentRequestButtonElementClickEvent, type StripePaymentRequestButtonElementOptions, type StripeShippingAddressElement, type StripeShippingAddressElementChangeEvent, type StripeShippingAddressElementOptions, type TermOption, type TermsOption, type Token, TokenCreateParams, type TokenResult, type VerificationSession, type VerificationSessionResult, type VerifyMicrodepositsForPaymentData, type VerifyMicrodepositsForSetupData, type WrapperLibrary, loadStripe };
|
|
12617
|
+
export { type AccountAddressParam, type Address, type AddressMode, type AddressParam, type Appearance, type ApplePayButtonTheme, type ApplePayButtonType, type AvailablePaymentMethods, type BankAccount, type BankAccountToken, BillingDetails, type ButtonThemeOption, type ButtonTypeOption, type CanMakePaymentResult, Card, type CardNetworkBrand, type CartDescriptor, type CartItemDetails, type CartShowOnAdd, type ChangeResolveDetails, type CheckoutLocale, type ClickResolveDetails, type CollectBankAccountForPaymentOptions, type CollectBankAccountForSetupOptions, type CollectBankAccountParams, type CollectBankAccountPaymentMethodData, type CollectBankAccountTokenOptions, type CollectBankAccountTokenResult, type CollectFinancialConnectionsAccountsOptions, type ConfirmAcssDebitPaymentData, type ConfirmAcssDebitPaymentOptions, type ConfirmAcssDebitSetupData, type ConfirmAcssDebitSetupOptions, type ConfirmAffirmPaymentData, type ConfirmAffirmPaymentOptions, type ConfirmAfterpayClearpayPaymentData, type ConfirmAfterpayClearpayPaymentOptions, type ConfirmAlipayPaymentData, type ConfirmAlipayPaymentOptions, type ConfirmAuBecsDebitPaymentData, type ConfirmAuBecsDebitSetupData, type ConfirmBacsDebitSetupData, type ConfirmBancontactPaymentData, type ConfirmBancontactPaymentOptions, type ConfirmBancontactSetupData, type ConfirmBlikPaymentData, type ConfirmBlikPaymentOptions, type ConfirmBoletoPaymentData, type ConfirmBoletoPaymentOptions, type ConfirmCardPaymentData, type ConfirmCardPaymentOptions, type ConfirmCardSetupData, type ConfirmCardSetupOptions, type ConfirmCashappPaymentData, type ConfirmCashappPaymentOptions, type ConfirmCashappSetupData, type ConfirmCashappSetupOptions, type ConfirmCustomerBalancePaymentData, type ConfirmCustomerBalancePaymentOptions, type ConfirmEpsPaymentData, type ConfirmEpsPaymentOptions, type ConfirmFpxPaymentData, type ConfirmFpxPaymentOptions, type ConfirmGiropayPaymentData, type ConfirmGiropayPaymentOptions, type ConfirmGrabPayPaymentData, type ConfirmGrabPayPaymentOptions, type ConfirmIdealPaymentData, type ConfirmIdealPaymentOptions, type ConfirmIdealSetupData, type ConfirmKlarnaPaymentData, type ConfirmKlarnaPaymentOptions, type ConfirmKonbiniPaymentData, type ConfirmKonbiniPaymentOptions, type ConfirmOxxoPaymentData, type ConfirmOxxoPaymentOptions, type ConfirmP24PaymentData, type ConfirmP24PaymentOptions, type ConfirmPayNowPaymentData, type ConfirmPayNowPaymentOptions, type ConfirmPayPalPaymentData, type ConfirmPayPalSetupData, type ConfirmPaymentData, type ConfirmPixPaymentData, type ConfirmPixPaymentOptions, type ConfirmPromptPayPaymentData, type ConfirmPromptPayPaymentOptions, type ConfirmSepaDebitPaymentData, type ConfirmSepaDebitSetupData, type ConfirmSofortPaymentData, type ConfirmSofortPaymentOptions, type ConfirmSofortSetupData, type ConfirmSofortSetupOptions, type ConfirmUsBankAccountPaymentData, type ConfirmUsBankAccountSetupData, type ConfirmWechatPayPaymentData, type ConfirmWechatPayPaymentOptions, type ContactOption, type CreatePaymentMethodAcssDebitData, type CreatePaymentMethodAffirmData, type CreatePaymentMethodAfterpayClearpayData, type CreatePaymentMethodAlipayData, type CreatePaymentMethodAuBecsDebitData, type CreatePaymentMethodBacsDebitData, type CreatePaymentMethodBancontactData, type CreatePaymentMethodBlikData, type CreatePaymentMethodBoletoData, type CreatePaymentMethodCardData, type CreatePaymentMethodCashappData, type CreatePaymentMethodCustomerBalanceData, type CreatePaymentMethodData, type CreatePaymentMethodEpsData, type CreatePaymentMethodFpxData, type CreatePaymentMethodFromElement, type CreatePaymentMethodFromElements, type CreatePaymentMethodGiropayData, type CreatePaymentMethodGrabPayData, type CreatePaymentMethodIdealData, type CreatePaymentMethodKlarnaData, type CreatePaymentMethodKonbiniData, type CreatePaymentMethodOxxoData, type CreatePaymentMethodP24Data, type CreatePaymentMethodPayNowData, type CreatePaymentMethodPayPalData, type CreatePaymentMethodPixData, type CreatePaymentMethodPromptPayData, type CreatePaymentMethodSepaDebitData, type CreatePaymentMethodSofortData, type CreatePaymentMethodUsBankAccountData, type CreatePaymentMethodWechatPayData, CreateSourceData, type CreateTokenBankAccountData, type CreateTokenCardData, type CreateTokenIbanData, type CreateTokenPiiData, type CssFontSource, type CustomFontSource, type CustomerOptions, type DefaultValuesOption, type DeliveryEstimate, type DeliveryUnit, type EphemeralKeyNonceOptions, type EphemeralKeyNonceResult, type ExpressCheckoutAddress, type ExpressCheckoutPartialAddress, type ExpressCheckoutWalletOption, type ExpressCheckoutWalletsOption, type ExpressPaymentType, type FieldOption, type FieldsOption, FinancialConnectionsSession, type FinancialConnectionsSessionResult, type GooglePayButtonTheme, type GooglePayButtonType, type JapanAddressParam, type Layout, type LayoutObject, type LayoutOption, type LineItem, type Metadata, type MetadataParam, Order, PaymentIntent, PaymentIntentConfirmParams, type PaymentIntentOrSetupIntentResult, type PaymentIntentResult, PaymentMethod, PaymentMethodCreateParams, type PaymentMethodResult, type PaymentRequest, type PaymentRequestCompleteStatus, type PaymentRequestEvent, type PaymentRequestItem, type PaymentRequestOptions, type PaymentRequestPaymentMethodEvent, type PaymentRequestShippingAddress, type PaymentRequestShippingAddressEvent, type PaymentRequestShippingOption, type PaymentRequestShippingOptionEvent, type PaymentRequestSourceEvent, type PaymentRequestTokenEvent, type PaymentRequestUpdateDetails, type PaymentRequestUpdateDetailsStatus, type PaymentRequestUpdateOptions, type PaymentRequestWallet, type PaymentWalletOption, type PaymentWalletsOption, type ProcessOrderParams, type ProcessOrderResult, type RadarSessionPayload, type RedirectToCheckoutClientOptions, type RedirectToCheckoutOptions, type RedirectToCheckoutServerOptions, type RetrieveOrderResult, type RetrieveSourceParam, SetupIntent, type SetupIntentConfirmParams, type SetupIntentResult, type ShippingAddress, type ShippingRate, Source, SourceCreateParams, type SourceResult, type Stripe, type StripeAddressElement, type StripeAddressElementChangeEvent, type StripeAddressElementOptions, type StripeAffirmMessageElement, type StripeAffirmMessageElementOptions, type StripeAfterpayClearpayMessageElement, type StripeAfterpayClearpayMessageElementOptions, type StripeAuBankAccountElement, type StripeAuBankAccountElementChangeEvent, type StripeAuBankAccountElementOptions, type StripeCardCvcElement, type StripeCardCvcElementChangeEvent, type StripeCardCvcElementOptions, type StripeCardElement, type StripeCardElementChangeEvent, type StripeCardElementOptions, type StripeCardElementUpdateOptions, type StripeCardExpiryElement, type StripeCardExpiryElementChangeEvent, type StripeCardExpiryElementOptions, type StripeCardNumberElement, type StripeCardNumberElementChangeEvent, type StripeCardNumberElementOptions, type StripeCardNumberElementUpdateOptions, type StripeCartElement, type StripeCartElementLineItemClickEvent, type StripeCartElementOptions, type StripeCartElementPayloadEvent, type StripeCartElementUpdateOptions, type StripeConstructor, type StripeConstructorOptions, type StripeCustomCheckout, type StripeCustomCheckoutActions, type StripeCustomCheckoutAddress, type StripeCustomCheckoutAddressElementOptions, type StripeCustomCheckoutBillingInterval, type StripeCustomCheckoutConfirmationRequirement, type StripeCustomCheckoutContact, type StripeCustomCheckoutDeliveryEstimate, type StripeCustomCheckoutDiscountAmount, type StripeCustomCheckoutElementsActions, type StripeCustomCheckoutElementsOptions, type StripeCustomCheckoutEstimate, type StripeCustomCheckoutLineItem, type StripeCustomCheckoutOptions, type StripeCustomCheckoutPaymentElementOptions, type StripeCustomCheckoutResult, type StripeCustomCheckoutSession, type StripeCustomCheckoutShipping, type StripeCustomCheckoutShippingOption, type StripeCustomCheckoutTaxAmount, type StripeCustomCheckoutTotalSummary, type StripeCustomCheckoutUpdateHandler, type StripeElement, type StripeElementBase, type StripeElementCSSProperties, type StripeElementChangeEvent, type StripeElementClasses, type StripeElementLocale, type StripeElementStyle, type StripeElementStyleVariant, type StripeElementType, type StripeElements, type StripeElementsOptions, type StripeElementsOptionsClientSecret, type StripeElementsOptionsMode, type StripeElementsUpdateOptions, type StripeEmbeddedCheckout, type StripeEmbeddedCheckoutOptions, type StripeEpsBankElement, type StripeEpsBankElementChangeEvent, type StripeEpsBankElementOptions, type StripeError, type StripeErrorType, type StripeExpressCheckoutElement, type StripeExpressCheckoutElementClickEvent, type StripeExpressCheckoutElementConfirmEvent, type StripeExpressCheckoutElementOptions, type StripeExpressCheckoutElementReadyEvent, type StripeExpressCheckoutElementShippingAddressChangeEvent, type StripeExpressCheckoutElementShippingRateChangeEvent, type StripeExpressCheckoutElementUpdateOptions, type StripeFpxBankElement, type StripeFpxBankElementChangeEvent, type StripeFpxBankElementOptions, type StripeIbanElement, type StripeIbanElementChangeEvent, type StripeIbanElementOptions, type StripeIdealBankElement, type StripeIdealBankElementChangeEvent, type StripeIdealBankElementOptions, type StripeIssuingCardCopyButtonElement, type StripeIssuingCardCopyButtonElementOptions, type StripeIssuingCardCvcDisplayElement, type StripeIssuingCardCvcDisplayElementOptions, type StripeIssuingCardExpiryDisplayElement, type StripeIssuingCardExpiryDisplayElementOptions, type StripeIssuingCardNumberDisplayElement, type StripeIssuingCardNumberDisplayElementOptions, type StripeIssuingCardPinDisplayElement, type StripeIssuingCardPinDisplayElementOptions, type StripeLinkAuthenticationElement, type StripeLinkAuthenticationElementChangeEvent, type StripeLinkAuthenticationElementOptions, type StripeP24BankElement, type StripeP24BankElementChangeEvent, type StripeP24BankElementOptions, type StripePaymentElement, type StripePaymentElementChangeEvent, type StripePaymentElementOptions, type StripePaymentMethodMessagingElement, type StripePaymentMethodMessagingElementOptions, type StripePaymentRequestButtonElement, type StripePaymentRequestButtonElementClickEvent, type StripePaymentRequestButtonElementOptions, type StripeShippingAddressElement, type StripeShippingAddressElementChangeEvent, type StripeShippingAddressElementOptions, type TermOption, type TermsOption, type Token, TokenCreateParams, type TokenResult, type VerificationSession, type VerificationSessionResult, type VerifyMicrodepositsForPaymentData, type VerifyMicrodepositsForSetupData, type WrapperLibrary, loadStripe };
|
package/dist/index.d.ts
CHANGED
|
@@ -1769,6 +1769,17 @@ interface ConfirmCashappSetupData extends SetupIntentConfirmParams {
|
|
|
1769
1769
|
return_url?: string;
|
|
1770
1770
|
}
|
|
1771
1771
|
|
|
1772
|
+
/**
|
|
1773
|
+
* An options object to control the behavior of `stripe.confirmCashappSetup`.
|
|
1774
|
+
*/
|
|
1775
|
+
interface ConfirmCashappSetupOptions {
|
|
1776
|
+
/*
|
|
1777
|
+
* Set this to `false` if you want to [manually handle the authorization QR code or redirect](https://stripe.com/docs/payments/cash-app-pay/set-up-payment?platform=web&ui=API#web-create-setup-intent).
|
|
1778
|
+
* Default is `true`.
|
|
1779
|
+
*/
|
|
1780
|
+
handleActions?: boolean;
|
|
1781
|
+
}
|
|
1782
|
+
|
|
1772
1783
|
/**
|
|
1773
1784
|
* Data to be sent with a `stripe.confirmIdealSetup` request.
|
|
1774
1785
|
* Refer to the [Setup Intents API](https://stripe.com/docs/api/setup_intents/confirm) for a full list of parameters.
|
|
@@ -1950,26 +1961,6 @@ interface CollectBankAccountForSetupOptions {
|
|
|
1950
1961
|
expand?: Array<string>;
|
|
1951
1962
|
}
|
|
1952
1963
|
|
|
1953
|
-
type setupIntents_ConfirmCardSetupData = ConfirmCardSetupData;
|
|
1954
|
-
type setupIntents_ConfirmCardSetupOptions = ConfirmCardSetupOptions;
|
|
1955
|
-
type setupIntents_ConfirmCashappSetupData = ConfirmCashappSetupData;
|
|
1956
|
-
type setupIntents_ConfirmIdealSetupData = ConfirmIdealSetupData;
|
|
1957
|
-
type setupIntents_ConfirmPayPalSetupData = ConfirmPayPalSetupData;
|
|
1958
|
-
type setupIntents_ConfirmSepaDebitSetupData = ConfirmSepaDebitSetupData;
|
|
1959
|
-
type setupIntents_ConfirmSofortSetupData = ConfirmSofortSetupData;
|
|
1960
|
-
type setupIntents_ConfirmSofortSetupOptions = ConfirmSofortSetupOptions;
|
|
1961
|
-
type setupIntents_ConfirmAuBecsDebitSetupData = ConfirmAuBecsDebitSetupData;
|
|
1962
|
-
type setupIntents_ConfirmBacsDebitSetupData = ConfirmBacsDebitSetupData;
|
|
1963
|
-
type setupIntents_ConfirmBancontactSetupData = ConfirmBancontactSetupData;
|
|
1964
|
-
type setupIntents_ConfirmAcssDebitSetupData = ConfirmAcssDebitSetupData;
|
|
1965
|
-
type setupIntents_ConfirmAcssDebitSetupOptions = ConfirmAcssDebitSetupOptions;
|
|
1966
|
-
type setupIntents_VerifyMicrodepositsForSetupData = VerifyMicrodepositsForSetupData;
|
|
1967
|
-
type setupIntents_ConfirmUsBankAccountSetupData = ConfirmUsBankAccountSetupData;
|
|
1968
|
-
type setupIntents_CollectBankAccountForSetupOptions = CollectBankAccountForSetupOptions;
|
|
1969
|
-
declare namespace setupIntents {
|
|
1970
|
-
export type { setupIntents_ConfirmCardSetupData as ConfirmCardSetupData, setupIntents_ConfirmCardSetupOptions as ConfirmCardSetupOptions, setupIntents_ConfirmCashappSetupData as ConfirmCashappSetupData, setupIntents_ConfirmIdealSetupData as ConfirmIdealSetupData, setupIntents_ConfirmPayPalSetupData as ConfirmPayPalSetupData, setupIntents_ConfirmSepaDebitSetupData as ConfirmSepaDebitSetupData, setupIntents_ConfirmSofortSetupData as ConfirmSofortSetupData, setupIntents_ConfirmSofortSetupOptions as ConfirmSofortSetupOptions, setupIntents_ConfirmAuBecsDebitSetupData as ConfirmAuBecsDebitSetupData, setupIntents_ConfirmBacsDebitSetupData as ConfirmBacsDebitSetupData, setupIntents_ConfirmBancontactSetupData as ConfirmBancontactSetupData, setupIntents_ConfirmAcssDebitSetupData as ConfirmAcssDebitSetupData, setupIntents_ConfirmAcssDebitSetupOptions as ConfirmAcssDebitSetupOptions, setupIntents_VerifyMicrodepositsForSetupData as VerifyMicrodepositsForSetupData, setupIntents_ConfirmUsBankAccountSetupData as ConfirmUsBankAccountSetupData, setupIntents_CollectBankAccountForSetupOptions as CollectBankAccountForSetupOptions };
|
|
1971
|
-
}
|
|
1972
|
-
|
|
1973
1964
|
/**
|
|
1974
1965
|
* Parameters that will be passed on to the Stripe API to confirm payment for an Order's PaymentIntent.
|
|
1975
1966
|
*/
|
|
@@ -3665,7 +3656,7 @@ interface Stripe {
|
|
|
3665
3656
|
confirmCashappSetup(
|
|
3666
3657
|
clientSecret: string,
|
|
3667
3658
|
data?: ConfirmCashappSetupData,
|
|
3668
|
-
options?:
|
|
3659
|
+
options?: ConfirmCashappSetupOptions
|
|
3669
3660
|
): Promise<SetupIntentResult>;
|
|
3670
3661
|
|
|
3671
3662
|
/**
|
|
@@ -12623,4 +12614,4 @@ declare global {
|
|
|
12623
12614
|
}
|
|
12624
12615
|
}
|
|
12625
12616
|
|
|
12626
|
-
export { type AccountAddressParam, type Address, type AddressMode, type AddressParam, type Appearance, type ApplePayButtonTheme, type ApplePayButtonType, type AvailablePaymentMethods, type BankAccount, type BankAccountToken, BillingDetails, type ButtonThemeOption, type ButtonTypeOption, type CanMakePaymentResult, Card, type CardNetworkBrand, type CartDescriptor, type CartItemDetails, type CartShowOnAdd, type ChangeResolveDetails, type CheckoutLocale, type ClickResolveDetails, type CollectBankAccountForPaymentOptions, type CollectBankAccountForSetupOptions, type CollectBankAccountParams, type CollectBankAccountPaymentMethodData, type CollectBankAccountTokenOptions, type CollectBankAccountTokenResult, type CollectFinancialConnectionsAccountsOptions, type ConfirmAcssDebitPaymentData, type ConfirmAcssDebitPaymentOptions, type ConfirmAcssDebitSetupData, type ConfirmAcssDebitSetupOptions, type ConfirmAffirmPaymentData, type ConfirmAffirmPaymentOptions, type ConfirmAfterpayClearpayPaymentData, type ConfirmAfterpayClearpayPaymentOptions, type ConfirmAlipayPaymentData, type ConfirmAlipayPaymentOptions, type ConfirmAuBecsDebitPaymentData, type ConfirmAuBecsDebitSetupData, type ConfirmBacsDebitSetupData, type ConfirmBancontactPaymentData, type ConfirmBancontactPaymentOptions, type ConfirmBancontactSetupData, type ConfirmBlikPaymentData, type ConfirmBlikPaymentOptions, type ConfirmBoletoPaymentData, type ConfirmBoletoPaymentOptions, type ConfirmCardPaymentData, type ConfirmCardPaymentOptions, type ConfirmCardSetupData, type ConfirmCardSetupOptions, type ConfirmCashappPaymentData, type ConfirmCashappPaymentOptions, type ConfirmCashappSetupData, type ConfirmCustomerBalancePaymentData, type ConfirmCustomerBalancePaymentOptions, type ConfirmEpsPaymentData, type ConfirmEpsPaymentOptions, type ConfirmFpxPaymentData, type ConfirmFpxPaymentOptions, type ConfirmGiropayPaymentData, type ConfirmGiropayPaymentOptions, type ConfirmGrabPayPaymentData, type ConfirmGrabPayPaymentOptions, type ConfirmIdealPaymentData, type ConfirmIdealPaymentOptions, type ConfirmIdealSetupData, type ConfirmKlarnaPaymentData, type ConfirmKlarnaPaymentOptions, type ConfirmKonbiniPaymentData, type ConfirmKonbiniPaymentOptions, type ConfirmOxxoPaymentData, type ConfirmOxxoPaymentOptions, type ConfirmP24PaymentData, type ConfirmP24PaymentOptions, type ConfirmPayNowPaymentData, type ConfirmPayNowPaymentOptions, type ConfirmPayPalPaymentData, type ConfirmPayPalSetupData, type ConfirmPaymentData, type ConfirmPixPaymentData, type ConfirmPixPaymentOptions, type ConfirmPromptPayPaymentData, type ConfirmPromptPayPaymentOptions, type ConfirmSepaDebitPaymentData, type ConfirmSepaDebitSetupData, type ConfirmSofortPaymentData, type ConfirmSofortPaymentOptions, type ConfirmSofortSetupData, type ConfirmSofortSetupOptions, type ConfirmUsBankAccountPaymentData, type ConfirmUsBankAccountSetupData, type ConfirmWechatPayPaymentData, type ConfirmWechatPayPaymentOptions, type ContactOption, type CreatePaymentMethodAcssDebitData, type CreatePaymentMethodAffirmData, type CreatePaymentMethodAfterpayClearpayData, type CreatePaymentMethodAlipayData, type CreatePaymentMethodAuBecsDebitData, type CreatePaymentMethodBacsDebitData, type CreatePaymentMethodBancontactData, type CreatePaymentMethodBlikData, type CreatePaymentMethodBoletoData, type CreatePaymentMethodCardData, type CreatePaymentMethodCashappData, type CreatePaymentMethodCustomerBalanceData, type CreatePaymentMethodData, type CreatePaymentMethodEpsData, type CreatePaymentMethodFpxData, type CreatePaymentMethodFromElement, type CreatePaymentMethodFromElements, type CreatePaymentMethodGiropayData, type CreatePaymentMethodGrabPayData, type CreatePaymentMethodIdealData, type CreatePaymentMethodKlarnaData, type CreatePaymentMethodKonbiniData, type CreatePaymentMethodOxxoData, type CreatePaymentMethodP24Data, type CreatePaymentMethodPayNowData, type CreatePaymentMethodPayPalData, type CreatePaymentMethodPixData, type CreatePaymentMethodPromptPayData, type CreatePaymentMethodSepaDebitData, type CreatePaymentMethodSofortData, type CreatePaymentMethodUsBankAccountData, type CreatePaymentMethodWechatPayData, CreateSourceData, type CreateTokenBankAccountData, type CreateTokenCardData, type CreateTokenIbanData, type CreateTokenPiiData, type CssFontSource, type CustomFontSource, type CustomerOptions, type DefaultValuesOption, type DeliveryEstimate, type DeliveryUnit, type EphemeralKeyNonceOptions, type EphemeralKeyNonceResult, type ExpressCheckoutAddress, type ExpressCheckoutPartialAddress, type ExpressCheckoutWalletOption, type ExpressCheckoutWalletsOption, type ExpressPaymentType, type FieldOption, type FieldsOption, FinancialConnectionsSession, type FinancialConnectionsSessionResult, type GooglePayButtonTheme, type GooglePayButtonType, type JapanAddressParam, type Layout, type LayoutObject, type LayoutOption, type LineItem, type Metadata, type MetadataParam, Order, PaymentIntent, PaymentIntentConfirmParams, type PaymentIntentOrSetupIntentResult, type PaymentIntentResult, PaymentMethod, PaymentMethodCreateParams, type PaymentMethodResult, type PaymentRequest, type PaymentRequestCompleteStatus, type PaymentRequestEvent, type PaymentRequestItem, type PaymentRequestOptions, type PaymentRequestPaymentMethodEvent, type PaymentRequestShippingAddress, type PaymentRequestShippingAddressEvent, type PaymentRequestShippingOption, type PaymentRequestShippingOptionEvent, type PaymentRequestSourceEvent, type PaymentRequestTokenEvent, type PaymentRequestUpdateDetails, type PaymentRequestUpdateDetailsStatus, type PaymentRequestUpdateOptions, type PaymentRequestWallet, type PaymentWalletOption, type PaymentWalletsOption, type ProcessOrderParams, type ProcessOrderResult, type RadarSessionPayload, type RedirectToCheckoutClientOptions, type RedirectToCheckoutOptions, type RedirectToCheckoutServerOptions, type RetrieveOrderResult, type RetrieveSourceParam, SetupIntent, type SetupIntentConfirmParams, type SetupIntentResult, type ShippingAddress, type ShippingRate, Source, SourceCreateParams, type SourceResult, type Stripe, type StripeAddressElement, type StripeAddressElementChangeEvent, type StripeAddressElementOptions, type StripeAffirmMessageElement, type StripeAffirmMessageElementOptions, type StripeAfterpayClearpayMessageElement, type StripeAfterpayClearpayMessageElementOptions, type StripeAuBankAccountElement, type StripeAuBankAccountElementChangeEvent, type StripeAuBankAccountElementOptions, type StripeCardCvcElement, type StripeCardCvcElementChangeEvent, type StripeCardCvcElementOptions, type StripeCardElement, type StripeCardElementChangeEvent, type StripeCardElementOptions, type StripeCardElementUpdateOptions, type StripeCardExpiryElement, type StripeCardExpiryElementChangeEvent, type StripeCardExpiryElementOptions, type StripeCardNumberElement, type StripeCardNumberElementChangeEvent, type StripeCardNumberElementOptions, type StripeCardNumberElementUpdateOptions, type StripeCartElement, type StripeCartElementLineItemClickEvent, type StripeCartElementOptions, type StripeCartElementPayloadEvent, type StripeCartElementUpdateOptions, type StripeConstructor, type StripeConstructorOptions, type StripeCustomCheckout, type StripeCustomCheckoutActions, type StripeCustomCheckoutAddress, type StripeCustomCheckoutAddressElementOptions, type StripeCustomCheckoutBillingInterval, type StripeCustomCheckoutConfirmationRequirement, type StripeCustomCheckoutContact, type StripeCustomCheckoutDeliveryEstimate, type StripeCustomCheckoutDiscountAmount, type StripeCustomCheckoutElementsActions, type StripeCustomCheckoutElementsOptions, type StripeCustomCheckoutEstimate, type StripeCustomCheckoutLineItem, type StripeCustomCheckoutOptions, type StripeCustomCheckoutPaymentElementOptions, type StripeCustomCheckoutResult, type StripeCustomCheckoutSession, type StripeCustomCheckoutShipping, type StripeCustomCheckoutShippingOption, type StripeCustomCheckoutTaxAmount, type StripeCustomCheckoutTotalSummary, type StripeCustomCheckoutUpdateHandler, type StripeElement, type StripeElementBase, type StripeElementCSSProperties, type StripeElementChangeEvent, type StripeElementClasses, type StripeElementLocale, type StripeElementStyle, type StripeElementStyleVariant, type StripeElementType, type StripeElements, type StripeElementsOptions, type StripeElementsOptionsClientSecret, type StripeElementsOptionsMode, type StripeElementsUpdateOptions, type StripeEmbeddedCheckout, type StripeEmbeddedCheckoutOptions, type StripeEpsBankElement, type StripeEpsBankElementChangeEvent, type StripeEpsBankElementOptions, type StripeError, type StripeErrorType, type StripeExpressCheckoutElement, type StripeExpressCheckoutElementClickEvent, type StripeExpressCheckoutElementConfirmEvent, type StripeExpressCheckoutElementOptions, type StripeExpressCheckoutElementReadyEvent, type StripeExpressCheckoutElementShippingAddressChangeEvent, type StripeExpressCheckoutElementShippingRateChangeEvent, type StripeExpressCheckoutElementUpdateOptions, type StripeFpxBankElement, type StripeFpxBankElementChangeEvent, type StripeFpxBankElementOptions, type StripeIbanElement, type StripeIbanElementChangeEvent, type StripeIbanElementOptions, type StripeIdealBankElement, type StripeIdealBankElementChangeEvent, type StripeIdealBankElementOptions, type StripeIssuingCardCopyButtonElement, type StripeIssuingCardCopyButtonElementOptions, type StripeIssuingCardCvcDisplayElement, type StripeIssuingCardCvcDisplayElementOptions, type StripeIssuingCardExpiryDisplayElement, type StripeIssuingCardExpiryDisplayElementOptions, type StripeIssuingCardNumberDisplayElement, type StripeIssuingCardNumberDisplayElementOptions, type StripeIssuingCardPinDisplayElement, type StripeIssuingCardPinDisplayElementOptions, type StripeLinkAuthenticationElement, type StripeLinkAuthenticationElementChangeEvent, type StripeLinkAuthenticationElementOptions, type StripeP24BankElement, type StripeP24BankElementChangeEvent, type StripeP24BankElementOptions, type StripePaymentElement, type StripePaymentElementChangeEvent, type StripePaymentElementOptions, type StripePaymentMethodMessagingElement, type StripePaymentMethodMessagingElementOptions, type StripePaymentRequestButtonElement, type StripePaymentRequestButtonElementClickEvent, type StripePaymentRequestButtonElementOptions, type StripeShippingAddressElement, type StripeShippingAddressElementChangeEvent, type StripeShippingAddressElementOptions, type TermOption, type TermsOption, type Token, TokenCreateParams, type TokenResult, type VerificationSession, type VerificationSessionResult, type VerifyMicrodepositsForPaymentData, type VerifyMicrodepositsForSetupData, type WrapperLibrary, loadStripe };
|
|
12617
|
+
export { type AccountAddressParam, type Address, type AddressMode, type AddressParam, type Appearance, type ApplePayButtonTheme, type ApplePayButtonType, type AvailablePaymentMethods, type BankAccount, type BankAccountToken, BillingDetails, type ButtonThemeOption, type ButtonTypeOption, type CanMakePaymentResult, Card, type CardNetworkBrand, type CartDescriptor, type CartItemDetails, type CartShowOnAdd, type ChangeResolveDetails, type CheckoutLocale, type ClickResolveDetails, type CollectBankAccountForPaymentOptions, type CollectBankAccountForSetupOptions, type CollectBankAccountParams, type CollectBankAccountPaymentMethodData, type CollectBankAccountTokenOptions, type CollectBankAccountTokenResult, type CollectFinancialConnectionsAccountsOptions, type ConfirmAcssDebitPaymentData, type ConfirmAcssDebitPaymentOptions, type ConfirmAcssDebitSetupData, type ConfirmAcssDebitSetupOptions, type ConfirmAffirmPaymentData, type ConfirmAffirmPaymentOptions, type ConfirmAfterpayClearpayPaymentData, type ConfirmAfterpayClearpayPaymentOptions, type ConfirmAlipayPaymentData, type ConfirmAlipayPaymentOptions, type ConfirmAuBecsDebitPaymentData, type ConfirmAuBecsDebitSetupData, type ConfirmBacsDebitSetupData, type ConfirmBancontactPaymentData, type ConfirmBancontactPaymentOptions, type ConfirmBancontactSetupData, type ConfirmBlikPaymentData, type ConfirmBlikPaymentOptions, type ConfirmBoletoPaymentData, type ConfirmBoletoPaymentOptions, type ConfirmCardPaymentData, type ConfirmCardPaymentOptions, type ConfirmCardSetupData, type ConfirmCardSetupOptions, type ConfirmCashappPaymentData, type ConfirmCashappPaymentOptions, type ConfirmCashappSetupData, type ConfirmCashappSetupOptions, type ConfirmCustomerBalancePaymentData, type ConfirmCustomerBalancePaymentOptions, type ConfirmEpsPaymentData, type ConfirmEpsPaymentOptions, type ConfirmFpxPaymentData, type ConfirmFpxPaymentOptions, type ConfirmGiropayPaymentData, type ConfirmGiropayPaymentOptions, type ConfirmGrabPayPaymentData, type ConfirmGrabPayPaymentOptions, type ConfirmIdealPaymentData, type ConfirmIdealPaymentOptions, type ConfirmIdealSetupData, type ConfirmKlarnaPaymentData, type ConfirmKlarnaPaymentOptions, type ConfirmKonbiniPaymentData, type ConfirmKonbiniPaymentOptions, type ConfirmOxxoPaymentData, type ConfirmOxxoPaymentOptions, type ConfirmP24PaymentData, type ConfirmP24PaymentOptions, type ConfirmPayNowPaymentData, type ConfirmPayNowPaymentOptions, type ConfirmPayPalPaymentData, type ConfirmPayPalSetupData, type ConfirmPaymentData, type ConfirmPixPaymentData, type ConfirmPixPaymentOptions, type ConfirmPromptPayPaymentData, type ConfirmPromptPayPaymentOptions, type ConfirmSepaDebitPaymentData, type ConfirmSepaDebitSetupData, type ConfirmSofortPaymentData, type ConfirmSofortPaymentOptions, type ConfirmSofortSetupData, type ConfirmSofortSetupOptions, type ConfirmUsBankAccountPaymentData, type ConfirmUsBankAccountSetupData, type ConfirmWechatPayPaymentData, type ConfirmWechatPayPaymentOptions, type ContactOption, type CreatePaymentMethodAcssDebitData, type CreatePaymentMethodAffirmData, type CreatePaymentMethodAfterpayClearpayData, type CreatePaymentMethodAlipayData, type CreatePaymentMethodAuBecsDebitData, type CreatePaymentMethodBacsDebitData, type CreatePaymentMethodBancontactData, type CreatePaymentMethodBlikData, type CreatePaymentMethodBoletoData, type CreatePaymentMethodCardData, type CreatePaymentMethodCashappData, type CreatePaymentMethodCustomerBalanceData, type CreatePaymentMethodData, type CreatePaymentMethodEpsData, type CreatePaymentMethodFpxData, type CreatePaymentMethodFromElement, type CreatePaymentMethodFromElements, type CreatePaymentMethodGiropayData, type CreatePaymentMethodGrabPayData, type CreatePaymentMethodIdealData, type CreatePaymentMethodKlarnaData, type CreatePaymentMethodKonbiniData, type CreatePaymentMethodOxxoData, type CreatePaymentMethodP24Data, type CreatePaymentMethodPayNowData, type CreatePaymentMethodPayPalData, type CreatePaymentMethodPixData, type CreatePaymentMethodPromptPayData, type CreatePaymentMethodSepaDebitData, type CreatePaymentMethodSofortData, type CreatePaymentMethodUsBankAccountData, type CreatePaymentMethodWechatPayData, CreateSourceData, type CreateTokenBankAccountData, type CreateTokenCardData, type CreateTokenIbanData, type CreateTokenPiiData, type CssFontSource, type CustomFontSource, type CustomerOptions, type DefaultValuesOption, type DeliveryEstimate, type DeliveryUnit, type EphemeralKeyNonceOptions, type EphemeralKeyNonceResult, type ExpressCheckoutAddress, type ExpressCheckoutPartialAddress, type ExpressCheckoutWalletOption, type ExpressCheckoutWalletsOption, type ExpressPaymentType, type FieldOption, type FieldsOption, FinancialConnectionsSession, type FinancialConnectionsSessionResult, type GooglePayButtonTheme, type GooglePayButtonType, type JapanAddressParam, type Layout, type LayoutObject, type LayoutOption, type LineItem, type Metadata, type MetadataParam, Order, PaymentIntent, PaymentIntentConfirmParams, type PaymentIntentOrSetupIntentResult, type PaymentIntentResult, PaymentMethod, PaymentMethodCreateParams, type PaymentMethodResult, type PaymentRequest, type PaymentRequestCompleteStatus, type PaymentRequestEvent, type PaymentRequestItem, type PaymentRequestOptions, type PaymentRequestPaymentMethodEvent, type PaymentRequestShippingAddress, type PaymentRequestShippingAddressEvent, type PaymentRequestShippingOption, type PaymentRequestShippingOptionEvent, type PaymentRequestSourceEvent, type PaymentRequestTokenEvent, type PaymentRequestUpdateDetails, type PaymentRequestUpdateDetailsStatus, type PaymentRequestUpdateOptions, type PaymentRequestWallet, type PaymentWalletOption, type PaymentWalletsOption, type ProcessOrderParams, type ProcessOrderResult, type RadarSessionPayload, type RedirectToCheckoutClientOptions, type RedirectToCheckoutOptions, type RedirectToCheckoutServerOptions, type RetrieveOrderResult, type RetrieveSourceParam, SetupIntent, type SetupIntentConfirmParams, type SetupIntentResult, type ShippingAddress, type ShippingRate, Source, SourceCreateParams, type SourceResult, type Stripe, type StripeAddressElement, type StripeAddressElementChangeEvent, type StripeAddressElementOptions, type StripeAffirmMessageElement, type StripeAffirmMessageElementOptions, type StripeAfterpayClearpayMessageElement, type StripeAfterpayClearpayMessageElementOptions, type StripeAuBankAccountElement, type StripeAuBankAccountElementChangeEvent, type StripeAuBankAccountElementOptions, type StripeCardCvcElement, type StripeCardCvcElementChangeEvent, type StripeCardCvcElementOptions, type StripeCardElement, type StripeCardElementChangeEvent, type StripeCardElementOptions, type StripeCardElementUpdateOptions, type StripeCardExpiryElement, type StripeCardExpiryElementChangeEvent, type StripeCardExpiryElementOptions, type StripeCardNumberElement, type StripeCardNumberElementChangeEvent, type StripeCardNumberElementOptions, type StripeCardNumberElementUpdateOptions, type StripeCartElement, type StripeCartElementLineItemClickEvent, type StripeCartElementOptions, type StripeCartElementPayloadEvent, type StripeCartElementUpdateOptions, type StripeConstructor, type StripeConstructorOptions, type StripeCustomCheckout, type StripeCustomCheckoutActions, type StripeCustomCheckoutAddress, type StripeCustomCheckoutAddressElementOptions, type StripeCustomCheckoutBillingInterval, type StripeCustomCheckoutConfirmationRequirement, type StripeCustomCheckoutContact, type StripeCustomCheckoutDeliveryEstimate, type StripeCustomCheckoutDiscountAmount, type StripeCustomCheckoutElementsActions, type StripeCustomCheckoutElementsOptions, type StripeCustomCheckoutEstimate, type StripeCustomCheckoutLineItem, type StripeCustomCheckoutOptions, type StripeCustomCheckoutPaymentElementOptions, type StripeCustomCheckoutResult, type StripeCustomCheckoutSession, type StripeCustomCheckoutShipping, type StripeCustomCheckoutShippingOption, type StripeCustomCheckoutTaxAmount, type StripeCustomCheckoutTotalSummary, type StripeCustomCheckoutUpdateHandler, type StripeElement, type StripeElementBase, type StripeElementCSSProperties, type StripeElementChangeEvent, type StripeElementClasses, type StripeElementLocale, type StripeElementStyle, type StripeElementStyleVariant, type StripeElementType, type StripeElements, type StripeElementsOptions, type StripeElementsOptionsClientSecret, type StripeElementsOptionsMode, type StripeElementsUpdateOptions, type StripeEmbeddedCheckout, type StripeEmbeddedCheckoutOptions, type StripeEpsBankElement, type StripeEpsBankElementChangeEvent, type StripeEpsBankElementOptions, type StripeError, type StripeErrorType, type StripeExpressCheckoutElement, type StripeExpressCheckoutElementClickEvent, type StripeExpressCheckoutElementConfirmEvent, type StripeExpressCheckoutElementOptions, type StripeExpressCheckoutElementReadyEvent, type StripeExpressCheckoutElementShippingAddressChangeEvent, type StripeExpressCheckoutElementShippingRateChangeEvent, type StripeExpressCheckoutElementUpdateOptions, type StripeFpxBankElement, type StripeFpxBankElementChangeEvent, type StripeFpxBankElementOptions, type StripeIbanElement, type StripeIbanElementChangeEvent, type StripeIbanElementOptions, type StripeIdealBankElement, type StripeIdealBankElementChangeEvent, type StripeIdealBankElementOptions, type StripeIssuingCardCopyButtonElement, type StripeIssuingCardCopyButtonElementOptions, type StripeIssuingCardCvcDisplayElement, type StripeIssuingCardCvcDisplayElementOptions, type StripeIssuingCardExpiryDisplayElement, type StripeIssuingCardExpiryDisplayElementOptions, type StripeIssuingCardNumberDisplayElement, type StripeIssuingCardNumberDisplayElementOptions, type StripeIssuingCardPinDisplayElement, type StripeIssuingCardPinDisplayElementOptions, type StripeLinkAuthenticationElement, type StripeLinkAuthenticationElementChangeEvent, type StripeLinkAuthenticationElementOptions, type StripeP24BankElement, type StripeP24BankElementChangeEvent, type StripeP24BankElementOptions, type StripePaymentElement, type StripePaymentElementChangeEvent, type StripePaymentElementOptions, type StripePaymentMethodMessagingElement, type StripePaymentMethodMessagingElementOptions, type StripePaymentRequestButtonElement, type StripePaymentRequestButtonElementClickEvent, type StripePaymentRequestButtonElementOptions, type StripeShippingAddressElement, type StripeShippingAddressElementChangeEvent, type StripeShippingAddressElementOptions, type TermOption, type TermsOption, type Token, TokenCreateParams, type TokenResult, type VerificationSession, type VerificationSessionResult, type VerifyMicrodepositsForPaymentData, type VerifyMicrodepositsForSetupData, type WrapperLibrary, loadStripe };
|
package/dist/stripe.js
CHANGED
package/dist/stripe.mjs
CHANGED