-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
468 lines (384 loc) · 12.5 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
import {
BankAccountHolderType,
BankAccountStatus,
CaptureMethod,
CardBrand,
CardFunding,
CardFundingType,
CardMultilineWidgetBase,
CreditCardViewBase,
IAddress,
IBankAccount,
ICard,
ICardParams,
IPaymentMethodAddress,
IPaymentMethodCard,
IPaymentMethodCardChecks,
IPaymentMethodCardNetworks,
IPaymentMethodCardWallet,
IPaymentMethodCardWalletAmexExpressCheckout,
IPaymentMethodCardWalletApplePay,
IPaymentMethodCardWalletMasterpass,
IPaymentMethodCardWalletVisaCheckout,
IPaymentMethodThreeDSecureUsage,
ISource,
ISourceCardDetails,
ISourceKlarnaDetails,
ISourceOwner,
ISourceReceiver,
ISourceRedirect,
ISourceSEPADebitDetails,
ISourceVerification,
ISourceWeChatPayDetails,
IToken,
PaymentMethodCardCheckResult,
PaymentMethodCardWalletType,
IPaymentMethod,
PaymentMethodType,
SourceCard3DSecureStatus,
SourceFlow,
SourceRedirectStatus,
SourceStatus,
SourceType,
SourceUsage,
SourceVerificationStatus,
IStripePaymentIntent,
StripePaymentIntentStatus,
IPaymentMethodCardWalletGooglePay,
IPaymentMethodCardWalletSamsungPay,
} from './common';
export { StripePaymentIntentStatus } from './common';
export { init } from './utils';
import { EventData } from '@nativescript/core';
export function handleOpenURL(url: any): boolean;
export function handleContinueUserActivity(userActivity: any): boolean;
export declare class StripeThreeDSUICustomization {
public static init();
}
export declare class Address implements IAddress {
readonly ios: any;
readonly android: any;
email: string;
name: string;
phone: string;
country: string;
postalCode: string;
state: string;
line1: string;
line2: string;
city: string;
constructor();
}
export declare class Card implements ICard {
readonly android: any;
readonly ios: any;
readonly name: string;
readonly currency: string;
readonly last4: string;
readonly brand: CardBrand;
readonly fingerprint: string;
readonly funding: CardFunding;
readonly country: string;
readonly dynamicLast4: string;
readonly native;
get address(): Address;
/**
* Returns an image for a card given its brand.
* The returned value can be used as [src] in an Image tag.
*/
static cardImage(brand: CardBrand): any;
}
export declare class BankAccount implements IBankAccount {
readonly accountHolderName: string;
readonly accountHolderType: BankAccountHolderType;
readonly bankName: string;
readonly country: string;
readonly currency: string;
readonly fingerprint: string;
readonly last4: string;
readonly metadata: Readonly<{}>;
readonly routingNumber: string;
readonly status: BankAccountStatus;
}
export declare class Token implements IToken {
bankAccount: BankAccount;
card: Card;
created: Date;
id: string;
ios: any;
android: any;
liveMode: boolean;
}
export declare class SourceCardDetails implements ISourceCardDetails {
readonly android: any;
readonly brand: CardBrand;
readonly country: string;
readonly expMonth: number;
readonly expYear: number;
readonly funding: CardFundingType;
readonly ios: any;
readonly isApplePayCard: boolean;
readonly last4: string;
readonly threeDSecureUsage: SourceCard3DSecureStatus;
readonly dynamicLast4: string;
}
export declare class SourceKlarnaDetails implements ISourceKlarnaDetails {
readonly clientToken: string;
readonly purchaseCountry: string;
}
export declare class SourceOwner implements ISourceOwner {
readonly address: Address;
readonly email: string;
readonly name: string;
readonly phone: string;
readonly verifiedAddress: Address;
readonly verifiedEmail: string;
readonly verifiedName: string;
readonly verifiedPhone: string;
}
export declare class SourceReceiver implements ISourceReceiver {
readonly address: string;
readonly amountCharged: number;
readonly amountReceived: number;
readonly amountReturned: number;
readonly apiResponse: Readonly<{}>;
}
export declare class SourceRedirect implements ISourceRedirect {
readonly android: any;
readonly apiResponse: Readonly<{}>;
readonly ios: any;
readonly returnURL: string;
readonly status: SourceRedirectStatus;
readonly url: string;
}
export declare class SourceSEPADebitDetails implements ISourceSEPADebitDetails {
readonly android: any;
readonly apiResponse: Readonly<{}>;
readonly bankCode: string;
readonly country: string;
readonly fingerprint: string;
readonly ios: any;
readonly last4: string;
readonly mandateReference: string;
readonly mandateURL: string;
}
export declare class SourceVerification implements ISourceVerification {
readonly apiResponse: Readonly<{}>;
readonly attemptsRemaining: number;
readonly status: SourceVerificationStatus;
}
export declare class SourceWeChatPayDetails implements ISourceWeChatPayDetails {
readonly apiResponse: Readonly<{}>;
readonly weChatAppURL: string;
}
export declare class Source implements ISource {
readonly amount: number;
readonly android: any;
readonly apiResponse: Readonly<{}>;
readonly cardDetails: SourceCardDetails;
readonly clientSecret: string;
readonly created: Date;
readonly currency: string;
readonly details: Readonly<{}>;
readonly flow: SourceFlow;
readonly id: string;
readonly ios: any;
readonly klarnaDetails: SourceKlarnaDetails;
readonly liveMode: boolean;
readonly metaData: Readonly<{}>;
readonly owner: SourceOwner;
readonly receiver: SourceReceiver;
readonly redirect: SourceRedirect;
readonly sepaDebitDetails: SourceSEPADebitDetails;
readonly status: SourceStatus;
readonly type: SourceType;
readonly usage: SourceUsage;
readonly verification: SourceVerification;
readonly weChatPayDetails: SourceWeChatPayDetails;
}
export declare class Stripe {
constructor(apiKey: string, stripeAccountId?: string);
setStripeAccount(accountId: string): void;
private get stripe();
createCardToken(card: CardParams, cb: (error: Error, token: Token) => void): void;
createSource(card: CardParams, cb: (error: Error, source: Source) => void): void;
createPaymentMethod(card: CardParams, cb: (error: Error, pm: PaymentMethod) => void): void;
retrievePaymentIntent(clientSecret: string, cb: (error: Error, pm: StripePaymentIntent) => void): void;
confirmSetupIntent(paymentMethodId: string, clientSecret: string, cb: (error: Error, pm: StripeSetupIntent) => void): void;
authenticateSetupIntent(clientSecret: string, returnUrl: string, cb: (error: Error, pm: StripeSetupIntent) => void): void;
confirmPaymentIntent(piParams: StripePaymentIntentParams, cb: (error: Error, pm: StripePaymentIntent) => void): void;
authenticatePaymentIntent(clientSecret: string, returnUrl: string, cb: (error: Error, pm: StripePaymentIntent) => void): void;
}
export declare class CardParams implements ICardParams {
readonly native: any;
constructor();
constructor(params: STPCardParams);
constructor(number: string, expMonth: number, expYear: number, cvc: string);
address: Address;
name: string;
currency: string;
number: string;
expMonth: number;
expYear: number;
cvc: string;
}
export declare class PaymentMethodCardChecks implements IPaymentMethodCardChecks {
readonly addressLine1Check: PaymentMethodCardCheckResult;
readonly addressPostalCodeCheck: PaymentMethodCardCheckResult;
readonly cvcCheck: PaymentMethodCardCheckResult;
}
export declare class PaymentMethodCardNetworks implements IPaymentMethodCardNetworks {
readonly available: string[];
readonly preferred: string;
}
export declare class PaymentMethodThreeDSecureUsage implements IPaymentMethodThreeDSecureUsage {
readonly supported: boolean;
}
export declare class PaymentMethodAddress implements IPaymentMethodAddress {
readonly city: string;
readonly country: string;
readonly line1: string;
readonly line2: string;
readonly postalCode: string;
readonly state: string;
readonly android: any;
}
export declare class PaymentMethodCardWalletMasterpass implements IPaymentMethodCardWalletMasterpass {
readonly billingAddress: PaymentMethodAddress;
readonly email: string;
readonly name: string;
readonly shippingAddress: PaymentMethodAddress;
readonly android: any;
}
export declare class PaymentMethodCardWalletAmexExpressCheckout implements IPaymentMethodCardWalletAmexExpressCheckout {
readonly dynamicLast4: string;
readonly android: any;
}
export declare class PaymentMethodCardWalletVisaCheckout implements IPaymentMethodCardWalletVisaCheckout {
readonly billingAddress: PaymentMethodAddress;
readonly email: string;
readonly name: string;
readonly shippingAddress: PaymentMethodAddress;
readonly dynamicLast4: string;
readonly android: any;
}
export declare class PaymentMethodCardWalletApplePay implements IPaymentMethodCardWalletApplePay {
readonly dynamicLast4: string;
readonly android: any;
}
export declare class PaymentMethodCardWalletGooglePay implements IPaymentMethodCardWalletGooglePay {
readonly dynamicLast4: string;
readonly android: any;
}
export declare class PaymentMethodCardWalletSamsungPay implements IPaymentMethodCardWalletSamsungPay {
readonly dynamicLast4: string;
readonly android: any;
}
export declare class PaymentMethodCardWallet implements IPaymentMethodCardWallet {
readonly masterpass: PaymentMethodCardWalletMasterpass;
readonly type: PaymentMethodCardWalletType;
readonly visaCheckout: PaymentMethodCardWalletVisaCheckout;
readonly amex: PaymentMethodCardWalletAmexExpressCheckout;
readonly applePay: PaymentMethodCardWalletApplePay;
readonly googlePay: PaymentMethodCardWalletGooglePay;
readonly samsungPay: PaymentMethodCardWalletSamsungPay;
}
export declare class PaymentMethodCard implements IPaymentMethodCard {
readonly brand: CardBrand;
readonly checks: PaymentMethodCardChecks;
readonly country: string;
readonly expMonth: number;
readonly expYear: number;
readonly fingerprint: string;
readonly funding: string;
readonly last4: string;
readonly networks: PaymentMethodCardNetworks;
readonly threeDSecureUsage: PaymentMethodThreeDSecureUsage;
readonly wallet: PaymentMethodCardWallet;
public static fromNative(paymentCard: any): PaymentMethodCard;
}
export interface NumberChangedEvent extends EventData {
number: string;
}
export interface ExpMonthChangedEvent extends EventData {
expMonth: number;
}
export interface ExpYearChangedEvent extends EventData {
expYear: number;
}
export interface CVCChangedEvent extends EventData {
cvc: string;
}
export interface PostalCodeChangedEvent extends EventData {
postalCode: string;
}
export declare class CreditCardView extends CreditCardViewBase {
readonly android: any;
readonly cardParams: CardParams;
showPostalCode: boolean;
isUSZipRequired: boolean;
on(event: string, callback: (args: EventData) => void, thisArg?: any);
on(event: 'numberChanged', callback: (args: NumberChangedEvent) => void, thisArg?: any);
on(event: 'expMonthChanged', callback: (args: ExpMonthChangedEvent) => void, thisArg?: any);
on(event: 'expYearChanged', callback: (args: ExpYearChangedEvent) => void, thisArg?: any);
on(event: 'cvcChanged', callback: (args: CVCChangedEvent) => void, thisArg?: any);
}
export declare class PaymentMethod implements IPaymentMethod {
readonly native: any;
readonly id: string;
readonly created: Date;
readonly type: PaymentMethodType;
readonly billingDetails: object;
readonly card: PaymentMethodCard;
readonly customerId: string;
readonly metadata: object;
}
declare class StripeIntent {
native: any;
get id(): string;
get clientSecret(): string;
get description(): string;
get status(): StripePaymentIntentStatus;
get requiresAction(): boolean;
get isSuccess(): boolean;
get requiresConfirmation(): boolean;
get requiresCapture(): boolean;
}
export declare class StripePaymentIntent extends StripeIntent implements IStripePaymentIntent {
native: any;
static fromNative(native: any): StripePaymentIntent;
static fromApi(json: any): StripePaymentIntent;
get amount(): number;
get created(): Date;
get currency(): string;
get captureMethod(): CaptureMethod;
}
export declare class StripePaymentIntentParams {
clientSecret: any;
paymentMethodId: string;
sourceId: string;
returnURL: string;
get native(): any;
}
export declare class StripeSetupIntentParams {
native: any;
constructor(paymentMethodId: string, clientSecret: string);
}
export declare class StripeSetupIntent extends StripeIntent {
native: any;
static fromNative(native: any): StripeSetupIntent;
get paymentMethodId(): string;
}
export enum StripeRedirectState {
NotStarted = 0,
InProgress = 1,
Cancelled = 2,
Completed = 3,
}
export declare class StripeRedirectSession {
native: any;
readonly state: StripeRedirectState;
constructor(paymentIntent: StripePaymentIntent, cb: (error: Error, clientSecret: string) => void);
startRedirectFlow(view?: View): void;
cancel(): void;
}