@spritz-finance/api-client 0.2.1 → 0.2.3
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/README.md +38 -1
- package/dist/spritz-api-client.d.ts +83 -75
- package/dist/spritz-api-client.js +50 -47
- package/dist/spritz-api-client.mjs +50 -47
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -40,6 +40,7 @@ A Typescript library for interacting with the Spritz Finance API
|
|
|
40
40
|
- [Bank Accounts](#bank-accounts)
|
|
41
41
|
- [List user bank accounts](#list-user-bank-accounts)
|
|
42
42
|
- [Add US bank account](#add-us-bank-account)
|
|
43
|
+
- [Add Canadian bank account](#add-canadian-bank-account)
|
|
43
44
|
- [Bills](#bills)
|
|
44
45
|
- [List user bills](#list-user-bills)
|
|
45
46
|
- [Add US bill account](#add-us-bill-account)
|
|
@@ -286,6 +287,7 @@ const bankAccounts = [{
|
|
|
286
287
|
},
|
|
287
288
|
ownedByUser: true,
|
|
288
289
|
createdAt: "2023-05-03T11:25:02.401Z",
|
|
290
|
+
deliveryMethods: ['STANDARD', 'INSTANT']
|
|
289
291
|
}]
|
|
290
292
|
```
|
|
291
293
|
|
|
@@ -314,7 +316,40 @@ import { BankAccountType, BankAccountSubType } from '@spritz-finance/api-client'
|
|
|
314
316
|
const bankAccounts = await client.bankAccount.create(BankAccountType.USBankAccount, {
|
|
315
317
|
accountNumber: '123456789',
|
|
316
318
|
routingNumber: '987654321',
|
|
317
|
-
|
|
319
|
+
holder: 'Bilbo Baggins',
|
|
320
|
+
name: 'Precious Savings',
|
|
321
|
+
ownedByUser: true,
|
|
322
|
+
subType: BankAccountSubType.Savings,
|
|
323
|
+
})
|
|
324
|
+
```
|
|
325
|
+
|
|
326
|
+
#### Add Canadian bank account
|
|
327
|
+
|
|
328
|
+
Currently, Spritz supports the addition of Canadian bank accounts:
|
|
329
|
+
|
|
330
|
+
The input structure for adding a Canadian bank account is defined as:
|
|
331
|
+
|
|
332
|
+
```typescript
|
|
333
|
+
// Input arguments for creating a Canadian bank account
|
|
334
|
+
export interface CABankAccountInput {
|
|
335
|
+
accountNumber: string
|
|
336
|
+
email?: string
|
|
337
|
+
holder: string
|
|
338
|
+
name: string
|
|
339
|
+
ownedByUser?: boolean | null
|
|
340
|
+
transitNumber: string
|
|
341
|
+
institutionNumber: string
|
|
342
|
+
subType: BankAccountSubType
|
|
343
|
+
}
|
|
344
|
+
```
|
|
345
|
+
|
|
346
|
+
```typescript
|
|
347
|
+
import { BankAccountType, BankAccountSubType } from '@spritz-finance/api-client'
|
|
348
|
+
|
|
349
|
+
const bankAccounts = await client.bankAccount.create(BankAccountType.CABankAccount, {
|
|
350
|
+
accountNumber: '123456789',
|
|
351
|
+
transitNumber: '12345',
|
|
352
|
+
institutionNumber: '123',
|
|
318
353
|
holder: 'Bilbo Baggins',
|
|
319
354
|
name: 'Precious Savings',
|
|
320
355
|
ownedByUser: true,
|
|
@@ -371,6 +406,7 @@ const bills = [
|
|
|
371
406
|
logo: 'https://tinyurl.com/shire-bank-logo',
|
|
372
407
|
},
|
|
373
408
|
createdAt: '2023-05-03T11:25:02.401Z',
|
|
409
|
+
deliveryMethods: ['STANDARD']
|
|
374
410
|
},
|
|
375
411
|
]
|
|
376
412
|
```
|
|
@@ -523,6 +559,7 @@ const paymentRequest = await client.paymentRequest.create({
|
|
|
523
559
|
amount: 100,
|
|
524
560
|
accountId: account.id,
|
|
525
561
|
network: PaymentNetwork.Ethereum,
|
|
562
|
+
deliveryMethod: 'INSTANT'
|
|
526
563
|
});
|
|
527
564
|
|
|
528
565
|
// Example response
|
|
@@ -21,6 +21,7 @@ declare enum BankAccountSubType {
|
|
|
21
21
|
Savings = "Savings"
|
|
22
22
|
}
|
|
23
23
|
declare enum BankAccountType {
|
|
24
|
+
CABankAccount = "CABankAccount",
|
|
24
25
|
USBankAccount = "USBankAccount"
|
|
25
26
|
}
|
|
26
27
|
declare enum BillType {
|
|
@@ -62,6 +63,10 @@ declare enum PayableAccountType {
|
|
|
62
63
|
Bill = "Bill",
|
|
63
64
|
VirtualCard = "VirtualCard"
|
|
64
65
|
}
|
|
66
|
+
declare enum PaymentDeliveryMethod {
|
|
67
|
+
INSTANT = "INSTANT",
|
|
68
|
+
STANDARD = "STANDARD"
|
|
69
|
+
}
|
|
65
70
|
declare enum PaymentStatus {
|
|
66
71
|
CANCELLED = "CANCELLED",
|
|
67
72
|
COMPLETED = "COMPLETED",
|
|
@@ -77,9 +82,20 @@ declare enum PaymentStatus {
|
|
|
77
82
|
declare enum VirtualCardType {
|
|
78
83
|
USVirtualDebitCard = "USVirtualDebitCard"
|
|
79
84
|
}
|
|
85
|
+
interface BankAccountInput {
|
|
86
|
+
accountNumber: string;
|
|
87
|
+
details?: any | null;
|
|
88
|
+
email?: string | null;
|
|
89
|
+
holder?: string | null;
|
|
90
|
+
name: string;
|
|
91
|
+
ownedByUser?: boolean | null;
|
|
92
|
+
subType: BankAccountSubType;
|
|
93
|
+
type: BankAccountType;
|
|
94
|
+
}
|
|
80
95
|
interface CreateDirectPaymentInput {
|
|
81
96
|
accountId: string;
|
|
82
97
|
amount: number;
|
|
98
|
+
deliveryMethod?: PaymentDeliveryMethod | null;
|
|
83
99
|
network?: string | null;
|
|
84
100
|
provider?: AccountProvider | null;
|
|
85
101
|
rewardsAmount?: number | null;
|
|
@@ -87,14 +103,46 @@ interface CreateDirectPaymentInput {
|
|
|
87
103
|
testPayment?: boolean | null;
|
|
88
104
|
tokenAddress?: string | null;
|
|
89
105
|
}
|
|
90
|
-
|
|
106
|
+
|
|
107
|
+
interface CreateBankAccount_createBankAccount_bankAccountDetails_CanadianBankAccountDetails {
|
|
108
|
+
__typename: 'CanadianBankAccountDetails';
|
|
109
|
+
}
|
|
110
|
+
interface CreateBankAccount_createBankAccount_bankAccountDetails_USBankAccountDetails {
|
|
111
|
+
__typename: 'USBankAccountDetails';
|
|
112
|
+
routingNumber: string;
|
|
113
|
+
}
|
|
114
|
+
type CreateBankAccount_createBankAccount_bankAccountDetails = CreateBankAccount_createBankAccount_bankAccountDetails_CanadianBankAccountDetails | CreateBankAccount_createBankAccount_bankAccountDetails_USBankAccountDetails;
|
|
115
|
+
interface CreateBankAccount_createBankAccount_dataSync {
|
|
116
|
+
__typename: 'AccountDataSync';
|
|
117
|
+
lastSync: any | null;
|
|
118
|
+
syncStatus: AccountSyncStatus | null;
|
|
119
|
+
}
|
|
120
|
+
interface CreateBankAccount_createBankAccount_institution {
|
|
121
|
+
__typename: 'BankAccountInstitution' | 'BillInstitution';
|
|
122
|
+
id: string;
|
|
123
|
+
name: string;
|
|
124
|
+
logo: string | null;
|
|
125
|
+
}
|
|
126
|
+
interface CreateBankAccount_createBankAccount {
|
|
127
|
+
__typename: 'BankAccount';
|
|
128
|
+
id: string;
|
|
129
|
+
name: string | null;
|
|
130
|
+
userId: string;
|
|
131
|
+
country: string;
|
|
132
|
+
currency: string;
|
|
133
|
+
payable: boolean;
|
|
134
|
+
originator: PayableAccountOriginator;
|
|
135
|
+
type: PayableAccountType;
|
|
136
|
+
createdAt: any;
|
|
91
137
|
accountNumber: string;
|
|
92
|
-
|
|
138
|
+
bankAccountType: BankAccountType;
|
|
139
|
+
bankAccountSubType: BankAccountSubType;
|
|
93
140
|
holder: string;
|
|
94
|
-
|
|
95
|
-
ownedByUser
|
|
96
|
-
|
|
97
|
-
|
|
141
|
+
email: string | null;
|
|
142
|
+
ownedByUser: boolean;
|
|
143
|
+
bankAccountDetails: CreateBankAccount_createBankAccount_bankAccountDetails;
|
|
144
|
+
dataSync: CreateBankAccount_createBankAccount_dataSync | null;
|
|
145
|
+
institution: CreateBankAccount_createBankAccount_institution | null;
|
|
98
146
|
}
|
|
99
147
|
|
|
100
148
|
interface AccountPayments_paymentsForAccount {
|
|
@@ -102,10 +150,11 @@ interface AccountPayments_paymentsForAccount {
|
|
|
102
150
|
id: string;
|
|
103
151
|
userId: any;
|
|
104
152
|
status: PaymentStatus;
|
|
105
|
-
accountId: any
|
|
153
|
+
accountId: any;
|
|
106
154
|
amount: number | null;
|
|
107
155
|
feeAmount: number | null;
|
|
108
156
|
createdAt: any;
|
|
157
|
+
deliveryMethod: PaymentDeliveryMethod | null;
|
|
109
158
|
}
|
|
110
159
|
interface AccountPayments {
|
|
111
160
|
paymentsForAccount: AccountPayments_paymentsForAccount[];
|
|
@@ -143,9 +192,10 @@ interface BankAccountFragment {
|
|
|
143
192
|
bankAccountType: BankAccountType;
|
|
144
193
|
bankAccountSubType: BankAccountSubType;
|
|
145
194
|
holder: string;
|
|
146
|
-
email: string;
|
|
195
|
+
email: string | null;
|
|
147
196
|
ownedByUser: boolean;
|
|
148
197
|
bankAccountDetails: BankAccountFragment_bankAccountDetails;
|
|
198
|
+
deliveryMethods: PaymentDeliveryMethod[];
|
|
149
199
|
institution: BankAccountFragment_institution | null;
|
|
150
200
|
}
|
|
151
201
|
|
|
@@ -258,7 +308,7 @@ interface PayableAccountFragment_BankAccount {
|
|
|
258
308
|
bankAccountType: BankAccountType;
|
|
259
309
|
bankAccountSubType: BankAccountSubType;
|
|
260
310
|
holder: string;
|
|
261
|
-
email: string;
|
|
311
|
+
email: string | null;
|
|
262
312
|
ownedByUser: boolean;
|
|
263
313
|
bankAccountDetails: PayableAccountFragment_BankAccount_bankAccountDetails;
|
|
264
314
|
dataSync: PayableAccountFragment_BankAccount_dataSync | null;
|
|
@@ -357,7 +407,6 @@ interface PayableAccountInstitutionFragment {
|
|
|
357
407
|
id: string;
|
|
358
408
|
country: string;
|
|
359
409
|
currency: string;
|
|
360
|
-
createdAt: any;
|
|
361
410
|
name: string;
|
|
362
411
|
logo: string | null;
|
|
363
412
|
}
|
|
@@ -367,10 +416,11 @@ interface PaymentFragment {
|
|
|
367
416
|
id: string;
|
|
368
417
|
userId: any;
|
|
369
418
|
status: PaymentStatus;
|
|
370
|
-
accountId: any
|
|
419
|
+
accountId: any;
|
|
371
420
|
amount: number | null;
|
|
372
421
|
feeAmount: number | null;
|
|
373
422
|
createdAt: any;
|
|
423
|
+
deliveryMethod: PaymentDeliveryMethod | null;
|
|
374
424
|
}
|
|
375
425
|
|
|
376
426
|
interface PaymentRequestFragment {
|
|
@@ -384,6 +434,7 @@ interface PaymentRequestFragment {
|
|
|
384
434
|
amountDue: number;
|
|
385
435
|
network: string;
|
|
386
436
|
createdAt: any;
|
|
437
|
+
deliveryMethod: string | null;
|
|
387
438
|
}
|
|
388
439
|
|
|
389
440
|
interface PaymentRequestPayment_paymentForPaymentRequest {
|
|
@@ -391,10 +442,11 @@ interface PaymentRequestPayment_paymentForPaymentRequest {
|
|
|
391
442
|
id: string;
|
|
392
443
|
userId: any;
|
|
393
444
|
status: PaymentStatus;
|
|
394
|
-
accountId: any
|
|
445
|
+
accountId: any;
|
|
395
446
|
amount: number | null;
|
|
396
447
|
feeAmount: number | null;
|
|
397
448
|
createdAt: any;
|
|
449
|
+
deliveryMethod: PaymentDeliveryMethod | null;
|
|
398
450
|
}
|
|
399
451
|
interface PaymentRequestPayment {
|
|
400
452
|
paymentForPaymentRequest: PaymentRequestPayment_paymentForPaymentRequest | null;
|
|
@@ -408,7 +460,6 @@ interface PopularBillInstitutions_popularUSBillInstitutions {
|
|
|
408
460
|
id: string;
|
|
409
461
|
country: string;
|
|
410
462
|
currency: string;
|
|
411
|
-
createdAt: any;
|
|
412
463
|
name: string;
|
|
413
464
|
logo: string | null;
|
|
414
465
|
}
|
|
@@ -424,7 +475,6 @@ interface SearchUSBillInstitutions_searchUSBillInstitutions {
|
|
|
424
475
|
id: string;
|
|
425
476
|
country: string;
|
|
426
477
|
currency: string;
|
|
427
|
-
createdAt: any;
|
|
428
478
|
name: string;
|
|
429
479
|
logo: string | null;
|
|
430
480
|
}
|
|
@@ -495,9 +545,10 @@ interface UserBankAccounts_bankAccounts {
|
|
|
495
545
|
bankAccountType: BankAccountType;
|
|
496
546
|
bankAccountSubType: BankAccountSubType;
|
|
497
547
|
holder: string;
|
|
498
|
-
email: string;
|
|
548
|
+
email: string | null;
|
|
499
549
|
ownedByUser: boolean;
|
|
500
550
|
bankAccountDetails: UserBankAccounts_bankAccounts_bankAccountDetails;
|
|
551
|
+
deliveryMethods: PaymentDeliveryMethod[];
|
|
501
552
|
institution: UserBankAccounts_bankAccounts_institution | null;
|
|
502
553
|
}
|
|
503
554
|
interface UserBankAccounts {
|
|
@@ -596,7 +647,7 @@ interface UserPayableAccounts_payableAccounts_BankAccount {
|
|
|
596
647
|
bankAccountType: BankAccountType;
|
|
597
648
|
bankAccountSubType: BankAccountSubType;
|
|
598
649
|
holder: string;
|
|
599
|
-
email: string;
|
|
650
|
+
email: string | null;
|
|
600
651
|
ownedByUser: boolean;
|
|
601
652
|
bankAccountDetails: UserPayableAccounts_payableAccounts_BankAccount_bankAccountDetails;
|
|
602
653
|
}
|
|
@@ -811,53 +862,6 @@ interface WalletTokenBalancesVariables {
|
|
|
811
862
|
network?: string | null;
|
|
812
863
|
}
|
|
813
864
|
|
|
814
|
-
interface CreateUSBankAccount_createUSBankAccount_bankAccountDetails_CanadianBankAccountDetails {
|
|
815
|
-
__typename: 'CanadianBankAccountDetails';
|
|
816
|
-
}
|
|
817
|
-
interface CreateUSBankAccount_createUSBankAccount_bankAccountDetails_USBankAccountDetails {
|
|
818
|
-
__typename: 'USBankAccountDetails';
|
|
819
|
-
routingNumber: string;
|
|
820
|
-
}
|
|
821
|
-
type CreateUSBankAccount_createUSBankAccount_bankAccountDetails = CreateUSBankAccount_createUSBankAccount_bankAccountDetails_CanadianBankAccountDetails | CreateUSBankAccount_createUSBankAccount_bankAccountDetails_USBankAccountDetails;
|
|
822
|
-
interface CreateUSBankAccount_createUSBankAccount_dataSync {
|
|
823
|
-
__typename: 'AccountDataSync';
|
|
824
|
-
lastSync: any | null;
|
|
825
|
-
syncStatus: AccountSyncStatus | null;
|
|
826
|
-
}
|
|
827
|
-
interface CreateUSBankAccount_createUSBankAccount_institution {
|
|
828
|
-
__typename: 'BankAccountInstitution' | 'BillInstitution';
|
|
829
|
-
id: string;
|
|
830
|
-
name: string;
|
|
831
|
-
logo: string | null;
|
|
832
|
-
}
|
|
833
|
-
interface CreateUSBankAccount_createUSBankAccount {
|
|
834
|
-
__typename: 'BankAccount';
|
|
835
|
-
id: string;
|
|
836
|
-
name: string | null;
|
|
837
|
-
userId: string;
|
|
838
|
-
country: string;
|
|
839
|
-
currency: string;
|
|
840
|
-
payable: boolean;
|
|
841
|
-
originator: PayableAccountOriginator;
|
|
842
|
-
type: PayableAccountType;
|
|
843
|
-
createdAt: any;
|
|
844
|
-
accountNumber: string;
|
|
845
|
-
bankAccountType: BankAccountType;
|
|
846
|
-
bankAccountSubType: BankAccountSubType;
|
|
847
|
-
holder: string;
|
|
848
|
-
email: string;
|
|
849
|
-
ownedByUser: boolean;
|
|
850
|
-
bankAccountDetails: CreateUSBankAccount_createUSBankAccount_bankAccountDetails;
|
|
851
|
-
dataSync: CreateUSBankAccount_createUSBankAccount_dataSync | null;
|
|
852
|
-
institution: CreateUSBankAccount_createUSBankAccount_institution | null;
|
|
853
|
-
}
|
|
854
|
-
interface CreateUSBankAccount {
|
|
855
|
-
createUSBankAccount: CreateUSBankAccount_createUSBankAccount;
|
|
856
|
-
}
|
|
857
|
-
interface CreateUSBankAccountVariables {
|
|
858
|
-
createUSAccountInput: USBankAccountInput;
|
|
859
|
-
}
|
|
860
|
-
|
|
861
865
|
interface DeletePayableAccount_deletePayableAccount_BankAccount_dataSync {
|
|
862
866
|
__typename: 'AccountDataSync';
|
|
863
867
|
lastSync: any | null;
|
|
@@ -894,7 +898,7 @@ interface DeletePayableAccount_deletePayableAccount_BankAccount {
|
|
|
894
898
|
bankAccountType: BankAccountType;
|
|
895
899
|
bankAccountSubType: BankAccountSubType;
|
|
896
900
|
holder: string;
|
|
897
|
-
email: string;
|
|
901
|
+
email: string | null;
|
|
898
902
|
ownedByUser: boolean;
|
|
899
903
|
bankAccountDetails: DeletePayableAccount_deletePayableAccount_BankAccount_bankAccountDetails;
|
|
900
904
|
}
|
|
@@ -971,9 +975,10 @@ interface RenameBankAccount_renamePayableAccount_BankAccount {
|
|
|
971
975
|
bankAccountType: BankAccountType;
|
|
972
976
|
bankAccountSubType: BankAccountSubType;
|
|
973
977
|
holder: string;
|
|
974
|
-
email: string;
|
|
978
|
+
email: string | null;
|
|
975
979
|
ownedByUser: boolean;
|
|
976
980
|
bankAccountDetails: RenameBankAccount_renamePayableAccount_BankAccount_bankAccountDetails;
|
|
981
|
+
deliveryMethods: PaymentDeliveryMethod[];
|
|
977
982
|
institution: RenameBankAccount_renamePayableAccount_BankAccount_institution | null;
|
|
978
983
|
}
|
|
979
984
|
|
|
@@ -1034,15 +1039,17 @@ declare class SpritzClient {
|
|
|
1034
1039
|
private makeStatusError;
|
|
1035
1040
|
}
|
|
1036
1041
|
|
|
1037
|
-
type
|
|
1038
|
-
|
|
1042
|
+
type BaseBankAccountInput = Omit<BankAccountInput, 'details' | 'type'>;
|
|
1043
|
+
type UsBankAccountInput = BaseBankAccountInput & {
|
|
1044
|
+
routingNumber: string;
|
|
1039
1045
|
};
|
|
1040
|
-
type
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
+
type CaBankAccountInput = BaseBankAccountInput & {
|
|
1047
|
+
transitNumber: string;
|
|
1048
|
+
institutionNumber: string;
|
|
1049
|
+
};
|
|
1050
|
+
type CreateInputMapping$1 = {
|
|
1051
|
+
[BankAccountType.USBankAccount]: UsBankAccountInput;
|
|
1052
|
+
[BankAccountType.CABankAccount]: CaBankAccountInput;
|
|
1046
1053
|
};
|
|
1047
1054
|
declare class BankAccountService {
|
|
1048
1055
|
private client;
|
|
@@ -1050,7 +1057,7 @@ declare class BankAccountService {
|
|
|
1050
1057
|
list(): Promise<UserBankAccounts_bankAccounts[]>;
|
|
1051
1058
|
rename(accountId: string, name: string): Promise<RenameBankAccount_renamePayableAccount_BankAccount>;
|
|
1052
1059
|
delete(accountId: string): Promise<DeletePayableAccount_deletePayableAccount_BankAccount>;
|
|
1053
|
-
create<T extends BankAccountType>(type: T, input: CreateInputMapping$1[T]): Promise<
|
|
1060
|
+
create<T extends BankAccountType>(type: T, input: CreateInputMapping$1[T]): Promise<CreateBankAccount_createBankAccount>;
|
|
1054
1061
|
}
|
|
1055
1062
|
|
|
1056
1063
|
interface CreateUSBill_addUSBill_billAccountDetails {
|
|
@@ -1127,6 +1134,7 @@ interface CreatePaymentRequest_createDirectPayment {
|
|
|
1127
1134
|
amountDue: number;
|
|
1128
1135
|
network: string;
|
|
1129
1136
|
createdAt: any;
|
|
1137
|
+
deliveryMethod: string | null;
|
|
1130
1138
|
}
|
|
1131
1139
|
|
|
1132
1140
|
declare enum PaymentNetwork {
|
|
@@ -1291,4 +1299,4 @@ declare class SpritzApiClient {
|
|
|
1291
1299
|
setApiKey(_apiKey: string): this;
|
|
1292
1300
|
}
|
|
1293
1301
|
|
|
1294
|
-
export { AccountPayments, AccountPaymentsVariables, AccountPayments_paymentsForAccount, BankAccountFragment, BankAccountFragment_bankAccountDetails, BankAccountFragment_bankAccountDetails_CanadianBankAccountDetails, BankAccountFragment_bankAccountDetails_USBankAccountDetails, BankAccountFragment_institution, BankAccountSubType, BankAccountType, BillFragment, BillFragment_billAccountDetails, BillFragment_dataSync, BillFragment_institution, BillType, CreateDirectPaymentInput, CreatePaymentRequestInput, CurrentUser, CurrentUser_me, Environment, GetSpritzPayParams, GetSpritzPayParamsVariables, GetSpritzPayParams_spritzPayParams, PayableAccountFragment, PayableAccountFragment_BankAccount, PayableAccountFragment_BankAccount_bankAccountDetails, PayableAccountFragment_BankAccount_bankAccountDetails_CanadianBankAccountDetails, PayableAccountFragment_BankAccount_bankAccountDetails_USBankAccountDetails, PayableAccountFragment_BankAccount_dataSync, PayableAccountFragment_BankAccount_institution, PayableAccountFragment_Bill, PayableAccountFragment_Bill_billAccountDetails, PayableAccountFragment_Bill_dataSync, PayableAccountFragment_Bill_institution, PayableAccountFragment_VirtualCard, PayableAccountFragment_VirtualCard_billingInfo, PayableAccountFragment_VirtualCard_billingInfo_address, PayableAccountFragment_VirtualCard_dataSync, PayableAccountFragment_VirtualCard_institution, PayableAccountInstitutionFragment, PayableAccountType, PaymentFragment, PaymentNetwork, PaymentRequestFragment, PaymentRequestPayment, PaymentRequestPaymentVariables, PaymentRequestPayment_paymentForPaymentRequest, DirectPaymentStatus as PaymentRequestStatus, PaymentStatus, PopularBillInstitutions, PopularBillInstitutionsVariables, PopularBillInstitutions_popularUSBillInstitutions, SearchUSBillInstitutions, SearchUSBillInstitutionsVariables, SearchUSBillInstitutions_searchUSBillInstitutions, SpritzApiClient, TokenBalanceFragment, TransactionPrice, TransactionPriceVariables,
|
|
1302
|
+
export { AccountPayments, AccountPaymentsVariables, AccountPayments_paymentsForAccount, BankAccountFragment, BankAccountFragment_bankAccountDetails, BankAccountFragment_bankAccountDetails_CanadianBankAccountDetails, BankAccountFragment_bankAccountDetails_USBankAccountDetails, BankAccountFragment_institution, BankAccountInput, BankAccountSubType, BankAccountType, BillFragment, BillFragment_billAccountDetails, BillFragment_dataSync, BillFragment_institution, BillType, CreateDirectPaymentInput, CreatePaymentRequestInput, CurrentUser, CurrentUser_me, Environment, GetSpritzPayParams, GetSpritzPayParamsVariables, GetSpritzPayParams_spritzPayParams, PayableAccountFragment, PayableAccountFragment_BankAccount, PayableAccountFragment_BankAccount_bankAccountDetails, PayableAccountFragment_BankAccount_bankAccountDetails_CanadianBankAccountDetails, PayableAccountFragment_BankAccount_bankAccountDetails_USBankAccountDetails, PayableAccountFragment_BankAccount_dataSync, PayableAccountFragment_BankAccount_institution, PayableAccountFragment_Bill, PayableAccountFragment_Bill_billAccountDetails, PayableAccountFragment_Bill_dataSync, PayableAccountFragment_Bill_institution, PayableAccountFragment_VirtualCard, PayableAccountFragment_VirtualCard_billingInfo, PayableAccountFragment_VirtualCard_billingInfo_address, PayableAccountFragment_VirtualCard_dataSync, PayableAccountFragment_VirtualCard_institution, PayableAccountInstitutionFragment, PayableAccountType, PaymentFragment, PaymentNetwork, PaymentRequestFragment, PaymentRequestPayment, PaymentRequestPaymentVariables, PaymentRequestPayment_paymentForPaymentRequest, DirectPaymentStatus as PaymentRequestStatus, PaymentStatus, PopularBillInstitutions, PopularBillInstitutionsVariables, PopularBillInstitutions_popularUSBillInstitutions, SearchUSBillInstitutions, SearchUSBillInstitutionsVariables, SearchUSBillInstitutions_searchUSBillInstitutions, SpritzApiClient, TokenBalanceFragment, TransactionPrice, TransactionPriceVariables, UserBankAccounts, UserBankAccounts_bankAccounts, UserBankAccounts_bankAccounts_bankAccountDetails, UserBankAccounts_bankAccounts_bankAccountDetails_CanadianBankAccountDetails, UserBankAccounts_bankAccounts_bankAccountDetails_USBankAccountDetails, UserBankAccounts_bankAccounts_institution, UserBills, UserBills_bills, UserBills_bills_billAccountDetails, UserBills_bills_dataSync, UserBills_bills_institution, UserFragment, UserPayableAccounts, UserPayableAccounts_payableAccounts, UserPayableAccounts_payableAccounts_BankAccount, UserPayableAccounts_payableAccounts_BankAccount_bankAccountDetails, UserPayableAccounts_payableAccounts_BankAccount_bankAccountDetails_CanadianBankAccountDetails, UserPayableAccounts_payableAccounts_BankAccount_bankAccountDetails_USBankAccountDetails, UserPayableAccounts_payableAccounts_BankAccount_dataSync, UserPayableAccounts_payableAccounts_BankAccount_institution, UserPayableAccounts_payableAccounts_Bill, UserPayableAccounts_payableAccounts_Bill_billAccountDetails, UserPayableAccounts_payableAccounts_Bill_dataSync, UserPayableAccounts_payableAccounts_Bill_institution, UserPayableAccounts_payableAccounts_VirtualCard, UserPayableAccounts_payableAccounts_VirtualCard_billingInfo, UserPayableAccounts_payableAccounts_VirtualCard_billingInfo_address, UserPayableAccounts_payableAccounts_VirtualCard_dataSync, UserPayableAccounts_payableAccounts_VirtualCard_institution, UserVerification, UserVerification_verification, UserVerification_verification_identity, UserVerification_verification_identity_user, UserVirtualDebitCard, UserVirtualDebitCard_virtualDebitCard, UserVirtualDebitCard_virtualDebitCard_billingInfo, UserVirtualDebitCard_virtualDebitCard_billingInfo_address, VirtualCardType, VirtualDebitCardFragment, VirtualDebitCardFragment_billingInfo, VirtualDebitCardFragment_billingInfo_address, WalletTokenBalances, WalletTokenBalancesVariables, WalletTokenBalances_tokenBalances };
|