@coscine/api-client 1.0.0 → 1.3.0
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/index.js +715 -545
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +718 -547
- package/dist/index.umd.js.map +1 -1
- package/dist/lib/Coscine.Api.Blob/api.js +52 -52
- package/dist/lib/Coscine.Api.Blob/api.js.map +1 -1
- package/dist/lib/Coscine.Api.Blob/base.js +1 -1
- package/dist/lib/Coscine.Api.Blob/common.js +1 -1
- package/dist/lib/Coscine.Api.Blob/configuration.js +1 -1
- package/dist/lib/Coscine.Api.Blob/index.js +1 -1
- package/dist/lib/Coscine.Api.Metadata/api.js +75 -88
- package/dist/lib/Coscine.Api.Metadata/api.js.map +1 -1
- package/dist/lib/Coscine.Api.Metadata/base.js +1 -1
- package/dist/lib/Coscine.Api.Metadata/common.js +1 -1
- package/dist/lib/Coscine.Api.Metadata/configuration.js +1 -1
- package/dist/lib/Coscine.Api.Metadata/index.js +1 -1
- package/dist/lib/Coscine.Api.Search/api.js +159 -0
- package/dist/lib/Coscine.Api.Search/api.js.map +1 -0
- package/dist/lib/Coscine.Api.Search/base.js +65 -0
- package/dist/lib/Coscine.Api.Search/base.js.map +1 -0
- package/dist/lib/Coscine.Api.Search/common.js +153 -0
- package/dist/lib/Coscine.Api.Search/common.js.map +1 -0
- package/dist/lib/Coscine.Api.Search/configuration.js +43 -0
- package/dist/lib/Coscine.Api.Search/configuration.js.map +1 -0
- package/dist/lib/Coscine.Api.Search/index.js +28 -0
- package/dist/lib/Coscine.Api.Search/index.js.map +1 -0
- package/dist/lib/Coscine.Api.Tree/api.js +35 -35
- package/dist/lib/Coscine.Api.Tree/api.js.map +1 -1
- package/dist/lib/Coscine.Api.Tree/base.js +1 -1
- package/dist/lib/Coscine.Api.Tree/common.js +1 -1
- package/dist/lib/Coscine.Api.Tree/configuration.js +1 -1
- package/dist/lib/Coscine.Api.Tree/index.js +1 -1
- package/dist/lib/apis.js +13 -11
- package/dist/lib/apis.js.map +1 -1
- package/dist/lib/axios-basic.js +7 -3
- package/dist/lib/axios-basic.js.map +1 -1
- package/dist/lib/index.js +2 -1
- package/dist/lib/index.js.map +1 -1
- package/dist/types/Coscine.Api.Blob/api.d.ts +25 -25
- package/dist/types/Coscine.Api.Blob/base.d.ts +1 -1
- package/dist/types/Coscine.Api.Blob/common.d.ts +1 -1
- package/dist/types/Coscine.Api.Blob/configuration.d.ts +1 -1
- package/dist/types/Coscine.Api.Blob/index.d.ts +1 -1
- package/dist/types/Coscine.Api.Metadata/api.d.ts +116 -55
- package/dist/types/Coscine.Api.Metadata/base.d.ts +1 -1
- package/dist/types/Coscine.Api.Metadata/common.d.ts +1 -1
- package/dist/types/Coscine.Api.Metadata/configuration.d.ts +1 -1
- package/dist/types/Coscine.Api.Metadata/index.d.ts +1 -1
- package/dist/types/Coscine.Api.Search/api.d.ts +110 -0
- package/dist/types/Coscine.Api.Search/base.d.ts +55 -0
- package/dist/types/Coscine.Api.Search/common.d.ts +65 -0
- package/dist/types/Coscine.Api.Search/configuration.d.ts +83 -0
- package/dist/types/Coscine.Api.Search/index.d.ts +13 -0
- package/dist/types/Coscine.Api.Tree/api.d.ts +17 -17
- package/dist/types/Coscine.Api.Tree/base.d.ts +1 -1
- package/dist/types/Coscine.Api.Tree/common.d.ts +1 -1
- package/dist/types/Coscine.Api.Tree/configuration.d.ts +1 -1
- package/dist/types/Coscine.Api.Tree/index.d.ts +1 -1
- package/dist/types/apis.d.ts +13 -10
- package/dist/types/index.d.ts +26 -20
- package/package.json +4 -3
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Coscine.Api.Blob
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 2.
|
|
8
|
+
* The version of the OpenAPI document: 2.5.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -42,18 +42,15 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
42
42
|
*
|
|
43
43
|
* @summary This method deletes a given file
|
|
44
44
|
* @param {string} resourceId Id of the resource
|
|
45
|
-
* @param {string} path Path to the file
|
|
45
|
+
* @param {string} [path] Path to the file
|
|
46
46
|
* @param {*} [options] Override http request option.
|
|
47
47
|
* @throws {RequiredError}
|
|
48
48
|
*/
|
|
49
|
-
|
|
49
|
+
blobDeleteFileWithParameter: (resourceId, path, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
50
50
|
// verify required parameter 'resourceId' is not null or undefined
|
|
51
|
-
(0, common_1.assertParamExists)('
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
const localVarPath = `/Blob/{resourceId}/{path}`
|
|
55
|
-
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)))
|
|
56
|
-
.replace(`{${"path"}}`, encodeURIComponent(String(path)));
|
|
51
|
+
(0, common_1.assertParamExists)('blobDeleteFileWithParameter', 'resourceId', resourceId);
|
|
52
|
+
const localVarPath = `/Blob/{resourceId}`
|
|
53
|
+
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
57
54
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
58
55
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
59
56
|
let baseOptions;
|
|
@@ -65,6 +62,9 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
65
62
|
const localVarQueryParameter = {};
|
|
66
63
|
// authentication JWT token required
|
|
67
64
|
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
65
|
+
if (path !== undefined) {
|
|
66
|
+
localVarQueryParameter['path'] = path;
|
|
67
|
+
}
|
|
68
68
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter, options.query);
|
|
69
69
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
70
70
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -77,18 +77,15 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
77
77
|
*
|
|
78
78
|
* @summary This method checks if the given file exists and returns it
|
|
79
79
|
* @param {string} resourceId Id of the resource
|
|
80
|
-
* @param {string} path Path to the file
|
|
80
|
+
* @param {string} [path] Path to the file
|
|
81
81
|
* @param {*} [options] Override http request option.
|
|
82
82
|
* @throws {RequiredError}
|
|
83
83
|
*/
|
|
84
|
-
|
|
84
|
+
blobGetFileWithParameter: (resourceId, path, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
85
85
|
// verify required parameter 'resourceId' is not null or undefined
|
|
86
|
-
(0, common_1.assertParamExists)('
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
const localVarPath = `/Blob/{resourceId}/{path}`
|
|
90
|
-
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)))
|
|
91
|
-
.replace(`{${"path"}}`, encodeURIComponent(String(path)));
|
|
86
|
+
(0, common_1.assertParamExists)('blobGetFileWithParameter', 'resourceId', resourceId);
|
|
87
|
+
const localVarPath = `/Blob/{resourceId}`
|
|
88
|
+
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
92
89
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
93
90
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
94
91
|
let baseOptions;
|
|
@@ -100,6 +97,9 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
100
97
|
const localVarQueryParameter = {};
|
|
101
98
|
// authentication JWT token required
|
|
102
99
|
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
100
|
+
if (path !== undefined) {
|
|
101
|
+
localVarQueryParameter['path'] = path;
|
|
102
|
+
}
|
|
103
103
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter, options.query);
|
|
104
104
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
105
105
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -175,19 +175,16 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
175
175
|
*
|
|
176
176
|
* @summary This method uploads a given File
|
|
177
177
|
* @param {string} resourceId Id of the resource
|
|
178
|
-
* @param {string} path Path to the file
|
|
178
|
+
* @param {string} [path] Path to the file
|
|
179
179
|
* @param {Array<any>} [files]
|
|
180
180
|
* @param {*} [options] Override http request option.
|
|
181
181
|
* @throws {RequiredError}
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
blobUploadFileWithParameter: (resourceId, path, files, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
184
184
|
// verify required parameter 'resourceId' is not null or undefined
|
|
185
|
-
(0, common_1.assertParamExists)('
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
const localVarPath = `/Blob/{resourceId}/{path}`
|
|
189
|
-
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)))
|
|
190
|
-
.replace(`{${"path"}}`, encodeURIComponent(String(path)));
|
|
185
|
+
(0, common_1.assertParamExists)('blobUploadFileWithParameter', 'resourceId', resourceId);
|
|
186
|
+
const localVarPath = `/Blob/{resourceId}`
|
|
187
|
+
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
191
188
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
192
189
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
193
190
|
let baseOptions;
|
|
@@ -200,6 +197,9 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
200
197
|
const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
201
198
|
// authentication JWT token required
|
|
202
199
|
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
200
|
+
if (path !== undefined) {
|
|
201
|
+
localVarQueryParameter['path'] = path;
|
|
202
|
+
}
|
|
203
203
|
if (files) {
|
|
204
204
|
files.forEach((element) => {
|
|
205
205
|
localVarFormParams.append('files', element);
|
|
@@ -229,13 +229,13 @@ const BlobApiFp = function (configuration) {
|
|
|
229
229
|
*
|
|
230
230
|
* @summary This method deletes a given file
|
|
231
231
|
* @param {string} resourceId Id of the resource
|
|
232
|
-
* @param {string} path Path to the file
|
|
232
|
+
* @param {string} [path] Path to the file
|
|
233
233
|
* @param {*} [options] Override http request option.
|
|
234
234
|
* @throws {RequiredError}
|
|
235
235
|
*/
|
|
236
|
-
|
|
236
|
+
blobDeleteFileWithParameter(resourceId, path, options) {
|
|
237
237
|
return __awaiter(this, void 0, void 0, function* () {
|
|
238
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
238
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.blobDeleteFileWithParameter(resourceId, path, options);
|
|
239
239
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
240
240
|
});
|
|
241
241
|
},
|
|
@@ -243,13 +243,13 @@ const BlobApiFp = function (configuration) {
|
|
|
243
243
|
*
|
|
244
244
|
* @summary This method checks if the given file exists and returns it
|
|
245
245
|
* @param {string} resourceId Id of the resource
|
|
246
|
-
* @param {string} path Path to the file
|
|
246
|
+
* @param {string} [path] Path to the file
|
|
247
247
|
* @param {*} [options] Override http request option.
|
|
248
248
|
* @throws {RequiredError}
|
|
249
249
|
*/
|
|
250
|
-
|
|
250
|
+
blobGetFileWithParameter(resourceId, path, options) {
|
|
251
251
|
return __awaiter(this, void 0, void 0, function* () {
|
|
252
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
252
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.blobGetFileWithParameter(resourceId, path, options);
|
|
253
253
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
254
254
|
});
|
|
255
255
|
},
|
|
@@ -283,14 +283,14 @@ const BlobApiFp = function (configuration) {
|
|
|
283
283
|
*
|
|
284
284
|
* @summary This method uploads a given File
|
|
285
285
|
* @param {string} resourceId Id of the resource
|
|
286
|
-
* @param {string} path Path to the file
|
|
286
|
+
* @param {string} [path] Path to the file
|
|
287
287
|
* @param {Array<any>} [files]
|
|
288
288
|
* @param {*} [options] Override http request option.
|
|
289
289
|
* @throws {RequiredError}
|
|
290
290
|
*/
|
|
291
|
-
|
|
291
|
+
blobUploadFileWithParameter(resourceId, path, files, options) {
|
|
292
292
|
return __awaiter(this, void 0, void 0, function* () {
|
|
293
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
293
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.blobUploadFileWithParameter(resourceId, path, files, options);
|
|
294
294
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
295
295
|
});
|
|
296
296
|
},
|
|
@@ -308,23 +308,23 @@ const BlobApiFactory = function (configuration, basePath, axios) {
|
|
|
308
308
|
*
|
|
309
309
|
* @summary This method deletes a given file
|
|
310
310
|
* @param {string} resourceId Id of the resource
|
|
311
|
-
* @param {string} path Path to the file
|
|
311
|
+
* @param {string} [path] Path to the file
|
|
312
312
|
* @param {*} [options] Override http request option.
|
|
313
313
|
* @throws {RequiredError}
|
|
314
314
|
*/
|
|
315
|
-
|
|
316
|
-
return localVarFp.
|
|
315
|
+
blobDeleteFileWithParameter(resourceId, path, options) {
|
|
316
|
+
return localVarFp.blobDeleteFileWithParameter(resourceId, path, options).then((request) => request(axios, basePath));
|
|
317
317
|
},
|
|
318
318
|
/**
|
|
319
319
|
*
|
|
320
320
|
* @summary This method checks if the given file exists and returns it
|
|
321
321
|
* @param {string} resourceId Id of the resource
|
|
322
|
-
* @param {string} path Path to the file
|
|
322
|
+
* @param {string} [path] Path to the file
|
|
323
323
|
* @param {*} [options] Override http request option.
|
|
324
324
|
* @throws {RequiredError}
|
|
325
325
|
*/
|
|
326
|
-
|
|
327
|
-
return localVarFp.
|
|
326
|
+
blobGetFileWithParameter(resourceId, path, options) {
|
|
327
|
+
return localVarFp.blobGetFileWithParameter(resourceId, path, options).then((request) => request(axios, basePath));
|
|
328
328
|
},
|
|
329
329
|
/**
|
|
330
330
|
*
|
|
@@ -350,13 +350,13 @@ const BlobApiFactory = function (configuration, basePath, axios) {
|
|
|
350
350
|
*
|
|
351
351
|
* @summary This method uploads a given File
|
|
352
352
|
* @param {string} resourceId Id of the resource
|
|
353
|
-
* @param {string} path Path to the file
|
|
353
|
+
* @param {string} [path] Path to the file
|
|
354
354
|
* @param {Array<any>} [files]
|
|
355
355
|
* @param {*} [options] Override http request option.
|
|
356
356
|
* @throws {RequiredError}
|
|
357
357
|
*/
|
|
358
|
-
|
|
359
|
-
return localVarFp.
|
|
358
|
+
blobUploadFileWithParameter(resourceId, path, files, options) {
|
|
359
|
+
return localVarFp.blobUploadFileWithParameter(resourceId, path, files, options).then((request) => request(axios, basePath));
|
|
360
360
|
},
|
|
361
361
|
};
|
|
362
362
|
};
|
|
@@ -372,25 +372,25 @@ class BlobApi extends base_1.BaseAPI {
|
|
|
372
372
|
*
|
|
373
373
|
* @summary This method deletes a given file
|
|
374
374
|
* @param {string} resourceId Id of the resource
|
|
375
|
-
* @param {string} path Path to the file
|
|
375
|
+
* @param {string} [path] Path to the file
|
|
376
376
|
* @param {*} [options] Override http request option.
|
|
377
377
|
* @throws {RequiredError}
|
|
378
378
|
* @memberof BlobApi
|
|
379
379
|
*/
|
|
380
|
-
|
|
381
|
-
return (0, exports.BlobApiFp)(this.configuration).
|
|
380
|
+
blobDeleteFileWithParameter(resourceId, path, options) {
|
|
381
|
+
return (0, exports.BlobApiFp)(this.configuration).blobDeleteFileWithParameter(resourceId, path, options).then((request) => request(this.axios, this.basePath));
|
|
382
382
|
}
|
|
383
383
|
/**
|
|
384
384
|
*
|
|
385
385
|
* @summary This method checks if the given file exists and returns it
|
|
386
386
|
* @param {string} resourceId Id of the resource
|
|
387
|
-
* @param {string} path Path to the file
|
|
387
|
+
* @param {string} [path] Path to the file
|
|
388
388
|
* @param {*} [options] Override http request option.
|
|
389
389
|
* @throws {RequiredError}
|
|
390
390
|
* @memberof BlobApi
|
|
391
391
|
*/
|
|
392
|
-
|
|
393
|
-
return (0, exports.BlobApiFp)(this.configuration).
|
|
392
|
+
blobGetFileWithParameter(resourceId, path, options) {
|
|
393
|
+
return (0, exports.BlobApiFp)(this.configuration).blobGetFileWithParameter(resourceId, path, options).then((request) => request(this.axios, this.basePath));
|
|
394
394
|
}
|
|
395
395
|
/**
|
|
396
396
|
*
|
|
@@ -418,14 +418,14 @@ class BlobApi extends base_1.BaseAPI {
|
|
|
418
418
|
*
|
|
419
419
|
* @summary This method uploads a given File
|
|
420
420
|
* @param {string} resourceId Id of the resource
|
|
421
|
-
* @param {string} path Path to the file
|
|
421
|
+
* @param {string} [path] Path to the file
|
|
422
422
|
* @param {Array<any>} [files]
|
|
423
423
|
* @param {*} [options] Override http request option.
|
|
424
424
|
* @throws {RequiredError}
|
|
425
425
|
* @memberof BlobApi
|
|
426
426
|
*/
|
|
427
|
-
|
|
428
|
-
return (0, exports.BlobApiFp)(this.configuration).
|
|
427
|
+
blobUploadFileWithParameter(resourceId, path, files, options) {
|
|
428
|
+
return (0, exports.BlobApiFp)(this.configuration).blobUploadFileWithParameter(resourceId, path, files, options).then((request) => request(this.axios, this.basePath));
|
|
429
429
|
}
|
|
430
430
|
}
|
|
431
431
|
exports.BlobApi = BlobApi;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../src/Coscine.Api.Blob/api.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;;;;;;;;;;;;;AAIH,kDAAiE;AACjE,yDAAyD;AACzD,aAAa;AACb,qCAA4N;AAC5N,aAAa;AACb,iCAA4F;AAG5F;;;GAGG;AACI,MAAM,wBAAwB,GAAG,UAAU,aAA6B;IAC3E,OAAO;QACH;;;;;;;WAOG;QACH,
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../src/Coscine.Api.Blob/api.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;;;;;;;;;;;;;AAIH,kDAAiE;AACjE,yDAAyD;AACzD,aAAa;AACb,qCAA4N;AAC5N,aAAa;AACb,iCAA4F;AAG5F;;;GAGG;AACI,MAAM,wBAAwB,GAAG,UAAU,aAA6B;IAC3E,OAAO;QACH;;;;;;;WAOG;QACH,2BAA2B,EAAE,CAAO,UAAkB,EAAE,IAAa,EAAE,UAAe,EAAE,EAAwB,EAAE;YAC9G,kEAAkE;YAClE,IAAA,0BAAiB,EAAC,6BAA6B,EAAE,YAAY,EAAE,UAAU,CAAC,CAAA;YAC1E,MAAM,YAAY,GAAG,oBAAoB;iBACpC,OAAO,CAAC,IAAI,YAAY,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;YAC1E,oFAAoF;YACpF,MAAM,cAAc,GAAG,IAAI,GAAG,CAAC,YAAY,EAAE,uBAAc,CAAC,CAAC;YAC7D,IAAI,WAAW,CAAC;YAChB,IAAI,aAAa,EAAE;gBACf,WAAW,GAAG,aAAa,CAAC,WAAW,CAAC;aAC3C;YAED,MAAM,sBAAsB,iCAAK,MAAM,EAAE,QAAQ,IAAK,WAAW,GAAK,OAAO,CAAC,CAAC;YAC/E,MAAM,uBAAuB,GAAG,EAAS,CAAC;YAC1C,MAAM,sBAAsB,GAAG,EAAS,CAAC;YAEzC,oCAAoC;YACpC,MAAM,IAAA,0BAAiB,EAAC,uBAAuB,EAAE,eAAe,EAAE,aAAa,CAAC,CAAA;YAEhF,IAAI,IAAI,KAAK,SAAS,EAAE;gBACpB,sBAAsB,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;aACzC;YAID,IAAA,wBAAe,EAAC,cAAc,EAAE,sBAAsB,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC;YACvE,IAAI,sBAAsB,GAAG,WAAW,IAAI,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC;YAC3F,sBAAsB,CAAC,OAAO,iDAAO,uBAAuB,GAAK,sBAAsB,GAAK,OAAO,CAAC,OAAO,CAAC,CAAC;YAE7G,OAAO;gBACH,GAAG,EAAE,IAAA,qBAAY,EAAC,cAAc,CAAC;gBACjC,OAAO,EAAE,sBAAsB;aAClC,CAAC;QACN,CAAC,CAAA;QACD;;;;;;;WAOG;QACH,wBAAwB,EAAE,CAAO,UAAkB,EAAE,IAAa,EAAE,UAAe,EAAE,EAAwB,EAAE;YAC3G,kEAAkE;YAClE,IAAA,0BAAiB,EAAC,0BAA0B,EAAE,YAAY,EAAE,UAAU,CAAC,CAAA;YACvE,MAAM,YAAY,GAAG,oBAAoB;iBACpC,OAAO,CAAC,IAAI,YAAY,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;YAC1E,oFAAoF;YACpF,MAAM,cAAc,GAAG,IAAI,GAAG,CAAC,YAAY,EAAE,uBAAc,CAAC,CAAC;YAC7D,IAAI,WAAW,CAAC;YAChB,IAAI,aAAa,EAAE;gBACf,WAAW,GAAG,aAAa,CAAC,WAAW,CAAC;aAC3C;YAED,MAAM,sBAAsB,iCAAK,MAAM,EAAE,KAAK,IAAK,WAAW,GAAK,OAAO,CAAC,CAAC;YAC5E,MAAM,uBAAuB,GAAG,EAAS,CAAC;YAC1C,MAAM,sBAAsB,GAAG,EAAS,CAAC;YAEzC,oCAAoC;YACpC,MAAM,IAAA,0BAAiB,EAAC,uBAAuB,EAAE,eAAe,EAAE,aAAa,CAAC,CAAA;YAEhF,IAAI,IAAI,KAAK,SAAS,EAAE;gBACpB,sBAAsB,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;aACzC;YAID,IAAA,wBAAe,EAAC,cAAc,EAAE,sBAAsB,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC;YACvE,IAAI,sBAAsB,GAAG,WAAW,IAAI,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC;YAC3F,sBAAsB,CAAC,OAAO,iDAAO,uBAAuB,GAAK,sBAAsB,GAAK,OAAO,CAAC,OAAO,CAAC,CAAC;YAE7G,OAAO;gBACH,GAAG,EAAE,IAAA,qBAAY,EAAC,cAAc,CAAC;gBACjC,OAAO,EAAE,sBAAsB;aAClC,CAAC;QACN,CAAC,CAAA;QACD;;;;;;WAMG;QACH,YAAY,EAAE,CAAO,UAAkB,EAAE,UAAe,EAAE,EAAwB,EAAE;YAChF,kEAAkE;YAClE,IAAA,0BAAiB,EAAC,cAAc,EAAE,YAAY,EAAE,UAAU,CAAC,CAAA;YAC3D,MAAM,YAAY,GAAG,0BAA0B;iBAC1C,OAAO,CAAC,IAAI,YAAY,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;YAC1E,oFAAoF;YACpF,MAAM,cAAc,GAAG,IAAI,GAAG,CAAC,YAAY,EAAE,uBAAc,CAAC,CAAC;YAC7D,IAAI,WAAW,CAAC;YAChB,IAAI,aAAa,EAAE;gBACf,WAAW,GAAG,aAAa,CAAC,WAAW,CAAC;aAC3C;YAED,MAAM,sBAAsB,iCAAK,MAAM,EAAE,KAAK,IAAK,WAAW,GAAK,OAAO,CAAC,CAAC;YAC5E,MAAM,uBAAuB,GAAG,EAAS,CAAC;YAC1C,MAAM,sBAAsB,GAAG,EAAS,CAAC;YAEzC,oCAAoC;YACpC,MAAM,IAAA,0BAAiB,EAAC,uBAAuB,EAAE,eAAe,EAAE,aAAa,CAAC,CAAA;YAIhF,IAAA,wBAAe,EAAC,cAAc,EAAE,sBAAsB,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC;YACvE,IAAI,sBAAsB,GAAG,WAAW,IAAI,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC;YAC3F,sBAAsB,CAAC,OAAO,iDAAO,uBAAuB,GAAK,sBAAsB,GAAK,OAAO,CAAC,OAAO,CAAC,CAAC;YAE7G,OAAO;gBACH,GAAG,EAAE,IAAA,qBAAY,EAAC,cAAc,CAAC;gBACjC,OAAO,EAAE,sBAAsB;aAClC,CAAC;QACN,CAAC,CAAA;QACD;;;;;;WAMG;QACH,mBAAmB,EAAE,CAAO,IAAS,EAAE,UAAe,EAAE,EAAwB,EAAE;YAC9E,4DAA4D;YAC5D,IAAA,0BAAiB,EAAC,qBAAqB,EAAE,MAAM,EAAE,IAAI,CAAC,CAAA;YACtD,MAAM,YAAY,GAAG,gBAAgB,CAAC;YACtC,oFAAoF;YACpF,MAAM,cAAc,GAAG,IAAI,GAAG,CAAC,YAAY,EAAE,uBAAc,CAAC,CAAC;YAC7D,IAAI,WAAW,CAAC;YAChB,IAAI,aAAa,EAAE;gBACf,WAAW,GAAG,aAAa,CAAC,WAAW,CAAC;aAC3C;YAED,MAAM,sBAAsB,iCAAK,MAAM,EAAE,MAAM,IAAK,WAAW,GAAK,OAAO,CAAC,CAAC;YAC7E,MAAM,uBAAuB,GAAG,EAAS,CAAC;YAC1C,MAAM,sBAAsB,GAAG,EAAS,CAAC;YAEzC,oCAAoC;YACpC,MAAM,IAAA,0BAAiB,EAAC,uBAAuB,EAAE,eAAe,EAAE,aAAa,CAAC,CAAA;YAIhF,uBAAuB,CAAC,cAAc,CAAC,GAAG,kBAAkB,CAAC;YAE7D,IAAA,wBAAe,EAAC,cAAc,EAAE,sBAAsB,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC;YACvE,IAAI,sBAAsB,GAAG,WAAW,IAAI,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC;YAC3F,sBAAsB,CAAC,OAAO,iDAAO,uBAAuB,GAAK,sBAAsB,GAAK,OAAO,CAAC,OAAO,CAAC,CAAC;YAC7G,sBAAsB,CAAC,IAAI,GAAG,IAAA,8BAAqB,EAAC,IAAI,EAAE,sBAAsB,EAAE,aAAa,CAAC,CAAA;YAEhG,OAAO;gBACH,GAAG,EAAE,IAAA,qBAAY,EAAC,cAAc,CAAC;gBACjC,OAAO,EAAE,sBAAsB;aAClC,CAAC;QACN,CAAC,CAAA;QACD;;;;;;;;WAQG;QACH,2BAA2B,EAAE,CAAO,UAAkB,EAAE,IAAa,EAAE,KAAkB,EAAE,UAAe,EAAE,EAAwB,EAAE;YAClI,kEAAkE;YAClE,IAAA,0BAAiB,EAAC,6BAA6B,EAAE,YAAY,EAAE,UAAU,CAAC,CAAA;YAC1E,MAAM,YAAY,GAAG,oBAAoB;iBACpC,OAAO,CAAC,IAAI,YAAY,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;YAC1E,oFAAoF;YACpF,MAAM,cAAc,GAAG,IAAI,GAAG,CAAC,YAAY,EAAE,uBAAc,CAAC,CAAC;YAC7D,IAAI,WAAW,CAAC;YAChB,IAAI,aAAa,EAAE;gBACf,WAAW,GAAG,aAAa,CAAC,WAAW,CAAC;aAC3C;YAED,MAAM,sBAAsB,iCAAK,MAAM,EAAE,KAAK,IAAK,WAAW,GAAK,OAAO,CAAC,CAAC;YAC5E,MAAM,uBAAuB,GAAG,EAAS,CAAC;YAC1C,MAAM,sBAAsB,GAAG,EAAS,CAAC;YACzC,MAAM,kBAAkB,GAAG,IAAI,CAAC,CAAC,aAAa,IAAI,aAAa,CAAC,YAAY,CAAC,IAAI,QAAQ,CAAC,EAAE,CAAC;YAE7F,oCAAoC;YACpC,MAAM,IAAA,0BAAiB,EAAC,uBAAuB,EAAE,eAAe,EAAE,aAAa,CAAC,CAAA;YAEhF,IAAI,IAAI,KAAK,SAAS,EAAE;gBACpB,sBAAsB,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;aACzC;YAED,IAAI,KAAK,EAAE;gBACP,KAAK,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE;oBACtB,kBAAkB,CAAC,MAAM,CAAC,OAAO,EAAE,OAAc,CAAC,CAAC;gBACvD,CAAC,CAAC,CAAA;aACL;YAID,uBAAuB,CAAC,cAAc,CAAC,GAAG,qBAAqB,CAAC;YAEhE,IAAA,wBAAe,EAAC,cAAc,EAAE,sBAAsB,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC;YACvE,IAAI,sBAAsB,GAAG,WAAW,IAAI,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC;YAC3F,sBAAsB,CAAC,OAAO,iDAAO,uBAAuB,GAAK,sBAAsB,GAAK,OAAO,CAAC,OAAO,CAAC,CAAC;YAC7G,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;YAEjD,OAAO;gBACH,GAAG,EAAE,IAAA,qBAAY,EAAC,cAAc,CAAC;gBACjC,OAAO,EAAE,sBAAsB;aAClC,CAAC;QACN,CAAC,CAAA;KACJ,CAAA;AACL,CAAC,CAAC;AAxNW,QAAA,wBAAwB,4BAwNnC;AAEF;;;GAGG;AACI,MAAM,SAAS,GAAG,UAAS,aAA6B;IAC3D,MAAM,yBAAyB,GAAG,IAAA,gCAAwB,EAAC,aAAa,CAAC,CAAA;IACzE,OAAO;QACH;;;;;;;WAOG;QACG,2BAA2B,CAAC,UAAkB,EAAE,IAAa,EAAE,OAAa;;gBAC9E,MAAM,iBAAiB,GAAG,MAAM,yBAAyB,CAAC,2BAA2B,CAAC,UAAU,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;gBACjH,OAAO,IAAA,8BAAqB,EAAC,iBAAiB,EAAE,eAAW,EAAE,gBAAS,EAAE,aAAa,CAAC,CAAC;YAC3F,CAAC;SAAA;QACD;;;;;;;WAOG;QACG,wBAAwB,CAAC,UAAkB,EAAE,IAAa,EAAE,OAAa;;gBAC3E,MAAM,iBAAiB,GAAG,MAAM,yBAAyB,CAAC,wBAAwB,CAAC,UAAU,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;gBAC9G,OAAO,IAAA,8BAAqB,EAAC,iBAAiB,EAAE,eAAW,EAAE,gBAAS,EAAE,aAAa,CAAC,CAAC;YAC3F,CAAC;SAAA;QACD;;;;;;WAMG;QACG,YAAY,CAAC,UAAkB,EAAE,OAAa;;gBAChD,MAAM,iBAAiB,GAAG,MAAM,yBAAyB,CAAC,YAAY,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC;gBAC5F,OAAO,IAAA,8BAAqB,EAAC,iBAAiB,EAAE,eAAW,EAAE,gBAAS,EAAE,aAAa,CAAC,CAAC;YAC3F,CAAC;SAAA;QACD;;;;;;WAMG;QACG,mBAAmB,CAAC,IAAS,EAAE,OAAa;;gBAC9C,MAAM,iBAAiB,GAAG,MAAM,yBAAyB,CAAC,mBAAmB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;gBAC7F,OAAO,IAAA,8BAAqB,EAAC,iBAAiB,EAAE,eAAW,EAAE,gBAAS,EAAE,aAAa,CAAC,CAAC;YAC3F,CAAC;SAAA;QACD;;;;;;;;WAQG;QACG,2BAA2B,CAAC,UAAkB,EAAE,IAAa,EAAE,KAAkB,EAAE,OAAa;;gBAClG,MAAM,iBAAiB,GAAG,MAAM,yBAAyB,CAAC,2BAA2B,CAAC,UAAU,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,CAAC,CAAC;gBACxH,OAAO,IAAA,8BAAqB,EAAC,iBAAiB,EAAE,eAAW,EAAE,gBAAS,EAAE,aAAa,CAAC,CAAC;YAC3F,CAAC;SAAA;KACJ,CAAA;AACL,CAAC,CAAC;AA/DW,QAAA,SAAS,aA+DpB;AAEF;;;GAGG;AACI,MAAM,cAAc,GAAG,UAAU,aAA6B,EAAE,QAAiB,EAAE,KAAqB;IAC3G,MAAM,UAAU,GAAG,IAAA,iBAAS,EAAC,aAAa,CAAC,CAAA;IAC3C,OAAO;QACH;;;;;;;WAOG;QACH,2BAA2B,CAAC,UAAkB,EAAE,IAAa,EAAE,OAAa;YACxE,OAAO,UAAU,CAAC,2BAA2B,CAAC,UAAU,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC;QACzH,CAAC;QACD;;;;;;;WAOG;QACH,wBAAwB,CAAC,UAAkB,EAAE,IAAa,EAAE,OAAa;YACrE,OAAO,UAAU,CAAC,wBAAwB,CAAC,UAAU,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC;QACtH,CAAC;QACD;;;;;;WAMG;QACH,YAAY,CAAC,UAAkB,EAAE,OAAa;YAC1C,OAAO,UAAU,CAAC,YAAY,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC;QACpG,CAAC;QACD;;;;;;WAMG;QACH,mBAAmB,CAAC,IAAS,EAAE,OAAa;YACxC,OAAO,UAAU,CAAC,mBAAmB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC;QACrG,CAAC;QACD;;;;;;;;WAQG;QACH,2BAA2B,CAAC,UAAkB,EAAE,IAAa,EAAE,KAAkB,EAAE,OAAa;YAC5F,OAAO,UAAU,CAAC,2BAA2B,CAAC,UAAU,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC;QAChI,CAAC;KACJ,CAAC;AACN,CAAC,CAAC;AA1DW,QAAA,cAAc,kBA0DzB;AAEF;;;;;GAKG;AACH,MAAa,OAAQ,SAAQ,cAAO;IAChC;;;;;;;;OAQG;IACI,2BAA2B,CAAC,UAAkB,EAAE,IAAa,EAAE,OAAa;QAC/E,OAAO,IAAA,iBAAS,EAAC,IAAI,CAAC,aAAa,CAAC,CAAC,2BAA2B,CAAC,UAAU,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;IACtJ,CAAC;IAED;;;;;;;;OAQG;IACI,wBAAwB,CAAC,UAAkB,EAAE,IAAa,EAAE,OAAa;QAC5E,OAAO,IAAA,iBAAS,EAAC,IAAI,CAAC,aAAa,CAAC,CAAC,wBAAwB,CAAC,UAAU,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;IACnJ,CAAC;IAED;;;;;;;OAOG;IACI,YAAY,CAAC,UAAkB,EAAE,OAAa;QACjD,OAAO,IAAA,iBAAS,EAAC,IAAI,CAAC,aAAa,CAAC,CAAC,YAAY,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;IACjI,CAAC;IAED;;;;;;;OAOG;IACI,mBAAmB,CAAC,IAAS,EAAE,OAAa;QAC/C,OAAO,IAAA,iBAAS,EAAC,IAAI,CAAC,aAAa,CAAC,CAAC,mBAAmB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;IAClI,CAAC;IAED;;;;;;;;;OASG;IACI,2BAA2B,CAAC,UAAkB,EAAE,IAAa,EAAE,KAAkB,EAAE,OAAa;QACnG,OAAO,IAAA,iBAAS,EAAC,IAAI,CAAC,aAAa,CAAC,CAAC,2BAA2B,CAAC,UAAU,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;IAC7J,CAAC;CACJ;AAhED,0BAgEC"}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Coscine.Api.Blob
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 2.
|
|
8
|
+
* The version of the OpenAPI document: 2.5.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Coscine.Api.Blob
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 2.
|
|
8
|
+
* The version of the OpenAPI document: 2.5.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Coscine.Api.Blob
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 2.
|
|
8
|
+
* The version of the OpenAPI document: 2.5.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Coscine.Api.Blob
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 2.
|
|
8
|
+
* The version of the OpenAPI document: 2.5.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Coscine.Api.Metadata
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 2.1
|
|
8
|
+
* The version of the OpenAPI document: 2.2.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -38,56 +38,17 @@ const base_1 = require("./base");
|
|
|
38
38
|
*/
|
|
39
39
|
const MetadataApiAxiosParamCreator = function (configuration) {
|
|
40
40
|
return {
|
|
41
|
-
/**
|
|
42
|
-
*
|
|
43
|
-
* @summary Returns the application profile with the fixed values for the given resource.
|
|
44
|
-
* @param {string} profile Url of the application profile
|
|
45
|
-
* @param {string} resourceId Id of the resource
|
|
46
|
-
* @param {*} [options] Override http request option.
|
|
47
|
-
* @throws {RequiredError}
|
|
48
|
-
*/
|
|
49
|
-
metadataGetApplicationProfileComplete: (profile, resourceId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
50
|
-
// verify required parameter 'profile' is not null or undefined
|
|
51
|
-
(0, common_1.assertParamExists)('metadataGetApplicationProfileComplete', 'profile', profile);
|
|
52
|
-
// verify required parameter 'resourceId' is not null or undefined
|
|
53
|
-
(0, common_1.assertParamExists)('metadataGetApplicationProfileComplete', 'resourceId', resourceId);
|
|
54
|
-
const localVarPath = `/Metadata/profiles/{profile}/{resourceId}`
|
|
55
|
-
.replace(`{${"profile"}}`, encodeURIComponent(String(profile)))
|
|
56
|
-
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
57
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
58
|
-
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
59
|
-
let baseOptions;
|
|
60
|
-
if (configuration) {
|
|
61
|
-
baseOptions = configuration.baseOptions;
|
|
62
|
-
}
|
|
63
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
64
|
-
const localVarHeaderParameter = {};
|
|
65
|
-
const localVarQueryParameter = {};
|
|
66
|
-
// authentication JWT token required
|
|
67
|
-
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
68
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter, options.query);
|
|
69
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
70
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
71
|
-
return {
|
|
72
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
73
|
-
options: localVarRequestOptions,
|
|
74
|
-
};
|
|
75
|
-
}),
|
|
76
41
|
/**
|
|
77
42
|
*
|
|
78
43
|
* @summary This method returns instances.
|
|
79
|
-
* @param {string} projectId Id of the project
|
|
80
44
|
* @param {string} className class name
|
|
81
45
|
* @param {*} [options] Override http request option.
|
|
82
46
|
* @throws {RequiredError}
|
|
83
47
|
*/
|
|
84
|
-
metadataGetClassInstances: (
|
|
85
|
-
// verify required parameter 'projectId' is not null or undefined
|
|
86
|
-
(0, common_1.assertParamExists)('metadataGetClassInstances', 'projectId', projectId);
|
|
48
|
+
metadataGetClassInstances: (className, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
87
49
|
// verify required parameter 'className' is not null or undefined
|
|
88
50
|
(0, common_1.assertParamExists)('metadataGetClassInstances', 'className', className);
|
|
89
|
-
const localVarPath = `/Metadata/instances/{
|
|
90
|
-
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
51
|
+
const localVarPath = `/Metadata/instances/{className}`
|
|
91
52
|
.replace(`{${"className"}}`, encodeURIComponent(String(className)));
|
|
92
53
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
93
54
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -224,6 +185,38 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
224
185
|
options: localVarRequestOptions,
|
|
225
186
|
};
|
|
226
187
|
}),
|
|
188
|
+
/**
|
|
189
|
+
*
|
|
190
|
+
* @summary Create a request for storing a given application profile.
|
|
191
|
+
* @param {ApplicationProfile} applicationProfile Object describing the application profile
|
|
192
|
+
* @param {*} [options] Override http request option.
|
|
193
|
+
* @throws {RequiredError}
|
|
194
|
+
*/
|
|
195
|
+
metadataSaveApplicationProfile: (applicationProfile, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
196
|
+
// verify required parameter 'applicationProfile' is not null or undefined
|
|
197
|
+
(0, common_1.assertParamExists)('metadataSaveApplicationProfile', 'applicationProfile', applicationProfile);
|
|
198
|
+
const localVarPath = `/Metadata/profiles`;
|
|
199
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
200
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
201
|
+
let baseOptions;
|
|
202
|
+
if (configuration) {
|
|
203
|
+
baseOptions = configuration.baseOptions;
|
|
204
|
+
}
|
|
205
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
206
|
+
const localVarHeaderParameter = {};
|
|
207
|
+
const localVarQueryParameter = {};
|
|
208
|
+
// authentication JWT token required
|
|
209
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
210
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
211
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter, options.query);
|
|
212
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
213
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
214
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(applicationProfile, localVarRequestOptions, configuration);
|
|
215
|
+
return {
|
|
216
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
217
|
+
options: localVarRequestOptions,
|
|
218
|
+
};
|
|
219
|
+
}),
|
|
227
220
|
};
|
|
228
221
|
};
|
|
229
222
|
exports.MetadataApiAxiosParamCreator = MetadataApiAxiosParamCreator;
|
|
@@ -234,31 +227,16 @@ exports.MetadataApiAxiosParamCreator = MetadataApiAxiosParamCreator;
|
|
|
234
227
|
const MetadataApiFp = function (configuration) {
|
|
235
228
|
const localVarAxiosParamCreator = (0, exports.MetadataApiAxiosParamCreator)(configuration);
|
|
236
229
|
return {
|
|
237
|
-
/**
|
|
238
|
-
*
|
|
239
|
-
* @summary Returns the application profile with the fixed values for the given resource.
|
|
240
|
-
* @param {string} profile Url of the application profile
|
|
241
|
-
* @param {string} resourceId Id of the resource
|
|
242
|
-
* @param {*} [options] Override http request option.
|
|
243
|
-
* @throws {RequiredError}
|
|
244
|
-
*/
|
|
245
|
-
metadataGetApplicationProfileComplete(profile, resourceId, options) {
|
|
246
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
247
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetApplicationProfileComplete(profile, resourceId, options);
|
|
248
|
-
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
249
|
-
});
|
|
250
|
-
},
|
|
251
230
|
/**
|
|
252
231
|
*
|
|
253
232
|
* @summary This method returns instances.
|
|
254
|
-
* @param {string} projectId Id of the project
|
|
255
233
|
* @param {string} className class name
|
|
256
234
|
* @param {*} [options] Override http request option.
|
|
257
235
|
* @throws {RequiredError}
|
|
258
236
|
*/
|
|
259
|
-
metadataGetClassInstances(
|
|
237
|
+
metadataGetClassInstances(className, options) {
|
|
260
238
|
return __awaiter(this, void 0, void 0, function* () {
|
|
261
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetClassInstances(
|
|
239
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetClassInstances(className, options);
|
|
262
240
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
263
241
|
});
|
|
264
242
|
},
|
|
@@ -312,6 +290,19 @@ const MetadataApiFp = function (configuration) {
|
|
|
312
290
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
313
291
|
});
|
|
314
292
|
},
|
|
293
|
+
/**
|
|
294
|
+
*
|
|
295
|
+
* @summary Create a request for storing a given application profile.
|
|
296
|
+
* @param {ApplicationProfile} applicationProfile Object describing the application profile
|
|
297
|
+
* @param {*} [options] Override http request option.
|
|
298
|
+
* @throws {RequiredError}
|
|
299
|
+
*/
|
|
300
|
+
metadataSaveApplicationProfile(applicationProfile, options) {
|
|
301
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
302
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataSaveApplicationProfile(applicationProfile, options);
|
|
303
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
304
|
+
});
|
|
305
|
+
},
|
|
315
306
|
};
|
|
316
307
|
};
|
|
317
308
|
exports.MetadataApiFp = MetadataApiFp;
|
|
@@ -322,27 +313,15 @@ exports.MetadataApiFp = MetadataApiFp;
|
|
|
322
313
|
const MetadataApiFactory = function (configuration, basePath, axios) {
|
|
323
314
|
const localVarFp = (0, exports.MetadataApiFp)(configuration);
|
|
324
315
|
return {
|
|
325
|
-
/**
|
|
326
|
-
*
|
|
327
|
-
* @summary Returns the application profile with the fixed values for the given resource.
|
|
328
|
-
* @param {string} profile Url of the application profile
|
|
329
|
-
* @param {string} resourceId Id of the resource
|
|
330
|
-
* @param {*} [options] Override http request option.
|
|
331
|
-
* @throws {RequiredError}
|
|
332
|
-
*/
|
|
333
|
-
metadataGetApplicationProfileComplete(profile, resourceId, options) {
|
|
334
|
-
return localVarFp.metadataGetApplicationProfileComplete(profile, resourceId, options).then((request) => request(axios, basePath));
|
|
335
|
-
},
|
|
336
316
|
/**
|
|
337
317
|
*
|
|
338
318
|
* @summary This method returns instances.
|
|
339
|
-
* @param {string} projectId Id of the project
|
|
340
319
|
* @param {string} className class name
|
|
341
320
|
* @param {*} [options] Override http request option.
|
|
342
321
|
* @throws {RequiredError}
|
|
343
322
|
*/
|
|
344
|
-
metadataGetClassInstances(
|
|
345
|
-
return localVarFp.metadataGetClassInstances(
|
|
323
|
+
metadataGetClassInstances(className, options) {
|
|
324
|
+
return localVarFp.metadataGetClassInstances(className, options).then((request) => request(axios, basePath));
|
|
346
325
|
},
|
|
347
326
|
/**
|
|
348
327
|
*
|
|
@@ -382,6 +361,16 @@ const MetadataApiFactory = function (configuration, basePath, axios) {
|
|
|
382
361
|
metadataGetVocabulary(path, options) {
|
|
383
362
|
return localVarFp.metadataGetVocabulary(path, options).then((request) => request(axios, basePath));
|
|
384
363
|
},
|
|
364
|
+
/**
|
|
365
|
+
*
|
|
366
|
+
* @summary Create a request for storing a given application profile.
|
|
367
|
+
* @param {ApplicationProfile} applicationProfile Object describing the application profile
|
|
368
|
+
* @param {*} [options] Override http request option.
|
|
369
|
+
* @throws {RequiredError}
|
|
370
|
+
*/
|
|
371
|
+
metadataSaveApplicationProfile(applicationProfile, options) {
|
|
372
|
+
return localVarFp.metadataSaveApplicationProfile(applicationProfile, options).then((request) => request(axios, basePath));
|
|
373
|
+
},
|
|
385
374
|
};
|
|
386
375
|
};
|
|
387
376
|
exports.MetadataApiFactory = MetadataApiFactory;
|
|
@@ -392,29 +381,16 @@ exports.MetadataApiFactory = MetadataApiFactory;
|
|
|
392
381
|
* @extends {BaseAPI}
|
|
393
382
|
*/
|
|
394
383
|
class MetadataApi extends base_1.BaseAPI {
|
|
395
|
-
/**
|
|
396
|
-
*
|
|
397
|
-
* @summary Returns the application profile with the fixed values for the given resource.
|
|
398
|
-
* @param {string} profile Url of the application profile
|
|
399
|
-
* @param {string} resourceId Id of the resource
|
|
400
|
-
* @param {*} [options] Override http request option.
|
|
401
|
-
* @throws {RequiredError}
|
|
402
|
-
* @memberof MetadataApi
|
|
403
|
-
*/
|
|
404
|
-
metadataGetApplicationProfileComplete(profile, resourceId, options) {
|
|
405
|
-
return (0, exports.MetadataApiFp)(this.configuration).metadataGetApplicationProfileComplete(profile, resourceId, options).then((request) => request(this.axios, this.basePath));
|
|
406
|
-
}
|
|
407
384
|
/**
|
|
408
385
|
*
|
|
409
386
|
* @summary This method returns instances.
|
|
410
|
-
* @param {string} projectId Id of the project
|
|
411
387
|
* @param {string} className class name
|
|
412
388
|
* @param {*} [options] Override http request option.
|
|
413
389
|
* @throws {RequiredError}
|
|
414
390
|
* @memberof MetadataApi
|
|
415
391
|
*/
|
|
416
|
-
metadataGetClassInstances(
|
|
417
|
-
return (0, exports.MetadataApiFp)(this.configuration).metadataGetClassInstances(
|
|
392
|
+
metadataGetClassInstances(className, options) {
|
|
393
|
+
return (0, exports.MetadataApiFp)(this.configuration).metadataGetClassInstances(className, options).then((request) => request(this.axios, this.basePath));
|
|
418
394
|
}
|
|
419
395
|
/**
|
|
420
396
|
*
|
|
@@ -458,6 +434,17 @@ class MetadataApi extends base_1.BaseAPI {
|
|
|
458
434
|
metadataGetVocabulary(path, options) {
|
|
459
435
|
return (0, exports.MetadataApiFp)(this.configuration).metadataGetVocabulary(path, options).then((request) => request(this.axios, this.basePath));
|
|
460
436
|
}
|
|
437
|
+
/**
|
|
438
|
+
*
|
|
439
|
+
* @summary Create a request for storing a given application profile.
|
|
440
|
+
* @param {ApplicationProfile} applicationProfile Object describing the application profile
|
|
441
|
+
* @param {*} [options] Override http request option.
|
|
442
|
+
* @throws {RequiredError}
|
|
443
|
+
* @memberof MetadataApi
|
|
444
|
+
*/
|
|
445
|
+
metadataSaveApplicationProfile(applicationProfile, options) {
|
|
446
|
+
return (0, exports.MetadataApiFp)(this.configuration).metadataSaveApplicationProfile(applicationProfile, options).then((request) => request(this.axios, this.basePath));
|
|
447
|
+
}
|
|
461
448
|
}
|
|
462
449
|
exports.MetadataApi = MetadataApi;
|
|
463
450
|
//# sourceMappingURL=api.js.map
|