@stripe/stripe-react-native
Version:
Stripe SDK for React Native
305 lines (268 loc) • 7.32 kB
text/typescript
import type { FormDetails } from './components/AuBECSDebitFormComponent';
import type {
CardBrand,
BankAcccountHolderType,
BankAcccountType,
} from './Token';
import type { FutureUsage } from './PaymentIntent';
import type { BillingDetails, UserInterfaceStyle } from './Common';
import type { FinancialConnectionsEvent } from './FinancialConnections';
export interface Result {
id: string;
liveMode: boolean;
customerId: string;
billingDetails: BillingDetails;
paymentMethodType: Type;
AuBecsDebit: AuBecsDebitResult;
BacsDebit: BacsDebitResult;
Card: CardResult;
Fpx: FpxResult;
Ideal: IdealResult;
SepaDebit: SepaDebitResult;
Upi: UpiResult;
USBankAccount: USBankAccountResult;
}
export type CreateParams =
| CardParams
| IdealParams
| OxxoParams
| P24Params
| AlipayParams
| SepaParams
| EpsParams
| AuBecsDebitParams
| GrabPayParams
| FPXParams
| AfterpayClearpayParams
| KlarnaParams
// | WeChatPayParams
| BancontactParams
| USBankAccountParams
| PayPalParams
| AffirmParams
| CashAppParams;
export type ConfirmParams = CreateParams;
export type CreateOptions = {
setupFutureUsage?: FutureUsage;
};
export type ConfirmOptions = CreateOptions;
export type ShippingDetails = BillingDetails;
export type CardParams =
| {
paymentMethodType: 'Card';
paymentMethodData?: {
token?: string;
billingDetails?: BillingDetails;
};
}
| {
paymentMethodType: 'Card';
paymentMethodData: {
paymentMethodId: string;
cvc?: string;
billingDetails?: BillingDetails;
};
};
export interface IdealParams {
paymentMethodType: 'Ideal';
paymentMethodData?: {
bankName?: string;
billingDetails?: BillingDetails;
};
}
export interface FPXParams {
paymentMethodType: 'Fpx';
paymentMethodData?: { testOfflineBank?: boolean };
}
export interface AlipayParams {
paymentMethodType: 'Alipay';
}
export interface OxxoParams {
paymentMethodType: 'Oxxo';
paymentMethodData: {
billingDetails: BillingDetails;
};
}
export interface GrabPayParams {
paymentMethodType: 'GrabPay';
paymentMethodData?: {
billingDetails?: BillingDetails;
};
}
export interface BancontactParams {
paymentMethodType: 'Bancontact';
paymentMethodData: {
billingDetails: BillingDetails;
};
}
export interface SepaParams {
paymentMethodType: 'SepaDebit';
paymentMethodData: {
iban: string;
billingDetails: BillingDetails;
};
}
export interface AfterpayClearpayParams {
paymentMethodType: 'AfterpayClearpay';
paymentMethodData: {
shippingDetails: ShippingDetails;
billingDetails: BillingDetails;
};
}
export type KlarnaParams = {
paymentMethodType: 'Klarna';
paymentMethodData: {
// Email and country are no longer required by Klarna
billingDetails?: BillingDetails;
shippingDetails?: ShippingDetails;
};
};
export interface EpsParams {
paymentMethodType: 'Eps';
paymentMethodData: {
billingDetails: BillingDetails;
};
}
export interface P24Params {
paymentMethodType: 'P24';
paymentMethodData: {
billingDetails: BillingDetails;
};
}
export interface WeChatPayParams {
paymentMethodType: 'WeChatPay';
paymentMethodData: {
appId: string;
billingDetails?: BillingDetails;
};
}
export interface AuBecsDebitParams {
paymentMethodType: 'AuBecsDebit';
paymentMethodData: { formDetails: FormDetails };
}
export type AffirmParams = {
paymentMethodType: 'Affirm';
paymentMethodData?: {
/** Affirm requires that shipping is present for the payment to succeed because it significantly helps with loan approval rates. Shipping details can either be provided here or via the Payment Intent- https://stripe.com/docs/api/payment_intents/create#create_payment_intent-shipping. */
shippingDetails?: ShippingDetails;
billingDetails?: BillingDetails;
};
};
/**
* If paymentMethodData is null, it is assumed that the bank account details have already been attached
* via `collectBankAccountForPayment` or `collectBankAccountForSetup`.
*/
export type USBankAccountParams = {
paymentMethodType: 'USBankAccount';
paymentMethodData?: {
billingDetails: Pick<Required<BillingDetails>, 'name'> & BillingDetails;
accountNumber: string;
routingNumber: string;
/** Defaults to Individual */
accountHolderType?: BankAcccountHolderType;
/** Defaults to Checking */
accountType?: BankAcccountType;
};
};
export type PayPalParams = {
paymentMethodType: 'PayPal';
paymentMethodData?: {
billingDetails?: BillingDetails;
};
};
export type CashAppParams = {
paymentMethodType: 'CashApp';
paymentMethodData?: {
billingDetails?: BillingDetails;
};
};
export interface AuBecsDebitResult {
fingerprint?: string;
last4?: string;
bsbNumber?: string;
}
export interface BacsDebitResult {
sortCode?: string;
last4?: string;
fingerprint?: string;
}
export interface CardResult {
brand?: CardBrand;
country?: string;
expYear?: number;
expMonth?: number;
fingerprint?: string;
funding?: string;
last4?: string;
preferredNetwork?: string;
availableNetworks?: Array<string>;
threeDSecureUsage?: ThreeDSecureUsage;
}
export interface ThreeDSecureUsage {
isSupported?: boolean;
}
export interface FpxResult {
bank?: string;
}
export interface IdealResult {
bankIdentifierCode?: string;
bank?: string;
}
export interface SepaDebitResult {
bankCode?: string;
country?: string;
fingerprint?: string;
last4?: string;
}
export interface UpiResult {
vpa?: string;
}
export type USBankAccountResult = {
routingNumber?: string;
accountHolderType?: BankAcccountHolderType;
accountType?: BankAcccountType;
last4?: string;
bankName?: string;
linkedAccount?: string;
fingerprint?: string;
preferredNetwork?: string;
supportedNetworks?: string[];
};
export type Type =
| 'AfterpayClearpay'
| 'Card'
| 'Alipay'
| 'GrabPay'
| 'Ideal'
| 'Fpx'
| 'CardPresent'
| 'SepaDebit'
| 'AuBecsDebit'
| 'BacsDebit'
| 'P24'
| 'Eps'
| 'Bancontact'
| 'Oxxo'
| 'Upi'
| 'USBankAccount'
| 'PayPal'
| 'Unknown';
export type CollectBankAccountParams = {
paymentMethodType: 'USBankAccount';
paymentMethodData: {
billingDetails: {
name: string;
email?: string;
};
};
/** iOS only. Style options for colors in Financial Connections. By default, the bank account collector will automatically switch between light and dark mode compatible colors based on device settings. */
style?: UserInterfaceStyle;
/** An optional event listener to receive @type {FinancialConnectionEvent} for specific events during the process of a user connecting their financial accounts. */
onEvent?: (event: FinancialConnectionsEvent) => void;
};
export type CollectBankAccountTokenParams = {
/** iOS only. Style options for colors in Financial Connections. By default, the bank account collector will automatically switch between light and dark mode compatible colors based on device settings. */
style?: UserInterfaceStyle;
/** An optional event listener to receive @type {FinancialConnectionEvent} for specific events during the process of a user connecting their financial accounts. */
onEvent?: (event: FinancialConnectionsEvent) => void;
};