@finverse/sdk-typescript 0.0.62 → 0.0.63

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
@@ -1832,6 +1832,7 @@ export declare type InstitutionTagsEnum = typeof InstitutionTagsEnum[keyof typeo
1832
1832
  export declare const InstitutionInstitutionTypeEnum: {
1833
1833
  readonly Bank: "BANK";
1834
1834
  readonly Wallet: "WALLET";
1835
+ readonly Test: "TEST";
1835
1836
  };
1836
1837
  export declare type InstitutionInstitutionTypeEnum = typeof InstitutionInstitutionTypeEnum[keyof typeof InstitutionInstitutionTypeEnum];
1837
1838
  export declare const InstitutionProductsSupportedEnum: {
@@ -3541,11 +3542,11 @@ export declare const CustomerApiAxiosParamCreator: (configuration?: Configuratio
3541
3542
  * @param {string} [country] The country the institution belongs to
3542
3543
  * @param {Array<string>} [countries] The countries the institution belongs to
3543
3544
  * @param {string} [productsSupported] The products that this institution supports
3544
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3545
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
3545
3546
  * @param {*} [options] Override http request option.
3546
3547
  * @throws {RequiredError}
3547
3548
  */
3548
- listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig) => Promise<RequestArgs>;
3549
+ listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig) => Promise<RequestArgs>;
3549
3550
  /**
3550
3551
  * Refresh an access token
3551
3552
  * @param {RefreshRequest} refreshRequest The refresh token
@@ -3606,11 +3607,11 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
3606
3607
  * @param {string} [country] The country the institution belongs to
3607
3608
  * @param {Array<string>} [countries] The countries the institution belongs to
3608
3609
  * @param {string} [productsSupported] The products that this institution supports
3609
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3610
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
3610
3611
  * @param {*} [options] Override http request option.
3611
3612
  * @throws {RequiredError}
3612
3613
  */
3613
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
3614
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
3614
3615
  /**
3615
3616
  * Refresh an access token
3616
3617
  * @param {RefreshRequest} refreshRequest The refresh token
@@ -3671,11 +3672,11 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
3671
3672
  * @param {string} [country] The country the institution belongs to
3672
3673
  * @param {Array<string>} [countries] The countries the institution belongs to
3673
3674
  * @param {string} [productsSupported] The products that this institution supports
3674
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3675
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
3675
3676
  * @param {*} [options] Override http request option.
3676
3677
  * @throws {RequiredError}
3677
3678
  */
3678
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: any): AxiosPromise<Array<Institution>>;
3679
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: any): AxiosPromise<Array<Institution>>;
3679
3680
  /**
3680
3681
  * Refresh an access token
3681
3682
  * @param {RefreshRequest} refreshRequest The refresh token
@@ -3743,12 +3744,12 @@ export interface CustomerApiInterface {
3743
3744
  * @param {string} [country] The country the institution belongs to
3744
3745
  * @param {Array<string>} [countries] The countries the institution belongs to
3745
3746
  * @param {string} [productsSupported] The products that this institution supports
3746
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3747
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
3747
3748
  * @param {*} [options] Override http request option.
3748
3749
  * @throws {RequiredError}
3749
3750
  * @memberof CustomerApiInterface
3750
3751
  */
3751
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
3752
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
3752
3753
  /**
3753
3754
  * Refresh an access token
3754
3755
  * @param {RefreshRequest} refreshRequest The refresh token
@@ -3818,12 +3819,12 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
3818
3819
  * @param {string} [country] The country the institution belongs to
3819
3820
  * @param {Array<string>} [countries] The countries the institution belongs to
3820
3821
  * @param {string} [productsSupported] The products that this institution supports
3821
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3822
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
3822
3823
  * @param {*} [options] Override http request option.
3823
3824
  * @throws {RequiredError}
3824
3825
  * @memberof CustomerApi
3825
3826
  */
3826
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
3827
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
3827
3828
  /**
3828
3829
  * Refresh an access token
3829
3830
  * @param {RefreshRequest} refreshRequest The refresh token
@@ -3856,11 +3857,11 @@ export declare const LinkApiAxiosParamCreator: (configuration?: Configuration) =
3856
3857
  * @param {string} [country] The country the institution belongs to
3857
3858
  * @param {Array<string>} [countries] The countries the institution belongs to
3858
3859
  * @param {string} [productsSupported] The products that this institution supports
3859
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3860
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
3860
3861
  * @param {*} [options] Override http request option.
3861
3862
  * @throws {RequiredError}
3862
3863
  */
3863
- listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig) => Promise<RequestArgs>;
3864
+ listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig) => Promise<RequestArgs>;
3864
3865
  /**
3865
3866
  * Update an existing link
3866
3867
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -3902,11 +3903,11 @@ export declare const LinkApiFp: (configuration?: Configuration) => {
3902
3903
  * @param {string} [country] The country the institution belongs to
3903
3904
  * @param {Array<string>} [countries] The countries the institution belongs to
3904
3905
  * @param {string} [productsSupported] The products that this institution supports
3905
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3906
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
3906
3907
  * @param {*} [options] Override http request option.
3907
3908
  * @throws {RequiredError}
3908
3909
  */
3909
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
3910
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
3910
3911
  /**
3911
3912
  * Update an existing link
3912
3913
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -3948,11 +3949,11 @@ export declare const LinkApiFactory: (configuration?: Configuration, basePath?:
3948
3949
  * @param {string} [country] The country the institution belongs to
3949
3950
  * @param {Array<string>} [countries] The countries the institution belongs to
3950
3951
  * @param {string} [productsSupported] The products that this institution supports
3951
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
3952
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
3952
3953
  * @param {*} [options] Override http request option.
3953
3954
  * @throws {RequiredError}
3954
3955
  */
3955
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: any): AxiosPromise<Array<Institution>>;
3956
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: any): AxiosPromise<Array<Institution>>;
3956
3957
  /**
3957
3958
  * Update an existing link
3958
3959
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -3997,12 +3998,12 @@ export interface LinkApiInterface {
3997
3998
  * @param {string} [country] The country the institution belongs to
3998
3999
  * @param {Array<string>} [countries] The countries the institution belongs to
3999
4000
  * @param {string} [productsSupported] The products that this institution supports
4000
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
4001
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
4001
4002
  * @param {*} [options] Override http request option.
4002
4003
  * @throws {RequiredError}
4003
4004
  * @memberof LinkApiInterface
4004
4005
  */
4005
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
4006
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
4006
4007
  /**
4007
4008
  * Update an existing link
4008
4009
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -4050,12 +4051,12 @@ export declare class LinkApi extends BaseAPI implements LinkApiInterface {
4050
4051
  * @param {string} [country] The country the institution belongs to
4051
4052
  * @param {Array<string>} [countries] The countries the institution belongs to
4052
4053
  * @param {string} [productsSupported] The products that this institution supports
4053
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
4054
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
4054
4055
  * @param {*} [options] Override http request option.
4055
4056
  * @throws {RequiredError}
4056
4057
  * @memberof LinkApi
4057
4058
  */
4058
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
4059
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
4059
4060
  /**
4060
4061
  * Update an existing link
4061
4062
  * @param {RelinkRequest} relinkRequest Request body for updating Link
package/dist/api.js CHANGED
@@ -94,6 +94,7 @@ exports.InstitutionTagsEnum = {
94
94
  exports.InstitutionInstitutionTypeEnum = {
95
95
  Bank: 'BANK',
96
96
  Wallet: 'WALLET',
97
+ Test: 'TEST',
97
98
  };
98
99
  exports.InstitutionProductsSupportedEnum = {
99
100
  Accounts: 'ACCOUNTS',
@@ -350,7 +351,7 @@ exports.CustomerApiAxiosParamCreator = function (configuration) {
350
351
  * @param {string} [country] The country the institution belongs to
351
352
  * @param {Array<string>} [countries] The countries the institution belongs to
352
353
  * @param {string} [productsSupported] The products that this institution supports
353
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
354
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
354
355
  * @param {*} [options] Override http request option.
355
356
  * @throws {RequiredError}
356
357
  */
@@ -506,7 +507,7 @@ exports.CustomerApiFp = function (configuration) {
506
507
  * @param {string} [country] The country the institution belongs to
507
508
  * @param {Array<string>} [countries] The countries the institution belongs to
508
509
  * @param {string} [productsSupported] The products that this institution supports
509
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
510
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
510
511
  * @param {*} [options] Override http request option.
511
512
  * @throws {RequiredError}
512
513
  */
@@ -600,7 +601,7 @@ exports.CustomerApiFactory = function (configuration, basePath, axios) {
600
601
  * @param {string} [country] The country the institution belongs to
601
602
  * @param {Array<string>} [countries] The countries the institution belongs to
602
603
  * @param {string} [productsSupported] The products that this institution supports
603
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
604
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
604
605
  * @param {*} [options] Override http request option.
605
606
  * @throws {RequiredError}
606
607
  */
@@ -704,7 +705,7 @@ class CustomerApi extends base_1.BaseAPI {
704
705
  * @param {string} [country] The country the institution belongs to
705
706
  * @param {Array<string>} [countries] The countries the institution belongs to
706
707
  * @param {string} [productsSupported] The products that this institution supports
707
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
708
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
708
709
  * @param {*} [options] Override http request option.
709
710
  * @throws {RequiredError}
710
711
  * @memberof CustomerApi
@@ -798,7 +799,7 @@ exports.LinkApiAxiosParamCreator = function (configuration) {
798
799
  * @param {string} [country] The country the institution belongs to
799
800
  * @param {Array<string>} [countries] The countries the institution belongs to
800
801
  * @param {string} [productsSupported] The products that this institution supports
801
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
802
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
802
803
  * @param {*} [options] Override http request option.
803
804
  * @throws {RequiredError}
804
805
  */
@@ -959,7 +960,7 @@ exports.LinkApiFp = function (configuration) {
959
960
  * @param {string} [country] The country the institution belongs to
960
961
  * @param {Array<string>} [countries] The countries the institution belongs to
961
962
  * @param {string} [productsSupported] The products that this institution supports
962
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
963
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
963
964
  * @param {*} [options] Override http request option.
964
965
  * @throws {RequiredError}
965
966
  */
@@ -1027,7 +1028,7 @@ exports.LinkApiFactory = function (configuration, basePath, axios) {
1027
1028
  * @param {string} [country] The country the institution belongs to
1028
1029
  * @param {Array<string>} [countries] The countries the institution belongs to
1029
1030
  * @param {string} [productsSupported] The products that this institution supports
1030
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
1031
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
1031
1032
  * @param {*} [options] Override http request option.
1032
1033
  * @throws {RequiredError}
1033
1034
  */
@@ -1096,7 +1097,7 @@ class LinkApi extends base_1.BaseAPI {
1096
1097
  * @param {string} [country] The country the institution belongs to
1097
1098
  * @param {Array<string>} [countries] The countries the institution belongs to
1098
1099
  * @param {string} [productsSupported] The products that this institution supports
1099
- * @param {'BANK' | 'WALLET'} [institutionType] The type of institution
1100
+ * @param {'BANK' | 'WALLET' | 'TEST'} [institutionType] The type of institution
1100
1101
  * @param {*} [options] Override http request option.
1101
1102
  * @throws {RequiredError}
1102
1103
  * @memberof LinkApi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.62",
3
+ "version": "0.0.63",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [