@finverse/sdk-typescript 0.0.139 → 0.0.140

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
@@ -6339,13 +6339,6 @@ export declare const LinkApiAxiosParamCreator: (configuration?: Configuration) =
6339
6339
  * @throws {RequiredError}
6340
6340
  */
6341
6341
  listInstitutions: (country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig) => Promise<RequestArgs>;
6342
- /**
6343
- * Check the status of a given loginIdentity
6344
- * @param {string} loginIdentityId The login identity id
6345
- * @param {*} [options] Override http request option.
6346
- * @throws {RequiredError}
6347
- */
6348
- postLinkStatus: (loginIdentityId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6349
6342
  /**
6350
6343
  * Update an existing link
6351
6344
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -6423,13 +6416,6 @@ export declare const LinkApiFp: (configuration?: Configuration) => {
6423
6416
  * @throws {RequiredError}
6424
6417
  */
6425
6418
  listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
6426
- /**
6427
- * Check the status of a given loginIdentity
6428
- * @param {string} loginIdentityId The login identity id
6429
- * @param {*} [options] Override http request option.
6430
- * @throws {RequiredError}
6431
- */
6432
- postLinkStatus(loginIdentityId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkStatusResponse>>;
6433
6419
  /**
6434
6420
  * Update an existing link
6435
6421
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -6507,13 +6493,6 @@ export declare const LinkApiFactory: (configuration?: Configuration, basePath?:
6507
6493
  * @throws {RequiredError}
6508
6494
  */
6509
6495
  listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: any): AxiosPromise<Array<Institution>>;
6510
- /**
6511
- * Check the status of a given loginIdentity
6512
- * @param {string} loginIdentityId The login identity id
6513
- * @param {*} [options] Override http request option.
6514
- * @throws {RequiredError}
6515
- */
6516
- postLinkStatus(loginIdentityId: string, options?: any): AxiosPromise<LinkStatusResponse>;
6517
6496
  /**
6518
6497
  * Update an existing link
6519
6498
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -6598,14 +6577,6 @@ export interface LinkApiInterface {
6598
6577
  * @memberof LinkApiInterface
6599
6578
  */
6600
6579
  listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): AxiosPromise<Array<Institution>>;
6601
- /**
6602
- * Check the status of a given loginIdentity
6603
- * @param {string} loginIdentityId The login identity id
6604
- * @param {*} [options] Override http request option.
6605
- * @throws {RequiredError}
6606
- * @memberof LinkApiInterface
6607
- */
6608
- postLinkStatus(loginIdentityId: string, options?: AxiosRequestConfig): AxiosPromise<LinkStatusResponse>;
6609
6580
  /**
6610
6581
  * Update an existing link
6611
6582
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -6694,14 +6665,6 @@ export declare class LinkApi extends BaseAPI implements LinkApiInterface {
6694
6665
  * @memberof LinkApi
6695
6666
  */
6696
6667
  listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: 'BANK' | 'WALLET' | 'TEST', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[]>>;
6697
- /**
6698
- * Check the status of a given loginIdentity
6699
- * @param {string} loginIdentityId The login identity id
6700
- * @param {*} [options] Override http request option.
6701
- * @throws {RequiredError}
6702
- * @memberof LinkApi
6703
- */
6704
- postLinkStatus(loginIdentityId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkStatusResponse>>;
6705
6668
  /**
6706
6669
  * Update an existing link
6707
6670
  * @param {RelinkRequest} relinkRequest Request body for updating Link
package/dist/api.js CHANGED
@@ -2495,36 +2495,6 @@ exports.LinkApiAxiosParamCreator = function (configuration) {
2495
2495
  options: localVarRequestOptions,
2496
2496
  };
2497
2497
  }),
2498
- /**
2499
- * Check the status of a given loginIdentity
2500
- * @param {string} loginIdentityId The login identity id
2501
- * @param {*} [options] Override http request option.
2502
- * @throws {RequiredError}
2503
- */
2504
- postLinkStatus: (loginIdentityId, options = {}) => __awaiter(this, void 0, void 0, function* () {
2505
- // verify required parameter 'loginIdentityId' is not null or undefined
2506
- common_1.assertParamExists('postLinkStatus', 'loginIdentityId', loginIdentityId);
2507
- const localVarPath = `/link/status/{loginIdentityId}`.replace(`{${'loginIdentityId'}}`, encodeURIComponent(String(loginIdentityId)));
2508
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
2509
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2510
- let baseOptions;
2511
- if (configuration) {
2512
- baseOptions = configuration.baseOptions;
2513
- }
2514
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
2515
- const localVarHeaderParameter = {};
2516
- const localVarQueryParameter = {};
2517
- // authentication Oauth2 required
2518
- // oauth required
2519
- yield common_1.setOAuthToObject(localVarHeaderParameter, 'Oauth2', [], configuration);
2520
- common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
2521
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2522
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
2523
- return {
2524
- url: common_1.toPathString(localVarUrlObj),
2525
- options: localVarRequestOptions,
2526
- };
2527
- }),
2528
2498
  /**
2529
2499
  * Update an existing link
2530
2500
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -2731,18 +2701,6 @@ exports.LinkApiFp = function (configuration) {
2731
2701
  return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2732
2702
  });
2733
2703
  },
2734
- /**
2735
- * Check the status of a given loginIdentity
2736
- * @param {string} loginIdentityId The login identity id
2737
- * @param {*} [options] Override http request option.
2738
- * @throws {RequiredError}
2739
- */
2740
- postLinkStatus(loginIdentityId, options) {
2741
- return __awaiter(this, void 0, void 0, function* () {
2742
- const localVarAxiosArgs = yield localVarAxiosParamCreator.postLinkStatus(loginIdentityId, options);
2743
- return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2744
- });
2745
- },
2746
2704
  /**
2747
2705
  * Update an existing link
2748
2706
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -2852,15 +2810,6 @@ exports.LinkApiFactory = function (configuration, basePath, axios) {
2852
2810
  .listInstitutions(country, countries, productsSupported, institutionType, options)
2853
2811
  .then((request) => request(axios, basePath));
2854
2812
  },
2855
- /**
2856
- * Check the status of a given loginIdentity
2857
- * @param {string} loginIdentityId The login identity id
2858
- * @param {*} [options] Override http request option.
2859
- * @throws {RequiredError}
2860
- */
2861
- postLinkStatus(loginIdentityId, options) {
2862
- return localVarFp.postLinkStatus(loginIdentityId, options).then((request) => request(axios, basePath));
2863
- },
2864
2813
  /**
2865
2814
  * Update an existing link
2866
2815
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -2981,18 +2930,6 @@ class LinkApi extends base_1.BaseAPI {
2981
2930
  .listInstitutions(country, countries, productsSupported, institutionType, options)
2982
2931
  .then((request) => request(this.axios, this.basePath));
2983
2932
  }
2984
- /**
2985
- * Check the status of a given loginIdentity
2986
- * @param {string} loginIdentityId The login identity id
2987
- * @param {*} [options] Override http request option.
2988
- * @throws {RequiredError}
2989
- * @memberof LinkApi
2990
- */
2991
- postLinkStatus(loginIdentityId, options) {
2992
- return exports.LinkApiFp(this.configuration)
2993
- .postLinkStatus(loginIdentityId, options)
2994
- .then((request) => request(this.axios, this.basePath));
2995
- }
2996
2933
  /**
2997
2934
  * Update an existing link
2998
2935
  * @param {RelinkRequest} relinkRequest Request body for updating Link
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.139",
3
+ "version": "0.0.140",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [