@finverse/sdk-typescript 0.0.61 → 0.0.62
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 +54 -31
- package/dist/api.js +33 -9
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1744,19 +1744,19 @@ export interface Institution {
|
|
|
1744
1744
|
* @type {Array<string>}
|
|
1745
1745
|
* @memberof Institution
|
|
1746
1746
|
*/
|
|
1747
|
-
tags?: Array<
|
|
1747
|
+
tags?: Array<InstitutionTagsEnum>;
|
|
1748
1748
|
/**
|
|
1749
1749
|
*
|
|
1750
1750
|
* @type {string}
|
|
1751
1751
|
* @memberof Institution
|
|
1752
1752
|
*/
|
|
1753
|
-
institution_type:
|
|
1753
|
+
institution_type: InstitutionInstitutionTypeEnum;
|
|
1754
1754
|
/**
|
|
1755
1755
|
*
|
|
1756
1756
|
* @type {Array<string>}
|
|
1757
1757
|
* @memberof Institution
|
|
1758
1758
|
*/
|
|
1759
|
-
products_supported: Array<
|
|
1759
|
+
products_supported: Array<InstitutionProductsSupportedEnum>;
|
|
1760
1760
|
/**
|
|
1761
1761
|
*
|
|
1762
1762
|
* @type {string}
|
|
@@ -1780,13 +1780,13 @@ export interface Institution {
|
|
|
1780
1780
|
* @type {string}
|
|
1781
1781
|
* @memberof Institution
|
|
1782
1782
|
*/
|
|
1783
|
-
user_type:
|
|
1783
|
+
user_type: InstitutionUserTypeEnum;
|
|
1784
1784
|
/**
|
|
1785
1785
|
*
|
|
1786
1786
|
* @type {string}
|
|
1787
1787
|
* @memberof Institution
|
|
1788
1788
|
*/
|
|
1789
|
-
status:
|
|
1789
|
+
status: InstitutionStatusEnum;
|
|
1790
1790
|
/**
|
|
1791
1791
|
*
|
|
1792
1792
|
* @type {object}
|
|
@@ -1823,13 +1823,36 @@ export interface Institution {
|
|
|
1823
1823
|
* @memberof Institution
|
|
1824
1824
|
*/
|
|
1825
1825
|
updated_at?: string;
|
|
1826
|
-
/**
|
|
1827
|
-
*
|
|
1828
|
-
* @type {Array<string>}
|
|
1829
|
-
* @memberof Institution
|
|
1830
|
-
*/
|
|
1831
|
-
payment_rails?: Array<string>;
|
|
1832
1826
|
}
|
|
1827
|
+
export declare const InstitutionTagsEnum: {
|
|
1828
|
+
readonly Real: "real";
|
|
1829
|
+
readonly Test: "test";
|
|
1830
|
+
};
|
|
1831
|
+
export declare type InstitutionTagsEnum = typeof InstitutionTagsEnum[keyof typeof InstitutionTagsEnum];
|
|
1832
|
+
export declare const InstitutionInstitutionTypeEnum: {
|
|
1833
|
+
readonly Bank: "BANK";
|
|
1834
|
+
readonly Wallet: "WALLET";
|
|
1835
|
+
};
|
|
1836
|
+
export declare type InstitutionInstitutionTypeEnum = typeof InstitutionInstitutionTypeEnum[keyof typeof InstitutionInstitutionTypeEnum];
|
|
1837
|
+
export declare const InstitutionProductsSupportedEnum: {
|
|
1838
|
+
readonly Accounts: "ACCOUNTS";
|
|
1839
|
+
readonly Transactions: "TRANSACTIONS";
|
|
1840
|
+
readonly Statements: "STATEMENTS";
|
|
1841
|
+
readonly AccountNumbers: "ACCOUNT_NUMBERS";
|
|
1842
|
+
readonly Identity: "IDENTITY";
|
|
1843
|
+
};
|
|
1844
|
+
export declare type InstitutionProductsSupportedEnum = typeof InstitutionProductsSupportedEnum[keyof typeof InstitutionProductsSupportedEnum];
|
|
1845
|
+
export declare const InstitutionUserTypeEnum: {
|
|
1846
|
+
readonly Personal: "PERSONAL";
|
|
1847
|
+
readonly Business: "BUSINESS";
|
|
1848
|
+
};
|
|
1849
|
+
export declare type InstitutionUserTypeEnum = typeof InstitutionUserTypeEnum[keyof typeof InstitutionUserTypeEnum];
|
|
1850
|
+
export declare const InstitutionStatusEnum: {
|
|
1851
|
+
readonly Supported: "SUPPORTED";
|
|
1852
|
+
readonly Alpha: "ALPHA";
|
|
1853
|
+
readonly Beta: "BETA";
|
|
1854
|
+
};
|
|
1855
|
+
export declare type InstitutionStatusEnum = typeof InstitutionStatusEnum[keyof typeof InstitutionStatusEnum];
|
|
1833
1856
|
/**
|
|
1834
1857
|
*
|
|
1835
1858
|
* @export
|
|
@@ -3518,11 +3541,11 @@ export declare const CustomerApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3518
3541
|
* @param {string} [country] The country the institution belongs to
|
|
3519
3542
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3520
3543
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3521
|
-
* @param {
|
|
3544
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
3522
3545
|
* @param {*} [options] Override http request option.
|
|
3523
3546
|
* @throws {RequiredError}
|
|
3524
3547
|
*/
|
|
3525
|
-
listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?:
|
|
3548
|
+
listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3526
3549
|
/**
|
|
3527
3550
|
* Refresh an access token
|
|
3528
3551
|
* @param {RefreshRequest} refreshRequest The refresh token
|
|
@@ -3583,11 +3606,11 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
|
3583
3606
|
* @param {string} [country] The country the institution belongs to
|
|
3584
3607
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3585
3608
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3586
|
-
* @param {
|
|
3609
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
3587
3610
|
* @param {*} [options] Override http request option.
|
|
3588
3611
|
* @throws {RequiredError}
|
|
3589
3612
|
*/
|
|
3590
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?:
|
|
3613
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
|
|
3591
3614
|
/**
|
|
3592
3615
|
* Refresh an access token
|
|
3593
3616
|
* @param {RefreshRequest} refreshRequest The refresh token
|
|
@@ -3648,11 +3671,11 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
3648
3671
|
* @param {string} [country] The country the institution belongs to
|
|
3649
3672
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3650
3673
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3651
|
-
* @param {
|
|
3674
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
3652
3675
|
* @param {*} [options] Override http request option.
|
|
3653
3676
|
* @throws {RequiredError}
|
|
3654
3677
|
*/
|
|
3655
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?:
|
|
3678
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: any): AxiosPromise<Array<Institution>>;
|
|
3656
3679
|
/**
|
|
3657
3680
|
* Refresh an access token
|
|
3658
3681
|
* @param {RefreshRequest} refreshRequest The refresh token
|
|
@@ -3720,12 +3743,12 @@ export interface CustomerApiInterface {
|
|
|
3720
3743
|
* @param {string} [country] The country the institution belongs to
|
|
3721
3744
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3722
3745
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3723
|
-
* @param {
|
|
3746
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
3724
3747
|
* @param {*} [options] Override http request option.
|
|
3725
3748
|
* @throws {RequiredError}
|
|
3726
3749
|
* @memberof CustomerApiInterface
|
|
3727
3750
|
*/
|
|
3728
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?:
|
|
3751
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
|
|
3729
3752
|
/**
|
|
3730
3753
|
* Refresh an access token
|
|
3731
3754
|
* @param {RefreshRequest} refreshRequest The refresh token
|
|
@@ -3795,12 +3818,12 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
|
|
|
3795
3818
|
* @param {string} [country] The country the institution belongs to
|
|
3796
3819
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3797
3820
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3798
|
-
* @param {
|
|
3821
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
3799
3822
|
* @param {*} [options] Override http request option.
|
|
3800
3823
|
* @throws {RequiredError}
|
|
3801
3824
|
* @memberof CustomerApi
|
|
3802
3825
|
*/
|
|
3803
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?:
|
|
3826
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
|
|
3804
3827
|
/**
|
|
3805
3828
|
* Refresh an access token
|
|
3806
3829
|
* @param {RefreshRequest} refreshRequest The refresh token
|
|
@@ -3833,11 +3856,11 @@ export declare const LinkApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
3833
3856
|
* @param {string} [country] The country the institution belongs to
|
|
3834
3857
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3835
3858
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3836
|
-
* @param {
|
|
3859
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
3837
3860
|
* @param {*} [options] Override http request option.
|
|
3838
3861
|
* @throws {RequiredError}
|
|
3839
3862
|
*/
|
|
3840
|
-
listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?:
|
|
3863
|
+
listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3841
3864
|
/**
|
|
3842
3865
|
* Update an existing link
|
|
3843
3866
|
* @param {RelinkRequest} relinkRequest Request body for updating Link
|
|
@@ -3879,11 +3902,11 @@ export declare const LinkApiFp: (configuration?: Configuration) => {
|
|
|
3879
3902
|
* @param {string} [country] The country the institution belongs to
|
|
3880
3903
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3881
3904
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3882
|
-
* @param {
|
|
3905
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
3883
3906
|
* @param {*} [options] Override http request option.
|
|
3884
3907
|
* @throws {RequiredError}
|
|
3885
3908
|
*/
|
|
3886
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?:
|
|
3909
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
|
|
3887
3910
|
/**
|
|
3888
3911
|
* Update an existing link
|
|
3889
3912
|
* @param {RelinkRequest} relinkRequest Request body for updating Link
|
|
@@ -3925,11 +3948,11 @@ export declare const LinkApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3925
3948
|
* @param {string} [country] The country the institution belongs to
|
|
3926
3949
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3927
3950
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3928
|
-
* @param {
|
|
3951
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
3929
3952
|
* @param {*} [options] Override http request option.
|
|
3930
3953
|
* @throws {RequiredError}
|
|
3931
3954
|
*/
|
|
3932
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?:
|
|
3955
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: any): AxiosPromise<Array<Institution>>;
|
|
3933
3956
|
/**
|
|
3934
3957
|
* Update an existing link
|
|
3935
3958
|
* @param {RelinkRequest} relinkRequest Request body for updating Link
|
|
@@ -3974,12 +3997,12 @@ export interface LinkApiInterface {
|
|
|
3974
3997
|
* @param {string} [country] The country the institution belongs to
|
|
3975
3998
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
3976
3999
|
* @param {string} [productsSupported] The products that this institution supports
|
|
3977
|
-
* @param {
|
|
4000
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
3978
4001
|
* @param {*} [options] Override http request option.
|
|
3979
4002
|
* @throws {RequiredError}
|
|
3980
4003
|
* @memberof LinkApiInterface
|
|
3981
4004
|
*/
|
|
3982
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?:
|
|
4005
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
|
|
3983
4006
|
/**
|
|
3984
4007
|
* Update an existing link
|
|
3985
4008
|
* @param {RelinkRequest} relinkRequest Request body for updating Link
|
|
@@ -4027,12 +4050,12 @@ export declare class LinkApi extends BaseAPI implements LinkApiInterface {
|
|
|
4027
4050
|
* @param {string} [country] The country the institution belongs to
|
|
4028
4051
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
4029
4052
|
* @param {string} [productsSupported] The products that this institution supports
|
|
4030
|
-
* @param {
|
|
4053
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
4031
4054
|
* @param {*} [options] Override http request option.
|
|
4032
4055
|
* @throws {RequiredError}
|
|
4033
4056
|
* @memberof LinkApi
|
|
4034
4057
|
*/
|
|
4035
|
-
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?:
|
|
4058
|
+
listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
|
|
4036
4059
|
/**
|
|
4037
4060
|
* Update an existing link
|
|
4038
4061
|
* @param {RelinkRequest} relinkRequest Request body for updating Link
|
package/dist/api.js
CHANGED
|
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SubmitAuthChecklistRequestSenderTypeEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentInstructionTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestUiModeEnum = exports.GetPaymentResponseStatusEnum = exports.GetPaymentResponseTypeEnum = exports.GetMandateResponseMandateStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreatePaymentRequestTypeEnum = exports.AuthChecklistOptionsSubmittedByEnum = exports.AuthChecklistOptionsNameEnum = exports.AuthChecklistFactorRequiredEnum = exports.AuthChecklistFactorTypeEnum = void 0;
|
|
25
|
+
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SubmitAuthChecklistRequestSenderTypeEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentInstructionTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestUiModeEnum = exports.InstitutionStatusEnum = exports.InstitutionUserTypeEnum = exports.InstitutionProductsSupportedEnum = exports.InstitutionInstitutionTypeEnum = exports.InstitutionTagsEnum = exports.GetPaymentResponseStatusEnum = exports.GetPaymentResponseTypeEnum = exports.GetMandateResponseMandateStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreatePaymentRequestTypeEnum = exports.AuthChecklistOptionsSubmittedByEnum = exports.AuthChecklistOptionsNameEnum = exports.AuthChecklistFactorRequiredEnum = exports.AuthChecklistFactorTypeEnum = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -87,6 +87,30 @@ exports.GetPaymentResponseStatusEnum = {
|
|
|
87
87
|
Rejected: 'REJECTED',
|
|
88
88
|
Cancelled: 'CANCELLED',
|
|
89
89
|
};
|
|
90
|
+
exports.InstitutionTagsEnum = {
|
|
91
|
+
Real: 'real',
|
|
92
|
+
Test: 'test',
|
|
93
|
+
};
|
|
94
|
+
exports.InstitutionInstitutionTypeEnum = {
|
|
95
|
+
Bank: 'BANK',
|
|
96
|
+
Wallet: 'WALLET',
|
|
97
|
+
};
|
|
98
|
+
exports.InstitutionProductsSupportedEnum = {
|
|
99
|
+
Accounts: 'ACCOUNTS',
|
|
100
|
+
Transactions: 'TRANSACTIONS',
|
|
101
|
+
Statements: 'STATEMENTS',
|
|
102
|
+
AccountNumbers: 'ACCOUNT_NUMBERS',
|
|
103
|
+
Identity: 'IDENTITY',
|
|
104
|
+
};
|
|
105
|
+
exports.InstitutionUserTypeEnum = {
|
|
106
|
+
Personal: 'PERSONAL',
|
|
107
|
+
Business: 'BUSINESS',
|
|
108
|
+
};
|
|
109
|
+
exports.InstitutionStatusEnum = {
|
|
110
|
+
Supported: 'SUPPORTED',
|
|
111
|
+
Alpha: 'ALPHA',
|
|
112
|
+
Beta: 'BETA',
|
|
113
|
+
};
|
|
90
114
|
exports.LinkTokenRequestUiModeEnum = {
|
|
91
115
|
Iframe: 'iframe',
|
|
92
116
|
Redirect: 'redirect',
|
|
@@ -326,7 +350,7 @@ exports.CustomerApiAxiosParamCreator = function (configuration) {
|
|
|
326
350
|
* @param {string} [country] The country the institution belongs to
|
|
327
351
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
328
352
|
* @param {string} [productsSupported] The products that this institution supports
|
|
329
|
-
* @param {
|
|
353
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
330
354
|
* @param {*} [options] Override http request option.
|
|
331
355
|
* @throws {RequiredError}
|
|
332
356
|
*/
|
|
@@ -482,7 +506,7 @@ exports.CustomerApiFp = function (configuration) {
|
|
|
482
506
|
* @param {string} [country] The country the institution belongs to
|
|
483
507
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
484
508
|
* @param {string} [productsSupported] The products that this institution supports
|
|
485
|
-
* @param {
|
|
509
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
486
510
|
* @param {*} [options] Override http request option.
|
|
487
511
|
* @throws {RequiredError}
|
|
488
512
|
*/
|
|
@@ -576,7 +600,7 @@ exports.CustomerApiFactory = function (configuration, basePath, axios) {
|
|
|
576
600
|
* @param {string} [country] The country the institution belongs to
|
|
577
601
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
578
602
|
* @param {string} [productsSupported] The products that this institution supports
|
|
579
|
-
* @param {
|
|
603
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
580
604
|
* @param {*} [options] Override http request option.
|
|
581
605
|
* @throws {RequiredError}
|
|
582
606
|
*/
|
|
@@ -680,7 +704,7 @@ class CustomerApi extends base_1.BaseAPI {
|
|
|
680
704
|
* @param {string} [country] The country the institution belongs to
|
|
681
705
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
682
706
|
* @param {string} [productsSupported] The products that this institution supports
|
|
683
|
-
* @param {
|
|
707
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
684
708
|
* @param {*} [options] Override http request option.
|
|
685
709
|
* @throws {RequiredError}
|
|
686
710
|
* @memberof CustomerApi
|
|
@@ -774,7 +798,7 @@ exports.LinkApiAxiosParamCreator = function (configuration) {
|
|
|
774
798
|
* @param {string} [country] The country the institution belongs to
|
|
775
799
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
776
800
|
* @param {string} [productsSupported] The products that this institution supports
|
|
777
|
-
* @param {
|
|
801
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
778
802
|
* @param {*} [options] Override http request option.
|
|
779
803
|
* @throws {RequiredError}
|
|
780
804
|
*/
|
|
@@ -935,7 +959,7 @@ exports.LinkApiFp = function (configuration) {
|
|
|
935
959
|
* @param {string} [country] The country the institution belongs to
|
|
936
960
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
937
961
|
* @param {string} [productsSupported] The products that this institution supports
|
|
938
|
-
* @param {
|
|
962
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
939
963
|
* @param {*} [options] Override http request option.
|
|
940
964
|
* @throws {RequiredError}
|
|
941
965
|
*/
|
|
@@ -1003,7 +1027,7 @@ exports.LinkApiFactory = function (configuration, basePath, axios) {
|
|
|
1003
1027
|
* @param {string} [country] The country the institution belongs to
|
|
1004
1028
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
1005
1029
|
* @param {string} [productsSupported] The products that this institution supports
|
|
1006
|
-
* @param {
|
|
1030
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
1007
1031
|
* @param {*} [options] Override http request option.
|
|
1008
1032
|
* @throws {RequiredError}
|
|
1009
1033
|
*/
|
|
@@ -1072,7 +1096,7 @@ class LinkApi extends base_1.BaseAPI {
|
|
|
1072
1096
|
* @param {string} [country] The country the institution belongs to
|
|
1073
1097
|
* @param {Array<string>} [countries] The countries the institution belongs to
|
|
1074
1098
|
* @param {string} [productsSupported] The products that this institution supports
|
|
1075
|
-
* @param {
|
|
1099
|
+
* @param {'BANK' | 'WALLET'} [institutionType] The type of institution
|
|
1076
1100
|
* @param {*} [options] Override http request option.
|
|
1077
1101
|
* @throws {RequiredError}
|
|
1078
1102
|
* @memberof LinkApi
|