@triveria/wallet 0.0.208 → 0.0.209
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/api.d.ts +8 -8
- package/api.js +13 -13
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -2266,12 +2266,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2266
2266
|
* @param {number} [limit] The number of items
|
|
2267
2267
|
* @param {string} [nextMarker] Marking the next set of items
|
|
2268
2268
|
* @param {ListSort} [sort] Sort flag controls the sort direction by the time updated or issued
|
|
2269
|
-
* @param {string} [
|
|
2269
|
+
* @param {string} [searchPath] JSON path specification for the filter to apply
|
|
2270
2270
|
* @param {string} [filter] JSON schema filter used to select the credentials (base64 encoded)
|
|
2271
2271
|
* @param {*} [options] Override http request option.
|
|
2272
2272
|
* @throws {RequiredError}
|
|
2273
2273
|
*/
|
|
2274
|
-
credentialList: (walletId: string, interaction: CredentialListInteractionEnum, valid?: boolean, type?: string, limit?: number, nextMarker?: string, sort?: ListSort,
|
|
2274
|
+
credentialList: (walletId: string, interaction: CredentialListInteractionEnum, valid?: boolean, type?: string, limit?: number, nextMarker?: string, sort?: ListSort, searchPath?: string, filter?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2275
2275
|
/**
|
|
2276
2276
|
* Verifiable Credential metadata may be updated even after the credential was issued. It is available as a key value storage for a client to store any additional data for the credential.
|
|
2277
2277
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
@@ -2646,12 +2646,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2646
2646
|
* @param {number} [limit] The number of items
|
|
2647
2647
|
* @param {string} [nextMarker] Marking the next set of items
|
|
2648
2648
|
* @param {ListSort} [sort] Sort flag controls the sort direction by the time updated or issued
|
|
2649
|
-
* @param {string} [
|
|
2649
|
+
* @param {string} [searchPath] JSON path specification for the filter to apply
|
|
2650
2650
|
* @param {string} [filter] JSON schema filter used to select the credentials (base64 encoded)
|
|
2651
2651
|
* @param {*} [options] Override http request option.
|
|
2652
2652
|
* @throws {RequiredError}
|
|
2653
2653
|
*/
|
|
2654
|
-
credentialList(walletId: string, interaction: CredentialListInteractionEnum, valid?: boolean, type?: string, limit?: number, nextMarker?: string, sort?: ListSort,
|
|
2654
|
+
credentialList(walletId: string, interaction: CredentialListInteractionEnum, valid?: boolean, type?: string, limit?: number, nextMarker?: string, sort?: ListSort, searchPath?: string, filter?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CredentialList>>;
|
|
2655
2655
|
/**
|
|
2656
2656
|
* Verifiable Credential metadata may be updated even after the credential was issued. It is available as a key value storage for a client to store any additional data for the credential.
|
|
2657
2657
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
@@ -3028,12 +3028,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3028
3028
|
* @param {number} [limit] The number of items
|
|
3029
3029
|
* @param {string} [nextMarker] Marking the next set of items
|
|
3030
3030
|
* @param {ListSort} [sort] Sort flag controls the sort direction by the time updated or issued
|
|
3031
|
-
* @param {string} [
|
|
3031
|
+
* @param {string} [searchPath] JSON path specification for the filter to apply
|
|
3032
3032
|
* @param {string} [filter] JSON schema filter used to select the credentials (base64 encoded)
|
|
3033
3033
|
* @param {*} [options] Override http request option.
|
|
3034
3034
|
* @throws {RequiredError}
|
|
3035
3035
|
*/
|
|
3036
|
-
credentialList(walletId: string, interaction: CredentialListInteractionEnum, valid?: boolean, type?: string, limit?: number, nextMarker?: string, sort?: ListSort,
|
|
3036
|
+
credentialList(walletId: string, interaction: CredentialListInteractionEnum, valid?: boolean, type?: string, limit?: number, nextMarker?: string, sort?: ListSort, searchPath?: string, filter?: string, options?: RawAxiosRequestConfig): AxiosPromise<CredentialList>;
|
|
3037
3037
|
/**
|
|
3038
3038
|
* Verifiable Credential metadata may be updated even after the credential was issued. It is available as a key value storage for a client to store any additional data for the credential.
|
|
3039
3039
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
@@ -3416,13 +3416,13 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3416
3416
|
* @param {number} [limit] The number of items
|
|
3417
3417
|
* @param {string} [nextMarker] Marking the next set of items
|
|
3418
3418
|
* @param {ListSort} [sort] Sort flag controls the sort direction by the time updated or issued
|
|
3419
|
-
* @param {string} [
|
|
3419
|
+
* @param {string} [searchPath] JSON path specification for the filter to apply
|
|
3420
3420
|
* @param {string} [filter] JSON schema filter used to select the credentials (base64 encoded)
|
|
3421
3421
|
* @param {*} [options] Override http request option.
|
|
3422
3422
|
* @throws {RequiredError}
|
|
3423
3423
|
* @memberof DefaultApi
|
|
3424
3424
|
*/
|
|
3425
|
-
credentialList(walletId: string, interaction: CredentialListInteractionEnum, valid?: boolean, type?: string, limit?: number, nextMarker?: string, sort?: ListSort,
|
|
3425
|
+
credentialList(walletId: string, interaction: CredentialListInteractionEnum, valid?: boolean, type?: string, limit?: number, nextMarker?: string, sort?: ListSort, searchPath?: string, filter?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialList, any>>;
|
|
3426
3426
|
/**
|
|
3427
3427
|
* Verifiable Credential metadata may be updated even after the credential was issued. It is available as a key value storage for a client to store any additional data for the credential.
|
|
3428
3428
|
* @param {string} credentialId Verifiable Credential Identifier
|
package/api.js
CHANGED
|
@@ -300,12 +300,12 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
300
300
|
* @param {number} [limit] The number of items
|
|
301
301
|
* @param {string} [nextMarker] Marking the next set of items
|
|
302
302
|
* @param {ListSort} [sort] Sort flag controls the sort direction by the time updated or issued
|
|
303
|
-
* @param {string} [
|
|
303
|
+
* @param {string} [searchPath] JSON path specification for the filter to apply
|
|
304
304
|
* @param {string} [filter] JSON schema filter used to select the credentials (base64 encoded)
|
|
305
305
|
* @param {*} [options] Override http request option.
|
|
306
306
|
* @throws {RequiredError}
|
|
307
307
|
*/
|
|
308
|
-
credentialList: (walletId, interaction, valid, type, limit, nextMarker, sort,
|
|
308
|
+
credentialList: (walletId, interaction, valid, type, limit, nextMarker, sort, searchPath, filter, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
309
309
|
// verify required parameter 'walletId' is not null or undefined
|
|
310
310
|
(0, common_1.assertParamExists)('credentialList', 'walletId', walletId);
|
|
311
311
|
// verify required parameter 'interaction' is not null or undefined
|
|
@@ -341,8 +341,8 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
341
341
|
if (sort !== undefined) {
|
|
342
342
|
localVarQueryParameter['sort'] = sort;
|
|
343
343
|
}
|
|
344
|
-
if (
|
|
345
|
-
localVarQueryParameter['
|
|
344
|
+
if (searchPath !== undefined) {
|
|
345
|
+
localVarQueryParameter['searchPath'] = searchPath;
|
|
346
346
|
}
|
|
347
347
|
if (filter !== undefined) {
|
|
348
348
|
localVarQueryParameter['filter'] = filter;
|
|
@@ -1866,15 +1866,15 @@ const DefaultApiFp = function (configuration) {
|
|
|
1866
1866
|
* @param {number} [limit] The number of items
|
|
1867
1867
|
* @param {string} [nextMarker] Marking the next set of items
|
|
1868
1868
|
* @param {ListSort} [sort] Sort flag controls the sort direction by the time updated or issued
|
|
1869
|
-
* @param {string} [
|
|
1869
|
+
* @param {string} [searchPath] JSON path specification for the filter to apply
|
|
1870
1870
|
* @param {string} [filter] JSON schema filter used to select the credentials (base64 encoded)
|
|
1871
1871
|
* @param {*} [options] Override http request option.
|
|
1872
1872
|
* @throws {RequiredError}
|
|
1873
1873
|
*/
|
|
1874
|
-
credentialList(walletId, interaction, valid, type, limit, nextMarker, sort,
|
|
1874
|
+
credentialList(walletId, interaction, valid, type, limit, nextMarker, sort, searchPath, filter, options) {
|
|
1875
1875
|
var _a, _b, _c;
|
|
1876
1876
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1877
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.credentialList(walletId, interaction, valid, type, limit, nextMarker, sort,
|
|
1877
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.credentialList(walletId, interaction, valid, type, limit, nextMarker, sort, searchPath, filter, options);
|
|
1878
1878
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1879
1879
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DefaultApi.credentialList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1880
1880
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2602,13 +2602,13 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2602
2602
|
* @param {number} [limit] The number of items
|
|
2603
2603
|
* @param {string} [nextMarker] Marking the next set of items
|
|
2604
2604
|
* @param {ListSort} [sort] Sort flag controls the sort direction by the time updated or issued
|
|
2605
|
-
* @param {string} [
|
|
2605
|
+
* @param {string} [searchPath] JSON path specification for the filter to apply
|
|
2606
2606
|
* @param {string} [filter] JSON schema filter used to select the credentials (base64 encoded)
|
|
2607
2607
|
* @param {*} [options] Override http request option.
|
|
2608
2608
|
* @throws {RequiredError}
|
|
2609
2609
|
*/
|
|
2610
|
-
credentialList(walletId, interaction, valid, type, limit, nextMarker, sort,
|
|
2611
|
-
return localVarFp.credentialList(walletId, interaction, valid, type, limit, nextMarker, sort,
|
|
2610
|
+
credentialList(walletId, interaction, valid, type, limit, nextMarker, sort, searchPath, filter, options) {
|
|
2611
|
+
return localVarFp.credentialList(walletId, interaction, valid, type, limit, nextMarker, sort, searchPath, filter, options).then((request) => request(axios, basePath));
|
|
2612
2612
|
},
|
|
2613
2613
|
/**
|
|
2614
2614
|
* Verifiable Credential metadata may be updated even after the credential was issued. It is available as a key value storage for a client to store any additional data for the credential.
|
|
@@ -3084,14 +3084,14 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3084
3084
|
* @param {number} [limit] The number of items
|
|
3085
3085
|
* @param {string} [nextMarker] Marking the next set of items
|
|
3086
3086
|
* @param {ListSort} [sort] Sort flag controls the sort direction by the time updated or issued
|
|
3087
|
-
* @param {string} [
|
|
3087
|
+
* @param {string} [searchPath] JSON path specification for the filter to apply
|
|
3088
3088
|
* @param {string} [filter] JSON schema filter used to select the credentials (base64 encoded)
|
|
3089
3089
|
* @param {*} [options] Override http request option.
|
|
3090
3090
|
* @throws {RequiredError}
|
|
3091
3091
|
* @memberof DefaultApi
|
|
3092
3092
|
*/
|
|
3093
|
-
credentialList(walletId, interaction, valid, type, limit, nextMarker, sort,
|
|
3094
|
-
return (0, exports.DefaultApiFp)(this.configuration).credentialList(walletId, interaction, valid, type, limit, nextMarker, sort,
|
|
3093
|
+
credentialList(walletId, interaction, valid, type, limit, nextMarker, sort, searchPath, filter, options) {
|
|
3094
|
+
return (0, exports.DefaultApiFp)(this.configuration).credentialList(walletId, interaction, valid, type, limit, nextMarker, sort, searchPath, filter, options).then((request) => request(this.axios, this.basePath));
|
|
3095
3095
|
}
|
|
3096
3096
|
/**
|
|
3097
3097
|
* Verifiable Credential metadata may be updated even after the credential was issued. It is available as a key value storage for a client to store any additional data for the credential.
|