@finverse/sdk-typescript 0.0.59 → 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 CHANGED
@@ -3,7 +3,7 @@
3
3
  * Documentation of the early finverse services
4
4
  *
5
5
  * The version of the OpenAPI document: 0.0.1
6
- * Contact: devs@finverse.com
6
+ * Contact: info@finverse.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
9
  * https://openapi-generator.tech
@@ -559,18 +559,7 @@ export interface CreateMandateSender {
559
559
  * @memberof CreateMandateSender
560
560
  */
561
561
  sender_reference_id?: string;
562
- /**
563
- * Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are INDIVIDUAL, BUSINESS
564
- * @type {string}
565
- * @memberof CreateMandateSender
566
- */
567
- sender_type?: CreateMandateSenderSenderTypeEnum;
568
562
  }
569
- export declare const CreateMandateSenderSenderTypeEnum: {
570
- readonly Individual: "INDIVIDUAL";
571
- readonly Business: "BUSINESS";
572
- };
573
- export declare type CreateMandateSenderSenderTypeEnum = typeof CreateMandateSenderSenderTypeEnum[keyof typeof CreateMandateSenderSenderTypeEnum];
574
563
  /**
575
564
  *
576
565
  * @export
@@ -1186,18 +1175,7 @@ export interface GetMandateSender {
1186
1175
  * @memberof GetMandateSender
1187
1176
  */
1188
1177
  sender_account: PaymentAccount;
1189
- /**
1190
- * Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are INDIVIDUAL, BUSINESS
1191
- * @type {string}
1192
- * @memberof GetMandateSender
1193
- */
1194
- sender_type?: GetMandateSenderSenderTypeEnum;
1195
1178
  }
1196
- export declare const GetMandateSenderSenderTypeEnum: {
1197
- readonly Individual: "INDIVIDUAL";
1198
- readonly Business: "BUSINESS";
1199
- };
1200
- export declare type GetMandateSenderSenderTypeEnum = typeof GetMandateSenderSenderTypeEnum[keyof typeof GetMandateSenderSenderTypeEnum];
1201
1179
  /**
1202
1180
  *
1203
1181
  * @export
@@ -1766,19 +1744,19 @@ export interface Institution {
1766
1744
  * @type {Array<string>}
1767
1745
  * @memberof Institution
1768
1746
  */
1769
- tags?: Array<string>;
1747
+ tags?: Array<InstitutionTagsEnum>;
1770
1748
  /**
1771
1749
  *
1772
1750
  * @type {string}
1773
1751
  * @memberof Institution
1774
1752
  */
1775
- institution_type: string;
1753
+ institution_type: InstitutionInstitutionTypeEnum;
1776
1754
  /**
1777
1755
  *
1778
1756
  * @type {Array<string>}
1779
1757
  * @memberof Institution
1780
1758
  */
1781
- products_supported: Array<string>;
1759
+ products_supported: Array<InstitutionProductsSupportedEnum>;
1782
1760
  /**
1783
1761
  *
1784
1762
  * @type {string}
@@ -1802,13 +1780,13 @@ export interface Institution {
1802
1780
  * @type {string}
1803
1781
  * @memberof Institution
1804
1782
  */
1805
- user_type: string;
1783
+ user_type: InstitutionUserTypeEnum;
1806
1784
  /**
1807
1785
  *
1808
1786
  * @type {string}
1809
1787
  * @memberof Institution
1810
1788
  */
1811
- status: string;
1789
+ status: InstitutionStatusEnum;
1812
1790
  /**
1813
1791
  *
1814
1792
  * @type {object}
@@ -1845,13 +1823,36 @@ export interface Institution {
1845
1823
  * @memberof Institution
1846
1824
  */
1847
1825
  updated_at?: string;
1848
- /**
1849
- *
1850
- * @type {Array<string>}
1851
- * @memberof Institution
1852
- */
1853
- payment_rails?: Array<string>;
1854
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];
1855
1856
  /**
1856
1857
  *
1857
1858
  * @export
@@ -3540,11 +3541,11 @@ export declare const CustomerApiAxiosParamCreator: (configuration?: Configuratio
3540
3541
  * @param {string} [country] The country the institution belongs to
3541
3542
  * @param {Array<string>} [countries] The countries the institution belongs to
3542
3543
  * @param {string} [productsSupported] The products that this institution supports
3543
- * @param {string} [institutionType] The type of institution
3544
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3544
3545
  * @param {*} [options] Override http request option.
3545
3546
  * @throws {RequiredError}
3546
3547
  */
