@finverse/sdk-typescript 0.0.62 → 0.0.64
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/api.d.ts +1490 -252
- package/dist/api.js +1052 -69
- package/package.json +5 -5
package/dist/api.d.ts
CHANGED
|
@@ -48,6 +48,12 @@ export interface AccessTokenResponse {
|
|
|
48
48
|
* @memberof AccessTokenResponse
|
|
49
49
|
*/
|
|
50
50
|
refresh_token: string;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof AccessTokenResponse
|
|
55
|
+
*/
|
|
56
|
+
issued_at: string;
|
|
51
57
|
}
|
|
52
58
|
/**
|
|
53
59
|
*
|
|
@@ -85,12 +91,6 @@ export interface Account {
|
|
|
85
91
|
* @memberof Account
|
|
86
92
|
*/
|
|
87
93
|
account_nickname?: string;
|
|
88
|
-
/**
|
|
89
|
-
*
|
|
90
|
-
* @type {string}
|
|
91
|
-
* @memberof Account
|
|
92
|
-
*/
|
|
93
|
-
account_type?: string;
|
|
94
94
|
/**
|
|
95
95
|
*
|
|
96
96
|
* @type {string}
|
|
@@ -157,6 +157,12 @@ export interface Account {
|
|
|
157
157
|
* @memberof Account
|
|
158
158
|
*/
|
|
159
159
|
is_excluded: boolean;
|
|
160
|
+
/**
|
|
161
|
+
*
|
|
162
|
+
* @type {AccountType}
|
|
163
|
+
* @memberof Account
|
|
164
|
+
*/
|
|
165
|
+
account_type?: AccountType;
|
|
160
166
|
}
|
|
161
167
|
/**
|
|
162
168
|
*
|
|
@@ -183,6 +189,69 @@ export interface AccountNumber {
|
|
|
183
189
|
*/
|
|
184
190
|
raw: string;
|
|
185
191
|
}
|
|
192
|
+
/**
|
|
193
|
+
*
|
|
194
|
+
* @export
|
|
195
|
+
* @interface AccountType
|
|
196
|
+
*/
|
|
197
|
+
export interface AccountType {
|
|
198
|
+
/**
|
|
199
|
+
*
|
|
200
|
+
* @type {string}
|
|
201
|
+
* @memberof AccountType
|
|
202
|
+
*/
|
|
203
|
+
type?: AccountTypeTypeEnum;
|
|
204
|
+
/**
|
|
205
|
+
*
|
|
206
|
+
* @type {string}
|
|
207
|
+
* @memberof AccountType
|
|
208
|
+
*/
|
|
209
|
+
subtype?: AccountTypeSubtypeEnum;
|
|
210
|
+
}
|
|
211
|
+
export declare const AccountTypeTypeEnum: {
|
|
212
|
+
readonly Deposit: "DEPOSIT";
|
|
213
|
+
readonly Card: "CARD";
|
|
214
|
+
readonly Investment: "INVESTMENT";
|
|
215
|
+
readonly Loan: "LOAN";
|
|
216
|
+
readonly Unknown: "UNKNOWN";
|
|
217
|
+
};
|
|
218
|
+
export declare type AccountTypeTypeEnum = typeof AccountTypeTypeEnum[keyof typeof AccountTypeTypeEnum];
|
|
219
|
+
export declare const AccountTypeSubtypeEnum: {
|
|
220
|
+
readonly Checking: "CHECKING";
|
|
221
|
+
readonly Savings: "SAVINGS";
|
|
222
|
+
readonly TimeDeposit: "TIME_DEPOSIT";
|
|
223
|
+
readonly Other: "OTHER";
|
|
224
|
+
readonly CreditCard: "CREDIT_CARD";
|
|
225
|
+
readonly DebitCard: "DEBIT_CARD";
|
|
226
|
+
readonly Securities: "SECURITIES";
|
|
227
|
+
readonly Funds: "FUNDS";
|
|
228
|
+
readonly Stocks: "STOCKS";
|
|
229
|
+
readonly Bonds: "BONDS";
|
|
230
|
+
readonly Mortgage: "MORTGAGE";
|
|
231
|
+
readonly PersonalLoan: "PERSONAL_LOAN";
|
|
232
|
+
readonly RevolvingLoan: "REVOLVING_LOAN";
|
|
233
|
+
readonly Unknown: "UNKNOWN";
|
|
234
|
+
};
|
|
235
|
+
export declare type AccountTypeSubtypeEnum = typeof AccountTypeSubtypeEnum[keyof typeof AccountTypeSubtypeEnum];
|
|
236
|
+
/**
|
|
237
|
+
*
|
|
238
|
+
* @export
|
|
239
|
+
* @interface ActionRequest
|
|
240
|
+
*/
|
|
241
|
+
export interface ActionRequest {
|
|
242
|
+
/**
|
|
243
|
+
*
|
|
244
|
+
* @type {EncryptedPayload}
|
|
245
|
+
* @memberof ActionRequest
|
|
246
|
+
*/
|
|
247
|
+
encrypted_credentials: EncryptedPayload;
|
|
248
|
+
/**
|
|
249
|
+
* The action id
|
|
250
|
+
* @type {string}
|
|
251
|
+
* @memberof ActionRequest
|
|
252
|
+
*/
|
|
253
|
+
action_id: string;
|
|
254
|
+
}
|
|
186
255
|
/**
|
|
187
256
|
*
|
|
188
257
|
* @export
|
|
@@ -244,6 +313,80 @@ export interface AllProductStatus {
|
|
|
244
313
|
*/
|
|
245
314
|
income_estimation?: ProductStatus;
|
|
246
315
|
}
|
|
316
|
+
/**
|
|
317
|
+
*
|
|
318
|
+
* @export
|
|
319
|
+
* @interface ApiLinkRequest
|
|
320
|
+
*/
|
|
321
|
+
export interface ApiLinkRequest {
|
|
322
|
+
/**
|
|
323
|
+
*
|
|
324
|
+
* @type {string}
|
|
325
|
+
* @memberof ApiLinkRequest
|
|
326
|
+
*/
|
|
327
|
+
institution_id: string;
|
|
328
|
+
/**
|
|
329
|
+
* Identifier for end user
|
|
330
|
+
* @type {string}
|
|
331
|
+
* @memberof ApiLinkRequest
|
|
332
|
+
*/
|
|
333
|
+
user_id: string;
|
|
334
|
+
/**
|
|
335
|
+
* this is a mandatory field
|
|
336
|
+
* @type {boolean}
|
|
337
|
+
* @memberof ApiLinkRequest
|
|
338
|
+
*/
|
|
339
|
+
consent: boolean | null;
|
|
340
|
+
/**
|
|
341
|
+
* products that are requested
|
|
342
|
+
* @type {Array<string>}
|
|
343
|
+
* @memberof ApiLinkRequest
|
|
344
|
+
*/
|
|
345
|
+
products_requested: Array<string>;
|
|
346
|
+
/**
|
|
347
|
+
*
|
|
348
|
+
* @type {boolean}
|
|
349
|
+
* @memberof ApiLinkRequest
|
|
350
|
+
*/
|
|
351
|
+
store_credentials: boolean;
|
|
352
|
+
/**
|
|
353
|
+
*
|
|
354
|
+
* @type {EncryptedPayload}
|
|
355
|
+
* @memberof ApiLinkRequest
|
|
356
|
+
*/
|
|
357
|
+
encrypted_credentials: EncryptedPayload;
|
|
358
|
+
/**
|
|
359
|
+
*
|
|
360
|
+
* @type {string}
|
|
361
|
+
* @memberof ApiLinkRequest
|
|
362
|
+
*/
|
|
363
|
+
payment_instruction_id?: string;
|
|
364
|
+
}
|
|
365
|
+
/**
|
|
366
|
+
*
|
|
367
|
+
* @export
|
|
368
|
+
* @interface ApiRelinkRequest
|
|
369
|
+
*/
|
|
370
|
+
export interface ApiRelinkRequest {
|
|
371
|
+
/**
|
|
372
|
+
*
|
|
373
|
+
* @type {boolean}
|
|
374
|
+
* @memberof ApiRelinkRequest
|
|
375
|
+
*/
|
|
376
|
+
store_credential?: boolean;
|
|
377
|
+
/**
|
|
378
|
+
*
|
|
379
|
+
* @type {boolean}
|
|
380
|
+
* @memberof ApiRelinkRequest
|
|
381
|
+
*/
|
|
382
|
+
consent: boolean;
|
|
383
|
+
/**
|
|
384
|
+
*
|
|
385
|
+
* @type {EncryptedPayload}
|
|
386
|
+
* @memberof ApiRelinkRequest
|
|
387
|
+
*/
|
|
388
|
+
encrypted_credentials: EncryptedPayload;
|
|
389
|
+
}
|
|
247
390
|
/**
|
|
248
391
|
*
|
|
249
392
|
* @export
|
|
@@ -370,132 +513,132 @@ export interface BadRequestModelError {
|
|
|
370
513
|
/**
|
|
371
514
|
*
|
|
372
515
|
* @export
|
|
373
|
-
* @interface
|
|
516
|
+
* @interface BadRequestModelV2
|
|
374
517
|
*/
|
|
375
|
-
export interface
|
|
376
|
-
/**
|
|
377
|
-
* The date the balance was recorded
|
|
378
|
-
* @type {string}
|
|
379
|
-
* @memberof BalanceHistory
|
|
380
|
-
*/
|
|
381
|
-
date: string;
|
|
518
|
+
export interface BadRequestModelV2 {
|
|
382
519
|
/**
|
|
383
|
-
*
|
|
384
|
-
* @type {
|
|
385
|
-
* @memberof
|
|
386
|
-
*/
|
|
387
|
-
amount: number;
|
|
388
|
-
/**
|
|
389
|
-
* The currency the balance
|
|
390
|
-
* @type {string}
|
|
391
|
-
* @memberof BalanceHistory
|
|
520
|
+
*
|
|
521
|
+
* @type {BadRequestModelV2Error}
|
|
522
|
+
* @memberof BadRequestModelV2
|
|
392
523
|
*/
|
|
393
|
-
|
|
524
|
+
error?: BadRequestModelV2Error;
|
|
394
525
|
}
|
|
395
526
|
/**
|
|
396
527
|
*
|
|
397
528
|
* @export
|
|
398
|
-
* @interface
|
|
529
|
+
* @interface BadRequestModelV2Error
|
|
399
530
|
*/
|
|
400
|
-
export interface
|
|
531
|
+
export interface BadRequestModelV2Error {
|
|
401
532
|
/**
|
|
402
|
-
*
|
|
533
|
+
* The error type
|
|
403
534
|
* @type {string}
|
|
404
|
-
* @memberof
|
|
535
|
+
* @memberof BadRequestModelV2Error
|
|
405
536
|
*/
|
|
406
|
-
|
|
537
|
+
type: BadRequestModelV2ErrorTypeEnum;
|
|
407
538
|
/**
|
|
408
|
-
*
|
|
539
|
+
*
|
|
409
540
|
* @type {string}
|
|
410
|
-
* @memberof
|
|
541
|
+
* @memberof BadRequestModelV2Error
|
|
411
542
|
*/
|
|
412
|
-
|
|
413
|
-
}
|
|
414
|
-
/**
|
|
415
|
-
*
|
|
416
|
-
* @export
|
|
417
|
-
* @interface CreateCustomerRequest
|
|
418
|
-
*/
|
|
419
|
-
export interface CreateCustomerRequest {
|
|
543
|
+
error_code: string;
|
|
420
544
|
/**
|
|
421
|
-
*
|
|
422
|
-
* @type {
|
|
423
|
-
* @memberof
|
|
545
|
+
*
|
|
546
|
+
* @type {number}
|
|
547
|
+
* @memberof BadRequestModelV2Error
|
|
424
548
|
*/
|
|
425
|
-
|
|
549
|
+
code: number;
|
|
426
550
|
/**
|
|
427
|
-
*
|
|
551
|
+
*
|
|
428
552
|
* @type {string}
|
|
429
|
-
* @memberof
|
|
553
|
+
* @memberof BadRequestModelV2Error
|
|
430
554
|
*/
|
|
431
|
-
|
|
555
|
+
message: string;
|
|
432
556
|
/**
|
|
433
|
-
*
|
|
557
|
+
*
|
|
434
558
|
* @type {string}
|
|
435
|
-
* @memberof
|
|
436
|
-
*/
|
|
437
|
-
customer_app_id: string;
|
|
438
|
-
/**
|
|
439
|
-
* The redirect callback
|
|
440
|
-
* @type {Array<string>}
|
|
441
|
-
* @memberof CreateCustomerRequest
|
|
559
|
+
* @memberof BadRequestModelV2Error
|
|
442
560
|
*/
|
|
443
|
-
|
|
561
|
+
details?: string;
|
|
444
562
|
/**
|
|
445
|
-
* The
|
|
446
|
-
* @type {
|
|
447
|
-
* @memberof
|
|
563
|
+
* The request_id provided in the request header
|
|
564
|
+
* @type {string}
|
|
565
|
+
* @memberof BadRequestModelV2Error
|
|
448
566
|
*/
|
|
449
|
-
|
|
567
|
+
request_id: string;
|
|
450
568
|
}
|
|
569
|
+
export declare const BadRequestModelV2ErrorTypeEnum: {
|
|
570
|
+
readonly LinkError: "LINK_ERROR";
|
|
571
|
+
readonly ApiError: "API_ERROR";
|
|
572
|
+
};
|
|
573
|
+
export declare type BadRequestModelV2ErrorTypeEnum = typeof BadRequestModelV2ErrorTypeEnum[keyof typeof BadRequestModelV2ErrorTypeEnum];
|
|
451
574
|
/**
|
|
452
575
|
*
|
|
453
576
|
* @export
|
|
454
|
-
* @interface
|
|
577
|
+
* @interface BalanceHistory
|
|
455
578
|
*/
|
|
456
|
-
export interface
|
|
579
|
+
export interface BalanceHistory {
|
|
457
580
|
/**
|
|
458
|
-
* The
|
|
581
|
+
* The date the balance was recorded
|
|
459
582
|
* @type {string}
|
|
460
|
-
* @memberof
|
|
583
|
+
* @memberof BalanceHistory
|
|
461
584
|
*/
|
|
462
|
-
|
|
585
|
+
date: string;
|
|
463
586
|
/**
|
|
464
|
-
* The
|
|
465
|
-
* @type {
|
|
466
|
-
* @memberof
|
|
587
|
+
* The end of day balance for this account on this specific date
|
|
588
|
+
* @type {number}
|
|
589
|
+
* @memberof BalanceHistory
|
|
467
590
|
*/
|
|
468
|
-
|
|
591
|
+
amount: number;
|
|
469
592
|
/**
|
|
470
|
-
*
|
|
593
|
+
* The currency the balance
|
|
471
594
|
* @type {string}
|
|
472
|
-
* @memberof
|
|
595
|
+
* @memberof BalanceHistory
|
|
473
596
|
*/
|
|
474
|
-
|
|
597
|
+
currency: string;
|
|
598
|
+
}
|
|
599
|
+
/**
|
|
600
|
+
*
|
|
601
|
+
* @export
|
|
602
|
+
* @interface CategoryDetails
|
|
603
|
+
*/
|
|
604
|
+
export interface CategoryDetails {
|
|
475
605
|
/**
|
|
476
|
-
*
|
|
606
|
+
*
|
|
477
607
|
* @type {Array<string>}
|
|
478
|
-
* @memberof
|
|
608
|
+
* @memberof CategoryDetails
|
|
479
609
|
*/
|
|
480
|
-
|
|
610
|
+
categories?: Array<string>;
|
|
481
611
|
/**
|
|
482
612
|
*
|
|
483
613
|
* @type {string}
|
|
484
|
-
* @memberof
|
|
614
|
+
* @memberof CategoryDetails
|
|
485
615
|
*/
|
|
486
|
-
|
|
616
|
+
source?: string;
|
|
487
617
|
/**
|
|
488
618
|
*
|
|
489
619
|
* @type {string}
|
|
490
|
-
* @memberof
|
|
620
|
+
* @memberof CategoryDetails
|
|
491
621
|
*/
|
|
492
|
-
|
|
622
|
+
source_id?: string;
|
|
623
|
+
}
|
|
624
|
+
/**
|
|
625
|
+
*
|
|
626
|
+
* @export
|
|
627
|
+
* @interface CompositeStatementLink
|
|
628
|
+
*/
|
|
629
|
+
export interface CompositeStatementLink {
|
|
493
630
|
/**
|
|
494
|
-
*
|
|
495
|
-
* @type {
|
|
496
|
-
* @memberof
|
|
631
|
+
* signedURL to download statement
|
|
632
|
+
* @type {string}
|
|
633
|
+
* @memberof CompositeStatementLink
|
|
497
634
|
*/
|
|
498
|
-
|
|
635
|
+
url: string;
|
|
636
|
+
/**
|
|
637
|
+
* expiry of the signedURL
|
|
638
|
+
* @type {string}
|
|
639
|
+
* @memberof CompositeStatementLink
|
|
640
|
+
*/
|
|
641
|
+
expiry: string;
|
|
499
642
|
}
|
|
500
643
|
/**
|
|
501
644
|
*
|
|
@@ -505,10 +648,10 @@ export interface CreateCustomerResponse {
|
|
|
505
648
|
export interface CreateMandateRequest {
|
|
506
649
|
/**
|
|
507
650
|
*
|
|
508
|
-
* @type {
|
|
651
|
+
* @type {MandateRecipientRequest}
|
|
509
652
|
* @memberof CreateMandateRequest
|
|
510
653
|
*/
|
|
511
|
-
recipient:
|
|
654
|
+
recipient: MandateRecipientRequest;
|
|
512
655
|
/**
|
|
513
656
|
*
|
|
514
657
|
* @type {CreateMandateSender}
|
|
@@ -529,12 +672,58 @@ export interface CreateMandateRequest {
|
|
|
529
672
|
*/
|
|
530
673
|
export interface CreateMandateResponse {
|
|
531
674
|
/**
|
|
532
|
-
*
|
|
675
|
+
* Timestamp in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
533
676
|
* @type {string}
|
|
534
677
|
* @memberof CreateMandateResponse
|
|
535
678
|
*/
|
|
536
|
-
|
|
679
|
+
last_update: string;
|
|
680
|
+
/**
|
|
681
|
+
* Finverse Mandate ID (ULID)
|
|
682
|
+
* @type {string}
|
|
683
|
+
* @memberof CreateMandateResponse
|
|
684
|
+
*/
|
|
685
|
+
mandate_id: string;
|
|
686
|
+
/**
|
|
687
|
+
* Mandate status
|
|
688
|
+
* @type {string}
|
|
689
|
+
* @memberof CreateMandateResponse
|
|
690
|
+
*/
|
|
691
|
+
mandate_status: CreateMandateResponseMandateStatusEnum;
|
|
692
|
+
/**
|
|
693
|
+
*
|
|
694
|
+
* @type {MandateRecipient}
|
|
695
|
+
* @memberof CreateMandateResponse
|
|
696
|
+
*/
|
|
697
|
+
recipient: MandateRecipient;
|
|
698
|
+
/**
|
|
699
|
+
*
|
|
700
|
+
* @type {GetMandateSender}
|
|
701
|
+
* @memberof CreateMandateResponse
|
|
702
|
+
*/
|
|
703
|
+
sender: GetMandateSender;
|
|
704
|
+
/**
|
|
705
|
+
*
|
|
706
|
+
* @type {MandateDetails}
|
|
707
|
+
* @memberof CreateMandateResponse
|
|
708
|
+
*/
|
|
709
|
+
mandate_details: MandateDetails;
|
|
710
|
+
/**
|
|
711
|
+
*
|
|
712
|
+
* @type {FvErrorModel}
|
|
713
|
+
* @memberof CreateMandateResponse
|
|
714
|
+
*/
|
|
715
|
+
error?: FvErrorModel;
|
|
537
716
|
}
|
|
717
|
+
export declare const CreateMandateResponseMandateStatusEnum: {
|
|
718
|
+
readonly AuthorizationRequired: "AUTHORIZATION_REQUIRED";
|
|
719
|
+
readonly Authorizing: "AUTHORIZING";
|
|
720
|
+
readonly Processing: "PROCESSING";
|
|
721
|
+
readonly Submitted: "SUBMITTED";
|
|
722
|
+
readonly Succeeded: "SUCCEEDED";
|
|
723
|
+
readonly Failed: "FAILED";
|
|
724
|
+
readonly Revoked: "REVOKED";
|
|
725
|
+
};
|
|
726
|
+
export declare type CreateMandateResponseMandateStatusEnum = typeof CreateMandateResponseMandateStatusEnum[keyof typeof CreateMandateResponseMandateStatusEnum];
|
|
538
727
|
/**
|
|
539
728
|
*
|
|
540
729
|
* @export
|
|
@@ -580,11 +769,17 @@ export interface CreatePaymentInstructionResponse {
|
|
|
580
769
|
*/
|
|
581
770
|
export interface CreatePaymentRequest {
|
|
582
771
|
/**
|
|
583
|
-
* Amount to be paid, in currency
|
|
772
|
+
* Amount to be paid, in currency\'s smallest unit or “minor unit”, as defined in ISO 4217. For example, HKD 100.01 is represented as amount = 10001 (minor unit = cents). For currencies without minor units (e.g. VND, JPY), the amount is represented as is, without modification. For example, VND 15101 is represented as amount = 15101.
|
|
584
773
|
* @type {number}
|
|
585
774
|
* @memberof CreatePaymentRequest
|
|
586
775
|
*/
|
|
587
776
|
amount: number;
|
|
777
|
+
/**
|
|
778
|
+
* The currency code as defined in ISO 4217.
|
|
779
|
+
* @type {string}
|
|
780
|
+
* @memberof CreatePaymentRequest
|
|
781
|
+
*/
|
|
782
|
+
currency: string;
|
|
588
783
|
/**
|
|
589
784
|
* Indicates whether this is a mandate-based payment or one-off direct payment to an account. Possible values - MANDATE, SINGLE
|
|
590
785
|
* @type {string}
|
|
@@ -603,19 +798,6 @@ export declare const CreatePaymentRequestTypeEnum: {
|
|
|
603
798
|
readonly Single: "SINGLE";
|
|
604
799
|
};
|
|
605
800
|
export declare type CreatePaymentRequestTypeEnum = typeof CreatePaymentRequestTypeEnum[keyof typeof CreatePaymentRequestTypeEnum];
|
|
606
|
-
/**
|
|
607
|
-
*
|
|
608
|
-
* @export
|
|
609
|
-
* @interface CreatePaymentResponse
|
|
610
|
-
*/
|
|
611
|
-
export interface CreatePaymentResponse {
|
|
612
|
-
/**
|
|
613
|
-
* Finverse Payment ID
|
|
614
|
-
* @type {string}
|
|
615
|
-
* @memberof CreatePaymentResponse
|
|
616
|
-
*/
|
|
617
|
-
payment_id?: string;
|
|
618
|
-
}
|
|
619
801
|
/**
|
|
620
802
|
*
|
|
621
803
|
* @export
|
|
@@ -727,34 +909,65 @@ export declare type CustomerPaymentInstructionTypeEnum = typeof CustomerPaymentI
|
|
|
727
909
|
/**
|
|
728
910
|
*
|
|
729
911
|
* @export
|
|
730
|
-
* @interface
|
|
912
|
+
* @interface DeleteLoginIdentityResponse
|
|
913
|
+
*/
|
|
914
|
+
export interface DeleteLoginIdentityResponse {
|
|
915
|
+
/**
|
|
916
|
+
*
|
|
917
|
+
* @type {boolean}
|
|
918
|
+
* @memberof DeleteLoginIdentityResponse
|
|
919
|
+
*/
|
|
920
|
+
success?: boolean;
|
|
921
|
+
}
|
|
922
|
+
/**
|
|
923
|
+
*
|
|
924
|
+
* @export
|
|
925
|
+
* @interface EncryptedPayload
|
|
731
926
|
*/
|
|
732
|
-
export interface
|
|
927
|
+
export interface EncryptedPayload {
|
|
928
|
+
/**
|
|
929
|
+
* The credential payload encrypted with AES (base64)
|
|
930
|
+
* @type {string}
|
|
931
|
+
* @memberof EncryptedPayload
|
|
932
|
+
*/
|
|
933
|
+
ciphertext: string;
|
|
934
|
+
/**
|
|
935
|
+
* The 16 byte IV used w/ AES (base64)
|
|
936
|
+
* @type {string}
|
|
937
|
+
* @memberof EncryptedPayload
|
|
938
|
+
*/
|
|
939
|
+
initializationVector: string;
|
|
940
|
+
/**
|
|
941
|
+
* The MAC to verify AES decryption validity
|
|
942
|
+
* @type {string}
|
|
943
|
+
* @memberof EncryptedPayload
|
|
944
|
+
*/
|
|
945
|
+
messageAuthenticationCode: string;
|
|
733
946
|
/**
|
|
734
|
-
*
|
|
947
|
+
* The AES key encrypted with an RSA pubkey (base64)
|
|
735
948
|
* @type {string}
|
|
736
|
-
* @memberof
|
|
949
|
+
* @memberof EncryptedPayload
|
|
737
950
|
*/
|
|
738
|
-
|
|
951
|
+
envelopeEncryptionKey: string;
|
|
739
952
|
/**
|
|
740
|
-
*
|
|
953
|
+
* The identifier of the public key used to encrypt the AES key
|
|
741
954
|
* @type {string}
|
|
742
|
-
* @memberof
|
|
955
|
+
* @memberof EncryptedPayload
|
|
743
956
|
*/
|
|
744
|
-
|
|
957
|
+
keyId: string;
|
|
745
958
|
}
|
|
746
959
|
/**
|
|
747
960
|
*
|
|
748
961
|
* @export
|
|
749
|
-
* @interface
|
|
962
|
+
* @interface ErrBodyModel
|
|
750
963
|
*/
|
|
751
|
-
export interface
|
|
964
|
+
export interface ErrBodyModel {
|
|
752
965
|
/**
|
|
753
966
|
*
|
|
754
|
-
* @type {
|
|
755
|
-
* @memberof
|
|
967
|
+
* @type {FvErrorModel}
|
|
968
|
+
* @memberof ErrBodyModel
|
|
756
969
|
*/
|
|
757
|
-
|
|
970
|
+
error?: FvErrorModel;
|
|
758
971
|
}
|
|
759
972
|
/**
|
|
760
973
|
*
|
|
@@ -805,6 +1018,54 @@ export interface ErrorResponse {
|
|
|
805
1018
|
*/
|
|
806
1019
|
request_id?: string;
|
|
807
1020
|
}
|
|
1021
|
+
/**
|
|
1022
|
+
*
|
|
1023
|
+
* @export
|
|
1024
|
+
* @interface FvErrorModel
|
|
1025
|
+
*/
|
|
1026
|
+
export interface FvErrorModel {
|
|
1027
|
+
/**
|
|
1028
|
+
* The error type
|
|
1029
|
+
* @type {string}
|
|
1030
|
+
* @memberof FvErrorModel
|
|
1031
|
+
*/
|
|
1032
|
+
type: FvErrorModelTypeEnum;
|
|
1033
|
+
/**
|
|
1034
|
+
*
|
|
1035
|
+
* @type {string}
|
|
1036
|
+
* @memberof FvErrorModel
|
|
1037
|
+
*/
|
|
1038
|
+
error_code: string;
|
|
1039
|
+
/**
|
|
1040
|
+
*
|
|
1041
|
+
* @type {string}
|
|
1042
|
+
* @memberof FvErrorModel
|
|
1043
|
+
*/
|
|
1044
|
+
code: string;
|
|
1045
|
+
/**
|
|
1046
|
+
*
|
|
1047
|
+
* @type {string}
|
|
1048
|
+
* @memberof FvErrorModel
|
|
1049
|
+
*/
|
|
1050
|
+
message: string;
|
|
1051
|
+
/**
|
|
1052
|
+
*
|
|
1053
|
+
* @type {string}
|
|
1054
|
+
* @memberof FvErrorModel
|
|
1055
|
+
*/
|
|
1056
|
+
details: string;
|
|
1057
|
+
/**
|
|
1058
|
+
* The request_id provided in the request header
|
|
1059
|
+
* @type {string}
|
|
1060
|
+
* @memberof FvErrorModel
|
|
1061
|
+
*/
|
|
1062
|
+
request_id: string;
|
|
1063
|
+
}
|
|
1064
|
+
export declare const FvErrorModelTypeEnum: {
|
|
1065
|
+
readonly LinkError: "LINK_ERROR";
|
|
1066
|
+
readonly ApiError: "API_ERROR";
|
|
1067
|
+
};
|
|
1068
|
+
export declare type FvErrorModelTypeEnum = typeof FvErrorModelTypeEnum[keyof typeof FvErrorModelTypeEnum];
|
|
808
1069
|
/**
|
|
809
1070
|
*
|
|
810
1071
|
* @export
|
|
@@ -897,7 +1158,18 @@ export interface GetBalanceHistoryResponse {
|
|
|
897
1158
|
* @memberof GetBalanceHistoryResponse
|
|
898
1159
|
*/
|
|
899
1160
|
balance_history?: Array<BalanceHistory>;
|
|
1161
|
+
/**
|
|
1162
|
+
*
|
|
1163
|
+
* @type {string}
|
|
1164
|
+
* @memberof GetBalanceHistoryResponse
|
|
1165
|
+
*/
|
|
1166
|
+
source?: GetBalanceHistoryResponseSourceEnum;
|
|
900
1167
|
}
|
|
1168
|
+
export declare const GetBalanceHistoryResponseSourceEnum: {
|
|
1169
|
+
readonly Institution: "INSTITUTION";
|
|
1170
|
+
readonly Computed: "COMPUTED";
|
|
1171
|
+
};
|
|
1172
|
+
export declare type GetBalanceHistoryResponseSourceEnum = typeof GetBalanceHistoryResponseSourceEnum[keyof typeof GetBalanceHistoryResponseSourceEnum];
|
|
901
1173
|
/**
|
|
902
1174
|
*
|
|
903
1175
|
* @export
|
|
@@ -1063,7 +1335,7 @@ export interface GetMandateAuthResponse {
|
|
|
1063
1335
|
* @type {string}
|
|
1064
1336
|
* @memberof GetMandateAuthResponse
|
|
1065
1337
|
*/
|
|
1066
|
-
sender_type
|
|
1338
|
+
sender_type?: GetMandateAuthResponseSenderTypeEnum;
|
|
1067
1339
|
/**
|
|
1068
1340
|
* Checklist of the authorization factors needed to complete Mandate authorization
|
|
1069
1341
|
* @type {Array<AuthChecklistFactor>}
|
|
@@ -1082,6 +1354,12 @@ export interface GetMandateAuthResponse {
|
|
|
1082
1354
|
* @memberof GetMandateAuthResponse
|
|
1083
1355
|
*/
|
|
1084
1356
|
last_update: string;
|
|
1357
|
+
/**
|
|
1358
|
+
*
|
|
1359
|
+
* @type {FvErrorModel}
|
|
1360
|
+
* @memberof GetMandateAuthResponse
|
|
1361
|
+
*/
|
|
1362
|
+
error?: FvErrorModel;
|
|
1085
1363
|
}
|
|
1086
1364
|
export declare const GetMandateAuthResponseMandateStatusEnum: {
|
|
1087
1365
|
readonly Created: "CREATED";
|
|
@@ -1137,12 +1415,21 @@ export interface GetMandateResponse {
|
|
|
1137
1415
|
* @memberof GetMandateResponse
|
|
1138
1416
|
*/
|
|
1139
1417
|
mandate_details: MandateDetails;
|
|
1418
|
+
/**
|
|
1419
|
+
*
|
|
1420
|
+
* @type {FvErrorModel}
|
|
1421
|
+
* @memberof GetMandateResponse
|
|
1422
|
+
*/
|
|
1423
|
+
error?: FvErrorModel;
|
|
1140
1424
|
}
|
|
1141
1425
|
export declare const GetMandateResponseMandateStatusEnum: {
|
|
1142
|
-
readonly
|
|
1426
|
+
readonly AuthorizationRequired: "AUTHORIZATION_REQUIRED";
|
|
1427
|
+
readonly Authorizing: "AUTHORIZING";
|
|
1143
1428
|
readonly Processing: "PROCESSING";
|
|
1144
1429
|
readonly Submitted: "SUBMITTED";
|
|
1145
|
-
readonly
|
|
1430
|
+
readonly Succeeded: "SUCCEEDED";
|
|
1431
|
+
readonly Failed: "FAILED";
|
|
1432
|
+
readonly Revoked: "REVOKED";
|
|
1146
1433
|
};
|
|
1147
1434
|
export declare type GetMandateResponseMandateStatusEnum = typeof GetMandateResponseMandateStatusEnum[keyof typeof GetMandateResponseMandateStatusEnum];
|
|
1148
1435
|
/**
|
|
@@ -1189,64 +1476,6 @@ export interface GetPaymentInstructionsResponse {
|
|
|
1189
1476
|
*/
|
|
1190
1477
|
payment_instruction?: PaymentInstruction;
|
|
1191
1478
|
}
|
|
1192
|
-
/**
|
|
1193
|
-
*
|
|
1194
|
-
* @export
|
|
1195
|
-
* @interface GetPaymentResponse
|
|
1196
|
-
*/
|
|
1197
|
-
export interface GetPaymentResponse {
|
|
1198
|
-
/**
|
|
1199
|
-
* Finverse Payment ID
|
|
1200
|
-
* @type {string}
|
|
1201
|
-
* @memberof GetPaymentResponse
|
|
1202
|
-
*/
|
|
1203
|
-
payment_id?: string;
|
|
1204
|
-
/**
|
|
1205
|
-
* Amount to be paid, in currency’s smallest unit or “minor unit”, as defined in ISO 4217. For example, HKD 100.01 is represented as amount = 10001 (minor unit = cents). For currencies without minor units (e.g. VND, JPY), the amount is represented as is, without modification. For example, VND 15101 is represented as amount = 15101.
|
|
1206
|
-
* @type {number}
|
|
1207
|
-
* @memberof GetPaymentResponse
|
|
1208
|
-
*/
|
|
1209
|
-
amount?: number;
|
|
1210
|
-
/**
|
|
1211
|
-
* Indicates whether this is a mandate-based payment or one-off direct payment to an account. Possible values - MANDATE, SINGLE
|
|
1212
|
-
* @type {string}
|
|
1213
|
-
* @memberof GetPaymentResponse
|
|
1214
|
-
*/
|
|
1215
|
-
type?: GetPaymentResponseTypeEnum;
|
|
1216
|
-
/**
|
|
1217
|
-
* Timestamp in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
1218
|
-
* @type {string}
|
|
1219
|
-
* @memberof GetPaymentResponse
|
|
1220
|
-
*/
|
|
1221
|
-
last_update?: string;
|
|
1222
|
-
/**
|
|
1223
|
-
* Possible values - CREATED, AUTHORIZED, SUBMITTED, EXECUTED, FAILED, REJECTED, CANCELLED.
|
|
1224
|
-
* @type {string}
|
|
1225
|
-
* @memberof GetPaymentResponse
|
|
1226
|
-
*/
|
|
1227
|
-
status?: GetPaymentResponseStatusEnum;
|
|
1228
|
-
/**
|
|
1229
|
-
*
|
|
1230
|
-
* @type {PaymentDetails2}
|
|
1231
|
-
* @memberof GetPaymentResponse
|
|
1232
|
-
*/
|
|
1233
|
-
payment_details?: PaymentDetails2;
|
|
1234
|
-
}
|
|
1235
|
-
export declare const GetPaymentResponseTypeEnum: {
|
|
1236
|
-
readonly Mandate: "MANDATE";
|
|
1237
|
-
readonly Single: "SINGLE";
|
|
1238
|
-
};
|
|
1239
|
-
export declare type GetPaymentResponseTypeEnum = typeof GetPaymentResponseTypeEnum[keyof typeof GetPaymentResponseTypeEnum];
|
|
1240
|
-
export declare const GetPaymentResponseStatusEnum: {
|
|
1241
|
-
readonly Created: "CREATED";
|
|
1242
|
-
readonly Authorized: "AUTHORIZED";
|
|
1243
|
-
readonly Submitted: "SUBMITTED";
|
|
1244
|
-
readonly Executed: "EXECUTED";
|
|
1245
|
-
readonly Failed: "FAILED";
|
|
1246
|
-
readonly Rejected: "REJECTED";
|
|
1247
|
-
readonly Cancelled: "CANCELLED";
|
|
1248
|
-
};
|
|
1249
|
-
export declare type GetPaymentResponseStatusEnum = typeof GetPaymentResponseStatusEnum[keyof typeof GetPaymentResponseStatusEnum];
|
|
1250
1479
|
/**
|
|
1251
1480
|
*
|
|
1252
1481
|
* @export
|
|
@@ -1777,10 +2006,10 @@ export interface Institution {
|
|
|
1777
2006
|
portal_name?: string;
|
|
1778
2007
|
/**
|
|
1779
2008
|
*
|
|
1780
|
-
* @type {string}
|
|
2009
|
+
* @type {Array<string>}
|
|
1781
2010
|
* @memberof Institution
|
|
1782
2011
|
*/
|
|
1783
|
-
user_type: InstitutionUserTypeEnum
|
|
2012
|
+
user_type: Array<InstitutionUserTypeEnum>;
|
|
1784
2013
|
/**
|
|
1785
2014
|
*
|
|
1786
2015
|
* @type {string}
|
|
@@ -1804,13 +2033,19 @@ export interface Institution {
|
|
|
1804
2033
|
* @type {object}
|
|
1805
2034
|
* @memberof Institution
|
|
1806
2035
|
*/
|
|
1807
|
-
login_details
|
|
2036
|
+
login_details: object;
|
|
1808
2037
|
/**
|
|
1809
2038
|
*
|
|
1810
2039
|
* @type {Array<LoginMethod>}
|
|
1811
2040
|
* @memberof Institution
|
|
1812
2041
|
*/
|
|
1813
2042
|
login_methods?: Array<LoginMethod>;
|
|
2043
|
+
/**
|
|
2044
|
+
*
|
|
2045
|
+
* @type {PaymentInfo}
|
|
2046
|
+
* @memberof Institution
|
|
2047
|
+
*/
|
|
2048
|
+
payment_info?: PaymentInfo;
|
|
1814
2049
|
/**
|
|
1815
2050
|
*
|
|
1816
2051
|
* @type {string}
|
|
@@ -1823,6 +2058,12 @@ export interface Institution {
|
|
|
1823
2058
|
* @memberof Institution
|
|
1824
2059
|
*/
|
|
1825
2060
|
updated_at?: string;
|
|
2061
|
+
/**
|
|
2062
|
+
*
|
|
2063
|
+
* @type {Array<LoginAction>}
|
|
2064
|
+
* @memberof Institution
|
|
2065
|
+
*/
|
|
2066
|
+
login_actions?: Array<LoginAction>;
|
|
1826
2067
|
}
|
|
1827
2068
|
export declare const InstitutionTagsEnum: {
|
|
1828
2069
|
readonly Real: "real";
|
|
@@ -1832,6 +2073,7 @@ export declare type InstitutionTagsEnum = typeof InstitutionTagsEnum[keyof typeo
|
|
|
1832
2073
|
export declare const InstitutionInstitutionTypeEnum: {
|
|
1833
2074
|
readonly Bank: "BANK";
|
|
1834
2075
|
readonly Wallet: "WALLET";
|
|
2076
|
+
readonly Test: "TEST";
|
|
1835
2077
|
};
|
|
1836
2078
|
export declare type InstitutionInstitutionTypeEnum = typeof InstitutionInstitutionTypeEnum[keyof typeof InstitutionInstitutionTypeEnum];
|
|
1837
2079
|
export declare const InstitutionProductsSupportedEnum: {
|
|
@@ -1844,6 +2086,7 @@ export declare const InstitutionProductsSupportedEnum: {
|
|
|
1844
2086
|
export declare type InstitutionProductsSupportedEnum = typeof InstitutionProductsSupportedEnum[keyof typeof InstitutionProductsSupportedEnum];
|
|
1845
2087
|
export declare const InstitutionUserTypeEnum: {
|
|
1846
2088
|
readonly Personal: "PERSONAL";
|
|
2089
|
+
readonly Individual: "INDIVIDUAL";
|
|
1847
2090
|
readonly Business: "BUSINESS";
|
|
1848
2091
|
};
|
|
1849
2092
|
export declare type InstitutionUserTypeEnum = typeof InstitutionUserTypeEnum[keyof typeof InstitutionUserTypeEnum];
|
|
@@ -1977,6 +2220,99 @@ export interface LinkResponse {
|
|
|
1977
2220
|
*/
|
|
1978
2221
|
auth_url?: string;
|
|
1979
2222
|
}
|
|
2223
|
+
/**
|
|
2224
|
+
*
|
|
2225
|
+
* @export
|
|
2226
|
+
* @interface LinkStatusActionModel
|
|
2227
|
+
*/
|
|
2228
|
+
export interface LinkStatusActionModel {
|
|
2229
|
+
/**
|
|
2230
|
+
* Unique identifier
|
|
2231
|
+
* @type {string}
|
|
2232
|
+
* @memberof LinkStatusActionModel
|
|
2233
|
+
*/
|
|
2234
|
+
action_id: string;
|
|
2235
|
+
/**
|
|
2236
|
+
* The type of user screen the UI is to render
|
|
2237
|
+
* @type {string}
|
|
2238
|
+
* @memberof LinkStatusActionModel
|
|
2239
|
+
*/
|
|
2240
|
+
type: string;
|
|
2241
|
+
/**
|
|
2242
|
+
* The name of the user screen the UI is to render
|
|
2243
|
+
* @type {string}
|
|
2244
|
+
* @memberof LinkStatusActionModel
|
|
2245
|
+
*/
|
|
2246
|
+
name: string;
|
|
2247
|
+
/**
|
|
2248
|
+
*
|
|
2249
|
+
* @type {Array<UserMessage>}
|
|
2250
|
+
* @memberof LinkStatusActionModel
|
|
2251
|
+
*/
|
|
2252
|
+
messages: Array<UserMessage>;
|
|
2253
|
+
/**
|
|
2254
|
+
*
|
|
2255
|
+
* @type {Array<UserField>}
|
|
2256
|
+
* @memberof LinkStatusActionModel
|
|
2257
|
+
*/
|
|
2258
|
+
fields: Array<UserField>;
|
|
2259
|
+
/**
|
|
2260
|
+
*
|
|
2261
|
+
* @type {Array<UserButton>}
|
|
2262
|
+
* @memberof LinkStatusActionModel
|
|
2263
|
+
*/
|
|
2264
|
+
buttons?: Array<UserButton>;
|
|
2265
|
+
}
|
|
2266
|
+
/**
|
|
2267
|
+
*
|
|
2268
|
+
* @export
|
|
2269
|
+
* @interface LinkStatusPendingModel
|
|
2270
|
+
*/
|
|
2271
|
+
export interface LinkStatusPendingModel {
|
|
2272
|
+
/**
|
|
2273
|
+
*
|
|
2274
|
+
* @type {string}
|
|
2275
|
+
* @memberof LinkStatusPendingModel
|
|
2276
|
+
*/
|
|
2277
|
+
code?: string;
|
|
2278
|
+
/**
|
|
2279
|
+
*
|
|
2280
|
+
* @type {string}
|
|
2281
|
+
* @memberof LinkStatusPendingModel
|
|
2282
|
+
*/
|
|
2283
|
+
message?: string;
|
|
2284
|
+
/**
|
|
2285
|
+
*
|
|
2286
|
+
* @type {string}
|
|
2287
|
+
* @memberof LinkStatusPendingModel
|
|
2288
|
+
*/
|
|
2289
|
+
details?: string;
|
|
2290
|
+
}
|
|
2291
|
+
/**
|
|
2292
|
+
*
|
|
2293
|
+
* @export
|
|
2294
|
+
* @interface LinkStatusResponse
|
|
2295
|
+
*/
|
|
2296
|
+
export interface LinkStatusResponse {
|
|
2297
|
+
/**
|
|
2298
|
+
*
|
|
2299
|
+
* @type {AccessTokenResponse}
|
|
2300
|
+
* @memberof LinkStatusResponse
|
|
2301
|
+
*/
|
|
2302
|
+
success?: AccessTokenResponse;
|
|
2303
|
+
/**
|
|
2304
|
+
*
|
|
2305
|
+
* @type {LinkStatusPendingModel}
|
|
2306
|
+
* @memberof LinkStatusResponse
|
|
2307
|
+
*/
|
|
2308
|
+
pending?: LinkStatusPendingModel;
|
|
2309
|
+
/**
|
|
2310
|
+
*
|
|
2311
|
+
* @type {LinkStatusActionModel}
|
|
2312
|
+
* @memberof LinkStatusResponse
|
|
2313
|
+
*/
|
|
2314
|
+
action?: LinkStatusActionModel;
|
|
2315
|
+
}
|
|
1980
2316
|
/**
|
|
1981
2317
|
*
|
|
1982
2318
|
* @export
|
|
@@ -2159,6 +2495,12 @@ export interface LinkTokenResponse {
|
|
|
2159
2495
|
* @memberof LinkTokenResponse
|
|
2160
2496
|
*/
|
|
2161
2497
|
expires_in: number;
|
|
2498
|
+
/**
|
|
2499
|
+
*
|
|
2500
|
+
* @type {string}
|
|
2501
|
+
* @memberof LinkTokenResponse
|
|
2502
|
+
*/
|
|
2503
|
+
issued_at: string;
|
|
2162
2504
|
/**
|
|
2163
2505
|
*
|
|
2164
2506
|
* @type {string}
|
|
@@ -2228,6 +2570,43 @@ export interface ListTransactionsResponse {
|
|
|
2228
2570
|
*/
|
|
2229
2571
|
total_transactions: number;
|
|
2230
2572
|
}
|
|
2573
|
+
/**
|
|
2574
|
+
*
|
|
2575
|
+
* @export
|
|
2576
|
+
* @interface LoginAction
|
|
2577
|
+
*/
|
|
2578
|
+
export interface LoginAction {
|
|
2579
|
+
/**
|
|
2580
|
+
*
|
|
2581
|
+
* @type {string}
|
|
2582
|
+
* @memberof LoginAction
|
|
2583
|
+
*/
|
|
2584
|
+
type?: string;
|
|
2585
|
+
/**
|
|
2586
|
+
*
|
|
2587
|
+
* @type {string}
|
|
2588
|
+
* @memberof LoginAction
|
|
2589
|
+
*/
|
|
2590
|
+
name?: string;
|
|
2591
|
+
/**
|
|
2592
|
+
*
|
|
2593
|
+
* @type {Array<UserMessage>}
|
|
2594
|
+
* @memberof LoginAction
|
|
2595
|
+
*/
|
|
2596
|
+
messages?: Array<UserMessage>;
|
|
2597
|
+
/**
|
|
2598
|
+
*
|
|
2599
|
+
* @type {Array<UserField>}
|
|
2600
|
+
* @memberof LoginAction
|
|
2601
|
+
*/
|
|
2602
|
+
fields?: Array<UserField>;
|
|
2603
|
+
/**
|
|
2604
|
+
*
|
|
2605
|
+
* @type {Array<UserButton>}
|
|
2606
|
+
* @memberof LoginAction
|
|
2607
|
+
*/
|
|
2608
|
+
buttons?: Array<UserButton>;
|
|
2609
|
+
}
|
|
2231
2610
|
/**
|
|
2232
2611
|
*
|
|
2233
2612
|
* @export
|
|
@@ -2529,6 +2908,18 @@ export interface LoginMethod {
|
|
|
2529
2908
|
* @memberof LoginMethod
|
|
2530
2909
|
*/
|
|
2531
2910
|
name?: string;
|
|
2911
|
+
/**
|
|
2912
|
+
*
|
|
2913
|
+
* @type {boolean}
|
|
2914
|
+
* @memberof LoginMethod
|
|
2915
|
+
*/
|
|
2916
|
+
is_default_method?: boolean | null;
|
|
2917
|
+
/**
|
|
2918
|
+
*
|
|
2919
|
+
* @type {string}
|
|
2920
|
+
* @memberof LoginMethod
|
|
2921
|
+
*/
|
|
2922
|
+
status?: LoginMethodStatusEnum;
|
|
2532
2923
|
/**
|
|
2533
2924
|
*
|
|
2534
2925
|
* @type {Array<LoginField>}
|
|
@@ -2536,6 +2927,12 @@ export interface LoginMethod {
|
|
|
2536
2927
|
*/
|
|
2537
2928
|
login_fields?: Array<LoginField>;
|
|
2538
2929
|
}
|
|
2930
|
+
export declare const LoginMethodStatusEnum: {
|
|
2931
|
+
readonly Supported: "SUPPORTED";
|
|
2932
|
+
readonly Alpha: "ALPHA";
|
|
2933
|
+
readonly Beta: "BETA";
|
|
2934
|
+
};
|
|
2935
|
+
export declare type LoginMethodStatusEnum = typeof LoginMethodStatusEnum[keyof typeof LoginMethodStatusEnum];
|
|
2539
2936
|
/**
|
|
2540
2937
|
*
|
|
2541
2938
|
* @export
|
|
@@ -2634,13 +3031,13 @@ export interface MandateDetails {
|
|
|
2634
3031
|
* @type {string}
|
|
2635
3032
|
* @memberof MandateDetails
|
|
2636
3033
|
*/
|
|
2637
|
-
start_date?: string;
|
|
3034
|
+
start_date?: string | null;
|
|
2638
3035
|
/**
|
|
2639
3036
|
* YYYY-MM-DD, must be later than the date of creation.
|
|
2640
3037
|
* @type {string}
|
|
2641
3038
|
* @memberof MandateDetails
|
|
2642
3039
|
*/
|
|
2643
|
-
end_date?: string;
|
|
3040
|
+
end_date?: string | null;
|
|
2644
3041
|
/**
|
|
2645
3042
|
*
|
|
2646
3043
|
* @type {PaymentSchedule}
|
|
@@ -2659,13 +3056,30 @@ export interface MandateDetails {
|
|
|
2659
3056
|
* @memberof MandateDetails
|
|
2660
3057
|
*/
|
|
2661
3058
|
description?: string;
|
|
3059
|
+
/**
|
|
3060
|
+
* Type of account held by the Sender at the Institution. Possible values are INDIVIDUAL, BUSINESS
|
|
3061
|
+
* @type {string}
|
|
3062
|
+
* @memberof MandateDetails
|
|
3063
|
+
*/
|
|
3064
|
+
sender_type: MandateDetailsSenderTypeEnum;
|
|
2662
3065
|
}
|
|
3066
|
+
export declare const MandateDetailsSenderTypeEnum: {
|
|
3067
|
+
readonly Individual: "INDIVIDUAL";
|
|
3068
|
+
readonly Business: "BUSINESS";
|
|
3069
|
+
};
|
|
3070
|
+
export declare type MandateDetailsSenderTypeEnum = typeof MandateDetailsSenderTypeEnum[keyof typeof MandateDetailsSenderTypeEnum];
|
|
2663
3071
|
/**
|
|
2664
3072
|
*
|
|
2665
3073
|
* @export
|
|
2666
3074
|
* @interface MandateRecipient
|
|
2667
3075
|
*/
|
|
2668
3076
|
export interface MandateRecipient {
|
|
3077
|
+
/**
|
|
3078
|
+
* Merchant account name
|
|
3079
|
+
* @type {string}
|
|
3080
|
+
* @memberof MandateRecipient
|
|
3081
|
+
*/
|
|
3082
|
+
name: string;
|
|
2669
3083
|
/**
|
|
2670
3084
|
* Merchant account ID assigned by Finverse
|
|
2671
3085
|
* @type {string}
|
|
@@ -2673,6 +3087,19 @@ export interface MandateRecipient {
|
|
|
2673
3087
|
*/
|
|
2674
3088
|
recipient_account_id: string;
|
|
2675
3089
|
}
|
|
3090
|
+
/**
|
|
3091
|
+
*
|
|
3092
|
+
* @export
|
|
3093
|
+
* @interface MandateRecipientRequest
|
|
3094
|
+
*/
|
|
3095
|
+
export interface MandateRecipientRequest {
|
|
3096
|
+
/**
|
|
3097
|
+
* Merchant account ID assigned by Finverse
|
|
3098
|
+
* @type {string}
|
|
3099
|
+
* @memberof MandateRecipientRequest
|
|
3100
|
+
*/
|
|
3101
|
+
recipient_account_id: string;
|
|
3102
|
+
}
|
|
2676
3103
|
/**
|
|
2677
3104
|
*
|
|
2678
3105
|
* @export
|
|
@@ -2698,6 +3125,25 @@ export interface MonthlyIncomeEstimate {
|
|
|
2698
3125
|
*/
|
|
2699
3126
|
year: number;
|
|
2700
3127
|
}
|
|
3128
|
+
/**
|
|
3129
|
+
*
|
|
3130
|
+
* @export
|
|
3131
|
+
* @interface NonSensitiveLinkStatusResponse
|
|
3132
|
+
*/
|
|
3133
|
+
export interface NonSensitiveLinkStatusResponse {
|
|
3134
|
+
/**
|
|
3135
|
+
*
|
|
3136
|
+
* @type {LinkStatusActionModel}
|
|
3137
|
+
* @memberof NonSensitiveLinkStatusResponse
|
|
3138
|
+
*/
|
|
3139
|
+
action?: LinkStatusActionModel;
|
|
3140
|
+
/**
|
|
3141
|
+
*
|
|
3142
|
+
* @type {string}
|
|
3143
|
+
* @memberof NonSensitiveLinkStatusResponse
|
|
3144
|
+
*/
|
|
3145
|
+
redirect_uri?: string;
|
|
3146
|
+
}
|
|
2701
3147
|
/**
|
|
2702
3148
|
*
|
|
2703
3149
|
* @export
|
|
@@ -2798,6 +3244,25 @@ export interface PaymentDetails2 {
|
|
|
2798
3244
|
*/
|
|
2799
3245
|
transaction_reference_id?: string;
|
|
2800
3246
|
}
|
|
3247
|
+
/**
|
|
3248
|
+
*
|
|
3249
|
+
* @export
|
|
3250
|
+
* @interface PaymentInfo
|
|
3251
|
+
*/
|
|
3252
|
+
export interface PaymentInfo {
|
|
3253
|
+
/**
|
|
3254
|
+
*
|
|
3255
|
+
* @type {Array<string>}
|
|
3256
|
+
* @memberof PaymentInfo
|
|
3257
|
+
*/
|
|
3258
|
+
currencies_supported?: Array<string>;
|
|
3259
|
+
/**
|
|
3260
|
+
*
|
|
3261
|
+
* @type {OtherInfo}
|
|
3262
|
+
* @memberof PaymentInfo
|
|
3263
|
+
*/
|
|
3264
|
+
other_info?: OtherInfo;
|
|
3265
|
+
}
|
|
2801
3266
|
/**
|
|
2802
3267
|
*
|
|
2803
3268
|
* @export
|
|
@@ -2923,6 +3388,88 @@ export declare const PaymentInstructionTypeEnum: {
|
|
|
2923
3388
|
readonly DebitAuthorization: "DEBIT_AUTHORIZATION";
|
|
2924
3389
|
};
|
|
2925
3390
|
export declare type PaymentInstructionTypeEnum = typeof PaymentInstructionTypeEnum[keyof typeof PaymentInstructionTypeEnum];
|
|
3391
|
+
/**
|
|
3392
|
+
*
|
|
3393
|
+
* @export
|
|
3394
|
+
* @interface PaymentResponse
|
|
3395
|
+
*/
|
|
3396
|
+
export interface PaymentResponse {
|
|
3397
|
+
/**
|
|
3398
|
+
* Finverse Payment ID
|
|
3399
|
+
* @type {string}
|
|
3400
|
+
* @memberof PaymentResponse
|
|
3401
|
+
*/
|
|
3402
|
+
payment_id?: string;
|
|
3403
|
+
/**
|
|
3404
|
+
* Amount to be paid, in currency\'s smallest unit or “minor unit”, as defined in ISO 4217. For example, HKD 100.01 is represented as amount = 10001 (minor unit = cents). For currencies without minor units (e.g. VND, JPY), the amount is represented as is, without modification. For example, VND 15101 is represented as amount = 15101.
|
|
3405
|
+
* @type {number}
|
|
3406
|
+
* @memberof PaymentResponse
|
|
3407
|
+
*/
|
|
3408
|
+
amount?: number;
|
|
3409
|
+
/**
|
|
3410
|
+
* The currency code as defined in ISO 4217.
|
|
3411
|
+
* @type {string}
|
|
3412
|
+
* @memberof PaymentResponse
|
|
3413
|
+
*/
|
|
3414
|
+
currency?: string;
|
|
3415
|
+
/**
|
|
3416
|
+
* Indicates whether this is a mandate-based payment or one-off direct payment to an account. Possible values - MANDATE, SINGLE
|
|
3417
|
+
* @type {string}
|
|
3418
|
+
* @memberof PaymentResponse
|
|
3419
|
+
*/
|
|
3420
|
+
type?: PaymentResponseTypeEnum;
|
|
3421
|
+
/**
|
|
3422
|
+
* Timestamp in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
3423
|
+
* @type {string}
|
|
3424
|
+
* @memberof PaymentResponse
|
|
3425
|
+
*/
|
|
3426
|
+
last_update?: string;
|
|
3427
|
+
/**
|
|
3428
|
+
* Possible values - CREATED, AUTHORIZED, SUBMITTED, EXECUTED, FAILED, REJECTED, CANCELLED.
|
|
3429
|
+
* @type {string}
|
|
3430
|
+
* @memberof PaymentResponse
|
|
3431
|
+
*/
|
|
3432
|
+
status?: PaymentResponseStatusEnum;
|
|
3433
|
+
/**
|
|
3434
|
+
*
|
|
3435
|
+
* @type {PaymentDetails2}
|
|
3436
|
+
* @memberof PaymentResponse
|
|
3437
|
+
*/
|
|
3438
|
+
payment_details?: PaymentDetails2;
|
|
3439
|
+
/**
|
|
3440
|
+
*
|
|
3441
|
+
* @type {MandateRecipient}
|
|
3442
|
+
* @memberof PaymentResponse
|
|
3443
|
+
*/
|
|
3444
|
+
recipient?: MandateRecipient;
|
|
3445
|
+
/**
|
|
3446
|
+
*
|
|
3447
|
+
* @type {GetMandateSender}
|
|
3448
|
+
* @memberof PaymentResponse
|
|
3449
|
+
*/
|
|
3450
|
+
sender?: GetMandateSender;
|
|
3451
|
+
/**
|
|
3452
|
+
*
|
|
3453
|
+
* @type {FvErrorModel}
|
|
3454
|
+
* @memberof PaymentResponse
|
|
3455
|
+
*/
|
|
3456
|
+
error?: FvErrorModel;
|
|
3457
|
+
}
|
|
3458
|
+
export declare const PaymentResponseTypeEnum: {
|
|
3459
|
+
readonly Mandate: "MANDATE";
|
|
3460
|
+
readonly Single: "SINGLE";
|
|
3461
|
+
};
|
|
3462
|
+
export declare type PaymentResponseTypeEnum = typeof PaymentResponseTypeEnum[keyof typeof PaymentResponseTypeEnum];
|
|
3463
|
+
export declare const PaymentResponseStatusEnum: {
|
|
3464
|
+
readonly AuthorizationRequired: "AUTHORIZATION_REQUIRED";
|
|
3465
|
+
readonly Authorizing: "AUTHORIZING";
|
|
3466
|
+
readonly Processing: "PROCESSING";
|
|
3467
|
+
readonly Submitted: "SUBMITTED";
|
|
3468
|
+
readonly Executed: "EXECUTED";
|
|
3469
|
+
readonly Failed: "FAILED";
|
|
3470
|
+
readonly Revoked: "REVOKED";
|
|
3471
|
+
};
|
|
3472
|
+
export declare type PaymentResponseStatusEnum = typeof PaymentResponseStatusEnum[keyof typeof PaymentResponseStatusEnum];
|
|
2926
3473
|
/**
|
|
2927
3474
|
*
|
|
2928
3475
|
* @export
|
|
@@ -3112,6 +3659,32 @@ export interface RelinkRequest {
|
|
|
3112
3659
|
*/
|
|
3113
3660
|
consent?: boolean | null;
|
|
3114
3661
|
}
|
|
3662
|
+
/**
|
|
3663
|
+
*
|
|
3664
|
+
* @export
|
|
3665
|
+
* @interface SetMandateInstitutionRequest
|
|
3666
|
+
*/
|
|
3667
|
+
export interface SetMandateInstitutionRequest {
|
|
3668
|
+
/**
|
|
3669
|
+
* Finverse Institution ID
|
|
3670
|
+
* @type {string}
|
|
3671
|
+
* @memberof SetMandateInstitutionRequest
|
|
3672
|
+
*/
|
|
3673
|
+
institution_id: string;
|
|
3674
|
+
}
|
|
3675
|
+
/**
|
|
3676
|
+
*
|
|
3677
|
+
* @export
|
|
3678
|
+
* @interface SetMandateInstitutionResponse
|
|
3679
|
+
*/
|
|
3680
|
+
export interface SetMandateInstitutionResponse {
|
|
3681
|
+
/**
|
|
3682
|
+
* Finverse Mandate ID
|
|
3683
|
+
* @type {string}
|
|
3684
|
+
* @memberof SetMandateInstitutionResponse
|
|
3685
|
+
*/
|
|
3686
|
+
mandate_id: string;
|
|
3687
|
+
}
|
|
3115
3688
|
/**
|
|
3116
3689
|
*
|
|
3117
3690
|
* @export
|
|
@@ -3211,18 +3784,6 @@ export interface SubmitAuthChecklistRequest {
|
|
|
3211
3784
|
* @memberof SubmitAuthChecklistRequest
|
|
3212
3785
|
*/
|
|
3213
3786
|
key_id: string;
|
|
3214
|
-
/**
|
|
3215
|
-
* Finverse Institution ID
|
|
3216
|
-
* @type {string}
|
|
3217
|
-
* @memberof SubmitAuthChecklistRequest
|
|
3218
|
-
*/
|
|
3219
|
-
institution_id: string;
|
|
3220
|
-
/**
|
|
3221
|
-
* Type of account held by the Sender at the Institution. Possible values are INDIVIDUAL, BUSINESS
|
|
3222
|
-
* @type {string}
|
|
3223
|
-
* @memberof SubmitAuthChecklistRequest
|
|
3224
|
-
*/
|
|
3225
|
-
sender_type?: SubmitAuthChecklistRequestSenderTypeEnum;
|
|
3226
3787
|
/**
|
|
3227
3788
|
* The encrypted envelope key
|
|
3228
3789
|
* @type {string}
|
|
@@ -3248,11 +3809,6 @@ export interface SubmitAuthChecklistRequest {
|
|
|
3248
3809
|
*/
|
|
3249
3810
|
ciphertext: string;
|
|
3250
3811
|
}
|
|
3251
|
-
export declare const SubmitAuthChecklistRequestSenderTypeEnum: {
|
|
3252
|
-
readonly Individual: "INDIVIDUAL";
|
|
3253
|
-
readonly Business: "BUSINESS";
|
|
3254
|
-
};
|
|
3255
|
-
export declare type SubmitAuthChecklistRequestSenderTypeEnum = typeof SubmitAuthChecklistRequestSenderTypeEnum[keyof typeof SubmitAuthChecklistRequestSenderTypeEnum];
|
|
3256
3812
|
/**
|
|
3257
3813
|
*
|
|
3258
3814
|
* @export
|
|
@@ -3291,6 +3847,31 @@ export declare const SubmitAuthChecklistResponseMandateStatusEnum: {
|
|
|
3291
3847
|
readonly Error: "ERROR";
|
|
3292
3848
|
};
|
|
3293
3849
|
export declare type SubmitAuthChecklistResponseMandateStatusEnum = typeof SubmitAuthChecklistResponseMandateStatusEnum[keyof typeof SubmitAuthChecklistResponseMandateStatusEnum];
|
|
3850
|
+
/**
|
|
3851
|
+
*
|
|
3852
|
+
* @export
|
|
3853
|
+
* @interface SwaggerErrBodyModel
|
|
3854
|
+
*/
|
|
3855
|
+
export interface SwaggerErrBodyModel {
|
|
3856
|
+
/**
|
|
3857
|
+
*
|
|
3858
|
+
* @type {number}
|
|
3859
|
+
* @memberof SwaggerErrBodyModel
|
|
3860
|
+
*/
|
|
3861
|
+
code?: number;
|
|
3862
|
+
/**
|
|
3863
|
+
*
|
|
3864
|
+
* @type {string}
|
|
3865
|
+
* @memberof SwaggerErrBodyModel
|
|
3866
|
+
*/
|
|
3867
|
+
message?: string;
|
|
3868
|
+
/**
|
|
3869
|
+
*
|
|
3870
|
+
* @type {FvErrorModel}
|
|
3871
|
+
* @memberof SwaggerErrBodyModel
|
|
3872
|
+
*/
|
|
3873
|
+
error?: FvErrorModel;
|
|
3874
|
+
}
|
|
3294
3875
|
/**
|
|
3295
3876
|
*
|
|
3296
3877
|
* @export
|
|
@@ -3340,6 +3921,12 @@ export interface TokenResponse {
|
|
|
3340
3921
|
* @memberof TokenResponse
|
|
3341
3922
|
*/
|
|
3342
3923
|
expires_in: number;
|
|
3924
|
+
/**
|
|
3925
|
+
*
|
|
3926
|
+
* @type {string}
|
|
3927
|
+
* @memberof TokenResponse
|
|
3928
|
+
*/
|
|
3929
|
+
issued_at: string;
|
|
3343
3930
|
}
|
|
3344
3931
|
/**
|
|
3345
3932
|
*
|
|
@@ -3372,13 +3959,13 @@ export interface Transaction {
|
|
|
3372
3959
|
*/
|
|
3373
3960
|
transaction_type?: string;
|
|
3374
3961
|
/**
|
|
3375
|
-
*
|
|
3962
|
+
* (Deprecated)
|
|
3376
3963
|
* @type {string}
|
|
3377
3964
|
* @memberof Transaction
|
|
3378
3965
|
*/
|
|
3379
3966
|
category?: string;
|
|
3380
3967
|
/**
|
|
3381
|
-
*
|
|
3968
|
+
* (Deprecated)
|
|
3382
3969
|
* @type {string}
|
|
3383
3970
|
* @memberof Transaction
|
|
3384
3971
|
*/
|
|
@@ -3432,7 +4019,7 @@ export interface Transaction {
|
|
|
3432
4019
|
*/
|
|
3433
4020
|
amount?: CurrencyAmount;
|
|
3434
4021
|
/**
|
|
3435
|
-
*
|
|
4022
|
+
* (Deprecated)
|
|
3436
4023
|
* @type {object}
|
|
3437
4024
|
* @memberof Transaction
|
|
3438
4025
|
*/
|
|
@@ -3449,6 +4036,18 @@ export interface Transaction {
|
|
|
3449
4036
|
* @memberof Transaction
|
|
3450
4037
|
*/
|
|
3451
4038
|
updated_at?: string;
|
|
4039
|
+
/**
|
|
4040
|
+
* Array of category labels
|
|
4041
|
+
* @type {Array<string>}
|
|
4042
|
+
* @memberof Transaction
|
|
4043
|
+
*/
|
|
4044
|
+
categories?: Array<string>;
|
|
4045
|
+
/**
|
|
4046
|
+
*
|
|
4047
|
+
* @type {CategoryDetails}
|
|
4048
|
+
* @memberof Transaction
|
|
4049
|
+
*/
|
|
4050
|
+
category_details?: CategoryDetails;
|
|
3452
4051
|
}
|
|
3453
4052
|
/**
|
|
3454
4053
|
*
|
|
@@ -3457,7 +4056,7 @@ export interface Transaction {
|
|
|
3457
4056
|
*/
|
|
3458
4057
|
export interface TransactionLimits {
|
|
3459
4058
|
/**
|
|
3460
|
-
* Maximum amount of money that can be paid during the reference period (across any number of transactions). Expressed in currency
|
|
4059
|
+
* Maximum amount of money that can be paid during the reference period (across any number of transactions). Expressed in currency\'s smallest unit or “minor unit”, as defined in ISO 4217.
|
|
3461
4060
|
* @type {number}
|
|
3462
4061
|
* @memberof TransactionLimits
|
|
3463
4062
|
*/
|
|
@@ -3469,7 +4068,7 @@ export interface TransactionLimits {
|
|
|
3469
4068
|
*/
|
|
3470
4069
|
max_period_count?: number;
|
|
3471
4070
|
/**
|
|
3472
|
-
* The maximum amount of money that can be transferred in a single transaction under this mandate. Expressed in currency
|
|
4071
|
+
* The maximum amount of money that can be transferred in a single transaction under this mandate. Expressed in currency\'s smallest unit or “minor unit”, as defined in ISO 4217.
|
|
3473
4072
|
* @type {number}
|
|
3474
4073
|
* @memberof TransactionLimits
|
|
3475
4074
|
*/
|
|
@@ -3479,7 +4078,7 @@ export interface TransactionLimits {
|
|
|
3479
4078
|
* @type {string}
|
|
3480
4079
|
* @memberof TransactionLimits
|
|
3481
4080
|
*/
|
|
3482
|
-
period
|
|
4081
|
+
period?: TransactionLimitsPeriodEnum;
|
|
3483
4082
|
}
|
|
3484
4083
|
export declare const TransactionLimitsPeriodEnum: {
|
|
3485
4084
|
readonly Daily: "DAILY";
|
|
@@ -3489,11 +4088,133 @@ export declare const TransactionLimitsPeriodEnum: {
|
|
|
3489
4088
|
readonly Yearly: "YEARLY";
|
|
3490
4089
|
};
|
|
3491
4090
|
export declare type TransactionLimitsPeriodEnum = typeof TransactionLimitsPeriodEnum[keyof typeof TransactionLimitsPeriodEnum];
|
|
4091
|
+
/**
|
|
4092
|
+
*
|
|
4093
|
+
* @export
|
|
4094
|
+
* @interface UserButton
|
|
4095
|
+
*/
|
|
4096
|
+
export interface UserButton {
|
|
4097
|
+
/**
|
|
4098
|
+
* The name of the button.
|
|
4099
|
+
* @type {string}
|
|
4100
|
+
* @memberof UserButton
|
|
4101
|
+
*/
|
|
4102
|
+
name: string;
|
|
4103
|
+
/**
|
|
4104
|
+
* The text that will be displayed for this button
|
|
4105
|
+
* @type {string}
|
|
4106
|
+
* @memberof UserButton
|
|
4107
|
+
*/
|
|
4108
|
+
value: string;
|
|
4109
|
+
/**
|
|
4110
|
+
* The type of button. Currently it can only be SUBMIT
|
|
4111
|
+
* @type {string}
|
|
4112
|
+
* @memberof UserButton
|
|
4113
|
+
*/
|
|
4114
|
+
type: string;
|
|
4115
|
+
}
|
|
4116
|
+
/**
|
|
4117
|
+
*
|
|
4118
|
+
* @export
|
|
4119
|
+
* @interface UserField
|
|
4120
|
+
*/
|
|
4121
|
+
export interface UserField {
|
|
4122
|
+
/**
|
|
4123
|
+
* The name of the field. This will be used as the key when submitting response.
|
|
4124
|
+
* @type {string}
|
|
4125
|
+
* @memberof UserField
|
|
4126
|
+
*/
|
|
4127
|
+
name: string;
|
|
4128
|
+
/**
|
|
4129
|
+
* The label for this field.
|
|
4130
|
+
* @type {string}
|
|
4131
|
+
* @memberof UserField
|
|
4132
|
+
*/
|
|
4133
|
+
label?: string;
|
|
4134
|
+
/**
|
|
4135
|
+
* The placeholder for this field.
|
|
4136
|
+
* @type {string}
|
|
4137
|
+
* @memberof UserField
|
|
4138
|
+
*/
|
|
4139
|
+
placeholder?: string;
|
|
4140
|
+
/**
|
|
4141
|
+
* The type of field. Currently it can only be SELECT, INPUT or PASSWORD
|
|
4142
|
+
* @type {string}
|
|
4143
|
+
* @memberof UserField
|
|
4144
|
+
*/
|
|
4145
|
+
type: string;
|
|
4146
|
+
/**
|
|
4147
|
+
* This is only applicable when the field type is SELECT
|
|
4148
|
+
* @type {Array<UserFieldOption>}
|
|
4149
|
+
* @memberof UserField
|
|
4150
|
+
*/
|
|
4151
|
+
options?: Array<UserFieldOption>;
|
|
4152
|
+
}
|
|
4153
|
+
/**
|
|
4154
|
+
*
|
|
4155
|
+
* @export
|
|
4156
|
+
* @interface UserFieldOption
|
|
4157
|
+
*/
|
|
4158
|
+
export interface UserFieldOption {
|
|
4159
|
+
/**
|
|
4160
|
+
* The value displayed in the select element.
|
|
4161
|
+
* @type {string}
|
|
4162
|
+
* @memberof UserFieldOption
|
|
4163
|
+
*/
|
|
4164
|
+
label: string;
|
|
4165
|
+
/**
|
|
4166
|
+
* The value that will be submitted if this option was selected.
|
|
4167
|
+
* @type {string}
|
|
4168
|
+
* @memberof UserFieldOption
|
|
4169
|
+
*/
|
|
4170
|
+
value: string;
|
|
4171
|
+
}
|
|
4172
|
+
/**
|
|
4173
|
+
*
|
|
4174
|
+
* @export
|
|
4175
|
+
* @interface UserMessage
|
|
4176
|
+
*/
|
|
4177
|
+
export interface UserMessage {
|
|
4178
|
+
/**
|
|
4179
|
+
* The name of the message
|
|
4180
|
+
* @type {string}
|
|
4181
|
+
* @memberof UserMessage
|
|
4182
|
+
*/
|
|
4183
|
+
name: string;
|
|
4184
|
+
/**
|
|
4185
|
+
* The type of the message. This will help how the UI renders this text.
|
|
4186
|
+
* @type {string}
|
|
4187
|
+
* @memberof UserMessage
|
|
4188
|
+
*/
|
|
4189
|
+
type: string;
|
|
4190
|
+
/**
|
|
4191
|
+
* The actual text value.
|
|
4192
|
+
* @type {string}
|
|
4193
|
+
* @memberof UserMessage
|
|
4194
|
+
*/
|
|
4195
|
+
value: string;
|
|
4196
|
+
}
|
|
3492
4197
|
/**
|
|
3493
4198
|
* CustomerApi - axios parameter creator
|
|
3494
4199
|
* @export
|
|
3495
4200
|
*/
|
|
3496
4201
|
export declare const CustomerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4202
|
+
/**
|
|
4203
|
+
* CREATE Mandate
|
|
4204
|
+
* @param {CreateMandateRequest} createMandateRequest request body for creating mandate
|
|
4205
|
+
* @param {string} [idempotencyKey] A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
|
|
4206
|
+
* @param {*} [options] Override http request option.
|
|
4207
|
+
* @throws {RequiredError}
|
|
4208
|
+
*/
|
|
4209
|
+
createMandate: (createMandateRequest: CreateMandateRequest, idempotencyKey?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4210
|
+
/**
|
|
4211
|
+
* Create new Payment
|
|
4212
|
+
* @param {CreatePaymentRequest} createPaymentRequest request body for creating payment
|
|
4213
|
+
* @param {string} [idempotencyKey] A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
|
|
4214
|
+
* @param {*} [options] Override http request option.
|
|
4215
|
+
* @throws {RequiredError}
|
|
4216
|
+
*/
|
|
4217
|
+
createPayment: (createPaymentRequest: CreatePaymentRequest, idempotencyKey?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3497
4218
|
/**
|
|
3498
4219
|
* Create a new payment instruction to be used when linking to perform new payment
|
|
3499
4220
|
* @param {CustomerPaymentInstruction} paymentInstruction Request body for starting a new Link
|
|
@@ -3529,6 +4250,33 @@ export declare const CustomerApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3529
4250
|
* @throws {RequiredError}
|
|
3530
4251
|
*/
|
|
3531
4252
|
getLoginIdentityHistory: (loginIdentityId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4253
|
+
/**
|
|
4254
|
+
* Get Mandate details by mandate_id
|
|
4255
|
+
* @param {string} mandateId mandate id
|
|
4256
|
+
* @param {*} [options] Override http request option.
|
|
4257
|
+
* @throws {RequiredError}
|
|
4258
|
+
*/
|
|
4259
|
+
getMandate: (mandateId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4260
|
+
/**
|
|
4261
|
+
* Get Mandate Authorization by mandate id
|
|
4262
|
+
* @param {*} [options] Override http request option.
|
|
4263
|
+
* @throws {RequiredError}
|
|
4264
|
+
*/
|
|
4265
|
+
getMandateAuth: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4266
|
+
/**
|
|
4267
|
+
* Get link to launch FV Link UI in mandate authorization mode
|
|
4268
|
+
* @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
|
|
4269
|
+
* @param {*} [options] Override http request option.
|
|
4270
|
+
* @throws {RequiredError}
|
|
4271
|
+
*/
|
|
4272
|
+
getMandateAuthLink: (getMandateAuthLinkRequest: GetMandateAuthLinkRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4273
|
+
/**
|
|
4274
|
+
* Get Payment details by payment_id
|
|
4275
|
+
* @param {string} paymentId payment id
|
|
4276
|
+
* @param {*} [options] Override http request option.
|
|
4277
|
+
* @throws {RequiredError}
|
|
4278
|
+
*/
|
|
4279
|
+
getPayment: (paymentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3532
4280
|
/**
|
|
3533
4281
|
* Get payment instructions by payment_instruction_id
|
|
3534
4282
|
* @param {string} paymentInstructionId The id of a payment instruction
|
|
@@ -3538,14 +4286,14 @@ export declare const CustomerApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3538
4286
|
getPaymentInstruction: (paymentInstructionId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3539
4287
|
/**
|
|
3540
4288
|
* Get a list of institutions
|
|
3541
|
-
* @param {string} [country] The country the institution belongs to
|
|
4289
|
+
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
3542
4290
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3543
4291
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3544
|
-
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
4292
|
+
* @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
|
|
3545
4293
|
* @param {*} [options] Override http request option.
|
|
3546
4294
|
* @throws {RequiredError}
|
|
3547
4295
|
*/
|
|
3548
|
-
listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4296
|
+
listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3549
4297
|
/**
|
|
3550
4298
|
* Refresh an access token
|
|
3551
4299
|
* @param {RefreshRequest} refreshRequest The refresh token
|
|
@@ -3553,12 +4301,42 @@ export declare const CustomerApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3553
4301
|
* @throws {RequiredError}
|
|
3554
4302
|
*/
|
|
3555
4303
|
refreshToken: (refreshRequest: RefreshRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4304
|
+
/**
|
|
4305
|
+
* Update InstitutionID and SenderType for Mandate
|
|
4306
|
+
* @param {SetMandateInstitutionRequest} updateRequest request body for updating mandate institutionId and senderType
|
|
4307
|
+
* @param {*} [options] Override http request option.
|
|
4308
|
+
* @throws {RequiredError}
|
|
4309
|
+
*/
|
|
4310
|
+
setMandateInstitution: (updateRequest: SetMandateInstitutionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4311
|
+
/**
|
|
4312
|
+
* Submit authorization checklist items
|
|
4313
|
+
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
4314
|
+
* @param {*} [options] Override http request option.
|
|
4315
|
+
* @throws {RequiredError}
|
|
4316
|
+
*/
|
|
4317
|
+
submitAuthChecklist: (submitAuthChecklistRequest: SubmitAuthChecklistRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3556
4318
|
};
|
|
3557
4319
|
/**
|
|
3558
4320
|
* CustomerApi - functional programming interface
|
|
3559
4321
|
* @export
|
|
3560
4322
|
*/
|
|
3561
4323
|
export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
4324
|
+
/**
|
|
4325
|
+
* CREATE Mandate
|
|
4326
|
+
* @param {CreateMandateRequest} createMandateRequest request body for creating mandate
|
|
4327
|
+
* @param {string} [idempotencyKey] A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
|
|
4328
|
+
* @param {*} [options] Override http request option.
|
|
4329
|
+
* @throws {RequiredError}
|
|
4330
|
+
*/
|
|
4331
|
+
createMandate(createMandateRequest: CreateMandateRequest, idempotencyKey?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateMandateResponse>>;
|
|
4332
|
+
/**
|
|
4333
|
+
* Create new Payment
|
|
4334
|
+
* @param {CreatePaymentRequest} createPaymentRequest request body for creating payment
|
|
4335
|
+
* @param {string} [idempotencyKey] A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
|
|
4336
|
+
* @param {*} [options] Override http request option.
|
|
4337
|
+
* @throws {RequiredError}
|
|
4338
|
+
*/
|
|
4339
|
+
createPayment(createPaymentRequest: CreatePaymentRequest, idempotencyKey?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentResponse>>;
|
|
3562
4340
|
/**
|
|
3563
4341
|
* Create a new payment instruction to be used when linking to perform new payment
|
|
3564
4342
|
* @param {CustomerPaymentInstruction} paymentInstruction Request body for starting a new Link
|
|
@@ -3594,6 +4372,33 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
|
3594
4372
|
* @throws {RequiredError}
|
|
3595
4373
|
*/
|
|
3596
4374
|
getLoginIdentityHistory(loginIdentityId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetLoginIdentityHistoryResponse>>;
|
|
4375
|
+
/**
|
|
4376
|
+
* Get Mandate details by mandate_id
|
|
4377
|
+
* @param {string} mandateId mandate id
|
|
4378
|
+
* @param {*} [options] Override http request option.
|
|
4379
|
+
* @throws {RequiredError}
|
|
4380
|
+
*/
|
|
4381
|
+
getMandate(mandateId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMandateResponse>>;
|
|
4382
|
+
/**
|
|
4383
|
+
* Get Mandate Authorization by mandate id
|
|
4384
|
+
* @param {*} [options] Override http request option.
|
|
4385
|
+
* @throws {RequiredError}
|
|
4386
|
+
*/
|
|
4387
|
+
getMandateAuth(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMandateAuthResponse>>;
|
|
4388
|
+
/**
|
|
4389
|
+
* Get link to launch FV Link UI in mandate authorization mode
|
|
4390
|
+
* @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
|
|
4391
|
+
* @param {*} [options] Override http request option.
|
|
4392
|
+
* @throws {RequiredError}
|
|
4393
|
+
*/
|
|
4394
|
+
getMandateAuthLink(getMandateAuthLinkRequest: GetMandateAuthLinkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMandateAuthLinkResponse>>;
|
|
4395
|
+
/**
|
|
4396
|
+
* Get Payment details by payment_id
|
|
4397
|
+
* @param {string} paymentId payment id
|
|
4398
|
+
* @param {*} [options] Override http request option.
|
|
4399
|
+
* @throws {RequiredError}
|
|
4400
|
+
*/
|
|
4401
|
+
getPayment(paymentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentResponse>>;
|
|
3597
4402
|
/**
|
|
3598
4403
|
* Get payment instructions by payment_instruction_id
|
|
3599
4404
|
* @param {string} paymentInstructionId The id of a payment instruction
|
|
@@ -3603,14 +4408,14 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
|
3603
4408
|
getPaymentInstruction(paymentInstructionId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPaymentInstructionsResponse>>;
|
|
3604
4409
|
/**
|
|
3605
4410
|
* Get a list of institutions
|
|
3606
|
-
* @param {string} [country] The country the institution belongs to
|
|
4411
|
+
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
3607
4412
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3608
4413
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3609
|
-
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
4414
|
+
* @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
|
|
3610
4415
|
* @param {*} [options] Override http request option.
|
|
3611
4416
|
* @throws {RequiredError}
|
|
3612
4417
|
*/
|
|
3613
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
|
|
4418
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
|
|
3614
4419
|
/**
|
|
3615
4420
|
* Refresh an access token
|
|
3616
4421
|
* @param {RefreshRequest} refreshRequest The refresh token
|
|
@@ -3618,12 +4423,42 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
|
3618
4423
|
* @throws {RequiredError}
|
|
3619
4424
|
*/
|
|
3620
4425
|
refreshToken(refreshRequest: RefreshRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessTokenResponse>>;
|
|
4426
|
+
/**
|
|
4427
|
+
* Update InstitutionID and SenderType for Mandate
|
|
4428
|
+
* @param {SetMandateInstitutionRequest} updateRequest request body for updating mandate institutionId and senderType
|
|
4429
|
+
* @param {*} [options] Override http request option.
|
|
4430
|
+
* @throws {RequiredError}
|
|
4431
|
+
*/
|
|
4432
|
+
setMandateInstitution(updateRequest: SetMandateInstitutionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SetMandateInstitutionResponse>>;
|
|
4433
|
+
/**
|
|
4434
|
+
* Submit authorization checklist items
|
|
4435
|
+
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
4436
|
+
* @param {*} [options] Override http request option.
|
|
4437
|
+
* @throws {RequiredError}
|
|
4438
|
+
*/
|
|
4439
|
+
submitAuthChecklist(submitAuthChecklistRequest: SubmitAuthChecklistRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SubmitAuthChecklistResponse>>;
|
|
3621
4440
|
};
|
|
3622
4441
|
/**
|
|
3623
4442
|
* CustomerApi - factory interface
|
|
3624
4443
|
* @export
|
|
3625
4444
|
*/
|
|
3626
4445
|
export declare const CustomerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4446
|
+
/**
|
|
4447
|
+
* CREATE Mandate
|
|
4448
|
+
* @param {CreateMandateRequest} createMandateRequest request body for creating mandate
|
|
4449
|
+
* @param {string} [idempotencyKey] A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
|
|
4450
|
+
* @param {*} [options] Override http request option.
|
|
4451
|
+
* @throws {RequiredError}
|
|
4452
|
+
*/
|
|
4453
|
+
createMandate(createMandateRequest: CreateMandateRequest, idempotencyKey?: string, options?: any): AxiosPromise<CreateMandateResponse>;
|
|
4454
|
+
/**
|
|
4455
|
+
* Create new Payment
|
|
4456
|
+
* @param {CreatePaymentRequest} createPaymentRequest request body for creating payment
|
|
4457
|
+
* @param {string} [idempotencyKey] A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
|
|
4458
|
+
* @param {*} [options] Override http request option.
|
|
4459
|
+
* @throws {RequiredError}
|
|
4460
|
+
*/
|
|
4461
|
+
createPayment(createPaymentRequest: CreatePaymentRequest, idempotencyKey?: string, options?: any): AxiosPromise<PaymentResponse>;
|
|
3627
4462
|
/**
|
|
3628
4463
|
* Create a new payment instruction to be used when linking to perform new payment
|
|
3629
4464
|
* @param {CustomerPaymentInstruction} paymentInstruction Request body for starting a new Link
|
|
@@ -3659,6 +4494,33 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
3659
4494
|
* @throws {RequiredError}
|
|
3660
4495
|
*/
|
|
3661
4496
|
getLoginIdentityHistory(loginIdentityId: string, options?: any): AxiosPromise<GetLoginIdentityHistoryResponse>;
|
|
4497
|
+
/**
|
|
4498
|
+
* Get Mandate details by mandate_id
|
|
4499
|
+
* @param {string} mandateId mandate id
|
|
4500
|
+
* @param {*} [options] Override http request option.
|
|
4501
|
+
* @throws {RequiredError}
|
|
4502
|
+
*/
|
|
4503
|
+
getMandate(mandateId: string, options?: any): AxiosPromise<GetMandateResponse>;
|
|
4504
|
+
/**
|
|
4505
|
+
* Get Mandate Authorization by mandate id
|
|
4506
|
+
* @param {*} [options] Override http request option.
|
|
4507
|
+
* @throws {RequiredError}
|
|
4508
|
+
*/
|
|
4509
|
+
getMandateAuth(options?: any): AxiosPromise<GetMandateAuthResponse>;
|
|
4510
|
+
/**
|
|
4511
|
+
* Get link to launch FV Link UI in mandate authorization mode
|
|
4512
|
+
* @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
|
|
4513
|
+
* @param {*} [options] Override http request option.
|
|
4514
|
+
* @throws {RequiredError}
|
|
4515
|
+
*/
|
|
4516
|
+
getMandateAuthLink(getMandateAuthLinkRequest: GetMandateAuthLinkRequest, options?: any): AxiosPromise<GetMandateAuthLinkResponse>;
|
|
4517
|
+
/**
|
|
4518
|
+
* Get Payment details by payment_id
|
|
4519
|
+
* @param {string} paymentId payment id
|
|
4520
|
+
* @param {*} [options] Override http request option.
|
|
4521
|
+
* @throws {RequiredError}
|
|
4522
|
+
*/
|
|
4523
|
+
getPayment(paymentId: string, options?: any): AxiosPromise<PaymentResponse>;
|
|
3662
4524
|
/**
|
|
3663
4525
|
* Get payment instructions by payment_instruction_id
|
|
3664
4526
|
* @param {string} paymentInstructionId The id of a payment instruction
|
|
@@ -3668,14 +4530,14 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
3668
4530
|
getPaymentInstruction(paymentInstructionId: string, options?: any): AxiosPromise<GetPaymentInstructionsResponse>;
|
|
3669
4531
|
/**
|
|
3670
4532
|
* Get a list of institutions
|
|
3671
|
-
* @param {string} [country] The country the institution belongs to
|
|
4533
|
+
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
3672
4534
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3673
4535
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3674
|
-
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
4536
|
+
* @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
|
|
3675
4537
|
* @param {*} [options] Override http request option.
|
|
3676
4538
|
* @throws {RequiredError}
|
|
3677
4539
|
*/
|
|
3678
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: any): AxiosPromise<Array<Institution>>;
|
|
4540
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: any): AxiosPromise<Array<Institution>>;
|
|
3679
4541
|
/**
|
|
3680
4542
|
* Refresh an access token
|
|
3681
4543
|
* @param {RefreshRequest} refreshRequest The refresh token
|
|
@@ -3683,6 +4545,20 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
3683
4545
|
* @throws {RequiredError}
|
|
3684
4546
|
*/
|
|
3685
4547
|
refreshToken(refreshRequest: RefreshRequest, options?: any): AxiosPromise<AccessTokenResponse>;
|
|
4548
|
+
/**
|
|
4549
|
+
* Update InstitutionID and SenderType for Mandate
|
|
4550
|
+
* @param {SetMandateInstitutionRequest} updateRequest request body for updating mandate institutionId and senderType
|
|
4551
|
+
* @param {*} [options] Override http request option.
|
|
4552
|
+
* @throws {RequiredError}
|
|
4553
|
+
*/
|
|
4554
|
+
setMandateInstitution(updateRequest: SetMandateInstitutionRequest, options?: any): AxiosPromise<SetMandateInstitutionResponse>;
|
|
4555
|
+
/**
|
|
4556
|
+
* Submit authorization checklist items
|
|
4557
|
+
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
4558
|
+
* @param {*} [options] Override http request option.
|
|
4559
|
+
* @throws {RequiredError}
|
|
4560
|
+
*/
|
|
4561
|
+
submitAuthChecklist(submitAuthChecklistRequest: SubmitAuthChecklistRequest, options?: any): AxiosPromise<SubmitAuthChecklistResponse>;
|
|
3686
4562
|
};
|
|
3687
4563
|
/**
|
|
3688
4564
|
* CustomerApi - interface
|
|
@@ -3690,6 +4566,24 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
3690
4566
|
* @interface CustomerApi
|
|
3691
4567
|
*/
|
|
3692
4568
|
export interface CustomerApiInterface {
|
|
4569
|
+
/**
|
|
4570
|
+
* CREATE Mandate
|
|
4571
|
+
* @param {CreateMandateRequest} createMandateRequest request body for creating mandate
|
|
4572
|
+
* @param {string} [idempotencyKey] A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
|
|
4573
|
+
* @param {*} [options] Override http request option.
|
|
4574
|
+
* @throws {RequiredError}
|
|
4575
|
+
* @memberof CustomerApiInterface
|
|
4576
|
+
*/
|
|
4577
|
+
createMandate(createMandateRequest: CreateMandateRequest, idempotencyKey?: string, options?: AxiosRequestConfig): AxiosPromise<CreateMandateResponse>;
|
|
4578
|
+
/**
|
|
4579
|
+
* Create new Payment
|
|
4580
|
+
* @param {CreatePaymentRequest} createPaymentRequest request body for creating payment
|
|
4581
|
+
* @param {string} [idempotencyKey] A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
|
|
4582
|
+
* @param {*} [options] Override http request option.
|
|
4583
|
+
* @throws {RequiredError}
|
|
4584
|
+
* @memberof CustomerApiInterface
|
|
4585
|
+
*/
|
|
4586
|
+
createPayment(createPaymentRequest: CreatePaymentRequest, idempotencyKey?: string, options?: AxiosRequestConfig): AxiosPromise<PaymentResponse>;
|
|
3693
4587
|
/**
|
|
3694
4588
|
* Create a new payment instruction to be used when linking to perform new payment
|
|
3695
4589
|
* @param {CustomerPaymentInstruction} paymentInstruction Request body for starting a new Link
|
|
@@ -3730,6 +4624,37 @@ export interface CustomerApiInterface {
|
|
|
3730
4624
|
* @memberof CustomerApiInterface
|
|
3731
4625
|
*/
|
|
3732
4626
|
getLoginIdentityHistory(loginIdentityId: string, options?: AxiosRequestConfig): AxiosPromise<GetLoginIdentityHistoryResponse>;
|
|
4627
|
+
/**
|
|
4628
|
+
* Get Mandate details by mandate_id
|
|
4629
|
+
* @param {string} mandateId mandate id
|
|
4630
|
+
* @param {*} [options] Override http request option.
|
|
4631
|
+
* @throws {RequiredError}
|
|
4632
|
+
* @memberof CustomerApiInterface
|
|
4633
|
+
*/
|
|
4634
|
+
getMandate(mandateId: string, options?: AxiosRequestConfig): AxiosPromise<GetMandateResponse>;
|
|
4635
|
+
/**
|
|
4636
|
+
* Get Mandate Authorization by mandate id
|
|
4637
|
+
* @param {*} [options] Override http request option.
|
|
4638
|
+
* @throws {RequiredError}
|
|
4639
|
+
* @memberof CustomerApiInterface
|
|
4640
|
+
*/
|
|
4641
|
+
getMandateAuth(options?: AxiosRequestConfig): AxiosPromise<GetMandateAuthResponse>;
|
|
4642
|
+
/**
|
|
4643
|
+
* Get link to launch FV Link UI in mandate authorization mode
|
|
4644
|
+
* @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
|
|
4645
|
+
* @param {*} [options] Override http request option.
|
|
4646
|
+
* @throws {RequiredError}
|
|
4647
|
+
* @memberof CustomerApiInterface
|
|
4648
|
+
*/
|
|
4649
|
+
getMandateAuthLink(getMandateAuthLinkRequest: GetMandateAuthLinkRequest, options?: AxiosRequestConfig): AxiosPromise<GetMandateAuthLinkResponse>;
|
|
4650
|
+
/**
|
|
4651
|
+
* Get Payment details by payment_id
|
|
4652
|
+
* @param {string} paymentId payment id
|
|
4653
|
+
* @param {*} [options] Override http request option.
|
|
4654
|
+
* @throws {RequiredError}
|
|
4655
|
+
* @memberof CustomerApiInterface
|
|
4656
|
+
*/
|
|
4657
|
+
getPayment(paymentId: string, options?: AxiosRequestConfig): AxiosPromise<PaymentResponse>;
|
|
3733
4658
|
/**
|
|
3734
4659
|
* Get payment instructions by payment_instruction_id
|
|
3735
4660
|
* @param {string} paymentInstructionId The id of a payment instruction
|
|
@@ -3740,15 +4665,15 @@ export interface CustomerApiInterface {
|
|
|
3740
4665
|
getPaymentInstruction(paymentInstructionId: string, options?: AxiosRequestConfig): AxiosPromise<GetPaymentInstructionsResponse>;
|
|
3741
4666
|
/**
|
|
3742
4667
|
* Get a list of institutions
|
|
3743
|
-
* @param {string} [country] The country the institution belongs to
|
|
4668
|
+
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
3744
4669
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3745
4670
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3746
|
-
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
4671
|
+
* @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
|
|
3747
4672
|
* @param {*} [options] Override http request option.
|
|
3748
4673
|
* @throws {RequiredError}
|
|
3749
4674
|
* @memberof CustomerApiInterface
|
|
3750
4675
|
*/
|
|
3751
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
|
|
4676
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
|
|
3752
4677
|
/**
|
|
3753
4678
|
* Refresh an access token
|
|
3754
4679
|
* @param {RefreshRequest} refreshRequest The refresh token
|
|
@@ -3757,6 +4682,22 @@ export interface CustomerApiInterface {
|
|
|
3757
4682
|
* @memberof CustomerApiInterface
|
|
3758
4683
|
*/
|
|
3759
4684
|
refreshToken(refreshRequest: RefreshRequest, options?: AxiosRequestConfig): AxiosPromise<AccessTokenResponse>;
|
|
4685
|
+
/**
|
|
4686
|
+
* Update InstitutionID and SenderType for Mandate
|
|
4687
|
+
* @param {SetMandateInstitutionRequest} updateRequest request body for updating mandate institutionId and senderType
|
|
4688
|
+
* @param {*} [options] Override http request option.
|
|
4689
|
+
* @throws {RequiredError}
|
|
4690
|
+
* @memberof CustomerApiInterface
|
|
4691
|
+
*/
|
|
4692
|
+
setMandateInstitution(updateRequest: SetMandateInstitutionRequest, options?: AxiosRequestConfig): AxiosPromise<SetMandateInstitutionResponse>;
|
|
4693
|
+
/**
|
|
4694
|
+
* Submit authorization checklist items
|
|
4695
|
+
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
4696
|
+
* @param {*} [options] Override http request option.
|
|
4697
|
+
* @throws {RequiredError}
|
|
4698
|
+
* @memberof CustomerApiInterface
|
|
4699
|
+
*/
|
|
4700
|
+
submitAuthChecklist(submitAuthChecklistRequest: SubmitAuthChecklistRequest, options?: AxiosRequestConfig): AxiosPromise<SubmitAuthChecklistResponse>;
|
|
3760
4701
|
}
|
|
3761
4702
|
/**
|
|
3762
4703
|
* CustomerApi - object-oriented interface
|
|
@@ -3765,6 +4706,24 @@ export interface CustomerApiInterface {
|
|
|
3765
4706
|
* @extends {BaseAPI}
|
|
3766
4707
|
*/
|
|
3767
4708
|
export declare class CustomerApi extends BaseAPI implements CustomerApiInterface {
|
|
4709
|
+
/**
|
|
4710
|
+
* CREATE Mandate
|
|
4711
|
+
* @param {CreateMandateRequest} createMandateRequest request body for creating mandate
|
|
4712
|
+
* @param {string} [idempotencyKey] A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
|
|
4713
|
+
* @param {*} [options] Override http request option.
|
|
4714
|
+
* @throws {RequiredError}
|
|
4715
|
+
* @memberof CustomerApi
|
|
4716
|
+
*/
|
|
4717
|
+
createMandate(createMandateRequest: CreateMandateRequest, idempotencyKey?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMandateResponse>>;
|
|
4718
|
+
/**
|
|
4719
|
+
* Create new Payment
|
|
4720
|
+
* @param {CreatePaymentRequest} createPaymentRequest request body for creating payment
|
|
4721
|
+
* @param {string} [idempotencyKey] A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
|
|
4722
|
+
* @param {*} [options] Override http request option.
|
|
4723
|
+
* @throws {RequiredError}
|
|
4724
|
+
* @memberof CustomerApi
|
|
4725
|
+
*/
|
|
4726
|
+
createPayment(createPaymentRequest: CreatePaymentRequest, idempotencyKey?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentResponse>>;
|
|
3768
4727
|
/**
|
|
3769
4728
|
* Create a new payment instruction to be used when linking to perform new payment
|
|
3770
4729
|
* @param {CustomerPaymentInstruction} paymentInstruction Request body for starting a new Link
|
|
@@ -3805,6 +4764,37 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
|
|
|
3805
4764
|
* @memberof CustomerApi
|
|
3806
4765
|
*/
|
|
3807
4766
|
getLoginIdentityHistory(loginIdentityId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityHistoryResponse>>;
|
|
4767
|
+
/**
|
|
4768
|
+
* Get Mandate details by mandate_id
|
|
4769
|
+
* @param {string} mandateId mandate id
|
|
4770
|
+
* @param {*} [options] Override http request option.
|
|
4771
|
+
* @throws {RequiredError}
|
|
4772
|
+
* @memberof CustomerApi
|
|
4773
|
+
*/
|
|
4774
|
+
getMandate(mandateId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateResponse>>;
|
|
4775
|
+
/**
|
|
4776
|
+
* Get Mandate Authorization by mandate id
|
|
4777
|
+
* @param {*} [options] Override http request option.
|
|
4778
|
+
* @throws {RequiredError}
|
|
4779
|
+
* @memberof CustomerApi
|
|
4780
|
+
*/
|
|
4781
|
+
getMandateAuth(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateAuthResponse>>;
|
|
4782
|
+
/**
|
|
4783
|
+
* Get link to launch FV Link UI in mandate authorization mode
|
|
4784
|
+
* @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
|
|
4785
|
+
* @param {*} [options] Override http request option.
|
|
4786
|
+
* @throws {RequiredError}
|
|
4787
|
+
* @memberof CustomerApi
|
|
4788
|
+
*/
|
|
4789
|
+
getMandateAuthLink(getMandateAuthLinkRequest: GetMandateAuthLinkRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateAuthLinkResponse>>;
|
|
4790
|
+
/**
|
|
4791
|
+
* Get Payment details by payment_id
|
|
4792
|
+
* @param {string} paymentId payment id
|
|
4793
|
+
* @param {*} [options] Override http request option.
|
|
4794
|
+
* @throws {RequiredError}
|
|
4795
|
+
* @memberof CustomerApi
|
|
4796
|
+
*/
|
|
4797
|
+
getPayment(paymentId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentResponse>>;
|
|
3808
4798
|
/**
|
|
3809
4799
|
* Get payment instructions by payment_instruction_id
|
|
3810
4800
|
* @param {string} paymentInstructionId The id of a payment instruction
|
|
@@ -3815,15 +4805,15 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
|
|
|
3815
4805
|
getPaymentInstruction(paymentInstructionId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPaymentInstructionsResponse>>;
|
|
3816
4806
|
/**
|
|
3817
4807
|
* Get a list of institutions
|
|
3818
|
-
* @param {string} [country] The country the institution belongs to
|
|
4808
|
+
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
3819
4809
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3820
4810
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3821
|
-
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
4811
|
+
* @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
|
|
3822
4812
|
* @param {*} [options] Override http request option.
|
|
3823
4813
|
* @throws {RequiredError}
|
|
3824
4814
|
* @memberof CustomerApi
|
|
3825
4815
|
*/
|
|
3826
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
|
|
4816
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
|
|
3827
4817
|
/**
|
|
3828
4818
|
* Refresh an access token
|
|
3829
4819
|
* @param {RefreshRequest} refreshRequest The refresh token
|
|
@@ -3832,35 +4822,74 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
|
|
|
3832
4822
|
* @memberof CustomerApi
|
|
3833
4823
|
*/
|
|
3834
4824
|
refreshToken(refreshRequest: RefreshRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessTokenResponse>>;
|
|
4825
|
+
/**
|
|
4826
|
+
* Update InstitutionID and SenderType for Mandate
|
|
4827
|
+
* @param {SetMandateInstitutionRequest} updateRequest request body for updating mandate institutionId and senderType
|
|
4828
|
+
* @param {*} [options] Override http request option.
|
|
4829
|
+
* @throws {RequiredError}
|
|
4830
|
+
* @memberof CustomerApi
|
|
4831
|
+
*/
|
|
4832
|
+
setMandateInstitution(updateRequest: SetMandateInstitutionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SetMandateInstitutionResponse>>;
|
|
4833
|
+
/**
|
|
4834
|
+
* Submit authorization checklist items
|
|
4835
|
+
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
4836
|
+
* @param {*} [options] Override http request option.
|
|
4837
|
+
* @throws {RequiredError}
|
|
4838
|
+
* @memberof CustomerApi
|
|
4839
|
+
*/
|
|
4840
|
+
submitAuthChecklist(submitAuthChecklistRequest: SubmitAuthChecklistRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SubmitAuthChecklistResponse>>;
|
|
3835
4841
|
}
|
|
3836
4842
|
/**
|
|
3837
4843
|
* LinkApi - axios parameter creator
|
|
3838
4844
|
* @export
|
|
3839
4845
|
*/
|
|
3840
4846
|
export declare const LinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4847
|
+
/**
|
|
4848
|
+
* Create a new link and submit credentials
|
|
4849
|
+
* @param {ApiLinkRequest} apiLinkRequest Request body for creating a new link and submitting credentials
|
|
4850
|
+
* @param {*} [options] Override http request option.
|
|
4851
|
+
* @throws {RequiredError}
|
|
4852
|
+
*/
|
|
4853
|
+
createLink: (apiLinkRequest: ApiLinkRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3841
4854
|
/**
|
|
3842
4855
|
* Creates a new link
|
|
3843
4856
|
* @param {LinkRequest} linkRequest Request body for starting a new Link
|
|
3844
4857
|
* @param {*} [options] Override http request option.
|
|
3845
4858
|
* @throws {RequiredError}
|
|
3846
4859
|
*/
|
|
3847
|
-
|
|
4860
|
+
createLinkWoauth: (linkRequest: LinkRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4861
|
+
/**
|
|
4862
|
+
* Post the user action value
|
|
4863
|
+
* @param {string} loginIdentityId The login identity id
|
|
4864
|
+
* @param {ActionRequest} actionRequest Request body for post link action
|
|
4865
|
+
* @param {*} [options] Override http request option.
|
|
4866
|
+
* @throws {RequiredError}
|
|
4867
|
+
*/
|
|
4868
|
+
linkAction: (loginIdentityId: string, actionRequest: ActionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4869
|
+
/**
|
|
4870
|
+
* Check the status of a given loginIdentity
|
|
4871
|
+
* @param {string} loginIdentityId The login identity id
|
|
4872
|
+
* @param {*} [options] Override http request option.
|
|
4873
|
+
* @throws {RequiredError}
|
|
4874
|
+
*/
|
|
4875
|
+
linkStatus: (loginIdentityId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3848
4876
|
/**
|
|
3849
|
-
*
|
|
4877
|
+
* Check the status of a given login identity via FVLink
|
|
4878
|
+
* @param {string} loginIdentityId The login identity id
|
|
3850
4879
|
* @param {*} [options] Override http request option.
|
|
3851
4880
|
* @throws {RequiredError}
|
|
3852
4881
|
*/
|
|
3853
|
-
|
|
4882
|
+
linkStatusNonSensitive: (loginIdentityId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3854
4883
|
/**
|
|
3855
4884
|
* Get a list of institutions
|
|
3856
|
-
* @param {string} [country] The country the institution belongs to
|
|
4885
|
+
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
3857
4886
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3858
4887
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3859
|
-
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
4888
|
+
* @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
|
|
3860
4889
|
* @param {*} [options] Override http request option.
|
|
3861
4890
|
* @throws {RequiredError}
|
|
3862
4891
|
*/
|
|
3863
|
-
listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4892
|
+
listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3864
4893
|
/**
|
|
3865
4894
|
* Update an existing link
|
|
3866
4895
|
* @param {RelinkRequest} relinkRequest Request body for updating Link
|
|
@@ -3868,6 +4897,14 @@ export declare const LinkApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
3868
4897
|
* @throws {RequiredError}
|
|
3869
4898
|
*/
|
|
3870
4899
|
relink: (relinkRequest: RelinkRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4900
|
+
/**
|
|
4901
|
+
* Create a new link using an existing LIID
|
|
4902
|
+
* @param {string} loginIdentityId The login identity id
|
|
4903
|
+
* @param {ApiRelinkRequest} apiRelinkRequest Request body for relinking and submitting credentials
|
|
4904
|
+
* @param {*} [options] Override http request option.
|
|
4905
|
+
* @throws {RequiredError}
|
|
4906
|
+
*/
|
|
4907
|
+
relinkV2: (loginIdentityId: string, apiRelinkRequest: ApiRelinkRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3871
4908
|
/**
|
|
3872
4909
|
* Exchange authorization code for token
|
|
3873
4910
|
* @param {string} grantType
|
|
@@ -3884,29 +4921,52 @@ export declare const LinkApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
3884
4921
|
* @export
|
|
3885
4922
|
*/
|
|
3886
4923
|
export declare const LinkApiFp: (configuration?: Configuration) => {
|
|
4924
|
+
/**
|
|
4925
|
+
* Create a new link and submit credentials
|
|
4926
|
+
* @param {ApiLinkRequest} apiLinkRequest Request body for creating a new link and submitting credentials
|
|
4927
|
+
* @param {*} [options] Override http request option.
|
|
4928
|
+
* @throws {RequiredError}
|
|
4929
|
+
*/
|
|
4930
|
+
createLink(apiLinkRequest: ApiLinkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetLoginIdentityByIdResponse>>;
|
|
3887
4931
|
/**
|
|
3888
4932
|
* Creates a new link
|
|
3889
4933
|
* @param {LinkRequest} linkRequest Request body for starting a new Link
|
|
3890
4934
|
* @param {*} [options] Override http request option.
|
|
3891
4935
|
* @throws {RequiredError}
|
|
3892
4936
|
*/
|
|
3893
|
-
|
|
4937
|
+
createLinkWoauth(linkRequest: LinkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkResponse>>;
|
|
3894
4938
|
/**
|
|
3895
|
-
*
|
|
4939
|
+
* Post the user action value
|
|
4940
|
+
* @param {string} loginIdentityId The login identity id
|
|
4941
|
+
* @param {ActionRequest} actionRequest Request body for post link action
|
|
4942
|
+
* @param {*} [options] Override http request option.
|
|
4943
|
+
* @throws {RequiredError}
|
|
4944
|
+
*/
|
|
4945
|
+
linkAction(loginIdentityId: string, actionRequest: ActionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetLoginIdentityByIdResponse>>;
|
|
4946
|
+
/**
|
|
4947
|
+
* Check the status of a given loginIdentity
|
|
4948
|
+
* @param {string} loginIdentityId The login identity id
|
|
4949
|
+
* @param {*} [options] Override http request option.
|
|
4950
|
+
* @throws {RequiredError}
|
|
4951
|
+
*/
|
|
4952
|
+
linkStatus(loginIdentityId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkStatusResponse>>;
|
|
4953
|
+
/**
|
|
4954
|
+
* Check the status of a given login identity via FVLink
|
|
4955
|
+
* @param {string} loginIdentityId The login identity id
|
|
3896
4956
|
* @param {*} [options] Override http request option.
|
|
3897
4957
|
* @throws {RequiredError}
|
|
3898
4958
|
*/
|
|
3899
|
-
|
|
4959
|
+
linkStatusNonSensitive(loginIdentityId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonSensitiveLinkStatusResponse>>;
|
|
3900
4960
|
/**
|
|
3901
4961
|
* Get a list of institutions
|
|
3902
|
-
* @param {string} [country] The country the institution belongs to
|
|
4962
|
+
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
3903
4963
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3904
4964
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3905
|
-
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
4965
|
+
* @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
|
|
3906
4966
|
* @param {*} [options] Override http request option.
|
|
3907
4967
|
* @throws {RequiredError}
|
|
3908
4968
|
*/
|
|
3909
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
|
|
4969
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
|
|
3910
4970
|
/**
|
|
3911
4971
|
* Update an existing link
|
|
3912
4972
|
* @param {RelinkRequest} relinkRequest Request body for updating Link
|
|
@@ -3914,6 +4974,14 @@ export declare const LinkApiFp: (configuration?: Configuration) => {
|
|
|
3914
4974
|
* @throws {RequiredError}
|
|
3915
4975
|
*/
|
|
3916
4976
|
relink(relinkRequest: RelinkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkResponse>>;
|
|
4977
|
+
/**
|
|
4978
|
+
* Create a new link using an existing LIID
|
|
4979
|
+
* @param {string} loginIdentityId The login identity id
|
|
4980
|
+
* @param {ApiRelinkRequest} apiRelinkRequest Request body for relinking and submitting credentials
|
|
4981
|
+
* @param {*} [options] Override http request option.
|
|
4982
|
+
* @throws {RequiredError}
|
|
4983
|
+
*/
|
|
4984
|
+
relinkV2(loginIdentityId: string, apiRelinkRequest: ApiRelinkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetLoginIdentityByIdResponse>>;
|
|
3917
4985
|
/**
|
|
3918
4986
|
* Exchange authorization code for token
|
|
3919
4987
|
* @param {string} grantType
|
|
@@ -3930,29 +4998,52 @@ export declare const LinkApiFp: (configuration?: Configuration) => {
|
|
|
3930
4998
|
* @export
|
|
3931
4999
|
*/
|
|
3932
5000
|
export declare const LinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5001
|
+
/**
|
|
5002
|
+
* Create a new link and submit credentials
|
|
5003
|
+
* @param {ApiLinkRequest} apiLinkRequest Request body for creating a new link and submitting credentials
|
|
5004
|
+
* @param {*} [options] Override http request option.
|
|
5005
|
+
* @throws {RequiredError}
|
|
5006
|
+
*/
|
|
5007
|
+
createLink(apiLinkRequest: ApiLinkRequest, options?: any): AxiosPromise<GetLoginIdentityByIdResponse>;
|
|
3933
5008
|
/**
|
|
3934
5009
|
* Creates a new link
|
|
3935
5010
|
* @param {LinkRequest} linkRequest Request body for starting a new Link
|
|
3936
5011
|
* @param {*} [options] Override http request option.
|
|
3937
5012
|
* @throws {RequiredError}
|
|
3938
5013
|
*/
|
|
3939
|
-
|
|
5014
|
+
createLinkWoauth(linkRequest: LinkRequest, options?: any): AxiosPromise<LinkResponse>;
|
|
5015
|
+
/**
|
|
5016
|
+
* Post the user action value
|
|
5017
|
+
* @param {string} loginIdentityId The login identity id
|
|
5018
|
+
* @param {ActionRequest} actionRequest Request body for post link action
|
|
5019
|
+
* @param {*} [options] Override http request option.
|
|
5020
|
+
* @throws {RequiredError}
|
|
5021
|
+
*/
|
|
5022
|
+
linkAction(loginIdentityId: string, actionRequest: ActionRequest, options?: any): AxiosPromise<GetLoginIdentityByIdResponse>;
|
|
5023
|
+
/**
|
|
5024
|
+
* Check the status of a given loginIdentity
|
|
5025
|
+
* @param {string} loginIdentityId The login identity id
|
|
5026
|
+
* @param {*} [options] Override http request option.
|
|
5027
|
+
* @throws {RequiredError}
|
|
5028
|
+
*/
|
|
5029
|
+
linkStatus(loginIdentityId: string, options?: any): AxiosPromise<LinkStatusResponse>;
|
|
3940
5030
|
/**
|
|
3941
|
-
*
|
|
5031
|
+
* Check the status of a given login identity via FVLink
|
|
5032
|
+
* @param {string} loginIdentityId The login identity id
|
|
3942
5033
|
* @param {*} [options] Override http request option.
|
|
3943
5034
|
* @throws {RequiredError}
|
|
3944
5035
|
*/
|
|
3945
|
-
|
|
5036
|
+
linkStatusNonSensitive(loginIdentityId: string, options?: any): AxiosPromise<NonSensitiveLinkStatusResponse>;
|
|
3946
5037
|
/**
|
|
3947
5038
|
* Get a list of institutions
|
|
3948
|
-
* @param {string} [country] The country the institution belongs to
|
|
5039
|
+
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
3949
5040
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3950
5041
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3951
|
-
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
5042
|
+
* @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
|
|
3952
5043
|
* @param {*} [options] Override http request option.
|
|
3953
5044
|
* @throws {RequiredError}
|
|
3954
5045
|
*/
|
|
3955
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: any): AxiosPromise<Array<Institution>>;
|
|
5046
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: any): AxiosPromise<Array<Institution>>;
|
|
3956
5047
|
/**
|
|
3957
5048
|
* Update an existing link
|
|
3958
5049
|
* @param {RelinkRequest} relinkRequest Request body for updating Link
|
|
@@ -3960,6 +5051,14 @@ export declare const LinkApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3960
5051
|
* @throws {RequiredError}
|
|
3961
5052
|
*/
|
|
3962
5053
|
relink(relinkRequest: RelinkRequest, options?: any): AxiosPromise<LinkResponse>;
|
|
5054
|
+
/**
|
|
5055
|
+
* Create a new link using an existing LIID
|
|
5056
|
+
* @param {string} loginIdentityId The login identity id
|
|
5057
|
+
* @param {ApiRelinkRequest} apiRelinkRequest Request body for relinking and submitting credentials
|
|
5058
|
+
* @param {*} [options] Override http request option.
|
|
5059
|
+
* @throws {RequiredError}
|
|
5060
|
+
*/
|
|
5061
|
+
relinkV2(loginIdentityId: string, apiRelinkRequest: ApiRelinkRequest, options?: any): AxiosPromise<GetLoginIdentityByIdResponse>;
|
|
3963
5062
|
/**
|
|
3964
5063
|
* Exchange authorization code for token
|
|
3965
5064
|
* @param {string} grantType
|
|
@@ -3977,6 +5076,14 @@ export declare const LinkApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3977
5076
|
* @interface LinkApi
|
|
3978
5077
|
*/
|
|
3979
5078
|
export interface LinkApiInterface {
|
|
5079
|
+
/**
|
|
5080
|
+
* Create a new link and submit credentials
|
|
5081
|
+
* @param {ApiLinkRequest} apiLinkRequest Request body for creating a new link and submitting credentials
|
|
5082
|
+
* @param {*} [options] Override http request option.
|
|
5083
|
+
* @throws {RequiredError}
|
|
5084
|
+
* @memberof LinkApiInterface
|
|
5085
|
+
*/
|
|
5086
|
+
createLink(apiLinkRequest: ApiLinkRequest, options?: AxiosRequestConfig): AxiosPromise<GetLoginIdentityByIdResponse>;
|
|
3980
5087
|
/**
|
|
3981
5088
|
* Creates a new link
|
|
3982
5089
|
* @param {LinkRequest} linkRequest Request body for starting a new Link
|
|
@@ -3984,25 +5091,43 @@ export interface LinkApiInterface {
|
|
|
3984
5091
|
* @throws {RequiredError}
|
|
3985
5092
|
* @memberof LinkApiInterface
|
|
3986
5093
|
*/
|
|
3987
|
-
|
|
5094
|
+
createLinkWoauth(linkRequest: LinkRequest, options?: AxiosRequestConfig): AxiosPromise<LinkResponse>;
|
|
5095
|
+
/**
|
|
5096
|
+
* Post the user action value
|
|
5097
|
+
* @param {string} loginIdentityId The login identity id
|
|
5098
|
+
* @param {ActionRequest} actionRequest Request body for post link action
|
|
5099
|
+
* @param {*} [options] Override http request option.
|
|
5100
|
+
* @throws {RequiredError}
|
|
5101
|
+
* @memberof LinkApiInterface
|
|
5102
|
+
*/
|
|
5103
|
+
linkAction(loginIdentityId: string, actionRequest: ActionRequest, options?: AxiosRequestConfig): AxiosPromise<GetLoginIdentityByIdResponse>;
|
|
5104
|
+
/**
|
|
5105
|
+
* Check the status of a given loginIdentity
|
|
5106
|
+
* @param {string} loginIdentityId The login identity id
|
|
5107
|
+
* @param {*} [options] Override http request option.
|
|
5108
|
+
* @throws {RequiredError}
|
|
5109
|
+
* @memberof LinkApiInterface
|
|
5110
|
+
*/
|
|
5111
|
+
linkStatus(loginIdentityId: string, options?: AxiosRequestConfig): AxiosPromise<LinkStatusResponse>;
|
|
3988
5112
|
/**
|
|
3989
|
-
*
|
|
5113
|
+
* Check the status of a given login identity via FVLink
|
|
5114
|
+
* @param {string} loginIdentityId The login identity id
|
|
3990
5115
|
* @param {*} [options] Override http request option.
|
|
3991
5116
|
* @throws {RequiredError}
|
|
3992
5117
|
* @memberof LinkApiInterface
|
|
3993
5118
|
*/
|
|
3994
|
-
|
|
5119
|
+
linkStatusNonSensitive(loginIdentityId: string, options?: AxiosRequestConfig): AxiosPromise<NonSensitiveLinkStatusResponse>;
|
|
3995
5120
|
/**
|
|
3996
5121
|
* Get a list of institutions
|
|
3997
|
-
* @param {string} [country] The country the institution belongs to
|
|
5122
|
+
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
3998
5123
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3999
5124
|
* @param {string} [productsSupported] The products that this institution supports
|
|
4000
|
-
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
5125
|
+
* @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
|
|
4001
5126
|
* @param {*} [options] Override http request option.
|
|
4002
5127
|
* @throws {RequiredError}
|
|
4003
5128
|
* @memberof LinkApiInterface
|
|
4004
5129
|
*/
|
|
4005
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
|
|
5130
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
|
|
4006
5131
|
/**
|
|
4007
5132
|
* Update an existing link
|
|
4008
5133
|
* @param {RelinkRequest} relinkRequest Request body for updating Link
|
|
@@ -4011,6 +5136,15 @@ export interface LinkApiInterface {
|
|
|
4011
5136
|
* @memberof LinkApiInterface
|
|
4012
5137
|
*/
|
|
4013
5138
|
relink(relinkRequest: RelinkRequest, options?: AxiosRequestConfig): AxiosPromise<LinkResponse>;
|
|
5139
|
+
/**
|
|
5140
|
+
* Create a new link using an existing LIID
|
|
5141
|
+
* @param {string} loginIdentityId The login identity id
|
|
5142
|
+
* @param {ApiRelinkRequest} apiRelinkRequest Request body for relinking and submitting credentials
|
|
5143
|
+
* @param {*} [options] Override http request option.
|
|
5144
|
+
* @throws {RequiredError}
|
|
5145
|
+
* @memberof LinkApiInterface
|
|
5146
|
+
*/
|
|
5147
|
+
relinkV2(loginIdentityId: string, apiRelinkRequest: ApiRelinkRequest, options?: AxiosRequestConfig): AxiosPromise<GetLoginIdentityByIdResponse>;
|
|
4014
5148
|
/**
|
|
4015
5149
|
* Exchange authorization code for token
|
|
4016
5150
|
* @param {string} grantType
|
|
@@ -4030,6 +5164,14 @@ export interface LinkApiInterface {
|
|
|
4030
5164
|
* @extends {BaseAPI}
|
|
4031
5165
|
*/
|
|
4032
5166
|
export declare class LinkApi extends BaseAPI implements LinkApiInterface {
|
|
5167
|
+
/**
|
|
5168
|
+
* Create a new link and submit credentials
|
|
5169
|
+
* @param {ApiLinkRequest} apiLinkRequest Request body for creating a new link and submitting credentials
|
|
5170
|
+
* @param {*} [options] Override http request option.
|
|
5171
|
+
* @throws {RequiredError}
|
|
5172
|
+
* @memberof LinkApi
|
|
5173
|
+
*/
|
|
5174
|
+
createLink(apiLinkRequest: ApiLinkRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityByIdResponse>>;
|
|
4033
5175
|
/**
|
|
4034
5176
|
* Creates a new link
|
|
4035
5177
|
* @param {LinkRequest} linkRequest Request body for starting a new Link
|
|
@@ -4037,25 +5179,43 @@ export declare class LinkApi extends BaseAPI implements LinkApiInterface {
|
|
|
4037
5179
|
* @throws {RequiredError}
|
|
4038
5180
|
* @memberof LinkApi
|
|
4039
5181
|
*/
|
|
4040
|
-
|
|
5182
|
+
createLinkWoauth(linkRequest: LinkRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkResponse>>;
|
|
5183
|
+
/**
|
|
5184
|
+
* Post the user action value
|
|
5185
|
+
* @param {string} loginIdentityId The login identity id
|
|
5186
|
+
* @param {ActionRequest} actionRequest Request body for post link action
|
|
5187
|
+
* @param {*} [options] Override http request option.
|
|
5188
|
+
* @throws {RequiredError}
|
|
5189
|
+
* @memberof LinkApi
|
|
5190
|
+
*/
|
|
5191
|
+
linkAction(loginIdentityId: string, actionRequest: ActionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityByIdResponse>>;
|
|
5192
|
+
/**
|
|
5193
|
+
* Check the status of a given loginIdentity
|
|
5194
|
+
* @param {string} loginIdentityId The login identity id
|
|
5195
|
+
* @param {*} [options] Override http request option.
|
|
5196
|
+
* @throws {RequiredError}
|
|
5197
|
+
* @memberof LinkApi
|
|
5198
|
+
*/
|
|
5199
|
+
linkStatus(loginIdentityId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkStatusResponse>>;
|
|
4041
5200
|
/**
|
|
4042
|
-
*
|
|
5201
|
+
* Check the status of a given login identity via FVLink
|
|
5202
|
+
* @param {string} loginIdentityId The login identity id
|
|
4043
5203
|
* @param {*} [options] Override http request option.
|
|
4044
5204
|
* @throws {RequiredError}
|
|
4045
5205
|
* @memberof LinkApi
|
|
4046
5206
|
*/
|
|
4047
|
-
|
|
5207
|
+
linkStatusNonSensitive(loginIdentityId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NonSensitiveLinkStatusResponse>>;
|
|
4048
5208
|
/**
|
|
4049
5209
|
* Get a list of institutions
|
|
4050
|
-
* @param {string} [country] The country the institution belongs to
|
|
5210
|
+
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
4051
5211
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
4052
5212
|
* @param {string} [productsSupported] The products that this institution supports
|
|
4053
|
-
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
5213
|
+
* @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
|
|
4054
5214
|
* @param {*} [options] Override http request option.
|
|
4055
5215
|
* @throws {RequiredError}
|
|
4056
5216
|
* @memberof LinkApi
|
|
4057
5217
|
*/
|
|
4058
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
|
|
5218
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
|
|
4059
5219
|
/**
|
|
4060
5220
|
* Update an existing link
|
|
4061
5221
|
* @param {RelinkRequest} relinkRequest Request body for updating Link
|
|
@@ -4064,6 +5224,15 @@ export declare class LinkApi extends BaseAPI implements LinkApiInterface {
|
|
|
4064
5224
|
* @memberof LinkApi
|
|
4065
5225
|
*/
|
|
4066
5226
|
relink(relinkRequest: RelinkRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkResponse>>;
|
|
5227
|
+
/**
|
|
5228
|
+
* Create a new link using an existing LIID
|
|
5229
|
+
* @param {string} loginIdentityId The login identity id
|
|
5230
|
+
* @param {ApiRelinkRequest} apiRelinkRequest Request body for relinking and submitting credentials
|
|
5231
|
+
* @param {*} [options] Override http request option.
|
|
5232
|
+
* @throws {RequiredError}
|
|
5233
|
+
* @memberof LinkApi
|
|
5234
|
+
*/
|
|
5235
|
+
relinkV2(loginIdentityId: string, apiRelinkRequest: ApiRelinkRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityByIdResponse>>;
|
|
4067
5236
|
/**
|
|
4068
5237
|
* Exchange authorization code for token
|
|
4069
5238
|
* @param {string} grantType
|
|
@@ -4111,10 +5280,11 @@ export declare const LoginIdentityApiAxiosParamCreator: (configuration?: Configu
|
|
|
4111
5280
|
/**
|
|
4112
5281
|
* Get the balance history for a specific account
|
|
4113
5282
|
* @param {string} accountId The account id
|
|
5283
|
+
* @param {'INSTITUTION' | 'COMPUTED'} [source] The source will determine what type of balance history will be returned
|
|
4114
5284
|
* @param {*} [options] Override http request option.
|
|
4115
5285
|
* @throws {RequiredError}
|
|
4116
5286
|
*/
|
|
4117
|
-
getBalanceHistory: (accountId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5287
|
+
getBalanceHistory: (accountId: string, source?: 'INSTITUTION' | 'COMPUTED', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4118
5288
|
/**
|
|
4119
5289
|
* Download composite statement
|
|
4120
5290
|
* @param {boolean} [redirect] when true, response will be http redirect; otherwise it will be json response with the download link
|
|
@@ -4219,10 +5389,11 @@ export declare const LoginIdentityApiFp: (configuration?: Configuration) => {
|
|
|
4219
5389
|
/**
|
|
4220
5390
|
* Get the balance history for a specific account
|
|
4221
5391
|
* @param {string} accountId The account id
|
|
5392
|
+
* @param {'INSTITUTION' | 'COMPUTED'} [source] The source will determine what type of balance history will be returned
|
|
4222
5393
|
* @param {*} [options] Override http request option.
|
|
4223
5394
|
* @throws {RequiredError}
|
|
4224
5395
|
*/
|
|
4225
|
-
getBalanceHistory(accountId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBalanceHistoryResponse>>;
|
|
5396
|
+
getBalanceHistory(accountId: string, source?: 'INSTITUTION' | 'COMPUTED', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBalanceHistoryResponse>>;
|
|
4226
5397
|
/**
|
|
4227
5398
|
* Download composite statement
|
|
4228
5399
|
* @param {boolean} [redirect] when true, response will be http redirect; otherwise it will be json response with the download link
|
|
@@ -4327,10 +5498,11 @@ export declare const LoginIdentityApiFactory: (configuration?: Configuration, ba
|
|
|
4327
5498
|
/**
|
|
4328
5499
|
* Get the balance history for a specific account
|
|
4329
5500
|
* @param {string} accountId The account id
|
|
5501
|
+
* @param {'INSTITUTION' | 'COMPUTED'} [source] The source will determine what type of balance history will be returned
|
|
4330
5502
|
* @param {*} [options] Override http request option.
|
|
4331
5503
|
* @throws {RequiredError}
|
|
4332
5504
|
*/
|
|
4333
|
-
getBalanceHistory(accountId: string, options?: any): AxiosPromise<GetBalanceHistoryResponse>;
|
|
5505
|
+
getBalanceHistory(accountId: string, source?: 'INSTITUTION' | 'COMPUTED', options?: any): AxiosPromise<GetBalanceHistoryResponse>;
|
|
4334
5506
|
/**
|
|
4335
5507
|
* Download composite statement
|
|
4336
5508
|
* @param {boolean} [redirect] when true, response will be http redirect; otherwise it will be json response with the download link
|
|
@@ -4440,11 +5612,12 @@ export interface LoginIdentityApiInterface {
|
|
|
4440
5612
|
/**
|
|
4441
5613
|
* Get the balance history for a specific account
|
|
4442
5614
|
* @param {string} accountId The account id
|
|
5615
|
+
* @param {'INSTITUTION' | 'COMPUTED'} [source] The source will determine what type of balance history will be returned
|
|
4443
5616
|
* @param {*} [options] Override http request option.
|
|
4444
5617
|
* @throws {RequiredError}
|
|
4445
5618
|
* @memberof LoginIdentityApiInterface
|
|
4446
5619
|
*/
|
|
4447
|
-
getBalanceHistory(accountId: string, options?: AxiosRequestConfig): AxiosPromise<GetBalanceHistoryResponse>;
|
|
5620
|
+
getBalanceHistory(accountId: string, source?: 'INSTITUTION' | 'COMPUTED', options?: AxiosRequestConfig): AxiosPromise<GetBalanceHistoryResponse>;
|
|
4448
5621
|
/**
|
|
4449
5622
|
* Download composite statement
|
|
4450
5623
|
* @param {boolean} [redirect] when true, response will be http redirect; otherwise it will be json response with the download link
|
|
@@ -4565,11 +5738,12 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
|
|
|
4565
5738
|
/**
|
|
4566
5739
|
* Get the balance history for a specific account
|
|
4567
5740
|
* @param {string} accountId The account id
|
|
5741
|
+
* @param {'INSTITUTION' | 'COMPUTED'} [source] The source will determine what type of balance history will be returned
|
|
4568
5742
|
* @param {*} [options] Override http request option.
|
|
4569
5743
|
* @throws {RequiredError}
|
|
4570
5744
|
* @memberof LoginIdentityApi
|
|
4571
5745
|
*/
|
|
4572
|
-
getBalanceHistory(accountId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBalanceHistoryResponse>>;
|
|
5746
|
+
getBalanceHistory(accountId: string, source?: 'INSTITUTION' | 'COMPUTED', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBalanceHistoryResponse>>;
|
|
4573
5747
|
/**
|
|
4574
5748
|
* Download composite statement
|
|
4575
5749
|
* @param {boolean} [redirect] when true, response will be http redirect; otherwise it will be json response with the download link
|
|
@@ -4672,6 +5846,18 @@ export declare const PublicApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4672
5846
|
* @throws {RequiredError}
|
|
4673
5847
|
*/
|
|
4674
5848
|
generateCustomerAccessToken: (tokenRequest?: TokenRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5849
|
+
/**
|
|
5850
|
+
* get jwks
|
|
5851
|
+
* @param {*} [options] Override http request option.
|
|
5852
|
+
* @throws {RequiredError}
|
|
5853
|
+
*/
|
|
5854
|
+
getCredSubmitJwks: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5855
|
+
/**
|
|
5856
|
+
* get payment jwks
|
|
5857
|
+
* @param {*} [options] Override http request option.
|
|
5858
|
+
* @throws {RequiredError}
|
|
5859
|
+
*/
|
|
5860
|
+
getPaymentsJwks: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4675
5861
|
};
|
|
4676
5862
|
/**
|
|
4677
5863
|
* PublicApi - functional programming interface
|
|
@@ -4696,6 +5882,18 @@ export declare const PublicApiFp: (configuration?: Configuration) => {
|
|
|
4696
5882
|
* @throws {RequiredError}
|
|
4697
5883
|
*/
|
|
4698
5884
|
generateCustomerAccessToken(tokenRequest?: TokenRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TokenResponse>>;
|
|
5885
|
+
/**
|
|
5886
|
+
* get jwks
|
|
5887
|
+
* @param {*} [options] Override http request option.
|
|
5888
|
+
* @throws {RequiredError}
|
|
5889
|
+
*/
|
|
5890
|
+
getCredSubmitJwks(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5891
|
+
/**
|
|
5892
|
+
* get payment jwks
|
|
5893
|
+
* @param {*} [options] Override http request option.
|
|
5894
|
+
* @throws {RequiredError}
|
|
5895
|
+
*/
|
|
5896
|
+
getPaymentsJwks(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetJWKSResponse>>;
|
|
4699
5897
|
};
|
|
4700
5898
|
/**
|
|
4701
5899
|
* PublicApi - factory interface
|
|
@@ -4720,6 +5918,18 @@ export declare const PublicApiFactory: (configuration?: Configuration, basePath?
|
|
|
4720
5918
|
* @throws {RequiredError}
|
|
4721
5919
|
*/
|
|
4722
5920
|
generateCustomerAccessToken(tokenRequest?: TokenRequest, options?: any): AxiosPromise<TokenResponse>;
|
|
5921
|
+
/**
|
|
5922
|
+
* get jwks
|
|
5923
|
+
* @param {*} [options] Override http request option.
|
|
5924
|
+
* @throws {RequiredError}
|
|
5925
|
+
*/
|
|
5926
|
+
getCredSubmitJwks(options?: any): AxiosPromise<void>;
|
|
5927
|
+
/**
|
|
5928
|
+
* get payment jwks
|
|
5929
|
+
* @param {*} [options] Override http request option.
|
|
5930
|
+
* @throws {RequiredError}
|
|
5931
|
+
*/
|
|
5932
|
+
getPaymentsJwks(options?: any): AxiosPromise<GetJWKSResponse>;
|
|
4723
5933
|
};
|
|
4724
5934
|
/**
|
|
4725
5935
|
* PublicApi - interface
|
|
@@ -4747,6 +5957,20 @@ export interface PublicApiInterface {
|
|
|
4747
5957
|
* @memberof PublicApiInterface
|
|
4748
5958
|
*/
|
|
4749
5959
|
generateCustomerAccessToken(tokenRequest?: TokenRequest, options?: AxiosRequestConfig): AxiosPromise<TokenResponse>;
|
|
5960
|
+
/**
|
|
5961
|
+
* get jwks
|
|
5962
|
+
* @param {*} [options] Override http request option.
|
|
5963
|
+
* @throws {RequiredError}
|
|
5964
|
+
* @memberof PublicApiInterface
|
|
5965
|
+
*/
|
|
5966
|
+
getCredSubmitJwks(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
5967
|
+
/**
|
|
5968
|
+
* get payment jwks
|
|
5969
|
+
* @param {*} [options] Override http request option.
|
|
5970
|
+
* @throws {RequiredError}
|
|
5971
|
+
* @memberof PublicApiInterface
|
|
5972
|
+
*/
|
|
5973
|
+
getPaymentsJwks(options?: AxiosRequestConfig): AxiosPromise<GetJWKSResponse>;
|
|
4750
5974
|
}
|
|
4751
5975
|
/**
|
|
4752
5976
|
* PublicApi - object-oriented interface
|
|
@@ -4775,4 +5999,18 @@ export declare class PublicApi extends BaseAPI implements PublicApiInterface {
|
|
|
4775
5999
|
* @memberof PublicApi
|
|
4776
6000
|
*/
|
|
4777
6001
|
generateCustomerAccessToken(tokenRequest?: TokenRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TokenResponse>>;
|
|
6002
|
+
/**
|
|
6003
|
+
* get jwks
|
|
6004
|
+
* @param {*} [options] Override http request option.
|
|
6005
|
+
* @throws {RequiredError}
|
|
6006
|
+
* @memberof PublicApi
|
|
6007
|
+
*/
|
|
6008
|
+
getCredSubmitJwks(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void>>;
|
|
6009
|
+
/**
|
|
6010
|
+
* get payment jwks
|
|
6011
|
+
* @param {*} [options] Override http request option.
|
|
6012
|
+
* @throws {RequiredError}
|
|
6013
|
+
* @memberof PublicApi
|
|
6014
|
+
*/
|
|
6015
|
+
getPaymentsJwks(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetJWKSResponse>>;
|
|
4778
6016
|
}
|