@coscine/api-client 1.2.0 → 1.5.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 +132 -109
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +132 -109
- package/dist/index.umd.js.map +1 -1
- package/dist/lib/Coscine.Api.Metadata/api.js +9 -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.Project/api.js +74 -9
- package/dist/lib/Coscine.Api.Project/api.js.map +1 -1
- package/dist/lib/Coscine.Api.Project/base.js +2 -2
- package/dist/lib/Coscine.Api.Project/common.js +1 -1
- package/dist/lib/Coscine.Api.Project/configuration.js +1 -1
- package/dist/lib/Coscine.Api.Project/index.js +1 -1
- package/dist/lib/Coscine.Api.Resources/api.js +29 -29
- package/dist/lib/Coscine.Api.Resources/api.js.map +1 -1
- package/dist/lib/Coscine.Api.Resources/base.js +1 -1
- package/dist/lib/Coscine.Api.Resources/common.js +1 -1
- package/dist/lib/Coscine.Api.Resources/configuration.js +1 -1
- package/dist/lib/Coscine.Api.Resources/index.js +1 -1
- package/dist/lib/apis.js +8 -1
- package/dist/lib/apis.js.map +1 -1
- package/dist/lib/axios-basic.js +36 -8
- package/dist/lib/axios-basic.js.map +1 -1
- package/dist/types/Coscine.Api.Metadata/api.d.ts +52 -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.Project/api.d.ts +45 -12
- package/dist/types/Coscine.Api.Project/base.d.ts +1 -1
- package/dist/types/Coscine.Api.Project/common.d.ts +1 -1
- package/dist/types/Coscine.Api.Project/configuration.d.ts +1 -1
- package/dist/types/Coscine.Api.Project/index.d.ts +1 -1
- package/dist/types/Coscine.Api.Resources/api.d.ts +176 -38
- package/dist/types/Coscine.Api.Resources/base.d.ts +1 -1
- package/dist/types/Coscine.Api.Resources/common.d.ts +1 -1
- package/dist/types/Coscine.Api.Resources/configuration.d.ts +1 -1
- package/dist/types/Coscine.Api.Resources/index.d.ts +1 -1
- package/dist/types/apis.d.ts +9 -9
- package/dist/types/index.d.ts +18 -18
- package/package.json +2 -2
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Coscine.Api.Resources
|
|
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.6.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.Resources
|
|
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.6.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.Resources
|
|
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.6.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/lib/apis.js
CHANGED
|
@@ -28,7 +28,14 @@ const api_24 = require("./Coscine.Api.User/api");
|
|
|
28
28
|
const api_25 = require("./Coscine.Api.User/api");
|
|
29
29
|
let accessToken = '';
|
|
30
30
|
if (typeof coscine !== 'undefined' && typeof coscine.authorization !== 'undefined') {
|
|
31
|
-
accessToken = coscine.authorization.bearer;
|
|
31
|
+
accessToken = 'Bearer ' + coscine.authorization.bearer;
|
|
32
|
+
}
|
|
33
|
+
if (typeof window !== 'undefined') {
|
|
34
|
+
// LocalStorage > Global Variables
|
|
35
|
+
const localStorageToken = localStorage.getItem('coscine.authorization.bearer');
|
|
36
|
+
if (localStorageToken) {
|
|
37
|
+
accessToken = 'Bearer ' + localStorageToken;
|
|
38
|
+
}
|
|
32
39
|
}
|
|
33
40
|
const getHostName = () => {
|
|
34
41
|
let hostName = typeof window !== 'undefined' ? window.location.hostname : 'coscine.rwth-aachen.de';
|
package/dist/lib/apis.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apis.js","sourceRoot":"","sources":["../../src/apis.ts"],"names":[],"mappings":";;AAEA,6DAAkF;AAClF,iFAA8E;AAC9E,iDAA0D;AAC1D,gDAAwD;AACxD,oDAAgE;AAChE,mDAA6D;AAC7D,wDAAwE;AACxE,mDAAiE;AACjE,mDAA8D;AAC9D,mDAA8D;AAC9D,oDAAkE;AAClE,oDAA2D;AAC3D,oDAA6D;AAC7D,oDAAiE;AACjE,oDAAiE;AACjE,kDAA0D;AAC1D,sDAAiE;AACjE,sDAAqE;AACrE,mDAAoE;AACpE,kDAA0D;AAC1D,iDAAwD;AACxD,iDAAiE;AACjE,iDAA4D;AAC5D,iDAAuD;AACvD,iDAAyD;AACzD,iDAAwD;AAExD,IAAI,WAAW,GAAG,EAAE,CAAC;AACrB,IAAI,OAAO,OAAO,KAAK,WAAW,IAAI,OAAO,OAAO,CAAC,aAAa,KAAK,WAAW,EAAE;IAClF,WAAW,GAAG,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"apis.js","sourceRoot":"","sources":["../../src/apis.ts"],"names":[],"mappings":"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"}
|
package/dist/lib/axios-basic.js
CHANGED
|
@@ -17,26 +17,54 @@ function setHeader(request) {
|
|
|
17
17
|
request.headers.common[clientCorrolationIdKey] = coscine.clientcorrolation.id;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
+
if (typeof window !== 'undefined') {
|
|
21
|
+
// LocalStorage > Global Variables
|
|
22
|
+
const localStorageToken = localStorage.getItem("coscine.authorization.bearer");
|
|
23
|
+
if (localStorageToken) {
|
|
24
|
+
request.headers.common[authHeaderKey] =
|
|
25
|
+
'Bearer ' + localStorageToken;
|
|
26
|
+
}
|
|
27
|
+
const localStorageClientCorrelation = localStorage.getItem("coscine.clientcorrolation.id");
|
|
28
|
+
if (localStorageClientCorrelation) {
|
|
29
|
+
request.headers.common[clientCorrolationIdKey] = localStorageClientCorrelation;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
20
32
|
}
|
|
21
33
|
;
|
|
22
|
-
|
|
23
|
-
setHeader(request);
|
|
34
|
+
function increaseLoading() {
|
|
24
35
|
if ((typeof coscine !== "undefined") && (typeof coscine.loading !== "undefined") && (typeof coscine.loading.counter !== "undefined")) {
|
|
25
36
|
coscine.loading.counter++;
|
|
26
37
|
}
|
|
38
|
+
if (typeof window !== 'undefined') {
|
|
39
|
+
const localStorageLoading = localStorage.getItem("coscine.loading.counter");
|
|
40
|
+
if (localStorageLoading) {
|
|
41
|
+
localStorage.setItem("coscine.loading.counter", String(Number(localStorageLoading) + 1));
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
function decreaseLoading() {
|
|
46
|
+
if ((typeof coscine !== "undefined") && (typeof coscine.loading !== "undefined") && (typeof coscine.loading.counter !== "undefined")) {
|
|
47
|
+
coscine.loading.counter--;
|
|
48
|
+
}
|
|
49
|
+
if (typeof window !== 'undefined') {
|
|
50
|
+
const localStorageLoading = localStorage.getItem("coscine.loading.counter");
|
|
51
|
+
if (localStorageLoading) {
|
|
52
|
+
localStorage.setItem("coscine.loading.counter", String(Number(localStorageLoading) - 1));
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
instance.interceptors.request.use((request) => {
|
|
57
|
+
setHeader(request);
|
|
58
|
+
increaseLoading();
|
|
27
59
|
return request;
|
|
28
60
|
}, (error) => {
|
|
29
61
|
return Promise.reject(error);
|
|
30
62
|
});
|
|
31
63
|
instance.interceptors.response.use((response) => {
|
|
32
|
-
|
|
33
|
-
coscine.loading.counter--;
|
|
34
|
-
}
|
|
64
|
+
decreaseLoading();
|
|
35
65
|
return response;
|
|
36
66
|
}, (error) => {
|
|
37
|
-
|
|
38
|
-
coscine.loading.counter--;
|
|
39
|
-
}
|
|
67
|
+
decreaseLoading();
|
|
40
68
|
return Promise.reject(error);
|
|
41
69
|
});
|
|
42
70
|
exports.default = instance;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"axios-basic.js","sourceRoot":"","sources":["../../src/axios-basic.ts"],"names":[],"mappings":";;;;;AAAA,kDAAkD;AAElD,MAAM,QAAQ,GAAG,eAAK,CAAC,MAAM,EAAE,CAAC;AAEhC,MAAM,aAAa,GAAG,eAAe,CAAC;AACtC,MAAM,sBAAsB,GAAG,iCAAiC,CAAC;AAEjE,SAAS,SAAS,CAAC,OAA2B;IAC5C,IAAI,OAAO,OAAO,KAAK,WAAW,EAAE;QAClC,IAAI,OAAO,OAAO,CAAC,aAAa,KAAK,WAAW,EAAE;YAChD,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CAAC;gBACnC,SAAS,GAAG,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC;SAC5C;QACD,IAAI,OAAO,OAAO,CAAC,iBAAiB,KAAK,WAAW,EAAE;YACpD,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAC,GAAG,OAAO,CAAC,iBAAiB,CAAC,EAAE,CAAC;SAC/E;KACF;
|
|
1
|
+
{"version":3,"file":"axios-basic.js","sourceRoot":"","sources":["../../src/axios-basic.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Coscine.Api.Metadata
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.2.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -44,28 +44,56 @@ export interface ApplicationProfile {
|
|
|
44
44
|
mimeType?: string | null;
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* Bilingual labels
|
|
48
48
|
* @export
|
|
49
|
+
* @interface BilingualLabels
|
|
49
50
|
*/
|
|
50
|
-
export
|
|
51
|
+
export interface BilingualLabels {
|
|
51
52
|
/**
|
|
52
|
-
*
|
|
53
|
-
* @
|
|
54
|
-
* @
|
|
55
|
-
* @param {string} resourceId Id of the resource
|
|
56
|
-
* @param {*} [options] Override http request option.
|
|
57
|
-
* @throws {RequiredError}
|
|
53
|
+
* English labels
|
|
54
|
+
* @type {Array<Label>}
|
|
55
|
+
* @memberof BilingualLabels
|
|
58
56
|
*/
|
|
59
|
-
|
|
57
|
+
en?: Array<Label> | null;
|
|
58
|
+
/**
|
|
59
|
+
* German labels
|
|
60
|
+
* @type {Array<Label>}
|
|
61
|
+
* @memberof BilingualLabels
|
|
62
|
+
*/
|
|
63
|
+
de?: Array<Label> | null;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Label of a vocabulary entry
|
|
67
|
+
* @export
|
|
68
|
+
* @interface Label
|
|
69
|
+
*/
|
|
70
|
+
export interface Label {
|
|
71
|
+
/**
|
|
72
|
+
* Name of the application profile
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof Label
|
|
75
|
+
*/
|
|
76
|
+
name?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
* Name of the application profile
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof Label
|
|
81
|
+
*/
|
|
82
|
+
value?: string | null;
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* MetadataApi - axios parameter creator
|
|
86
|
+
* @export
|
|
87
|
+
*/
|
|
88
|
+
export declare const MetadataApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
60
89
|
/**
|
|
61
90
|
*
|
|
62
91
|
* @summary This method returns instances.
|
|
63
|
-
* @param {string} projectId Id of the project
|
|
64
92
|
* @param {string} className class name
|
|
65
93
|
* @param {*} [options] Override http request option.
|
|
66
94
|
* @throws {RequiredError}
|
|
67
95
|
*/
|
|
68
|
-
metadataGetClassInstances: (
|
|
96
|
+
metadataGetClassInstances: (className: string, options?: any) => Promise<RequestArgs>;
|
|
69
97
|
/**
|
|
70
98
|
*
|
|
71
99
|
* @summary This method returns the application profile for the given profileUrl.
|
|
@@ -110,24 +138,14 @@ export declare const MetadataApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
110
138
|
* @export
|
|
111
139
|
*/
|
|
112
140
|
export declare const MetadataApiFp: (configuration?: Configuration) => {
|
|
113
|
-
/**
|
|
114
|
-
*
|
|
115
|
-
* @summary Returns the application profile with the fixed values for the given resource.
|
|
116
|
-
* @param {string} profile Url of the application profile
|
|
117
|
-
* @param {string} resourceId Id of the resource
|
|
118
|
-
* @param {*} [options] Override http request option.
|
|
119
|
-
* @throws {RequiredError}
|
|
120
|
-
*/
|
|
121
|
-
metadataGetApplicationProfileComplete(profile: string, resourceId: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
122
141
|
/**
|
|
123
142
|
*
|
|
124
143
|
* @summary This method returns instances.
|
|
125
|
-
* @param {string} projectId Id of the project
|
|
126
144
|
* @param {string} className class name
|
|
127
145
|
* @param {*} [options] Override http request option.
|
|
128
146
|
* @throws {RequiredError}
|
|
129
147
|
*/
|
|
130
|
-
metadataGetClassInstances(
|
|
148
|
+
metadataGetClassInstances(className: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BilingualLabels>>;
|
|
131
149
|
/**
|
|
132
150
|
*
|
|
133
151
|
* @summary This method returns the application profile for the given profileUrl.
|
|
@@ -142,14 +160,14 @@ export declare const MetadataApiFp: (configuration?: Configuration) => {
|
|
|
142
160
|
* @param {*} [options] Override http request option.
|
|
143
161
|
* @throws {RequiredError}
|
|
144
162
|
*/
|
|
145
|
-
metadataGetProfiles(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
163
|
+
metadataGetProfiles(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
146
164
|
/**
|
|
147
165
|
*
|
|
148
166
|
* @summary This method returns a list of all vocabularies.
|
|
149
167
|
* @param {*} [options] Override http request option.
|
|
150
168
|
* @throws {RequiredError}
|
|
151
169
|
*/
|
|
152
|
-
metadataGetVocabularies(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
170
|
+
metadataGetVocabularies(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
153
171
|
/**
|
|
154
172
|
*
|
|
155
173
|
* @summary This method returns a specific vocabulary.
|
|
@@ -157,7 +175,7 @@ export declare const MetadataApiFp: (configuration?: Configuration) => {
|
|
|
157
175
|
* @param {*} [options] Override http request option.
|
|
158
176
|
* @throws {RequiredError}
|
|
159
177
|
*/
|
|
160
|
-
metadataGetVocabulary(path: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
178
|
+
metadataGetVocabulary(path: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BilingualLabels>>;
|
|
161
179
|
/**
|
|
162
180
|
*
|
|
163
181
|
* @summary Create a request for storing a given application profile.
|
|
@@ -172,24 +190,14 @@ export declare const MetadataApiFp: (configuration?: Configuration) => {
|
|
|
172
190
|
* @export
|
|
173
191
|
*/
|
|
174
192
|
export declare const MetadataApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
175
|
-
/**
|
|
176
|
-
*
|
|
177
|
-
* @summary Returns the application profile with the fixed values for the given resource.
|
|
178
|
-
* @param {string} profile Url of the application profile
|
|
179
|
-
* @param {string} resourceId Id of the resource
|
|
180
|
-
* @param {*} [options] Override http request option.
|
|
181
|
-
* @throws {RequiredError}
|
|
182
|
-
*/
|
|
183
|
-
metadataGetApplicationProfileComplete(profile: string, resourceId: string, options?: any): AxiosPromise<any>;
|
|
184
193
|
/**
|
|
185
194
|
*
|
|
186
195
|
* @summary This method returns instances.
|
|
187
|
-
* @param {string} projectId Id of the project
|
|
188
196
|
* @param {string} className class name
|
|
189
197
|
* @param {*} [options] Override http request option.
|
|
190
198
|
* @throws {RequiredError}
|
|
191
199
|
*/
|
|
192
|
-
metadataGetClassInstances(
|
|
200
|
+
metadataGetClassInstances(className: string, options?: any): AxiosPromise<BilingualLabels>;
|
|
193
201
|
/**
|
|
194
202
|
*
|
|
195
203
|
* @summary This method returns the application profile for the given profileUrl.
|
|
@@ -204,14 +212,14 @@ export declare const MetadataApiFactory: (configuration?: Configuration, basePat
|
|
|
204
212
|
* @param {*} [options] Override http request option.
|
|
205
213
|
* @throws {RequiredError}
|
|
206
214
|
*/
|
|
207
|
-
metadataGetProfiles(options?: any): AxiosPromise<
|
|
215
|
+
metadataGetProfiles(options?: any): AxiosPromise<Array<string>>;
|
|
208
216
|
/**
|
|
209
217
|
*
|
|
210
218
|
* @summary This method returns a list of all vocabularies.
|
|
211
219
|
* @param {*} [options] Override http request option.
|
|
212
220
|
* @throws {RequiredError}
|
|
213
221
|
*/
|
|
214
|
-
metadataGetVocabularies(options?: any): AxiosPromise<
|
|
222
|
+
metadataGetVocabularies(options?: any): AxiosPromise<Array<string>>;
|
|
215
223
|
/**
|
|
216
224
|
*
|
|
217
225
|
* @summary This method returns a specific vocabulary.
|
|
@@ -219,7 +227,7 @@ export declare const MetadataApiFactory: (configuration?: Configuration, basePat
|
|
|
219
227
|
* @param {*} [options] Override http request option.
|
|
220
228
|
* @throws {RequiredError}
|
|
221
229
|
*/
|
|
222
|
-
metadataGetVocabulary(path: string, options?: any): AxiosPromise<
|
|
230
|
+
metadataGetVocabulary(path: string, options?: any): AxiosPromise<BilingualLabels>;
|
|
223
231
|
/**
|
|
224
232
|
*
|
|
225
233
|
* @summary Create a request for storing a given application profile.
|
|
@@ -236,26 +244,15 @@ export declare const MetadataApiFactory: (configuration?: Configuration, basePat
|
|
|
236
244
|
* @extends {BaseAPI}
|
|
237
245
|
*/
|
|
238
246
|
export declare class MetadataApi extends BaseAPI {
|
|
239
|
-
/**
|
|
240
|
-
*
|
|
241
|
-
* @summary Returns the application profile with the fixed values for the given resource.
|
|
242
|
-
* @param {string} profile Url of the application profile
|
|
243
|
-
* @param {string} resourceId Id of the resource
|
|
244
|
-
* @param {*} [options] Override http request option.
|
|
245
|
-
* @throws {RequiredError}
|
|
246
|
-
* @memberof MetadataApi
|
|
247
|
-
*/
|
|
248
|
-
metadataGetApplicationProfileComplete(profile: string, resourceId: string, options?: any): Promise<import("axios").AxiosResponse<any>>;
|
|
249
247
|
/**
|
|
250
248
|
*
|
|
251
249
|
* @summary This method returns instances.
|
|
252
|
-
* @param {string} projectId Id of the project
|
|
253
250
|
* @param {string} className class name
|
|
254
251
|
* @param {*} [options] Override http request option.
|
|
255
252
|
* @throws {RequiredError}
|
|
256
253
|
* @memberof MetadataApi
|
|
257
254
|
*/
|
|
258
|
-
metadataGetClassInstances(
|
|
255
|
+
metadataGetClassInstances(className: string, options?: any): Promise<import("axios").AxiosResponse<BilingualLabels>>;
|
|
259
256
|
/**
|
|
260
257
|
*
|
|
261
258
|
* @summary This method returns the application profile for the given profileUrl.
|
|
@@ -272,7 +269,7 @@ export declare class MetadataApi extends BaseAPI {
|
|
|
272
269
|
* @throws {RequiredError}
|
|
273
270
|
* @memberof MetadataApi
|
|
274
271
|
*/
|
|
275
|
-
metadataGetProfiles(options?: any): Promise<import("axios").AxiosResponse<
|
|
272
|
+
metadataGetProfiles(options?: any): Promise<import("axios").AxiosResponse<string[]>>;
|
|
276
273
|
/**
|
|
277
274
|
*
|
|
278
275
|
* @summary This method returns a list of all vocabularies.
|
|
@@ -280,7 +277,7 @@ export declare class MetadataApi extends BaseAPI {
|
|
|
280
277
|
* @throws {RequiredError}
|
|
281
278
|
* @memberof MetadataApi
|
|
282
279
|
*/
|
|
283
|
-
metadataGetVocabularies(options?: any): Promise<import("axios").AxiosResponse<
|
|
280
|
+
metadataGetVocabularies(options?: any): Promise<import("axios").AxiosResponse<string[]>>;
|
|
284
281
|
/**
|
|
285
282
|
*
|
|
286
283
|
* @summary This method returns a specific vocabulary.
|
|
@@ -289,7 +286,7 @@ export declare class MetadataApi extends BaseAPI {
|
|
|
289
286
|
* @throws {RequiredError}
|
|
290
287
|
* @memberof MetadataApi
|
|
291
288
|
*/
|
|
292
|
-
metadataGetVocabulary(path: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
289
|
+
metadataGetVocabulary(path: string, options?: any): Promise<import("axios").AxiosResponse<BilingualLabels>>;
|
|
293
290
|
/**
|
|
294
291
|
*
|
|
295
292
|
* @summary Create a request for storing a given application profile.
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Coscine.Api.Metadata
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.2.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Coscine.Api.Metadata
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.2.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Coscine.Api.Metadata
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.2.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Coscine.Api.Metadata
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.2.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Coscine.Api.Project
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.6.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2093,6 +2093,14 @@ export declare class LicenseApi extends BaseAPI {
|
|
|
2093
2093
|
* @export
|
|
2094
2094
|
*/
|
|
2095
2095
|
export declare const ProjectApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2096
|
+
/**
|
|
2097
|
+
*
|
|
2098
|
+
* @summary Call to analytics logger.
|
|
2099
|
+
* @param {string} projectId Project id of the project
|
|
2100
|
+
* @param {*} [options] Override http request option.
|
|
2101
|
+
* @throws {RequiredError}
|
|
2102
|
+
*/
|
|
2103
|
+
projectCreateApplicationProfile: (projectId: string, options?: any) => Promise<RequestArgs>;
|
|
2096
2104
|
/**
|
|
2097
2105
|
*
|
|
2098
2106
|
* @summary Deletes the selected project
|
|
@@ -2111,8 +2119,8 @@ export declare const ProjectApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2111
2119
|
projectDeleteInvitation: (invitationId: string, options?: any) => Promise<RequestArgs>;
|
|
2112
2120
|
/**
|
|
2113
2121
|
*
|
|
2114
|
-
* @summary This returns the
|
|
2115
|
-
* @param {string} id Id of the
|
|
2122
|
+
* @summary This returns the project if the user has access to it
|
|
2123
|
+
* @param {string} id Id of the project
|
|
2116
2124
|
* @param {*} [options] Override http request option.
|
|
2117
2125
|
* @throws {RequiredError}
|
|
2118
2126
|
*/
|
|
@@ -2220,6 +2228,14 @@ export declare const ProjectApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2220
2228
|
* @export
|
|
2221
2229
|
*/
|
|
2222
2230
|
export declare const ProjectApiFp: (configuration?: Configuration) => {
|
|
2231
|
+
/**
|
|
2232
|
+
*
|
|
2233
|
+
* @summary Call to analytics logger.
|
|
2234
|
+
* @param {string} projectId Project id of the project
|
|
2235
|
+
* @param {*} [options] Override http request option.
|
|
2236
|
+
* @throws {RequiredError}
|
|
2237
|
+
*/
|
|
2238
|
+
projectCreateApplicationProfile(projectId: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
2223
2239
|
/**
|
|
2224
2240
|
*
|
|
2225
2241
|
* @summary Deletes the selected project
|
|
@@ -2238,8 +2254,8 @@ export declare const ProjectApiFp: (configuration?: Configuration) => {
|
|
|
2238
2254
|
projectDeleteInvitation(invitationId: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
2239
2255
|
/**
|
|
2240
2256
|
*
|
|
2241
|
-
* @summary This returns the
|
|
2242
|
-
* @param {string} id Id of the
|
|
2257
|
+
* @summary This returns the project if the user has access to it
|
|
2258
|
+
* @param {string} id Id of the project
|
|
2243
2259
|
* @param {*} [options] Override http request option.
|
|
2244
2260
|
* @throws {RequiredError}
|
|
2245
2261
|
*/
|
|
@@ -2299,7 +2315,7 @@ export declare const ProjectApiFp: (configuration?: Configuration) => {
|
|
|
2299
2315
|
* @param {*} [options] Override http request option.
|
|
2300
2316
|
* @throws {RequiredError}
|
|
2301
2317
|
*/
|
|
2302
|
-
projectQuotas(projectId: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
2318
|
+
projectQuotas(projectId: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProjectQuotaReturnObject>>>;
|
|
2303
2319
|
/**
|
|
2304
2320
|
*
|
|
2305
2321
|
* @summary Resolve an invitation for the current user.
|
|
@@ -2347,6 +2363,14 @@ export declare const ProjectApiFp: (configuration?: Configuration) => {
|
|
|
2347
2363
|
* @export
|
|
2348
2364
|
*/
|
|
2349
2365
|
export declare const ProjectApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2366
|
+
/**
|
|
2367
|
+
*
|
|
2368
|
+
* @summary Call to analytics logger.
|
|
2369
|
+
* @param {string} projectId Project id of the project
|
|
2370
|
+
* @param {*} [options] Override http request option.
|
|
2371
|
+
* @throws {RequiredError}
|
|
2372
|
+
*/
|
|
2373
|
+
projectCreateApplicationProfile(projectId: string, options?: any): AxiosPromise<any>;
|
|
2350
2374
|
/**
|
|
2351
2375
|
*
|
|
2352
2376
|
* @summary Deletes the selected project
|
|
@@ -2365,8 +2389,8 @@ export declare const ProjectApiFactory: (configuration?: Configuration, basePath
|
|
|
2365
2389
|
projectDeleteInvitation(invitationId: string, options?: any): AxiosPromise<any>;
|
|
2366
2390
|
/**
|
|
2367
2391
|
*
|
|
2368
|
-
* @summary This returns the
|
|
2369
|
-
* @param {string} id Id of the
|
|
2392
|
+
* @summary This returns the project if the user has access to it
|
|
2393
|
+
* @param {string} id Id of the project
|
|
2370
2394
|
* @param {*} [options] Override http request option.
|
|
2371
2395
|
* @throws {RequiredError}
|
|
2372
2396
|
*/
|
|
@@ -2426,7 +2450,7 @@ export declare const ProjectApiFactory: (configuration?: Configuration, basePath
|
|
|
2426
2450
|
* @param {*} [options] Override http request option.
|
|
2427
2451
|
* @throws {RequiredError}
|
|
2428
2452
|
*/
|
|
2429
|
-
projectQuotas(projectId: string, options?: any): AxiosPromise<Array<
|
|
2453
|
+
projectQuotas(projectId: string, options?: any): AxiosPromise<Array<ProjectQuotaReturnObject>>;
|
|
2430
2454
|
/**
|
|
2431
2455
|
*
|
|
2432
2456
|
* @summary Resolve an invitation for the current user.
|
|
@@ -2476,6 +2500,15 @@ export declare const ProjectApiFactory: (configuration?: Configuration, basePath
|
|
|
2476
2500
|
* @extends {BaseAPI}
|
|
2477
2501
|
*/
|
|
2478
2502
|
export declare class ProjectApi extends BaseAPI {
|
|
2503
|
+
/**
|
|
2504
|
+
*
|
|
2505
|
+
* @summary Call to analytics logger.
|
|
2506
|
+
* @param {string} projectId Project id of the project
|
|
2507
|
+
* @param {*} [options] Override http request option.
|
|
2508
|
+
* @throws {RequiredError}
|
|
2509
|
+
* @memberof ProjectApi
|
|
2510
|
+
*/
|
|
2511
|
+
projectCreateApplicationProfile(projectId: string, options?: any): Promise<import("axios").AxiosResponse<any>>;
|
|
2479
2512
|
/**
|
|
2480
2513
|
*
|
|
2481
2514
|
* @summary Deletes the selected project
|
|
@@ -2496,8 +2529,8 @@ export declare class ProjectApi extends BaseAPI {
|
|
|
2496
2529
|
projectDeleteInvitation(invitationId: string, options?: any): Promise<import("axios").AxiosResponse<any>>;
|
|
2497
2530
|
/**
|
|
2498
2531
|
*
|
|
2499
|
-
* @summary This returns the
|
|
2500
|
-
* @param {string} id Id of the
|
|
2532
|
+
* @summary This returns the project if the user has access to it
|
|
2533
|
+
* @param {string} id Id of the project
|
|
2501
2534
|
* @param {*} [options] Override http request option.
|
|
2502
2535
|
* @throws {RequiredError}
|
|
2503
2536
|
* @memberof ProjectApi
|
|
@@ -2565,7 +2598,7 @@ export declare class ProjectApi extends BaseAPI {
|
|
|
2565
2598
|
* @throws {RequiredError}
|
|
2566
2599
|
* @memberof ProjectApi
|
|
2567
2600
|
*/
|
|
2568
|
-
projectQuotas(projectId: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
2601
|
+
projectQuotas(projectId: string, options?: any): Promise<import("axios").AxiosResponse<ProjectQuotaReturnObject[]>>;
|
|
2569
2602
|
/**
|
|
2570
2603
|
*
|
|
2571
2604
|
* @summary Resolve an invitation for the current user.
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Coscine.Api.Project
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.6.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Coscine.Api.Project
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.6.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Coscine.Api.Project
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.6.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Coscine.Api.Project
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.6.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|