@finverse/sdk-typescript 0.0.45 → 0.0.46

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
@@ -3849,13 +3849,6 @@ export declare const LoginIdentityApiAxiosParamCreator: (configuration?: Configu
3849
3849
  * @throws {RequiredError}
3850
3850
  */
3851
3851
  getStatement: (statementId: string, redirect?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3852
- /**
3853
- * (Deprecated) Get statement link for download
3854
- * @param {string} statementId The statement id
3855
- * @param {*} [options] Override http request option.
3856
- * @throws {RequiredError}
3857
- */
3858
- getStatementLink: (statementId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3859
3852
  /**
3860
3853
  * Get list of available statements
3861
3854
  * @param {*} [options] Override http request option.
@@ -3964,13 +3957,6 @@ export declare const LoginIdentityApiFp: (configuration?: Configuration) => {
3964
3957
  * @throws {RequiredError}
3965
3958
  */
3966
3959
  getStatement(statementId: string, redirect?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetStatementLinkResponse>>;
3967
- /**
3968
- * (Deprecated) Get statement link for download
3969
- * @param {string} statementId The statement id
3970
- * @param {*} [options] Override http request option.
3971
- * @throws {RequiredError}
3972
- */
3973
- getStatementLink(statementId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetStatementLinkResponse>>;
3974
3960
  /**
3975
3961
  * Get list of available statements
3976
3962
  * @param {*} [options] Override http request option.
@@ -4079,13 +4065,6 @@ export declare const LoginIdentityApiFactory: (configuration?: Configuration, ba
4079
4065
  * @throws {RequiredError}
4080
4066
  */
4081
4067
  getStatement(statementId: string, redirect?: boolean, options?: any): AxiosPromise<GetStatementLinkResponse>;
4082
- /**
4083
- * (Deprecated) Get statement link for download
4084
- * @param {string} statementId The statement id
4085
- * @param {*} [options] Override http request option.
4086
- * @throws {RequiredError}
4087
- */
4088
- getStatementLink(statementId: string, options?: any): AxiosPromise<GetStatementLinkResponse>;
4089
4068
  /**
4090
4069
  * Get list of available statements
4091
4070
  * @param {*} [options] Override http request option.
@@ -4205,14 +4184,6 @@ export interface LoginIdentityApiInterface {
4205
4184
  * @memberof LoginIdentityApiInterface
4206
4185
  */
4207
4186
  getStatement(statementId: string, redirect?: boolean, options?: AxiosRequestConfig): AxiosPromise<GetStatementLinkResponse>;
4208
- /**
4209
- * (Deprecated) Get statement link for download
4210
- * @param {string} statementId The statement id
4211
- * @param {*} [options] Override http request option.
4212
- * @throws {RequiredError}
4213
- * @memberof LoginIdentityApiInterface
4214
- */
4215
- getStatementLink(statementId: string, options?: AxiosRequestConfig): AxiosPromise<GetStatementLinkResponse>;
4216
4187
  /**
4217
4188
  * Get list of available statements
4218
4189
  * @param {*} [options] Override http request option.
@@ -4338,14 +4309,6 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
4338
4309
  * @memberof LoginIdentityApi
4339
4310
  */
4340
4311
  getStatement(statementId: string, redirect?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetStatementLinkResponse>>;
4341
- /**
4342
- * (Deprecated) Get statement link for download
4343
- * @param {string} statementId The statement id
4344
- * @param {*} [options] Override http request option.
4345
- * @throws {RequiredError}
4346
- * @memberof LoginIdentityApi
4347
- */
4348
- getStatementLink(statementId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetStatementLinkResponse>>;
4349
4312
  /**
4350
4313
  * Get list of available statements
4351
4314
  * @param {*} [options] Override http request option.
package/dist/api.js CHANGED
@@ -1638,36 +1638,6 @@ exports.LoginIdentityApiAxiosParamCreator = function (configuration) {
1638
1638
  options: localVarRequestOptions,
1639
1639
  };
1640
1640
  }),
1641
- /**
1642
- * (Deprecated) Get statement link for download
1643
- * @param {string} statementId The statement id
1644
- * @param {*} [options] Override http request option.
1645
- * @throws {RequiredError}
1646
- */
1647
- getStatementLink: (statementId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1648
- // verify required parameter 'statementId' is not null or undefined
1649
- common_1.assertParamExists('getStatementLink', 'statementId', statementId);
1650
- const localVarPath = `/statement_links/{statementId}`.replace(`{${'statementId'}}`, encodeURIComponent(String(statementId)));
1651
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
1652
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1653
- let baseOptions;
1654
- if (configuration) {
1655
- baseOptions = configuration.baseOptions;
1656
- }
1657
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1658
- const localVarHeaderParameter = {};
1659
- const localVarQueryParameter = {};
1660
- // authentication Oauth2 required
1661
- // oauth required
1662
- yield common_1.setOAuthToObject(localVarHeaderParameter, 'Oauth2', [], configuration);
1663
- common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
1664
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1665
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1666
- return {
1667
- url: common_1.toPathString(localVarUrlObj),
1668
- options: localVarRequestOptions,
1669
- };
1670
- }),
1671
1641
  /**
1672
1642
  * Get list of available statements
1673
1643
  * @param {*} [options] Override http request option.
@@ -1948,18 +1918,6 @@ exports.LoginIdentityApiFp = function (configuration) {
1948
1918
  return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1949
1919
  });
1950
1920
  },
1951
- /**
1952
- * (Deprecated) Get statement link for download
1953
- * @param {string} statementId The statement id
1954
- * @param {*} [options] Override http request option.
1955
- * @throws {RequiredError}
1956
- */
1957
- getStatementLink(statementId, options) {
1958
- return __awaiter(this, void 0, void 0, function* () {
1959
- const localVarAxiosArgs = yield localVarAxiosParamCreator.getStatementLink(statementId, options);
1960
- return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1961
- });
1962
- },
1963
1921
  /**
1964
1922
  * Get list of available statements
1965
1923
  * @param {*} [options] Override http request option.
@@ -2116,15 +2074,6 @@ exports.LoginIdentityApiFactory = function (configuration, basePath, axios) {
2116
2074
  getStatement(statementId, redirect, options) {
2117
2075
  return localVarFp.getStatement(statementId, redirect, options).then((request) => request(axios, basePath));
2118
2076
  },
2119
- /**
2120
- * (Deprecated) Get statement link for download
2121
- * @param {string} statementId The statement id
2122
- * @param {*} [options] Override http request option.
2123
- * @throws {RequiredError}
2124
- */
2125
- getStatementLink(statementId, options) {
2126
- return localVarFp.getStatementLink(statementId, options).then((request) => request(axios, basePath));
2127
- },
2128
2077
  /**
2129
2078
  * Get list of available statements
2130
2079
  * @param {*} [options] Override http request option.
@@ -2300,18 +2249,6 @@ class LoginIdentityApi extends base_1.BaseAPI {
2300
2249
  .getStatement(statementId, redirect, options)
2301
2250
  .then((request) => request(this.axios, this.basePath));
2302
2251
  }
2303
- /**
2304
- * (Deprecated) Get statement link for download
2305
- * @param {string} statementId The statement id
2306
- * @param {*} [options] Override http request option.
2307
- * @throws {RequiredError}
2308
- * @memberof LoginIdentityApi
2309
- */
2310
- getStatementLink(statementId, options) {
2311
- return exports.LoginIdentityApiFp(this.configuration)
2312
- .getStatementLink(statementId, options)
2313
- .then((request) => request(this.axios, this.basePath));
2314
- }
2315
2252
  /**
2316
2253
  * Get list of available statements
2317
2254
  * @param {*} [options] Override http request option.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.45",
3
+ "version": "0.0.46",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [