@triveria/wallet 0.0.208 → 0.0.210
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 +29 -29
- 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
|
@@ -165,10 +165,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
165
165
|
// authentication accessToken required
|
|
166
166
|
// http bearer authentication required
|
|
167
167
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
168
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
168
169
|
if (walletId != null) {
|
|
169
170
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
170
171
|
}
|
|
171
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
172
172
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
173
173
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
174
174
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -238,10 +238,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
238
238
|
// authentication accessToken required
|
|
239
239
|
// http bearer authentication required
|
|
240
240
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
241
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
241
242
|
if (walletId != null) {
|
|
242
243
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
243
244
|
}
|
|
244
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
245
245
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
246
246
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
247
247
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -278,10 +278,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
278
278
|
// authentication accessToken required
|
|
279
279
|
// http bearer authentication required
|
|
280
280
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
281
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
281
282
|
if (walletId != null) {
|
|
282
283
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
283
284
|
}
|
|
284
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
285
285
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
286
286
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
287
287
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -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;
|
|
@@ -382,10 +382,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
382
382
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
|
|
383
383
|
const localVarHeaderParameter = {};
|
|
384
384
|
const localVarQueryParameter = {};
|
|
385
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
385
386
|
if (walletId != null) {
|
|
386
387
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
387
388
|
}
|
|
388
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
389
389
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
390
390
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
391
391
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -419,10 +419,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
419
419
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
|
|
420
420
|
const localVarHeaderParameter = {};
|
|
421
421
|
const localVarQueryParameter = {};
|
|
422
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
422
423
|
if (walletId != null) {
|
|
423
424
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
424
425
|
}
|
|
425
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
426
426
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
427
427
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
428
428
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -455,10 +455,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
455
455
|
// authentication accessToken required
|
|
456
456
|
// http bearer authentication required
|
|
457
457
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
458
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
458
459
|
if (walletId != null) {
|
|
459
460
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
460
461
|
}
|
|
461
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
462
462
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
463
463
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
464
464
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -650,10 +650,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
650
650
|
// authentication accessToken required
|
|
651
651
|
// http bearer authentication required
|
|
652
652
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
653
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
653
654
|
if (walletId != null) {
|
|
654
655
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
655
656
|
}
|
|
656
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
657
657
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
658
658
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
659
659
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -687,10 +687,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
687
687
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
688
688
|
const localVarHeaderParameter = {};
|
|
689
689
|
const localVarQueryParameter = {};
|
|
690
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
690
691
|
if (walletId != null) {
|
|
691
692
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
692
693
|
}
|
|
693
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
694
694
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
695
695
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
696
696
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -723,10 +723,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
723
723
|
// authentication accessToken required
|
|
724
724
|
// http bearer authentication required
|
|
725
725
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
726
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
726
727
|
if (walletId != null) {
|
|
727
728
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
728
729
|
}
|
|
729
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
730
730
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
731
731
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
732
732
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -756,10 +756,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
756
756
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
757
757
|
const localVarHeaderParameter = {};
|
|
758
758
|
const localVarQueryParameter = {};
|
|
759
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
759
760
|
if (walletId != null) {
|
|
760
761
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
761
762
|
}
|
|
762
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
763
763
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
764
764
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
765
765
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -890,10 +890,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
890
890
|
// authentication accessToken required
|
|
891
891
|
// http bearer authentication required
|
|
892
892
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
893
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
893
894
|
if (walletId != null) {
|
|
894
895
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
895
896
|
}
|
|
896
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
897
897
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
898
898
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
899
899
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -927,10 +927,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
927
927
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
928
928
|
const localVarHeaderParameter = {};
|
|
929
929
|
const localVarQueryParameter = {};
|
|
930
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
930
931
|
if (walletId != null) {
|
|
931
932
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
932
933
|
}
|
|
933
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
934
934
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
935
935
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
936
936
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -963,10 +963,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
963
963
|
// authentication accessToken required
|
|
964
964
|
// http bearer authentication required
|
|
965
965
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
966
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
966
967
|
if (walletId != null) {
|
|
967
968
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
968
969
|
}
|
|
969
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
970
970
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
971
971
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
972
972
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1062,10 +1062,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1062
1062
|
// authentication accessToken required
|
|
1063
1063
|
// http bearer authentication required
|
|
1064
1064
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1065
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1065
1066
|
if (walletId != null) {
|
|
1066
1067
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
1067
1068
|
}
|
|
1068
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1069
1069
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1070
1070
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1071
1071
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1098,10 +1098,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1098
1098
|
// authentication accessToken required
|
|
1099
1099
|
// http bearer authentication required
|
|
1100
1100
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1101
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1101
1102
|
if (walletId != null) {
|
|
1102
1103
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
1103
1104
|
}
|
|
1104
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1105
1105
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1106
1106
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1107
1107
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1363,10 +1363,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1363
1363
|
// authentication accessToken required
|
|
1364
1364
|
// http bearer authentication required
|
|
1365
1365
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1366
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1366
1367
|
if (walletId != null) {
|
|
1367
1368
|
localVarHeaderParameter['wallet-id'] = String(walletId);
|
|
1368
1369
|
}
|
|
1369
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1370
1370
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1371
1371
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1372
1372
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -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.
|