3547
- listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3548
+ listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig) => Promise<RequestArgs>;
3548
3549
  /**
3549
3550
  * Refresh an access token
3550
3551
  * @param {RefreshRequest} refreshRequest The refresh token
@@ -3605,11 +3606,11 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
3605
3606
  * @param {string} [country] The country the institution belongs to
3606
3607
  * @param {Array<string>} [countries] The countries the institution belongs to
3607
3608
  * @param {string} [productsSupported] The products that this institution supports
3608
- * @param {string} [institutionType] The type of institution
3609
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3609
3610
  * @param {*} [options] Override http request option.
3610
3611
  * @throws {RequiredError}
3611
3612
  */
3612
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
3613
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
3613
3614
  /**
3614
3615
  * Refresh an access token
3615
3616
  * @param {RefreshRequest} refreshRequest The refresh token
@@ -3670,11 +3671,11 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
3670
3671
  * @param {string} [country] The country the institution belongs to
3671
3672
  * @param {Array<string>} [countries] The countries the institution belongs to
3672
3673
  * @param {string} [productsSupported] The products that this institution supports
3673
- * @param {string} [institutionType] The type of institution
3674
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3674
3675
  * @param {*} [options] Override http request option.
3675
3676
  * @throws {RequiredError}
3676
3677
  */
3677
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: string, options?: any): AxiosPromise<Array<Institution>>;
3678
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: any): AxiosPromise<Array<Institution>>;
3678
3679
  /**
3679
3680
  * Refresh an access token
3680
3681
  * @param {RefreshRequest} refreshRequest The refresh token
@@ -3742,12 +3743,12 @@ export interface CustomerApiInterface {
3742
3743
  * @param {string} [country] The country the institution belongs to
3743
3744
  * @param {Array<string>} [countries] The countries the institution belongs to
3744
3745
  * @param {string} [productsSupported] The products that this institution supports
3745
- * @param {string} [institutionType] The type of institution
3746
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3746
3747
  * @param {*} [options] Override http request option.
3747
3748
  * @throws {RequiredError}
3748
3749
  * @memberof CustomerApiInterface
3749
3750
  */
3750
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: string, options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
3751
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
3751
3752
  /**
3752
3753
  * Refresh an access token
3753
3754
  * @param {RefreshRequest} refreshRequest The refresh token
@@ -3817,12 +3818,12 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
3817
3818
  * @param {string} [country] The country the institution belongs to
3818
3819
  * @param {Array<string>} [countries] The countries the institution belongs to
3819
3820
  * @param {string} [productsSupported] The products that this institution supports
3820
- * @param {string} [institutionType] The type of institution
3821
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3821
3822
  * @param {*} [options] Override http request option.
3822
3823
  * @throws {RequiredError}
3823
3824
  * @memberof CustomerApi
3824
3825
  */
3825
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
3826
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
3826
3827
  /**
3827
3828
  * Refresh an access token
3828
3829
  * @param {RefreshRequest} refreshRequest The refresh token
@@ -3855,11 +3856,11 @@ export declare const LinkApiAxiosParamCreator: (configuration?: Configuration) =
3855
3856
  * @param {string} [country] The country the institution belongs to
3856
3857
  * @param {Array<string>} [countries] The countries the institution belongs to
3857
3858
  * @param {string} [productsSupported] The products that this institution supports
3858
- * @param {string} [institutionType] The type of institution
3859
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3859
3860
  * @param {*} [options] Override http request option.
3860
3861
  * @throws {RequiredError}
3861
3862
  */
3862
- listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3863
+ listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig) => Promise<RequestArgs>;
3863
3864
  /**
3864
3865
  * Update an existing link
3865
3866
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -3901,11 +3902,11 @@ export declare const LinkApiFp: (configuration?: Configuration) => {
3901
3902
  * @param {string} [country] The country the institution belongs to
3902
3903
  * @param {Array<string>} [countries] The countries the institution belongs to
3903
3904
  * @param {string} [productsSupported] The products that this institution supports
3904
- * @param {string} [institutionType] The type of institution
3905
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3905
3906
  * @param {*} [options] Override http request option.
3906
3907
  * @throws {RequiredError}
3907
3908
  */
3908
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
3909
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
3909
3910
  /**
3910
3911
  * Update an existing link
3911
3912
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -3947,11 +3948,11 @@ export declare const LinkApiFactory: (configuration?: Configuration, basePath?:
3947
3948
  * @param {string} [country] The country the institution belongs to
3948
3949
  * @param {Array<string>} [countries] The countries the institution belongs to
3949
3950
  * @param {string} [productsSupported] The products that this institution supports
3950
- * @param {string} [institutionType] The type of institution
3951
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3951
3952
  * @param {*} [options] Override http request option.
3952
3953
  * @throws {RequiredError}
3953
3954
  */
3954
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: string, options?: any): AxiosPromise<Array<Institution>>;
3955
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: any): AxiosPromise<Array<Institution>>;
3955
3956
  /**
3956
3957
  * Update an existing link
3957
3958
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -3996,12 +3997,12 @@ export interface LinkApiInterface {
3996
3997
  * @param {string} [country] The country the institution belongs to
3997
3998
  * @param {Array<string>} [countries] The countries the institution belongs to
3998
3999
  * @param {string} [productsSupported] The products that this institution supports
3999
- * @param {string} [institutionType] The type of institution
4000
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
4000
4001
  * @param {*} [options] Override http request option.
4001
4002
  * @throws {RequiredError}
4002
4003
  * @memberof LinkApiInterface
4003
4004
  */
4004
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: string, options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
4005
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
4005
4006
  /**
4006
4007
  * Update an existing link
4007
4008
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -4049,12 +4050,12 @@ export declare class LinkApi extends BaseAPI implements LinkApiInterface {
4049
4050
  * @param {string} [country] The country the institution belongs to
4050
4051
  * @param {Array<string>} [countries] The countries the institution belongs to
4051
4052
  * @param {string} [productsSupported] The products that this institution supports
4052
- * @param {string} [institutionType] The type of institution
4053
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
4053
4054
  * @param {*} [options] Override http request option.
4054
4055
  * @throws {RequiredError}
4055
4056
  * @memberof LinkApi
4056
4057
  */
4057
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
4058
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
4058
4059
  /**
4059
4060
  * Update an existing link
4060
4061
  * @param {RelinkRequest} relinkRequest Request body for updating Link
package/dist/api.js CHANGED
@@ -6,7 +6,7 @@
6
6
  * Documentation of the early finverse services
7
7
  *
8
8
  * The version of the OpenAPI document: 0.0.1
9
- * Contact: devs@finverse.com
9
+ * Contact: info@finverse.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
12
  * https://openapi-generator.tech
@@ -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.GetMandateSenderSenderTypeEnum = exports.GetMandateResponseMandateStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreatePaymentRequestTypeEnum = exports.CreateMandateSenderSenderTypeEnum = 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
@@ -48,10 +48,6 @@ exports.AuthChecklistOptionsSubmittedByEnum = {
48
48
  CustomerApp: 'CUSTOMER_APP',
49
49
  FinverseLink: 'FINVERSE_LINK',
50
50
  };
51
- exports.CreateMandateSenderSenderTypeEnum = {
52
- Individual: 'INDIVIDUAL',
53
- Business: 'BUSINESS',
54
- };
55
51
  exports.CreatePaymentRequestTypeEnum = {
56
52
  Mandate: 'MANDATE',
57
53
  Single: 'SINGLE',
@@ -78,10 +74,6 @@ exports.GetMandateResponseMandateStatusEnum = {
78
74
  Submitted: 'SUBMITTED',
79
75
  Error: 'ERROR',
80
76
  };
81
- exports.GetMandateSenderSenderTypeEnum = {
82
- Individual: 'INDIVIDUAL',
83
- Business: 'BUSINESS',
84
- };
85
77
  exports.GetPaymentResponseTypeEnum = {
86
78
  Mandate: 'MANDATE',
87
79
  Single: 'SINGLE',
@@ -95,6 +87,30 @@ exports.GetPaymentResponseStatusEnum = {
95
87
  Rejected: 'REJECTED',
96
88
  Cancelled: 'CANCELLED',
97
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
+ };
98
114
  exports.LinkTokenRequestUiModeEnum = {
99
115
  Iframe: 'iframe',
100
116
  Redirect: 'redirect',
@@ -334,7 +350,7 @@ exports.CustomerApiAxiosParamCreator = function (configuration) {
334
350
  * @param {string} [country] The country the institution belongs to
335
351
  * @param {Array<string>} [countries] The countries the institution belongs to
336
352
  * @param {string} [productsSupported] The products that this institution supports
337
- * @param {string} [institutionType] The type of institution
353
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
338
354
  * @param {*} [options] Override http request option.
339
355
  * @throws {RequiredError}
340
356
  */
@@ -490,7 +506,7 @@ exports.CustomerApiFp = function (configuration) {
490
506
  * @param {string} [country] The country the institution belongs to
491
507
  * @param {Array<string>} [countries] The countries the institution belongs to
492
508
  * @param {string} [productsSupported] The products that this institution supports
493
- * @param {string} [institutionType] The type of institution
509
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
494
510
  * @param {*} [options] Override http request option.
495
511
  * @throws {RequiredError}
496
512
  */
@@ -584,7 +600,7 @@ exports.CustomerApiFactory = function (configuration, basePath, axios) {
584
600
  * @param {string} [country] The country the institution belongs to
585
601
  * @param {Array<string>} [countries] The countries the institution belongs to
586
602
  * @param {string} [productsSupported] The products that this institution supports
587
- * @param {string} [institutionType] The type of institution
603
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
588
604
  * @param {*} [options] Override http request option.
589
605
  * @throws {RequiredError}
590
606
  */
@@ -688,7 +704,7 @@ class CustomerApi extends base_1.BaseAPI {
688
704
  * @param {string} [country] The country the institution belongs to
689
705
  * @param {Array<string>} [countries] The countries the institution belongs to
690
706
  * @param {string} [productsSupported] The products that this institution supports
691
- * @param {string} [institutionType] The type of institution
707
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
692
708
  * @param {*} [options] Override http request option.
693
709
  * @throws {RequiredError}
694
710
  * @memberof CustomerApi
@@ -782,7 +798,7 @@ exports.LinkApiAxiosParamCreator = function (configuration) {
782
798
  * @param {string} [country] The country the institution belongs to
783
799
  * @param {Array<string>} [countries] The countries the institution belongs to
784
800
  * @param {string} [productsSupported] The products that this institution supports
785
- * @param {string} [institutionType] The type of institution
801
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
786
802
  * @param {*} [options] Override http request option.
787
803
  * @throws {RequiredError}
788
804
  */
@@ -943,7 +959,7 @@ exports.LinkApiFp = function (configuration) {
943
959
  * @param {string} [country] The country the institution belongs to
944
960
  * @param {Array<string>} [countries] The countries the institution belongs to
945
961
  * @param {string} [productsSupported] The products that this institution supports
946
- * @param {string} [institutionType] The type of institution
962
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
947
963
  * @param {*} [options] Override http request option.
948
964
  * @throws {RequiredError}
949
965
  */
@@ -1011,7 +1027,7 @@ exports.LinkApiFactory = function (configuration, basePath, axios) {
1011
1027
  * @param {string} [country] The country the institution belongs to
1012
1028
  * @param {Array<string>} [countries] The countries the institution belongs to
1013
1029
  * @param {string} [productsSupported] The products that this institution supports
1014
- * @param {string} [institutionType] The type of institution
1030
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
1015
1031
  * @param {*} [options] Override http request option.
1016
1032
  * @throws {RequiredError}
1017
1033
  */
@@ -1080,7 +1096,7 @@ class LinkApi extends base_1.BaseAPI {
1080
1096
  * @param {string} [country] The country the institution belongs to
1081
1097
  * @param {Array<string>} [countries] The countries the institution belongs to
1082
1098
  * @param {string} [productsSupported] The products that this institution supports
1083
- * @param {string} [institutionType] The type of institution
1099
+ * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
1084
1100
  * @param {*} [options] Override http request option.
1085
1101
  * @throws {RequiredError}
1086
1102
  * @memberof LinkApi
package/dist/base.d.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * Documentation of the early finverse services
4
4
  *
5
5
  * The version of the OpenAPI document: 0.0.1
6
- * Contact: devs@finverse.com
6
+ * Contact: info@finverse.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
9
  * https://openapi-generator.tech
package/dist/base.js CHANGED
@@ -6,7 +6,7 @@
6
6
  * Documentation of the early finverse services
7
7
  *
8
8
  * The version of the OpenAPI document: 0.0.1
9
- * Contact: devs@finverse.com
9
+ * Contact: info@finverse.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
12
  * https://openapi-generator.tech
package/dist/common.d.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * Documentation of the early finverse services
4
4
  *
5
5
  * The version of the OpenAPI document: 0.0.1
6
- * Contact: devs@finverse.com
6
+ * Contact: info@finverse.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
9
  * https://openapi-generator.tech
package/dist/common.js CHANGED
@@ -6,7 +6,7 @@
6
6
  * Documentation of the early finverse services
7
7
  *
8
8
  * The version of the OpenAPI document: 0.0.1
9
- * Contact: devs@finverse.com
9
+ * Contact: info@finverse.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
12
  * https://openapi-generator.tech
@@ -3,7 +3,7 @@
3
3
  * Documentation of the early finverse services
4
4
  *
5
5
  * The version of the OpenAPI document: 0.0.1
6
- * Contact: devs@finverse.com
6
+ * Contact: info@finverse.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
9
  * https://openapi-generator.tech
@@ -6,7 +6,7 @@
6
6
  * Documentation of the early finverse services
7
7
  *
8
8
  * The version of the OpenAPI document: 0.0.1
9
- * Contact: devs@finverse.com
9
+ * Contact: info@finverse.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
12
  * https://openapi-generator.tech
package/dist/index.d.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * Documentation of the early finverse services
4
4
  *
5
5
  * The version of the OpenAPI document: 0.0.1
6
- * Contact: devs@finverse.com
6
+ * Contact: info@finverse.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
9
  * https://openapi-generator.tech
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@
6
6
  * Documentation of the early finverse services
7
7
  *
8
8
  * The version of the OpenAPI document: 0.0.1
9
- * Contact: devs@finverse.com
9
+ * Contact: info@finverse.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
12
  * https://openapi-generator.tech
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.59",
3
+ "version": "0.0.62",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [