@coscine/api-client 3.0.0 → 3.1.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.
Files changed (42) hide show
  1. package/dist/index.js +1803 -1614
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.umd.js +1803 -1614
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/lib/Coscine.Api/api.js +1069 -179
  6. package/dist/lib/Coscine.Api/api.js.map +1 -1
  7. package/dist/lib/apis.js +37 -37
  8. package/dist/lib/apis.js.map +1 -1
  9. package/dist/types/Coscine.Api/api.d.ts +801 -89
  10. package/dist/types/apis.d.ts +11 -6
  11. package/dist/types/index.d.ts +22 -12
  12. package/package.json +1 -1
  13. package/dist/lib/Coscine.Api.Blob/api.js +0 -301
  14. package/dist/lib/Coscine.Api.Blob/api.js.map +0 -1
  15. package/dist/lib/Coscine.Api.Blob/base.js +0 -65
  16. package/dist/lib/Coscine.Api.Blob/base.js.map +0 -1
  17. package/dist/lib/Coscine.Api.Blob/common.js +0 -153
  18. package/dist/lib/Coscine.Api.Blob/common.js.map +0 -1
  19. package/dist/lib/Coscine.Api.Blob/configuration.js +0 -43
  20. package/dist/lib/Coscine.Api.Blob/configuration.js.map +0 -1
  21. package/dist/lib/Coscine.Api.Blob/index.js +0 -32
  22. package/dist/lib/Coscine.Api.Blob/index.js.map +0 -1
  23. package/dist/lib/Coscine.Api.Tree/api.js +0 -231
  24. package/dist/lib/Coscine.Api.Tree/api.js.map +0 -1
  25. package/dist/lib/Coscine.Api.Tree/base.js +0 -65
  26. package/dist/lib/Coscine.Api.Tree/base.js.map +0 -1
  27. package/dist/lib/Coscine.Api.Tree/common.js +0 -153
  28. package/dist/lib/Coscine.Api.Tree/common.js.map +0 -1
  29. package/dist/lib/Coscine.Api.Tree/configuration.js +0 -43
  30. package/dist/lib/Coscine.Api.Tree/configuration.js.map +0 -1
  31. package/dist/lib/Coscine.Api.Tree/index.js +0 -32
  32. package/dist/lib/Coscine.Api.Tree/index.js.map +0 -1
  33. package/dist/types/Coscine.Api.Blob/api.d.ts +0 -155
  34. package/dist/types/Coscine.Api.Blob/base.d.ts +0 -55
  35. package/dist/types/Coscine.Api.Blob/common.d.ts +0 -65
  36. package/dist/types/Coscine.Api.Blob/configuration.d.ts +0 -83
  37. package/dist/types/Coscine.Api.Blob/index.d.ts +0 -13
  38. package/dist/types/Coscine.Api.Tree/api.d.ts +0 -122
  39. package/dist/types/Coscine.Api.Tree/base.d.ts +0 -55
  40. package/dist/types/Coscine.Api.Tree/common.d.ts +0 -65
  41. package/dist/types/Coscine.Api.Tree/configuration.d.ts +0 -83
  42. package/dist/types/Coscine.Api.Tree/index.d.ts +0 -13
@@ -1,153 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * Coscine.Api.Blob
6
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
- *
8
- * The version of the OpenAPI document: 3.2.0
9
- *
10
- *
11
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
- * https://openapi-generator.tech
13
- * Do not edit the class manually.
14
- */
15
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
16
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
17
- return new (P || (P = Promise))(function (resolve, reject) {
18
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
19
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
20
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
21
- step((generator = generator.apply(thisArg, _arguments || [])).next());
22
- });
23
- };
24
- Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.createRequestFunction = exports.toPathString = exports.serializeDataIfNeeded = exports.setSearchParams = exports.setOAuthToObject = exports.setBearerAuthToObject = exports.setBasicAuthToObject = exports.setApiKeyToObject = exports.assertParamExists = exports.DUMMY_BASE_URL = void 0;
26
- const base_1 = require("./base");
27
- /**
28
- *
29
- * @export
30
- */
31
- exports.DUMMY_BASE_URL = 'https://example.com';
32
- /**
33
- *
34
- * @throws {RequiredError}
35
- * @export
36
- */
37
- const assertParamExists = function (functionName, paramName, paramValue) {
38
- if (paramValue === null || paramValue === undefined) {
39
- throw new base_1.RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
40
- }
41
- };
42
- exports.assertParamExists = assertParamExists;
43
- /**
44
- *
45
- * @export
46
- */
47
- const setApiKeyToObject = function (object, keyParamName, configuration) {
48
- return __awaiter(this, void 0, void 0, function* () {
49
- if (configuration && configuration.apiKey) {
50
- const localVarApiKeyValue = typeof configuration.apiKey === 'function'
51
- ? yield configuration.apiKey(keyParamName)
52
- : yield configuration.apiKey;
53
- object[keyParamName] = localVarApiKeyValue;
54
- }
55
- });
56
- };
57
- exports.setApiKeyToObject = setApiKeyToObject;
58
- /**
59
- *
60
- * @export
61
- */
62
- const setBasicAuthToObject = function (object, configuration) {
63
- if (configuration && (configuration.username || configuration.password)) {
64
- object["auth"] = { username: configuration.username, password: configuration.password };
65
- }
66
- };
67
- exports.setBasicAuthToObject = setBasicAuthToObject;
68
- /**
69
- *
70
- * @export
71
- */
72
- const setBearerAuthToObject = function (object, configuration) {
73
- return __awaiter(this, void 0, void 0, function* () {
74
- if (configuration && configuration.accessToken) {
75
- const accessToken = typeof configuration.accessToken === 'function'
76
- ? yield configuration.accessToken()
77
- : yield configuration.accessToken;
78
- object["Authorization"] = "Bearer " + accessToken;
79
- }
80
- });
81
- };
82
- exports.setBearerAuthToObject = setBearerAuthToObject;
83
- /**
84
- *
85
- * @export
86
- */
87
- const setOAuthToObject = function (object, name, scopes, configuration) {
88
- return __awaiter(this, void 0, void 0, function* () {
89
- if (configuration && configuration.accessToken) {
90
- const localVarAccessTokenValue = typeof configuration.accessToken === 'function'
91
- ? yield configuration.accessToken(name, scopes)
92
- : yield configuration.accessToken;
93
- object["Authorization"] = "Bearer " + localVarAccessTokenValue;
94
- }
95
- });
96
- };
97
- exports.setOAuthToObject = setOAuthToObject;
98
- /**
99
- *
100
- * @export
101
- */
102
- const setSearchParams = function (url, ...objects) {
103
- const searchParams = new URLSearchParams(url.search);
104
- for (const object of objects) {
105
- for (const key in object) {
106
- if (Array.isArray(object[key])) {
107
- searchParams.delete(key);
108
- for (const item of object[key]) {
109
- searchParams.append(key, item);
110
- }
111
- }
112
- else {
113
- searchParams.set(key, object[key]);
114
- }
115
- }
116
- }
117
- url.search = searchParams.toString();
118
- };
119
- exports.setSearchParams = setSearchParams;
120
- /**
121
- *
122
- * @export
123
- */
124
- const serializeDataIfNeeded = function (value, requestOptions, configuration) {
125
- const nonString = typeof value !== 'string';
126
- const needsSerialization = nonString && configuration && configuration.isJsonMime
127
- ? configuration.isJsonMime(requestOptions.headers['Content-Type'])
128
- : nonString;
129
- return needsSerialization
130
- ? JSON.stringify(value !== undefined ? value : {})
131
- : (value || "");
132
- };
133
- exports.serializeDataIfNeeded = serializeDataIfNeeded;
134
- /**
135
- *
136
- * @export
137
- */
138
- const toPathString = function (url) {
139
- return url.pathname + url.search + url.hash;
140
- };
141
- exports.toPathString = toPathString;
142
- /**
143
- *
144
- * @export
145
- */
146
- const createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
147
- return (axios = globalAxios, basePath = BASE_PATH) => {
148
- const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
149
- return axios.request(axiosRequestArgs);
150
- };
151
- };
152
- exports.createRequestFunction = createRequestFunction;
153
- //# sourceMappingURL=common.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"common.js","sourceRoot":"","sources":["../../../src/Coscine.Api.Blob/common.ts"],"names":[],"mappings":"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"}
@@ -1,43 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * Coscine.Api.Blob
6
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
- *
8
- * The version of the OpenAPI document: 3.2.0
9
- *
10
- *
11
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
- * https://openapi-generator.tech
13
- * Do not edit the class manually.
14
- */
15
- Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.Configuration = void 0;
17
- class Configuration {
18
- constructor(param = {}) {
19
- this.apiKey = param.apiKey;
20
- this.username = param.username;
21
- this.password = param.password;
22
- this.accessToken = param.accessToken;
23
- this.basePath = param.basePath;
24
- this.baseOptions = param.baseOptions;
25
- this.formDataCtor = param.formDataCtor;
26
- }
27
- /**
28
- * Check if the given MIME is a JSON MIME.
29
- * JSON MIME examples:
30
- * application/json
31
- * application/json; charset=UTF8
32
- * APPLICATION/JSON
33
- * application/vnd.company+json
34
- * @param mime - MIME (Multipurpose Internet Mail Extensions)
35
- * @return True if the given MIME is JSON, false otherwise.
36
- */
37
- isJsonMime(mime) {
38
- const jsonMime = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
39
- return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
40
- }
41
- }
42
- exports.Configuration = Configuration;
43
- //# sourceMappingURL=configuration.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"configuration.js","sourceRoot":"","sources":["../../../src/Coscine.Api.Blob/configuration.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAaH,MAAa,aAAa;IAmDtB,YAAY,QAAiC,EAAE;QAC3C,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;QAC3B,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;QAC/B,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;QAC/B,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC;QACrC,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;QAC/B,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC;QACrC,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC,YAAY,CAAC;IAC3C,CAAC;IAED;;;;;;;;;OASG;IACI,UAAU,CAAC,IAAY;QAC1B,MAAM,QAAQ,GAAW,IAAI,MAAM,CAAC,+DAA+D,EAAE,GAAG,CAAC,CAAC;QAC1G,OAAO,IAAI,KAAK,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,WAAW,EAAE,KAAK,6BAA6B,CAAC,CAAC;IAC1G,CAAC;CACJ;AA3ED,sCA2EC"}
@@ -1,32 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * Coscine.Api.Blob
6
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
- *
8
- * The version of the OpenAPI document: 3.2.0
9
- *
10
- *
11
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
- * https://openapi-generator.tech
13
- * Do not edit the class manually.
14
- */
15
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
16
- if (k2 === undefined) k2 = k;
17
- var desc = Object.getOwnPropertyDescriptor(m, k);
18
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
19
- desc = { enumerable: true, get: function() { return m[k]; } };
20
- }
21
- Object.defineProperty(o, k2, desc);
22
- }) : (function(o, m, k, k2) {
23
- if (k2 === undefined) k2 = k;
24
- o[k2] = m[k];
25
- }));
26
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
27
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
28
- };
29
- Object.defineProperty(exports, "__esModule", { value: true });
30
- __exportStar(require("./api"), exports);
31
- __exportStar(require("./configuration"), exports);
32
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/Coscine.Api.Blob/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;;;;;;;;;;;;;;AAGH,wCAAsB;AACtB,kDAAgC"}
@@ -1,231 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * Coscine.Api.Tree
6
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
- *
8
- * The version of the OpenAPI document: 2.10.0
9
- *
10
- *
11
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
- * https://openapi-generator.tech
13
- * Do not edit the class manually.
14
- */
15
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
16
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
17
- return new (P || (P = Promise))(function (resolve, reject) {
18
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
19
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
20
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
21
- step((generator = generator.apply(thisArg, _arguments || [])).next());
22
- });
23
- };
24
- var __importDefault = (this && this.__importDefault) || function (mod) {
25
- return (mod && mod.__esModule) ? mod : { "default": mod };
26
- };
27
- Object.defineProperty(exports, "__esModule", { value: true });
28
- exports.TreeApi = exports.TreeApiFactory = exports.TreeApiFp = exports.TreeApiAxiosParamCreator = void 0;
29
- const axios_1 = __importDefault(require("axios"));
30
- // Some imports not used depending on template conditions
31
- // @ts-ignore
32
- const common_1 = require("./common");
33
- // @ts-ignore
34
- const base_1 = require("./base");
35
- /**
36
- * TreeApi - axios parameter creator
37
- * @export
38
- */
39
- const TreeApiAxiosParamCreator = function (configuration) {
40
- return {
41
- /**
42
- *
43
- * @summary This method retrieves the metadata
44
- * @param {string} resourceId Id of a resource
45
- * @param {string} [path] Path to the file
46
- * @param {string} [mimeType] Requested MimeType of the metadata
47
- * @param {*} [options] Override http request option.
48
- * @throws {RequiredError}
49
- */
50
- treeGetMetadataWithParameter: (resourceId, path, mimeType, options = {}) => __awaiter(this, void 0, void 0, function* () {
51
- // verify required parameter 'resourceId' is not null or undefined
52
- (0, common_1.assertParamExists)('treeGetMetadataWithParameter', 'resourceId', resourceId);
53
- const localVarPath = `/Tree/{resourceId}`
54
- .replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
55
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
56
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
57
- let baseOptions;
58
- if (configuration) {
59
- baseOptions = configuration.baseOptions;
60
- }
61
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
62
- const localVarHeaderParameter = {};
63
- const localVarQueryParameter = {};
64
- // authentication JWT token required
65
- yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
66
- if (path !== undefined) {
67
- localVarQueryParameter['path'] = path;
68
- }
69
- if (mimeType !== undefined) {
70
- localVarQueryParameter['mimeType'] = mimeType;
71
- }
72
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter, options.query);
73
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
74
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
75
- return {
76
- url: (0, common_1.toPathString)(localVarUrlObj),
77
- options: localVarRequestOptions,
78
- };
79
- }),
80
- /**
81
- *
82
- * @summary This method stores the metadata of the file
83
- * @param {string} resourceId Id of the resource
84
- * @param {string} [path] Path to the file
85
- * @param {string} [mimeType] Requested MimeType of the metadata
86
- * @param {*} [options] Override http request option.
87
- * @throws {RequiredError}
88
- */
89
- treeStoreMetadataForFileWithParameter: (resourceId, path, mimeType, options = {}) => __awaiter(this, void 0, void 0, function* () {
90
- // verify required parameter 'resourceId' is not null or undefined
91
- (0, common_1.assertParamExists)('treeStoreMetadataForFileWithParameter', 'resourceId', resourceId);
92
- const localVarPath = `/Tree/{resourceId}`
93
- .replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
94
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
95
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
96
- let baseOptions;
97
- if (configuration) {
98
- baseOptions = configuration.baseOptions;
99
- }
100
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
101
- const localVarHeaderParameter = {};
102
- const localVarQueryParameter = {};
103
- // authentication JWT token required
104
- yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
105
- if (path !== undefined) {
106
- localVarQueryParameter['path'] = path;
107
- }
108
- if (mimeType !== undefined) {
109
- localVarQueryParameter['mimeType'] = mimeType;
110
- }
111
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter, options.query);
112
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
113
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
114
- return {
115
- url: (0, common_1.toPathString)(localVarUrlObj),
116
- options: localVarRequestOptions,
117
- };
118
- }),
119
- };
120
- };
121
- exports.TreeApiAxiosParamCreator = TreeApiAxiosParamCreator;
122
- /**
123
- * TreeApi - functional programming interface
124
- * @export
125
- */
126
- const TreeApiFp = function (configuration) {
127
- const localVarAxiosParamCreator = (0, exports.TreeApiAxiosParamCreator)(configuration);
128
- return {
129
- /**
130
- *
131
- * @summary This method retrieves the metadata
132
- * @param {string} resourceId Id of a resource
133
- * @param {string} [path] Path to the file
134
- * @param {string} [mimeType] Requested MimeType of the metadata
135
- * @param {*} [options] Override http request option.
136
- * @throws {RequiredError}
137
- */
138
- treeGetMetadataWithParameter(resourceId, path, mimeType, options) {
139
- return __awaiter(this, void 0, void 0, function* () {
140
- const localVarAxiosArgs = yield localVarAxiosParamCreator.treeGetMetadataWithParameter(resourceId, path, mimeType, options);
141
- return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
142
- });
143
- },
144
- /**
145
- *
146
- * @summary This method stores the metadata of the file
147
- * @param {string} resourceId Id of the resource
148
- * @param {string} [path] Path to the file
149
- * @param {string} [mimeType] Requested MimeType of the metadata
150
- * @param {*} [options] Override http request option.
151
- * @throws {RequiredError}
152
- */
153
- treeStoreMetadataForFileWithParameter(resourceId, path, mimeType, options) {
154
- return __awaiter(this, void 0, void 0, function* () {
155
- const localVarAxiosArgs = yield localVarAxiosParamCreator.treeStoreMetadataForFileWithParameter(resourceId, path, mimeType, options);
156
- return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
157
- });
158
- },
159
- };
160
- };
161
- exports.TreeApiFp = TreeApiFp;
162
- /**
163
- * TreeApi - factory interface
164
- * @export
165
- */
166
- const TreeApiFactory = function (configuration, basePath, axios) {
167
- const localVarFp = (0, exports.TreeApiFp)(configuration);
168
- return {
169
- /**
170
- *
171
- * @summary This method retrieves the metadata
172
- * @param {string} resourceId Id of a resource
173
- * @param {string} [path] Path to the file
174
- * @param {string} [mimeType] Requested MimeType of the metadata
175
- * @param {*} [options] Override http request option.
176
- * @throws {RequiredError}
177
- */
178
- treeGetMetadataWithParameter(resourceId, path, mimeType, options) {
179
- return localVarFp.treeGetMetadataWithParameter(resourceId, path, mimeType, options).then((request) => request(axios, basePath));
180
- },
181
- /**
182
- *
183
- * @summary This method stores the metadata of the file
184
- * @param {string} resourceId Id of the resource
185
- * @param {string} [path] Path to the file
186
- * @param {string} [mimeType] Requested MimeType of the metadata
187
- * @param {*} [options] Override http request option.
188
- * @throws {RequiredError}
189
- */
190
- treeStoreMetadataForFileWithParameter(resourceId, path, mimeType, options) {
191
- return localVarFp.treeStoreMetadataForFileWithParameter(resourceId, path, mimeType, options).then((request) => request(axios, basePath));
192
- },
193
- };
194
- };
195
- exports.TreeApiFactory = TreeApiFactory;
196
- /**
197
- * TreeApi - object-oriented interface
198
- * @export
199
- * @class TreeApi
200
- * @extends {BaseAPI}
201
- */
202
- class TreeApi extends base_1.BaseAPI {
203
- /**
204
- *
205
- * @summary This method retrieves the metadata
206
- * @param {string} resourceId Id of a resource
207
- * @param {string} [path] Path to the file
208
- * @param {string} [mimeType] Requested MimeType of the metadata
209
- * @param {*} [options] Override http request option.
210
- * @throws {RequiredError}
211
- * @memberof TreeApi
212
- */
213
- treeGetMetadataWithParameter(resourceId, path, mimeType, options) {
214
- return (0, exports.TreeApiFp)(this.configuration).treeGetMetadataWithParameter(resourceId, path, mimeType, options).then((request) => request(this.axios, this.basePath));
215
- }
216
- /**
217
- *
218
- * @summary This method stores the metadata of the file
219
- * @param {string} resourceId Id of the resource
220
- * @param {string} [path] Path to the file
221
- * @param {string} [mimeType] Requested MimeType of the metadata
222
- * @param {*} [options] Override http request option.
223
- * @throws {RequiredError}
224
- * @memberof TreeApi
225
- */
226
- treeStoreMetadataForFileWithParameter(resourceId, path, mimeType, options) {
227
- return (0, exports.TreeApiFp)(this.configuration).treeStoreMetadataForFileWithParameter(resourceId, path, mimeType, options).then((request) => request(this.axios, this.basePath));
228
- }
229
- }
230
- exports.TreeApi = TreeApi;
231
- //# sourceMappingURL=api.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"api.js","sourceRoot":"","sources":["../../../src/Coscine.Api.Tree/api.ts"],"names":[],"mappings":"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"}
@@ -1,65 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * Coscine.Api.Tree
6
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
- *
8
- * The version of the OpenAPI document: 2.10.0
9
- *
10
- *
11
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
- * https://openapi-generator.tech
13
- * Do not edit the class manually.
14
- */
15
- var __importDefault = (this && this.__importDefault) || function (mod) {
16
- return (mod && mod.__esModule) ? mod : { "default": mod };
17
- };
18
- Object.defineProperty(exports, "__esModule", { value: true });
19
- exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
20
- // Some imports not used depending on template conditions
21
- // @ts-ignore
22
- const axios_1 = __importDefault(require("axios"));
23
- exports.BASE_PATH = "https://d-sp12.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Tree".replace(/\/+$/, "");
24
- /**
25
- *
26
- * @export
27
- */
28
- exports.COLLECTION_FORMATS = {
29
- csv: ",",
30
- ssv: " ",
31
- tsv: "\t",
32
- pipes: "|",
33
- };
34
- /**
35
- *
36
- * @export
37
- * @class BaseAPI
38
- */
39
- class BaseAPI {
40
- constructor(configuration, basePath = exports.BASE_PATH, axios = axios_1.default) {
41
- this.basePath = basePath;
42
- this.axios = axios;
43
- if (configuration) {
44
- this.configuration = configuration;
45
- this.basePath = configuration.basePath || this.basePath;
46
- }
47
- }
48
- }
49
- exports.BaseAPI = BaseAPI;
50
- ;
51
- /**
52
- *
53
- * @export
54
- * @class RequiredError
55
- * @extends {Error}
56
- */
57
- class RequiredError extends Error {
58
- constructor(field, msg) {
59
- super(msg);
60
- this.field = field;
61
- this.name = "RequiredError";
62
- }
63
- }
64
- exports.RequiredError = RequiredError;
65
- //# sourceMappingURL=base.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"base.js","sourceRoot":"","sources":["../../../src/Coscine.Api.Tree/base.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;;;;AAIH,yDAAyD;AACzD,aAAa;AACb,kDAAiE;AAEpD,QAAA,SAAS,GAAG,0EAA0E,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;AAExH;;;GAGG;AACU,QAAA,kBAAkB,GAAG;IAC9B,GAAG,EAAE,GAAG;IACR,GAAG,EAAE,GAAG;IACR,GAAG,EAAE,IAAI;IACT,KAAK,EAAE,GAAG;CACb,CAAC;AAYF;;;;GAIG;AACH,MAAa,OAAO;IAGhB,YAAY,aAA6B,EAAY,WAAmB,iBAAS,EAAY,QAAuB,eAAW;QAA1E,aAAQ,GAAR,QAAQ,CAAoB;QAAY,UAAK,GAAL,KAAK,CAA6B;QAC3H,IAAI,aAAa,EAAE;YACf,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;YACnC,IAAI,CAAC,QAAQ,GAAG,aAAa,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC;SAC3D;IACL,CAAC;CACJ;AATD,0BASC;AAAA,CAAC;AAEF;;;;;GAKG;AACH,MAAa,aAAc,SAAQ,KAAK;IAEpC,YAAmB,KAAa,EAAE,GAAY;QAC1C,KAAK,CAAC,GAAG,CAAC,CAAC;QADI,UAAK,GAAL,KAAK,CAAQ;QADhC,SAAI,GAAoB,eAAe,CAAC;IAGxC,CAAC;CACJ;AALD,sCAKC"}