@triveria/wallet 0.0.236 → 0.0.237

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.
Files changed (3) hide show
  1. package/api.d.ts +0 -25
  2. package/api.js +0 -55
  3. package/package.json +1 -1
package/api.d.ts CHANGED
@@ -2355,12 +2355,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2355
2355
  * @throws {RequiredError}
2356
2356
  */
2357
2357
  didUpdate: (walletId: string, did?: Did, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2358
- /**
2359
- *
2360
- * @param {*} [options] Override http request option.
2361
- * @throws {RequiredError}
2362
- */
2363
- dummy: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2364
2358
  /**
2365
2359
  *
2366
2360
  * @param {*} [options] Override http request option.
@@ -2737,12 +2731,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2737
2731
  * @throws {RequiredError}
2738
2732
  */
2739
2733
  didUpdate(walletId: string, did?: Did, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Did>>;
2740
- /**
2741
- *
2742
- * @param {*} [options] Override http request option.
2743
- * @throws {RequiredError}
2744
- */
2745
- dummy(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CredentialDraftMetadata>>;
2746
2734
  /**
2747
2735
  *
2748
2736
  * @param {*} [options] Override http request option.
@@ -3121,12 +3109,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3121
3109
  * @throws {RequiredError}
3122
3110
  */
3123
3111
  didUpdate(walletId: string, did?: Did, options?: RawAxiosRequestConfig): AxiosPromise<Did>;
3124
- /**
3125
- *
3126
- * @param {*} [options] Override http request option.
3127
- * @throws {RequiredError}
3128
- */
3129
- dummy(options?: RawAxiosRequestConfig): AxiosPromise<CredentialDraftMetadata>;
3130
3112
  /**
3131
3113
  *
3132
3114
  * @param {*} [options] Override http request option.
@@ -3520,13 +3502,6 @@ export declare class DefaultApi extends BaseAPI {
3520
3502
  * @memberof DefaultApi
3521
3503
  */
3522
3504
  didUpdate(walletId: string, did?: Did, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Did, any>>;
3523
- /**
3524
- *
3525
- * @param {*} [options] Override http request option.
3526
- * @throws {RequiredError}
3527
- * @memberof DefaultApi
3528
- */
3529
- dummy(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialDraftMetadata, any>>;
3530
3505
  /**
3531
3506
  *
3532
3507
  * @param {*} [options] Override http request option.
package/api.js CHANGED
@@ -651,30 +651,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
651
651
  options: localVarRequestOptions,
652
652
  };
653
653
  }),
654
- /**
655
- *
656
- * @param {*} [options] Override http request option.
657
- * @throws {RequiredError}
658
- */
659
- dummy: (options = {}) => __awaiter(this, void 0, void 0, function* () {
660
- const localVarPath = `/dummy`;
661
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
662
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
663
- let baseOptions;
664
- if (configuration) {
665
- baseOptions = configuration.baseOptions;
666
- }
667
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
668
- const localVarHeaderParameter = {};
669
- const localVarQueryParameter = {};
670
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
671
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
672
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
673
- return {
674
- url: (0, common_1.toPathString)(localVarUrlObj),
675
- options: localVarRequestOptions,
676
- };
677
- }),
678
654
  /**
679
655
  *
680
656
  * @param {*} [options] Override http request option.
@@ -2047,20 +2023,6 @@ const DefaultApiFp = function (configuration) {
2047
2023
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2048
2024
  });
2049
2025
  },
2050
- /**
2051
- *
2052
- * @param {*} [options] Override http request option.
2053
- * @throws {RequiredError}
2054
- */
2055
- dummy(options) {
2056
- var _a, _b, _c;
2057
- return __awaiter(this, void 0, void 0, function* () {
2058
- const localVarAxiosArgs = yield localVarAxiosParamCreator.dummy(options);
2059
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2060
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DefaultApi.dummy']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2061
- return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2062
- });
2063
- },
2064
2026
  /**
2065
2027
  *
2066
2028
  * @param {*} [options] Override http request option.
@@ -2731,14 +2693,6 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2731
2693
  didUpdate(walletId, did, options) {
2732
2694
  return localVarFp.didUpdate(walletId, did, options).then((request) => request(axios, basePath));
2733
2695
  },
2734
- /**
2735
- *
2736
- * @param {*} [options] Override http request option.
2737
- * @throws {RequiredError}
2738
- */
2739
- dummy(options) {
2740
- return localVarFp.dummy(options).then((request) => request(axios, basePath));
2741
- },
2742
2696
  /**
2743
2697
  *
2744
2698
  * @param {*} [options] Override http request option.
@@ -3224,15 +3178,6 @@ class DefaultApi extends base_1.BaseAPI {
3224
3178
  didUpdate(walletId, did, options) {
3225
3179
  return (0, exports.DefaultApiFp)(this.configuration).didUpdate(walletId, did, options).then((request) => request(this.axios, this.basePath));
3226
3180
  }
3227
- /**
3228
- *
3229
- * @param {*} [options] Override http request option.
3230
- * @throws {RequiredError}
3231
- * @memberof DefaultApi
3232
- */
3233
- dummy(options) {
3234
- return (0, exports.DefaultApiFp)(this.configuration).dummy(options).then((request) => request(this.axios, this.basePath));
3235
- }
3236
3181
  /**
3237
3182
  *
3238
3183
  * @param {*} [options] Override http request option.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@triveria/wallet",
3
3
  "private": false,
4
- "version": "0.0.236",
4
+ "version": "0.0.237",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "scripts": {