@coscine/api-client 3.14.0 → 3.16.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 +452 -395
- package/dist/types/Coscine.Api/@coscine/api/admin-api.d.ts +15 -15
- package/dist/types/Coscine.Api/@coscine/api/application-profile-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/discipline-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/language-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/license-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/organization-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/pid-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/project-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/project-invitation-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/project-member-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/project-quota-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/project-resource-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/resource-type-api.d.ts +0 -181
- package/dist/types/Coscine.Api/@coscine/api/resource-type-git-lab-api.d.ts +250 -0
- package/dist/types/Coscine.Api/@coscine/api/role-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/search-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/self-api-token-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/system-status-api.d.ts +6 -6
- package/dist/types/Coscine.Api/@coscine/api/title-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/tree-api.d.ts +6 -6
- package/dist/types/Coscine.Api/@coscine/api/visibility-api.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/api/vocabulary-api.d.ts +6 -6
- package/dist/types/Coscine.Api/@coscine/model/accepted-language.d.ts +2 -2
- package/dist/types/Coscine.Api/@coscine/model/coscine-http-method.d.ts +5 -5
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-options-dto.d.ts +61 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-resource-type-options-for-manipulation-dto.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-options-dto.d.ts +61 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-resource-type-options-for-manipulation-dto.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-web-options-dto.d.ts +31 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-web-resource-type-options-for-manipulation-dto.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/file-action-http-method.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/model/file-system-storage-options-dto.d.ts +24 -0
- package/dist/types/Coscine.Api/@coscine/model/identity-providers.d.ts +1 -1
- package/dist/types/Coscine.Api/@coscine/model/index.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/pid-type.d.ts +2 -2
- package/dist/types/Coscine.Api/@coscine/model/quota-unit.d.ts +6 -6
- package/dist/types/Coscine.Api/@coscine/model/rdf-format.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/model/resource-admin-dto.d.ts +8 -2
- package/dist/types/Coscine.Api/@coscine/model/resource-dto.d.ts +8 -2
- package/dist/types/Coscine.Api/@coscine/model/resource-for-update-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-options-dto.d.ts +28 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-options-for-creation-dto.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-options-for-update-dto.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-status.d.ts +2 -2
- package/dist/types/Coscine.Api/@coscine/model/search-category-type.d.ts +3 -3
- package/dist/types/Coscine.Api/api.d.ts +1 -0
- package/dist/types/apis.d.ts +6 -3
- package/dist/types/index.d.ts +12 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -59,7 +59,13 @@ class U {
|
|
|
59
59
|
* @type {new () => FormData}
|
|
60
60
|
*/
|
|
61
61
|
k(this, "formDataCtor");
|
|
62
|
-
|
|
62
|
+
var o;
|
|
63
|
+
this.apiKey = a.apiKey, this.username = a.username, this.password = a.password, this.accessToken = a.accessToken, this.basePath = a.basePath, this.serverIndex = a.serverIndex, this.baseOptions = {
|
|
64
|
+
...a.baseOptions,
|
|
65
|
+
headers: {
|
|
66
|
+
...(o = a.baseOptions) == null ? void 0 : o.headers
|
|
67
|
+
}
|
|
68
|
+
}, this.formDataCtor = a.formDataCtor;
|
|
63
69
|
}
|
|
64
70
|
/**
|
|
65
71
|
* Check if the given MIME is a JSON MIME.
|
|
@@ -84,30 +90,30 @@ function ke(e, a) {
|
|
|
84
90
|
const { toString: it } = Object.prototype, { getPrototypeOf: Re } = Object, ne = /* @__PURE__ */ ((e) => (a) => {
|
|
85
91
|
const o = it.call(a);
|
|
86
92
|
return e[o] || (e[o] = o.slice(8, -1).toLowerCase());
|
|
87
|
-
})(/* @__PURE__ */ Object.create(null)), Q = (e) => (e = e.toLowerCase(), (a) => ne(a) === e), le = (e) => (a) => typeof a === e, { isArray:
|
|
93
|
+
})(/* @__PURE__ */ Object.create(null)), Q = (e) => (e = e.toLowerCase(), (a) => ne(a) === e), le = (e) => (a) => typeof a === e, { isArray: Z } = Array, g = le("undefined");
|
|
88
94
|
function dt(e) {
|
|
89
|
-
return e !== null && !g(e) && e.constructor !== null && !g(e.constructor) &&
|
|
95
|
+
return e !== null && !g(e) && e.constructor !== null && !g(e.constructor) && M(e.constructor.isBuffer) && e.constructor.isBuffer(e);
|
|
90
96
|
}
|
|
91
97
|
const De = Q("ArrayBuffer");
|
|
92
98
|
function ht(e) {
|
|
93
99
|
let a;
|
|
94
100
|
return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? a = ArrayBuffer.isView(e) : a = e && e.buffer && De(e.buffer), a;
|
|
95
101
|
}
|
|
96
|
-
const Ot = le("string"),
|
|
102
|
+
const Ot = le("string"), M = le("function"), Ne = le("number"), ce = (e) => e !== null && typeof e == "object", Vt = (e) => e === !0 || e === !1, re = (e) => {
|
|
97
103
|
if (ne(e) !== "object")
|
|
98
104
|
return !1;
|
|
99
105
|
const a = Re(e);
|
|
100
106
|
return (a === null || a === Object.prototype || Object.getPrototypeOf(a) === null) && !(Symbol.toStringTag in e) && !(Symbol.iterator in e);
|
|
101
|
-
}, ut = Q("Date"), At = Q("File"), mt = Q("Blob"), Pt = Q("FileList"), It = (e) => ce(e) &&
|
|
107
|
+
}, ut = Q("Date"), At = Q("File"), mt = Q("Blob"), Pt = Q("FileList"), It = (e) => ce(e) && M(e.pipe), yt = (e) => {
|
|
102
108
|
let a;
|
|
103
|
-
return e && (typeof FormData == "function" && e instanceof FormData ||
|
|
104
|
-
a === "object" &&
|
|
109
|
+
return e && (typeof FormData == "function" && e instanceof FormData || M(e.append) && ((a = ne(e)) === "formdata" || // detect form-data instance
|
|
110
|
+
a === "object" && M(e.toString) && e.toString() === "[object FormData]"));
|
|
105
111
|
}, bt = Q("URLSearchParams"), Rt = (e) => e.trim ? e.trim() : e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
|
|
106
112
|
function ee(e, a, { allOwnKeys: o = !1 } = {}) {
|
|
107
113
|
if (e === null || typeof e > "u")
|
|
108
114
|
return;
|
|
109
115
|
let n, t;
|
|
110
|
-
if (typeof e != "object" && (e = [e]),
|
|
116
|
+
if (typeof e != "object" && (e = [e]), Z(e))
|
|
111
117
|
for (n = 0, t = e.length; n < t; n++)
|
|
112
118
|
a.call(null, e[n], n, e);
|
|
113
119
|
else {
|
|
@@ -117,7 +123,7 @@ function ee(e, a, { allOwnKeys: o = !1 } = {}) {
|
|
|
117
123
|
l = r[n], a.call(null, e[l], l, e);
|
|
118
124
|
}
|
|
119
125
|
}
|
|
120
|
-
function
|
|
126
|
+
function Ge(e, a) {
|
|
121
127
|
a = a.toLowerCase();
|
|
122
128
|
const o = Object.keys(e);
|
|
123
129
|
let n = o.length, t;
|
|
@@ -126,18 +132,18 @@ function $e(e, a) {
|
|
|
126
132
|
return t;
|
|
127
133
|
return null;
|
|
128
134
|
}
|
|
129
|
-
const
|
|
135
|
+
const $e = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : global, _e = (e) => !g(e) && e !== $e;
|
|
130
136
|
function ue() {
|
|
131
137
|
const { caseless: e } = _e(this) && this || {}, a = {}, o = (n, t) => {
|
|
132
|
-
const r = e &&
|
|
133
|
-
re(a[r]) && re(n) ? a[r] = ue(a[r], n) : re(n) ? a[r] = ue({}, n) :
|
|
138
|
+
const r = e && Ge(a, t) || t;
|
|
139
|
+
re(a[r]) && re(n) ? a[r] = ue(a[r], n) : re(n) ? a[r] = ue({}, n) : Z(n) ? a[r] = n.slice() : a[r] = n;
|
|
134
140
|
};
|
|
135
141
|
for (let n = 0, t = arguments.length; n < t; n++)
|
|
136
142
|
arguments[n] && ee(arguments[n], o);
|
|
137
143
|
return a;
|
|
138
144
|
}
|
|
139
145
|
const jt = (e, a, o, { allOwnKeys: n } = {}) => (ee(a, (t, r) => {
|
|
140
|
-
o &&
|
|
146
|
+
o && M(t) ? e[r] = ke(t, o) : e[r] = t;
|
|
141
147
|
}, { allOwnKeys: n }), e), vt = (e) => (e.charCodeAt(0) === 65279 && (e = e.slice(1)), e), St = (e, a, o, n) => {
|
|
142
148
|
e.prototype = Object.create(a.prototype, n), e.prototype.constructor = e, Object.defineProperty(e, "super", {
|
|
143
149
|
value: a.prototype
|
|
@@ -160,7 +166,7 @@ const jt = (e, a, o, { allOwnKeys: n } = {}) => (ee(a, (t, r) => {
|
|
|
160
166
|
}, Ut = (e) => {
|
|
161
167
|
if (!e)
|
|
162
168
|
return null;
|
|
163
|
-
if (
|
|
169
|
+
if (Z(e))
|
|
164
170
|
return e;
|
|
165
171
|
let a = e.length;
|
|
166
172
|
if (!Ne(a))
|
|
@@ -193,12 +199,12 @@ const jt = (e, a, o, { allOwnKeys: n } = {}) => (ee(a, (t, r) => {
|
|
|
193
199
|
let s;
|
|
194
200
|
(s = a(t, r, e)) !== !1 && (n[r] = s || t);
|
|
195
201
|
}), Object.defineProperties(e, n);
|
|
196
|
-
},
|
|
202
|
+
}, zt = (e) => {
|
|
197
203
|
qe(e, (a, o) => {
|
|
198
|
-
if (
|
|
204
|
+
if (M(e) && ["arguments", "caller", "callee"].indexOf(o) !== -1)
|
|
199
205
|
return !1;
|
|
200
206
|
const n = e[o];
|
|
201
|
-
if (
|
|
207
|
+
if (M(n)) {
|
|
202
208
|
if (a.enumerable = !1, "writable" in a) {
|
|
203
209
|
a.writable = !1;
|
|
204
210
|
return;
|
|
@@ -208,13 +214,13 @@ const jt = (e, a, o, { allOwnKeys: n } = {}) => (ee(a, (t, r) => {
|
|
|
208
214
|
});
|
|
209
215
|
}
|
|
210
216
|
});
|
|
211
|
-
},
|
|
217
|
+
}, Mt = (e, a) => {
|
|
212
218
|
const o = {}, n = (t) => {
|
|
213
219
|
t.forEach((r) => {
|
|
214
220
|
o[r] = !0;
|
|
215
221
|
});
|
|
216
222
|
};
|
|
217
|
-
return
|
|
223
|
+
return Z(e) ? n(e) : n(String(e).split(a)), o;
|
|
218
224
|
}, Ht = () => {
|
|
219
225
|
}, Qt = (e, a) => (e = +e, Number.isFinite(e) ? e : a), de = "abcdefghijklmnopqrstuvwxyz", xe = "0123456789", Je = {
|
|
220
226
|
DIGIT: xe,
|
|
@@ -228,7 +234,7 @@ const jt = (e, a, o, { allOwnKeys: n } = {}) => (ee(a, (t, r) => {
|
|
|
228
234
|
return o;
|
|
229
235
|
};
|
|
230
236
|
function Dt(e) {
|
|
231
|
-
return !!(e &&
|
|
237
|
+
return !!(e && M(e.append) && e[Symbol.toStringTag] === "FormData" && e[Symbol.iterator]);
|
|
232
238
|
}
|
|
233
239
|
const Nt = (e) => {
|
|
234
240
|
const a = new Array(10), o = (n, t) => {
|
|
@@ -237,7 +243,7 @@ const Nt = (e) => {
|
|
|
237
243
|
return;
|
|
238
244
|
if (!("toJSON" in n)) {
|
|
239
245
|
a[t] = n;
|
|
240
|
-
const r =
|
|
246
|
+
const r = Z(n) ? [] : {};
|
|
241
247
|
return ee(n, (s, l) => {
|
|
242
248
|
const c = o(s, t + 1);
|
|
243
249
|
!g(c) && (r[l] = c);
|
|
@@ -247,8 +253,8 @@ const Nt = (e) => {
|
|
|
247
253
|
return n;
|
|
248
254
|
};
|
|
249
255
|
return o(e, 0);
|
|
250
|
-
},
|
|
251
|
-
isArray:
|
|
256
|
+
}, Gt = Q("AsyncFunction"), $t = (e) => e && (ce(e) || M(e)) && M(e.then) && M(e.catch), v = {
|
|
257
|
+
isArray: Z,
|
|
252
258
|
isArrayBuffer: De,
|
|
253
259
|
isBuffer: dt,
|
|
254
260
|
isFormData: yt,
|
|
@@ -263,7 +269,7 @@ const Nt = (e) => {
|
|
|
263
269
|
isFile: At,
|
|
264
270
|
isBlob: mt,
|
|
265
271
|
isRegExp: Et,
|
|
266
|
-
isFunction:
|
|
272
|
+
isFunction: M,
|
|
267
273
|
isStream: It,
|
|
268
274
|
isURLSearchParams: bt,
|
|
269
275
|
isTypedArray: xt,
|
|
@@ -286,20 +292,20 @@ const Nt = (e) => {
|
|
|
286
292
|
hasOwnProp: Ue,
|
|
287
293
|
// an alias to avoid ESLint no-prototype-builtins detection
|
|
288
294
|
reduceDescriptors: qe,
|
|
289
|
-
freezeMethods:
|
|
290
|
-
toObjectSet:
|
|
295
|
+
freezeMethods: zt,
|
|
296
|
+
toObjectSet: Mt,
|
|
291
297
|
toCamelCase: Lt,
|
|
292
298
|
noop: Ht,
|
|
293
299
|
toFiniteNumber: Qt,
|
|
294
|
-
findKey:
|
|
295
|
-
global:
|
|
300
|
+
findKey: Ge,
|
|
301
|
+
global: $e,
|
|
296
302
|
isContextDefined: _e,
|
|
297
303
|
ALPHABET: Je,
|
|
298
304
|
generateString: kt,
|
|
299
305
|
isSpecCompliantForm: Dt,
|
|
300
306
|
toJSONObject: Nt,
|
|
301
|
-
isAsyncFn:
|
|
302
|
-
isThenable:
|
|
307
|
+
isAsyncFn: Gt,
|
|
308
|
+
isThenable: $t
|
|
303
309
|
};
|
|
304
310
|
function F(e, a, o, n, t) {
|
|
305
311
|
Error.call(this), Error.captureStackTrace ? Error.captureStackTrace(this, this.constructor) : this.stack = new Error().stack, this.message = e, this.name = "AxiosError", a && (this.code = a), o && (this.config = o), n && (this.request = n), t && (this.response = t);
|
|
@@ -416,14 +422,14 @@ function pe(e, a, o) {
|
|
|
416
422
|
if (!v.isUndefined(R)) {
|
|
417
423
|
if (d.indexOf(R) !== -1)
|
|
418
424
|
throw Error("Circular reference detected in " + S.join("."));
|
|
419
|
-
d.push(R), v.forEach(R, function(C,
|
|
425
|
+
d.push(R), v.forEach(R, function(C, z) {
|
|
420
426
|
(!(v.isUndefined(C) || C === null) && t.call(
|
|
421
427
|
a,
|
|
422
428
|
C,
|
|
423
|
-
v.isString(
|
|
429
|
+
v.isString(z) ? z.trim() : z,
|
|
424
430
|
S,
|
|
425
431
|
h
|
|
426
|
-
)) === !0 && O(C, S ? S.concat(
|
|
432
|
+
)) === !0 && O(C, S ? S.concat(z) : [z]);
|
|
427
433
|
}), d.pop();
|
|
428
434
|
}
|
|
429
435
|
}
|
|
@@ -448,11 +454,11 @@ function Fe(e) {
|
|
|
448
454
|
function je(e, a) {
|
|
449
455
|
this._pairs = [], e && pe(e, this, a);
|
|
450
456
|
}
|
|
451
|
-
const
|
|
452
|
-
|
|
457
|
+
const Ye = je.prototype;
|
|
458
|
+
Ye.append = function(a, o) {
|
|
453
459
|
this._pairs.push([a, o]);
|
|
454
460
|
};
|
|
455
|
-
|
|
461
|
+
Ye.toString = function(a) {
|
|
456
462
|
const o = a ? function(n) {
|
|
457
463
|
return a.call(this, n, Fe);
|
|
458
464
|
} : Fe;
|
|
@@ -463,7 +469,7 @@ fe.toString = function(a) {
|
|
|
463
469
|
function Kt(e) {
|
|
464
470
|
return encodeURIComponent(e).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
|
465
471
|
}
|
|
466
|
-
function
|
|
472
|
+
function Ze(e, a, o) {
|
|
467
473
|
if (!a)
|
|
468
474
|
return e;
|
|
469
475
|
const n = o && o.encode || Kt, t = o && o.serialize;
|
|
@@ -528,16 +534,16 @@ class Wt {
|
|
|
528
534
|
});
|
|
529
535
|
}
|
|
530
536
|
}
|
|
531
|
-
const Ce = Wt,
|
|
537
|
+
const Ce = Wt, fe = {
|
|
532
538
|
silentJSONParsing: !0,
|
|
533
539
|
forcedJSONParsing: !0,
|
|
534
540
|
clarifyTimeoutError: !1
|
|
535
|
-
}, Xt = typeof URLSearchParams < "u" ? URLSearchParams : je,
|
|
541
|
+
}, Xt = typeof URLSearchParams < "u" ? URLSearchParams : je, Yt = typeof FormData < "u" ? FormData : null, Zt = typeof Blob < "u" ? Blob : null, ft = {
|
|
536
542
|
isBrowser: !0,
|
|
537
543
|
classes: {
|
|
538
544
|
URLSearchParams: Xt,
|
|
539
|
-
FormData:
|
|
540
|
-
Blob:
|
|
545
|
+
FormData: Yt,
|
|
546
|
+
Blob: Zt
|
|
541
547
|
},
|
|
542
548
|
protocols: ["http", "https", "file", "blob", "url", "data"]
|
|
543
549
|
}, ge = typeof window < "u" && typeof document < "u", gt = ((e) => ge && ["ReactNative", "NativeScript", "NS"].indexOf(e) < 0)(typeof navigator < "u" && navigator.product), er = typeof WorkerGlobalScope < "u" && // eslint-disable-next-line no-undef
|
|
@@ -548,7 +554,7 @@ self instanceof WorkerGlobalScope && typeof self.importScripts == "function", tr
|
|
|
548
554
|
hasStandardBrowserWebWorkerEnv: er
|
|
549
555
|
}, Symbol.toStringTag, { value: "Module" })), H = {
|
|
550
556
|
...tr,
|
|
551
|
-
...
|
|
557
|
+
...ft
|
|
552
558
|
};
|
|
553
559
|
function rr(e, a) {
|
|
554
560
|
return pe(e, new H.classes.URLSearchParams(), Object.assign({
|
|
@@ -594,7 +600,7 @@ function or(e, a, o) {
|
|
|
594
600
|
return (o || JSON.stringify)(e);
|
|
595
601
|
}
|
|
596
602
|
const ve = {
|
|
597
|
-
transitional:
|
|
603
|
+
transitional: fe,
|
|
598
604
|
adapter: ["xhr", "http"],
|
|
599
605
|
transformRequest: [function(a, o) {
|
|
600
606
|
const n = o.getContentType() || "", t = n.indexOf("application/json") > -1, r = v.isObject(a);
|
|
@@ -686,7 +692,7 @@ const Se = ve, nr = v.toObjectSet([
|
|
|
686
692
|
t = s.indexOf(":"), o = s.substring(0, t).trim().toLowerCase(), n = s.substring(t + 1).trim(), !(!o || a[o] && nr[o]) && (o === "set-cookie" ? a[o] ? a[o].push(n) : a[o] = [n] : a[o] = a[o] ? a[o] + ", " + n : n);
|
|
687
693
|
}), a;
|
|
688
694
|
}, Le = Symbol("internals");
|
|
689
|
-
function
|
|
695
|
+
function f(e) {
|
|
690
696
|
return e && String(e).trim().toLowerCase();
|
|
691
697
|
}
|
|
692
698
|
function ae(e) {
|
|
@@ -731,7 +737,7 @@ class ie {
|
|
|
731
737
|
set(a, o, n) {
|
|
732
738
|
const t = this;
|
|
733
739
|
function r(l, c, p) {
|
|
734
|
-
const i =
|
|
740
|
+
const i = f(c);
|
|
735
741
|
if (!i)
|
|
736
742
|
throw new Error("header name must be a non-empty string");
|
|
737
743
|
const d = v.findKey(t, i);
|
|
@@ -741,7 +747,7 @@ class ie {
|
|
|
741
747
|
return v.isPlainObject(a) || a instanceof this.constructor ? s(a, o) : v.isString(a) && (a = a.trim()) && !pr(a) ? s(lr(a), o) : a != null && r(o, a, n), this;
|
|
742
748
|
}
|
|
743
749
|
get(a, o) {
|
|
744
|
-
if (a =
|
|
750
|
+
if (a = f(a), a) {
|
|
745
751
|
const n = v.findKey(this, a);
|
|
746
752
|
if (n) {
|
|
747
753
|
const t = this[n];
|
|
@@ -758,7 +764,7 @@ class ie {
|
|
|
758
764
|
}
|
|
759
765
|
}
|
|
760
766
|
has(a, o) {
|
|
761
|
-
if (a =
|
|
767
|
+
if (a = f(a), a) {
|
|
762
768
|
const n = v.findKey(this, a);
|
|
763
769
|
return !!(n && this[n] !== void 0 && (!o || he(this, this[n], n, o)));
|
|
764
770
|
}
|
|
@@ -768,7 +774,7 @@ class ie {
|
|
|
768
774
|
const n = this;
|
|
769
775
|
let t = !1;
|
|
770
776
|
function r(s) {
|
|
771
|
-
if (s =
|
|
777
|
+
if (s = f(s), s) {
|
|
772
778
|
const l = v.findKey(n, s);
|
|
773
779
|
l && (!o || he(n, n[l], l, o)) && (delete n[l], t = !0);
|
|
774
780
|
}
|
|
@@ -827,7 +833,7 @@ class ie {
|
|
|
827
833
|
accessors: {}
|
|
828
834
|
}).accessors, t = this.prototype;
|
|
829
835
|
function r(s) {
|
|
830
|
-
const l =
|
|
836
|
+
const l = f(s);
|
|
831
837
|
n[l] || (dr(t, s), n[l] = !0);
|
|
832
838
|
}
|
|
833
839
|
return v.isArray(a) ? a.forEach(r) : r(a), this;
|
|
@@ -1000,7 +1006,7 @@ const Ir = typeof XMLHttpRequest < "u", yr = Ir && function(e) {
|
|
|
1000
1006
|
r.set("Authorization", "Basic " + btoa(S + ":" + w));
|
|
1001
1007
|
}
|
|
1002
1008
|
const h = rt(e.baseURL, e.url);
|
|
1003
|
-
d.open(e.method.toUpperCase(),
|
|
1009
|
+
d.open(e.method.toUpperCase(), Ze(h, e.params, e.paramsSerializer), !0), d.timeout = e.timeout;
|
|
1004
1010
|
function O() {
|
|
1005
1011
|
if (!d)
|
|
1006
1012
|
return;
|
|
@@ -1028,7 +1034,7 @@ const Ir = typeof XMLHttpRequest < "u", yr = Ir && function(e) {
|
|
|
1028
1034
|
n(new F("Network Error", F.ERR_NETWORK, e, d)), d = null;
|
|
1029
1035
|
}, d.ontimeout = function() {
|
|
1030
1036
|
let w = e.timeout ? "timeout of " + e.timeout + "ms exceeded" : "timeout exceeded";
|
|
1031
|
-
const C = e.transitional ||
|
|
1037
|
+
const C = e.transitional || fe;
|
|
1032
1038
|
e.timeoutErrorMessage && (w = e.timeoutErrorMessage), n(new F(
|
|
1033
1039
|
w,
|
|
1034
1040
|
C.clarifyTimeoutError ? F.ETIMEDOUT : F.ECONNABORTED,
|
|
@@ -1064,7 +1070,7 @@ v.forEach(me, (e, a) => {
|
|
|
1064
1070
|
Object.defineProperty(e, "adapterName", { value: a });
|
|
1065
1071
|
}
|
|
1066
1072
|
});
|
|
1067
|
-
const
|
|
1073
|
+
const ze = (e) => `- ${e}`, br = (e) => v.isFunction(e) || e === null || e === !1, at = {
|
|
1068
1074
|
getAdapter: (e) => {
|
|
1069
1075
|
e = v.isArray(e) ? e : [e];
|
|
1070
1076
|
const { length: a } = e;
|
|
@@ -1084,8 +1090,8 @@ const Me = (e) => `- ${e}`, br = (e) => v.isFunction(e) || e === null || e === !
|
|
|
1084
1090
|
([l, c]) => `adapter ${l} ` + (c === !1 ? "is not supported by the environment" : "is not available in the build")
|
|
1085
1091
|
);
|
|
1086
1092
|
let s = a ? r.length > 1 ? `since :
|
|
1087
|
-
` + r.map(
|
|
1088
|
-
`) : " " +
|
|
1093
|
+
` + r.map(ze).join(`
|
|
1094
|
+
`) : " " + ze(r[0]) : "as no adapter specified";
|
|
1089
1095
|
throw new F(
|
|
1090
1096
|
"There is no suitable adapter to dispatch the request " + s,
|
|
1091
1097
|
"ERR_NOT_SUPPORT"
|
|
@@ -1099,7 +1105,7 @@ function Ve(e) {
|
|
|
1099
1105
|
if (e.cancelToken && e.cancelToken.throwIfRequested(), e.signal && e.signal.aborted)
|
|
1100
1106
|
throw new te(null, e);
|
|
1101
1107
|
}
|
|
1102
|
-
function
|
|
1108
|
+
function Me(e) {
|
|
1103
1109
|
return Ve(e), e.headers = D.from(e.headers), e.data = Oe.call(
|
|
1104
1110
|
e,
|
|
1105
1111
|
e.transformRequest
|
|
@@ -1118,7 +1124,7 @@ function ze(e) {
|
|
|
1118
1124
|
});
|
|
1119
1125
|
}
|
|
1120
1126
|
const He = (e) => e instanceof D ? e.toJSON() : e;
|
|
1121
|
-
function
|
|
1127
|
+
function Y(e, a) {
|
|
1122
1128
|
a = a || {};
|
|
1123
1129
|
const o = {};
|
|
1124
1130
|
function n(p, i, d) {
|
|
@@ -1246,7 +1252,7 @@ class oe {
|
|
|
1246
1252
|
* @returns {Promise} The Promise to be fulfilled
|
|
1247
1253
|
*/
|
|
1248
1254
|
request(a, o) {
|
|
1249
|
-
typeof a == "string" ? (o = o || {}, o.url = a) : o = a || {}, o =
|
|
1255
|
+
typeof a == "string" ? (o = o || {}, o.url = a) : o = a || {}, o = Y(this.defaults, o);
|
|
1250
1256
|
const { transitional: n, paramsSerializer: t, headers: r } = o;
|
|
1251
1257
|
n !== void 0 && Pe.assertOptions(n, {
|
|
1252
1258
|
silentJSONParsing: X.transitional(X.boolean),
|
|
@@ -1279,7 +1285,7 @@ class oe {
|
|
|
1279
1285
|
});
|
|
1280
1286
|
let i, d = 0, h;
|
|
1281
1287
|
if (!c) {
|
|
1282
|
-
const R = [
|
|
1288
|
+
const R = [Me.bind(this), void 0];
|
|
1283
1289
|
for (R.unshift.apply(R, l), R.push.apply(R, p), h = R.length, i = Promise.resolve(o); d < h; )
|
|
1284
1290
|
i = i.then(R[d++], R[d++]);
|
|
1285
1291
|
return i;
|
|
@@ -1296,7 +1302,7 @@ class oe {
|
|
|
1296
1302
|
}
|
|
1297
1303
|
}
|
|
1298
1304
|
try {
|
|
1299
|
-
i =
|
|
1305
|
+
i = Me.call(this, O);
|
|
1300
1306
|
} catch (R) {
|
|
1301
1307
|
return Promise.reject(R);
|
|
1302
1308
|
}
|
|
@@ -1305,14 +1311,14 @@ class oe {
|
|
|
1305
1311
|
return i;
|
|
1306
1312
|
}
|
|
1307
1313
|
getUri(a) {
|
|
1308
|
-
a =
|
|
1314
|
+
a = Y(this.defaults, a);
|
|
1309
1315
|
const o = rt(a.baseURL, a.url);
|
|
1310
|
-
return
|
|
1316
|
+
return Ze(o, a.params, a.paramsSerializer);
|
|
1311
1317
|
}
|
|
1312
1318
|
}
|
|
1313
1319
|
v.forEach(["delete", "get", "head", "options"], function(a) {
|
|
1314
1320
|
oe.prototype[a] = function(o, n) {
|
|
1315
|
-
return this.request(
|
|
1321
|
+
return this.request(Y(n || {}, {
|
|
1316
1322
|
method: a,
|
|
1317
1323
|
url: o,
|
|
1318
1324
|
data: (n || {}).data
|
|
@@ -1322,7 +1328,7 @@ v.forEach(["delete", "get", "head", "options"], function(a) {
|
|
|
1322
1328
|
v.forEach(["post", "put", "patch"], function(a) {
|
|
1323
1329
|
function o(n) {
|
|
1324
1330
|
return function(r, s, l) {
|
|
1325
|
-
return this.request(
|
|
1331
|
+
return this.request(Y(l || {}, {
|
|
1326
1332
|
method: a,
|
|
1327
1333
|
headers: n ? {
|
|
1328
1334
|
"Content-Type": "multipart/form-data"
|
|
@@ -1484,7 +1490,7 @@ const wr = Ie;
|
|
|
1484
1490
|
function ot(e) {
|
|
1485
1491
|
const a = new se(e), o = ke(se.prototype.request, a);
|
|
1486
1492
|
return v.extend(o, se.prototype, a, { allOwnKeys: !0 }), v.extend(o, a, null, { allOwnKeys: !0 }), o.create = function(t) {
|
|
1487
|
-
return ot(
|
|
1493
|
+
return ot(Y(e, t));
|
|
1488
1494
|
}, o;
|
|
1489
1495
|
}
|
|
1490
1496
|
const E = ot(Se);
|
|
@@ -1501,13 +1507,13 @@ E.all = function(a) {
|
|
|
1501
1507
|
};
|
|
1502
1508
|
E.spread = vr;
|
|
1503
1509
|
E.isAxiosError = Sr;
|
|
1504
|
-
E.mergeConfig =
|
|
1510
|
+
E.mergeConfig = Y;
|
|
1505
1511
|
E.AxiosHeaders = D;
|
|
1506
1512
|
E.formToJSON = (e) => et(v.isHTMLForm(e) ? new FormData(e) : e);
|
|
1507
1513
|
E.getAdapter = at.getAdapter;
|
|
1508
1514
|
E.HttpStatusCode = wr;
|
|
1509
1515
|
E.default = E;
|
|
1510
|
-
const V = E, u = "https://coscine-
|
|
1516
|
+
const V = E, u = "https://coscine-dorsch.web.vulcanus.otc.coscine.dev/coscine".replace(/\/+$/, "");
|
|
1511
1517
|
class Tr extends Error {
|
|
1512
1518
|
constructor(a, o) {
|
|
1513
1519
|
super(o), this.field = a, this.name = "RequiredError";
|
|
@@ -1571,7 +1577,7 @@ const I = function(e, ...a) {
|
|
|
1571
1577
|
* @param {CoscineHttpMethod} [httpMethod] The http method to filter activity logs by.
|
|
1572
1578
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
1573
1579
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
1574
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
1580
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
1575
1581
|
* @param {*} [options] Override http request option.
|
|
1576
1582
|
* @throws {RequiredError}
|
|
1577
1583
|
*/
|
|
@@ -1596,7 +1602,7 @@ const I = function(e, ...a) {
|
|
|
1596
1602
|
* @param {boolean} [includePublicationRequests] Gets or sets a value indicating whether to include project publication requests in the results.
|
|
1597
1603
|
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `250`.
|
|
1598
1604
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
1599
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
1605
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
1600
1606
|
* @param {*} [options] Override http request option.
|
|
1601
1607
|
* @throws {RequiredError}
|
|
1602
1608
|
*/
|
|
@@ -1619,7 +1625,7 @@ const I = function(e, ...a) {
|
|
|
1619
1625
|
* @param {boolean} [includeQuotas] Value indicating whether to include individual resource quotas.
|
|
1620
1626
|
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `250`.
|
|
1621
1627
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
1622
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
1628
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
1623
1629
|
* @param {*} [options] Override http request option.
|
|
1624
1630
|
* @throws {RequiredError}
|
|
1625
1631
|
*/
|
|
@@ -1641,7 +1647,7 @@ const I = function(e, ...a) {
|
|
|
1641
1647
|
* @param {boolean} [tosAccepted] Gets or sets a value indicating whether the terms of service have been accepted by the user.
|
|
1642
1648
|
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `250`.
|
|
1643
1649
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
1644
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
1650
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
1645
1651
|
* @param {*} [options] Override http request option.
|
|
1646
1652
|
* @throws {RequiredError}
|
|
1647
1653
|
*/
|
|
@@ -1662,7 +1668,7 @@ const I = function(e, ...a) {
|
|
|
1662
1668
|
* @summary Gets all deployed graphs.
|
|
1663
1669
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
1664
1670
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
1665
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
1671
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
1666
1672
|
* @param {*} [options] Override http request option.
|
|
1667
1673
|
* @throws {RequiredError}
|
|
1668
1674
|
*/
|
|
@@ -1767,14 +1773,14 @@ const I = function(e, ...a) {
|
|
|
1767
1773
|
* @param {CoscineHttpMethod} [httpMethod] The http method to filter activity logs by.
|
|
1768
1774
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
1769
1775
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
1770
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
1776
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
1771
1777
|
* @param {*} [options] Override http request option.
|
|
1772
1778
|
* @throws {RequiredError}
|
|
1773
1779
|
*/
|
|
1774
1780
|
async getAllActivityLogs(o, n, t, r, s, l, c, p, i, d) {
|
|
1775
1781
|
var S, w;
|
|
1776
1782
|
const h = await a.getAllActivityLogs(o, n, t, r, s, l, c, p, i, d), O = (e == null ? void 0 : e.serverIndex) ?? 0, R = (w = (S = A["AdminApi.getAllActivityLogs"]) == null ? void 0 : S[O]) == null ? void 0 : w.url;
|
|
1777
|
-
return (C,
|
|
1783
|
+
return (C, z) => b(h, V, u, e)(C, R || z);
|
|
1778
1784
|
},
|
|
1779
1785
|
/**
|
|
1780
1786
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -1785,7 +1791,7 @@ const I = function(e, ...a) {
|
|
|
1785
1791
|
* @param {boolean} [includePublicationRequests] Gets or sets a value indicating whether to include project publication requests in the results.
|
|
1786
1792
|
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `250`.
|
|
1787
1793
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
1788
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
1794
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
1789
1795
|
* @param {*} [options] Override http request option.
|
|
1790
1796
|
* @throws {RequiredError}
|
|
1791
1797
|
*/
|
|
@@ -1801,7 +1807,7 @@ const I = function(e, ...a) {
|
|
|
1801
1807
|
* @param {boolean} [includeQuotas] Value indicating whether to include individual resource quotas.
|
|
1802
1808
|
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `250`.
|
|
1803
1809
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
1804
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
1810
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
1805
1811
|
* @param {*} [options] Override http request option.
|
|
1806
1812
|
* @throws {RequiredError}
|
|
1807
1813
|
*/
|
|
@@ -1816,7 +1822,7 @@ const I = function(e, ...a) {
|
|
|
1816
1822
|
* @param {boolean} [tosAccepted] Gets or sets a value indicating whether the terms of service have been accepted by the user.
|
|
1817
1823
|
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `250`.
|
|
1818
1824
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
1819
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
1825
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
1820
1826
|
* @param {*} [options] Override http request option.
|
|
1821
1827
|
* @throws {RequiredError}
|
|
1822
1828
|
*/
|
|
@@ -1830,7 +1836,7 @@ const I = function(e, ...a) {
|
|
|
1830
1836
|
* @summary Gets all deployed graphs.
|
|
1831
1837
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
1832
1838
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
1833
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
1839
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
1834
1840
|
* @param {*} [options] Override http request option.
|
|
1835
1841
|
* @throws {RequiredError}
|
|
1836
1842
|
*/
|
|
@@ -2041,7 +2047,7 @@ const I = function(e, ...a) {
|
|
|
2041
2047
|
* @param {boolean} [modules] Gets or sets a value indicating whether to include modules in the application profiles.
|
|
2042
2048
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
2043
2049
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
2044
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
2050
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
2045
2051
|
* @param {*} [options] Override http request option.
|
|
2046
2052
|
* @throws {RequiredError}
|
|
2047
2053
|
*/
|
|
@@ -2126,7 +2132,7 @@ const I = function(e, ...a) {
|
|
|
2126
2132
|
* @param {boolean} [modules] Gets or sets a value indicating whether to include modules in the application profiles.
|
|
2127
2133
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
2128
2134
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
2129
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
2135
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
2130
2136
|
* @param {*} [options] Override http request option.
|
|
2131
2137
|
* @throws {RequiredError}
|
|
2132
2138
|
*/
|
|
@@ -2315,7 +2321,7 @@ const I = function(e, ...a) {
|
|
|
2315
2321
|
};
|
|
2316
2322
|
}
|
|
2317
2323
|
};
|
|
2318
|
-
},
|
|
2324
|
+
}, zr = function(e) {
|
|
2319
2325
|
const a = Er(e);
|
|
2320
2326
|
return {
|
|
2321
2327
|
/**
|
|
@@ -2390,8 +2396,8 @@ const I = function(e, ...a) {
|
|
|
2390
2396
|
return (h, O) => b(l, V, u, e)(h, p || O);
|
|
2391
2397
|
}
|
|
2392
2398
|
};
|
|
2393
|
-
},
|
|
2394
|
-
const n =
|
|
2399
|
+
}, Mr = function(e, a, o) {
|
|
2400
|
+
const n = zr(e);
|
|
2395
2401
|
return {
|
|
2396
2402
|
/**
|
|
2397
2403
|
*
|
|
@@ -2489,7 +2495,7 @@ const I = function(e, ...a) {
|
|
|
2489
2495
|
* @summary Retrieves all disciplines.
|
|
2490
2496
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
2491
2497
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
2492
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
2498
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
2493
2499
|
* @param {*} [options] Override http request option.
|
|
2494
2500
|
* @throws {RequiredError}
|
|
2495
2501
|
*/
|
|
@@ -2537,7 +2543,7 @@ const I = function(e, ...a) {
|
|
|
2537
2543
|
* @summary Retrieves all disciplines.
|
|
2538
2544
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
2539
2545
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
2540
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
2546
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
2541
2547
|
* @param {*} [options] Override http request option.
|
|
2542
2548
|
* @throws {RequiredError}
|
|
2543
2549
|
*/
|
|
@@ -2686,7 +2692,7 @@ const I = function(e, ...a) {
|
|
|
2686
2692
|
return (d, h) => b(s, V, u, e)(d, c || h);
|
|
2687
2693
|
}
|
|
2688
2694
|
};
|
|
2689
|
-
},
|
|
2695
|
+
}, Gr = function(e, a, o) {
|
|
2690
2696
|
const n = Nr(e);
|
|
2691
2697
|
return {
|
|
2692
2698
|
/**
|
|
@@ -2719,7 +2725,7 @@ const I = function(e, ...a) {
|
|
|
2719
2725
|
return n.updateHandle(t.prefix, t.suffix, t.handleForUpdateDto, r).then((s) => s(o, a));
|
|
2720
2726
|
}
|
|
2721
2727
|
};
|
|
2722
|
-
},
|
|
2728
|
+
}, $r = function(e) {
|
|
2723
2729
|
return {
|
|
2724
2730
|
/**
|
|
2725
2731
|
*
|
|
@@ -2764,7 +2770,7 @@ const I = function(e, ...a) {
|
|
|
2764
2770
|
* @summary Retrieves all languages.
|
|
2765
2771
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
2766
2772
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
2767
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
2773
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
2768
2774
|
* @param {*} [options] Override http request option.
|
|
2769
2775
|
* @throws {RequiredError}
|
|
2770
2776
|
*/
|
|
@@ -2782,7 +2788,7 @@ const I = function(e, ...a) {
|
|
|
2782
2788
|
}
|
|
2783
2789
|
};
|
|
2784
2790
|
}, _r = function(e) {
|
|
2785
|
-
const a =
|
|
2791
|
+
const a = $r(e);
|
|
2786
2792
|
return {
|
|
2787
2793
|
/**
|
|
2788
2794
|
*
|
|
@@ -2812,7 +2818,7 @@ const I = function(e, ...a) {
|
|
|
2812
2818
|
* @summary Retrieves all languages.
|
|
2813
2819
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
2814
2820
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
2815
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
2821
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
2816
2822
|
* @param {*} [options] Override http request option.
|
|
2817
2823
|
* @throws {RequiredError}
|
|
2818
2824
|
*/
|
|
@@ -2900,7 +2906,7 @@ const I = function(e, ...a) {
|
|
|
2900
2906
|
* @summary Retrieves all licenses.
|
|
2901
2907
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
2902
2908
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
2903
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
2909
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
2904
2910
|
* @param {*} [options] Override http request option.
|
|
2905
2911
|
* @throws {RequiredError}
|
|
2906
2912
|
*/
|
|
@@ -2948,7 +2954,7 @@ const I = function(e, ...a) {
|
|
|
2948
2954
|
* @summary Retrieves all licenses.
|
|
2949
2955
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
2950
2956
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
2951
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
2957
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
2952
2958
|
* @param {*} [options] Override http request option.
|
|
2953
2959
|
* @throws {RequiredError}
|
|
2954
2960
|
*/
|
|
@@ -3031,7 +3037,7 @@ const I = function(e, ...a) {
|
|
|
3031
3037
|
};
|
|
3032
3038
|
}
|
|
3033
3039
|
};
|
|
3034
|
-
},
|
|
3040
|
+
}, Yr = function(e) {
|
|
3035
3041
|
const a = Xr(e);
|
|
3036
3042
|
return {
|
|
3037
3043
|
/**
|
|
@@ -3058,8 +3064,8 @@ const I = function(e, ...a) {
|
|
|
3058
3064
|
return (c, p) => b(n, V, u, e)(c, r || p);
|
|
3059
3065
|
}
|
|
3060
3066
|
};
|
|
3061
|
-
},
|
|
3062
|
-
const n =
|
|
3067
|
+
}, Zr = function(e, a, o) {
|
|
3068
|
+
const n = Yr(e);
|
|
3063
3069
|
return {
|
|
3064
3070
|
/**
|
|
3065
3071
|
*
|
|
@@ -3081,7 +3087,7 @@ const I = function(e, ...a) {
|
|
|
3081
3087
|
return n.getCurrentMaintenances(t).then((r) => r(o, a));
|
|
3082
3088
|
}
|
|
3083
3089
|
};
|
|
3084
|
-
},
|
|
3090
|
+
}, fr = function(e) {
|
|
3085
3091
|
return {
|
|
3086
3092
|
/**
|
|
3087
3093
|
*
|
|
@@ -3129,7 +3135,7 @@ const I = function(e, ...a) {
|
|
|
3129
3135
|
* @param {boolean} [filterByPublicationService] Gets or sets the option to find only organizations having the publication service set.
|
|
3130
3136
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
3131
3137
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
3132
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
3138
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
3133
3139
|
* @param {*} [options] Override http request option.
|
|
3134
3140
|
* @throws {RequiredError}
|
|
3135
3141
|
*/
|
|
@@ -3147,7 +3153,7 @@ const I = function(e, ...a) {
|
|
|
3147
3153
|
}
|
|
3148
3154
|
};
|
|
3149
3155
|
}, gr = function(e) {
|
|
3150
|
-
const a =
|
|
3156
|
+
const a = fr(e);
|
|
3151
3157
|
return {
|
|
3152
3158
|
/**
|
|
3153
3159
|
*
|
|
@@ -3180,7 +3186,7 @@ const I = function(e, ...a) {
|
|
|
3180
3186
|
* @param {boolean} [filterByPublicationService] Gets or sets the option to find only organizations having the publication service set.
|
|
3181
3187
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
3182
3188
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
3183
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
3189
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
3184
3190
|
* @param {*} [options] Override http request option.
|
|
3185
3191
|
* @throws {RequiredError}
|
|
3186
3192
|
*/
|
|
@@ -3272,7 +3278,7 @@ const I = function(e, ...a) {
|
|
|
3272
3278
|
* @param {boolean} [includeDeleted] Gets or sets a value indicating whether to include deleted pid information.
|
|
3273
3279
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
3274
3280
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
3275
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
3281
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
3276
3282
|
* @param {*} [options] Override http request option.
|
|
3277
3283
|
* @throws {RequiredError}
|
|
3278
3284
|
*/
|
|
@@ -3346,7 +3352,7 @@ const I = function(e, ...a) {
|
|
|
3346
3352
|
* @param {boolean} [includeDeleted] Gets or sets a value indicating whether to include deleted pid information.
|
|
3347
3353
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
3348
3354
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
3349
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
3355
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
3350
3356
|
* @param {*} [options] Override http request option.
|
|
3351
3357
|
* @throws {RequiredError}
|
|
3352
3358
|
*/
|
|
@@ -3500,7 +3506,7 @@ const I = function(e, ...a) {
|
|
|
3500
3506
|
* @param {boolean} [topLevel] Gets or sets a value indicating whether to retrieve only top-level projects.
|
|
3501
3507
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
3502
3508
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
3503
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
3509
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
3504
3510
|
* @param {*} [options] Override http request option.
|
|
3505
3511
|
* @throws {RequiredError}
|
|
3506
3512
|
*/
|
|
@@ -3596,7 +3602,7 @@ const I = function(e, ...a) {
|
|
|
3596
3602
|
* @param {boolean} [topLevel] Gets or sets a value indicating whether to retrieve only top-level projects.
|
|
3597
3603
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
3598
3604
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
3599
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
3605
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
3600
3606
|
* @param {*} [options] Override http request option.
|
|
3601
3607
|
* @throws {RequiredError}
|
|
3602
3608
|
*/
|
|
@@ -3773,7 +3779,7 @@ const I = function(e, ...a) {
|
|
|
3773
3779
|
* @param {string} projectId The Id or slug of the project.
|
|
3774
3780
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
3775
3781
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
3776
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
3782
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
3777
3783
|
* @param {*} [options] Override http request option.
|
|
3778
3784
|
* @throws {RequiredError}
|
|
3779
3785
|
*/
|
|
@@ -3851,7 +3857,7 @@ const I = function(e, ...a) {
|
|
|
3851
3857
|
* @param {string} projectId The Id or slug of the project.
|
|
3852
3858
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
3853
3859
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
3854
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
3860
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
3855
3861
|
* @param {*} [options] Override http request option.
|
|
3856
3862
|
* @throws {RequiredError}
|
|
3857
3863
|
*/
|
|
@@ -4006,7 +4012,7 @@ const I = function(e, ...a) {
|
|
|
4006
4012
|
* @param {string} projectId The Id or slug of the project.
|
|
4007
4013
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
4008
4014
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
4009
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
4015
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
4010
4016
|
* @param {*} [options] Override http request option.
|
|
4011
4017
|
* @throws {RequiredError}
|
|
4012
4018
|
*/
|
|
@@ -4106,7 +4112,7 @@ const I = function(e, ...a) {
|
|
|
4106
4112
|
* @param {string} projectId The Id or slug of the project.
|
|
4107
4113
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
4108
4114
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
4109
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
4115
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
4110
4116
|
* @param {*} [options] Override http request option.
|
|
4111
4117
|
* @throws {RequiredError}
|
|
4112
4118
|
*/
|
|
@@ -4384,7 +4390,7 @@ const I = function(e, ...a) {
|
|
|
4384
4390
|
* @param {string} projectId The Id or slug of the project.
|
|
4385
4391
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
4386
4392
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
4387
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
4393
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
4388
4394
|
* @param {*} [options] Override http request option.
|
|
4389
4395
|
* @throws {RequiredError}
|
|
4390
4396
|
*/
|
|
@@ -4458,7 +4464,7 @@ const I = function(e, ...a) {
|
|
|
4458
4464
|
* @param {string} projectId The Id or slug of the project.
|
|
4459
4465
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
4460
4466
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
4461
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
4467
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
4462
4468
|
* @param {*} [options] Override http request option.
|
|
4463
4469
|
* @throws {RequiredError}
|
|
4464
4470
|
*/
|
|
@@ -4617,7 +4623,7 @@ const I = function(e, ...a) {
|
|
|
4617
4623
|
* @param {string} projectId The Id or slug of the project.
|
|
4618
4624
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
4619
4625
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
4620
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
4626
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
4621
4627
|
* @param {*} [options] Override http request option.
|
|
4622
4628
|
* @throws {RequiredError}
|
|
4623
4629
|
*/
|
|
@@ -4717,7 +4723,7 @@ const I = function(e, ...a) {
|
|
|
4717
4723
|
* @param {string} projectId The Id or slug of the project.
|
|
4718
4724
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
4719
4725
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
4720
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
4726
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
4721
4727
|
* @param {*} [options] Override http request option.
|
|
4722
4728
|
* @throws {RequiredError}
|
|
4723
4729
|
*/
|
|
@@ -5110,6 +5116,135 @@ const I = function(e, ...a) {
|
|
|
5110
5116
|
options: r
|
|
5111
5117
|
};
|
|
5112
5118
|
},
|
|
5119
|
+
/**
|
|
5120
|
+
*
|
|
5121
|
+
* @summary Retrieves the entire global resource types information.
|
|
5122
|
+
* @param {*} [options] Override http request option.
|
|
5123
|
+
* @throws {RequiredError}
|
|
5124
|
+
*/
|
|
5125
|
+
getAllResourceTypesInformation: async (a = {}) => {
|
|
5126
|
+
const o = "/api/v2/resource-types/types", n = new URL(o, m);
|
|
5127
|
+
let t;
|
|
5128
|
+
e && (t = e.baseOptions);
|
|
5129
|
+
const r = { method: "GET", ...t, ...a }, s = {}, l = {};
|
|
5130
|
+
await P(s, "Authorization", e), I(n, l);
|
|
5131
|
+
let c = t && t.headers ? t.headers : {};
|
|
5132
|
+
return r.headers = { ...s, ...c, ...a.headers }, {
|
|
5133
|
+
url: y(n),
|
|
5134
|
+
options: r
|
|
5135
|
+
};
|
|
5136
|
+
},
|
|
5137
|
+
/**
|
|
5138
|
+
*
|
|
5139
|
+
* @summary Retrieves the resource type information for a specific resource type.
|
|
5140
|
+
* @param {string} resourceTypeId The ID of the resource type to retrieve.
|
|
5141
|
+
* @param {*} [options] Override http request option.
|
|
5142
|
+
* @throws {RequiredError}
|
|
5143
|
+
*/
|
|
5144
|
+
getResourceTypeInformation: async (a, o = {}) => {
|
|
5145
|
+
j("getResourceTypeInformation", "resourceTypeId", a);
|
|
5146
|
+
const n = "/api/v2/resource-types/types/{resourceTypeId}".replace("{resourceTypeId}", encodeURIComponent(String(a))), t = new URL(n, m);
|
|
5147
|
+
let r;
|
|
5148
|
+
e && (r = e.baseOptions);
|
|
5149
|
+
const s = { method: "GET", ...r, ...o }, l = {}, c = {};
|
|
5150
|
+
await P(l, "Authorization", e), I(t, c);
|
|
5151
|
+
let p = r && r.headers ? r.headers : {};
|
|
5152
|
+
return s.headers = { ...l, ...p, ...o.headers }, {
|
|
5153
|
+
url: y(t),
|
|
5154
|
+
options: s
|
|
5155
|
+
};
|
|
5156
|
+
}
|
|
5157
|
+
};
|
|
5158
|
+
}, Ca = function(e) {
|
|
5159
|
+
const a = Fa(e);
|
|
5160
|
+
return {
|
|
5161
|
+
/**
|
|
5162
|
+
*
|
|
5163
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
5164
|
+
* @param {*} [options] Override http request option.
|
|
5165
|
+
* @throws {RequiredError}
|
|
5166
|
+
*/
|
|
5167
|
+
async apiV2ResourceTypesOptions(o) {
|
|
5168
|
+
var s, l;
|
|
5169
|
+
const n = await a.apiV2ResourceTypesOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (l = (s = A["ResourceTypeApi.apiV2ResourceTypesOptions"]) == null ? void 0 : s[t]) == null ? void 0 : l.url;
|
|
5170
|
+
return (c, p) => b(n, V, u, e)(c, r || p);
|
|
5171
|
+
},
|
|
5172
|
+
/**
|
|
5173
|
+
*
|
|
5174
|
+
* @summary Retrieves the entire global resource types information.
|
|
5175
|
+
* @param {*} [options] Override http request option.
|
|
5176
|
+
* @throws {RequiredError}
|
|
5177
|
+
*/
|
|
5178
|
+
async getAllResourceTypesInformation(o) {
|
|
5179
|
+
var s, l;
|
|
5180
|
+
const n = await a.getAllResourceTypesInformation(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (l = (s = A["ResourceTypeApi.getAllResourceTypesInformation"]) == null ? void 0 : s[t]) == null ? void 0 : l.url;
|
|
5181
|
+
return (c, p) => b(n, V, u, e)(c, r || p);
|
|
5182
|
+
},
|
|
5183
|
+
/**
|
|
5184
|
+
*
|
|
5185
|
+
* @summary Retrieves the resource type information for a specific resource type.
|
|
5186
|
+
* @param {string} resourceTypeId The ID of the resource type to retrieve.
|
|
5187
|
+
* @param {*} [options] Override http request option.
|
|
5188
|
+
* @throws {RequiredError}
|
|
5189
|
+
*/
|
|
5190
|
+
async getResourceTypeInformation(o, n) {
|
|
5191
|
+
var l, c;
|
|
5192
|
+
const t = await a.getResourceTypeInformation(o, n), r = (e == null ? void 0 : e.serverIndex) ?? 0, s = (c = (l = A["ResourceTypeApi.getResourceTypeInformation"]) == null ? void 0 : l[r]) == null ? void 0 : c.url;
|
|
5193
|
+
return (p, i) => b(t, V, u, e)(p, s || i);
|
|
5194
|
+
}
|
|
5195
|
+
};
|
|
5196
|
+
}, La = function(e, a, o) {
|
|
5197
|
+
const n = Ca(e);
|
|
5198
|
+
return {
|
|
5199
|
+
/**
|
|
5200
|
+
*
|
|
5201
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
5202
|
+
* @param {*} [options] Override http request option.
|
|
5203
|
+
* @throws {RequiredError}
|
|
5204
|
+
*/
|
|
5205
|
+
apiV2ResourceTypesOptions(t) {
|
|
5206
|
+
return n.apiV2ResourceTypesOptions(t).then((r) => r(o, a));
|
|
5207
|
+
},
|
|
5208
|
+
/**
|
|
5209
|
+
*
|
|
5210
|
+
* @summary Retrieves the entire global resource types information.
|
|
5211
|
+
* @param {*} [options] Override http request option.
|
|
5212
|
+
* @throws {RequiredError}
|
|
5213
|
+
*/
|
|
5214
|
+
getAllResourceTypesInformation(t) {
|
|
5215
|
+
return n.getAllResourceTypesInformation(t).then((r) => r(o, a));
|
|
5216
|
+
},
|
|
5217
|
+
/**
|
|
5218
|
+
*
|
|
5219
|
+
* @summary Retrieves the resource type information for a specific resource type.
|
|
5220
|
+
* @param {ResourceTypeApiGetResourceTypeInformationRequest} requestParameters Request parameters.
|
|
5221
|
+
* @param {*} [options] Override http request option.
|
|
5222
|
+
* @throws {RequiredError}
|
|
5223
|
+
*/
|
|
5224
|
+
getResourceTypeInformation(t, r) {
|
|
5225
|
+
return n.getResourceTypeInformation(t.resourceTypeId, r).then((s) => s(o, a));
|
|
5226
|
+
}
|
|
5227
|
+
};
|
|
5228
|
+
}, Ea = function(e) {
|
|
5229
|
+
return {
|
|
5230
|
+
/**
|
|
5231
|
+
*
|
|
5232
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
5233
|
+
* @param {*} [options] Override http request option.
|
|
5234
|
+
* @throws {RequiredError}
|
|
5235
|
+
*/
|
|
5236
|
+
apiV2ResourceTypesGitlabOptions: async (a = {}) => {
|
|
5237
|
+
const o = "/api/v2/resource-types/gitlab", n = new URL(o, m);
|
|
5238
|
+
let t;
|
|
5239
|
+
e && (t = e.baseOptions);
|
|
5240
|
+
const r = { method: "OPTIONS", ...t, ...a }, s = {}, l = {};
|
|
5241
|
+
await P(s, "Authorization", e), I(n, l);
|
|
5242
|
+
let c = t && t.headers ? t.headers : {};
|
|
5243
|
+
return r.headers = { ...s, ...c, ...a.headers }, {
|
|
5244
|
+
url: y(n),
|
|
5245
|
+
options: r
|
|
5246
|
+
};
|
|
5247
|
+
},
|
|
5113
5248
|
/**
|
|
5114
5249
|
*
|
|
5115
5250
|
* @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
|
|
@@ -5153,24 +5288,6 @@ const I = function(e, ...a) {
|
|
|
5153
5288
|
options: l
|
|
5154
5289
|
};
|
|
5155
5290
|
},
|
|
5156
|
-
/**
|
|
5157
|
-
*
|
|
5158
|
-
* @summary Retrieves the entire global resource types information.
|
|
5159
|
-
* @param {*} [options] Override http request option.
|
|
5160
|
-
* @throws {RequiredError}
|
|
5161
|
-
*/
|
|
5162
|
-
getAllResourceTypesInformation: async (a = {}) => {
|
|
5163
|
-
const o = "/api/v2/resource-types/types", n = new URL(o, m);
|
|
5164
|
-
let t;
|
|
5165
|
-
e && (t = e.baseOptions);
|
|
5166
|
-
const r = { method: "GET", ...t, ...a }, s = {}, l = {};
|
|
5167
|
-
await P(s, "Authorization", e), I(n, l);
|
|
5168
|
-
let c = t && t.headers ? t.headers : {};
|
|
5169
|
-
return r.headers = { ...s, ...c, ...a.headers }, {
|
|
5170
|
-
url: y(n),
|
|
5171
|
-
options: r
|
|
5172
|
-
};
|
|
5173
|
-
},
|
|
5174
5291
|
/**
|
|
5175
5292
|
*
|
|
5176
5293
|
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
|
|
@@ -5192,30 +5309,10 @@ const I = function(e, ...a) {
|
|
|
5192
5309
|
url: y(s),
|
|
5193
5310
|
options: c
|
|
5194
5311
|
};
|
|
5195
|
-
},
|
|
5196
|
-
/**
|
|
5197
|
-
*
|
|
5198
|
-
* @summary Retrieves the resource type information for a specific resource type.
|
|
5199
|
-
* @param {string} resourceTypeId The ID of the resource type to retrieve.
|
|
5200
|
-
* @param {*} [options] Override http request option.
|
|
5201
|
-
* @throws {RequiredError}
|
|
5202
|
-
*/
|
|
5203
|
-
getResourceTypeInformation: async (a, o = {}) => {
|
|
5204
|
-
j("getResourceTypeInformation", "resourceTypeId", a);
|
|
5205
|
-
const n = "/api/v2/resource-types/types/{resourceTypeId}".replace("{resourceTypeId}", encodeURIComponent(String(a))), t = new URL(n, m);
|
|
5206
|
-
let r;
|
|
5207
|
-
e && (r = e.baseOptions);
|
|
5208
|
-
const s = { method: "GET", ...r, ...o }, l = {}, c = {};
|
|
5209
|
-
await P(l, "Authorization", e), I(t, c);
|
|
5210
|
-
let p = r && r.headers ? r.headers : {};
|
|
5211
|
-
return s.headers = { ...l, ...p, ...o.headers }, {
|
|
5212
|
-
url: y(t),
|
|
5213
|
-
options: s
|
|
5214
|
-
};
|
|
5215
5312
|
}
|
|
5216
5313
|
};
|
|
5217
|
-
},
|
|
5218
|
-
const a =
|
|
5314
|
+
}, za = function(e) {
|
|
5315
|
+
const a = Ea(e);
|
|
5219
5316
|
return {
|
|
5220
5317
|
/**
|
|
5221
5318
|
*
|
|
@@ -5223,9 +5320,9 @@ const I = function(e, ...a) {
|
|
|
5223
5320
|
* @param {*} [options] Override http request option.
|
|
5224
5321
|
* @throws {RequiredError}
|
|
5225
5322
|
*/
|
|
5226
|
-
async
|
|
5323
|
+
async apiV2ResourceTypesGitlabOptions(o) {
|
|
5227
5324
|
var s, l;
|
|
5228
|
-
const n = await a.
|
|
5325
|
+
const n = await a.apiV2ResourceTypesGitlabOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (l = (s = A["ResourceTypeGitLabApi.apiV2ResourceTypesGitlabOptions"]) == null ? void 0 : s[t]) == null ? void 0 : l.url;
|
|
5229
5326
|
return (c, p) => b(n, V, u, e)(c, r || p);
|
|
5230
5327
|
},
|
|
5231
5328
|
/**
|
|
@@ -5239,7 +5336,7 @@ const I = function(e, ...a) {
|
|
|
5239
5336
|
*/
|
|
5240
5337
|
async getAllGitlabBranchesForProject(o, n, t, r) {
|
|
5241
5338
|
var p, i;
|
|
5242
|
-
const s = await a.getAllGitlabBranchesForProject(o, n, t, r), l = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = A["
|
|
5339
|
+
const s = await a.getAllGitlabBranchesForProject(o, n, t, r), l = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = A["ResourceTypeGitLabApi.getAllGitlabBranchesForProject"]) == null ? void 0 : p[l]) == null ? void 0 : i.url;
|
|
5243
5340
|
return (d, h) => b(s, V, u, e)(d, c || h);
|
|
5244
5341
|
},
|
|
5245
5342
|
/**
|
|
@@ -5252,20 +5349,9 @@ const I = function(e, ...a) {
|
|
|
5252
5349
|
*/
|
|
5253
5350
|
async getAllGitlabProjects(o, n, t) {
|
|
5254
5351
|
var c, p;
|
|
5255
|
-
const r = await a.getAllGitlabProjects(o, n, t), s = (e == null ? void 0 : e.serverIndex) ?? 0, l = (p = (c = A["
|
|
5352
|
+
const r = await a.getAllGitlabProjects(o, n, t), s = (e == null ? void 0 : e.serverIndex) ?? 0, l = (p = (c = A["ResourceTypeGitLabApi.getAllGitlabProjects"]) == null ? void 0 : c[s]) == null ? void 0 : p.url;
|
|
5256
5353
|
return (i, d) => b(r, V, u, e)(i, l || d);
|
|
5257
5354
|
},
|
|
5258
|
-
/**
|
|
5259
|
-
*
|
|
5260
|
-
* @summary Retrieves the entire global resource types information.
|
|
5261
|
-
* @param {*} [options] Override http request option.
|
|
5262
|
-
* @throws {RequiredError}
|
|
5263
|
-
*/
|
|
5264
|
-
async getAllResourceTypesInformation(o) {
|
|
5265
|
-
var s, l;
|
|
5266
|
-
const n = await a.getAllResourceTypesInformation(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (l = (s = A["ResourceTypeApi.getAllResourceTypesInformation"]) == null ? void 0 : s[t]) == null ? void 0 : l.url;
|
|
5267
|
-
return (c, p) => b(n, V, u, e)(c, r || p);
|
|
5268
|
-
},
|
|
5269
5355
|
/**
|
|
5270
5356
|
*
|
|
5271
5357
|
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
|
|
@@ -5277,24 +5363,12 @@ const I = function(e, ...a) {
|
|
|
5277
5363
|
*/
|
|
5278
5364
|
async getGitlabProject(o, n, t, r) {
|
|
5279
5365
|
var p, i;
|
|
5280
|
-
const s = await a.getGitlabProject(o, n, t, r), l = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = A["
|
|
5366
|
+
const s = await a.getGitlabProject(o, n, t, r), l = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = A["ResourceTypeGitLabApi.getGitlabProject"]) == null ? void 0 : p[l]) == null ? void 0 : i.url;
|
|
5281
5367
|
return (d, h) => b(s, V, u, e)(d, c || h);
|
|
5282
|
-
},
|
|
5283
|
-
/**
|
|
5284
|
-
*
|
|
5285
|
-
* @summary Retrieves the resource type information for a specific resource type.
|
|
5286
|
-
* @param {string} resourceTypeId The ID of the resource type to retrieve.
|
|
5287
|
-
* @param {*} [options] Override http request option.
|
|
5288
|
-
* @throws {RequiredError}
|
|
5289
|
-
*/
|
|
5290
|
-
async getResourceTypeInformation(o, n) {
|
|
5291
|
-
var l, c;
|
|
5292
|
-
const t = await a.getResourceTypeInformation(o, n), r = (e == null ? void 0 : e.serverIndex) ?? 0, s = (c = (l = A["ResourceTypeApi.getResourceTypeInformation"]) == null ? void 0 : l[r]) == null ? void 0 : c.url;
|
|
5293
|
-
return (p, i) => b(t, V, u, e)(p, s || i);
|
|
5294
5368
|
}
|
|
5295
5369
|
};
|
|
5296
|
-
},
|
|
5297
|
-
const n =
|
|
5370
|
+
}, Ma = function(e, a, o) {
|
|
5371
|
+
const n = za(e);
|
|
5298
5372
|
return {
|
|
5299
5373
|
/**
|
|
5300
5374
|
*
|
|
@@ -5302,13 +5376,13 @@ const I = function(e, ...a) {
|
|
|
5302
5376
|
* @param {*} [options] Override http request option.
|
|
5303
5377
|
* @throws {RequiredError}
|
|
5304
5378
|
*/
|
|
5305
|
-
|
|
5306
|
-
return n.
|
|
5379
|
+
apiV2ResourceTypesGitlabOptions(t) {
|
|
5380
|
+
return n.apiV2ResourceTypesGitlabOptions(t).then((r) => r(o, a));
|
|
5307
5381
|
},
|
|
5308
5382
|
/**
|
|
5309
5383
|
*
|
|
5310
5384
|
* @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
|
|
5311
|
-
* @param {
|
|
5385
|
+
* @param {ResourceTypeGitLabApiGetAllGitlabBranchesForProjectRequest} requestParameters Request parameters.
|
|
5312
5386
|
* @param {*} [options] Override http request option.
|
|
5313
5387
|
* @throws {RequiredError}
|
|
5314
5388
|
*/
|
|
@@ -5318,44 +5392,25 @@ const I = function(e, ...a) {
|
|
|
5318
5392
|
/**
|
|
5319
5393
|
*
|
|
5320
5394
|
* @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
|
|
5321
|
-
* @param {
|
|
5395
|
+
* @param {ResourceTypeGitLabApiGetAllGitlabProjectsRequest} requestParameters Request parameters.
|
|
5322
5396
|
* @param {*} [options] Override http request option.
|
|
5323
5397
|
* @throws {RequiredError}
|
|
5324
5398
|
*/
|
|
5325
5399
|
getAllGitlabProjects(t, r) {
|
|
5326
5400
|
return n.getAllGitlabProjects(t.domain, t.accessToken, r).then((s) => s(o, a));
|
|
5327
5401
|
},
|
|
5328
|
-
/**
|
|
5329
|
-
*
|
|
5330
|
-
* @summary Retrieves the entire global resource types information.
|
|
5331
|
-
* @param {*} [options] Override http request option.
|
|
5332
|
-
* @throws {RequiredError}
|
|
5333
|
-
*/
|
|
5334
|
-
getAllResourceTypesInformation(t) {
|
|
5335
|
-
return n.getAllResourceTypesInformation(t).then((r) => r(o, a));
|
|
5336
|
-
},
|
|
5337
5402
|
/**
|
|
5338
5403
|
*
|
|
5339
5404
|
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
|
|
5340
|
-
* @param {
|
|
5405
|
+
* @param {ResourceTypeGitLabApiGetGitlabProjectRequest} requestParameters Request parameters.
|
|
5341
5406
|
* @param {*} [options] Override http request option.
|
|
5342
5407
|
* @throws {RequiredError}
|
|
5343
5408
|
*/
|
|
5344
5409
|
getGitlabProject(t, r) {
|
|
5345
5410
|
return n.getGitlabProject(t.gitlabProjectId, t.domain, t.accessToken, r).then((s) => s(o, a));
|
|
5346
|
-
},
|
|
5347
|
-
/**
|
|
5348
|
-
*
|
|
5349
|
-
* @summary Retrieves the resource type information for a specific resource type.
|
|
5350
|
-
* @param {ResourceTypeApiGetResourceTypeInformationRequest} requestParameters Request parameters.
|
|
5351
|
-
* @param {*} [options] Override http request option.
|
|
5352
|
-
* @throws {RequiredError}
|
|
5353
|
-
*/
|
|
5354
|
-
getResourceTypeInformation(t, r) {
|
|
5355
|
-
return n.getResourceTypeInformation(t.resourceTypeId, r).then((s) => s(o, a));
|
|
5356
5411
|
}
|
|
5357
5412
|
};
|
|
5358
|
-
},
|
|
5413
|
+
}, Ha = function(e) {
|
|
5359
5414
|
return {
|
|
5360
5415
|
/**
|
|
5361
5416
|
*
|
|
@@ -5400,7 +5455,7 @@ const I = function(e, ...a) {
|
|
|
5400
5455
|
* @summary Retrieves all roles.
|
|
5401
5456
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
5402
5457
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
5403
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
5458
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
5404
5459
|
* @param {*} [options] Override http request option.
|
|
5405
5460
|
* @throws {RequiredError}
|
|
5406
5461
|
*/
|
|
@@ -5417,8 +5472,8 @@ const I = function(e, ...a) {
|
|
|
5417
5472
|
};
|
|
5418
5473
|
}
|
|
5419
5474
|
};
|
|
5420
|
-
},
|
|
5421
|
-
const a =
|
|
5475
|
+
}, Qa = function(e) {
|
|
5476
|
+
const a = Ha(e);
|
|
5422
5477
|
return {
|
|
5423
5478
|
/**
|
|
5424
5479
|
*
|
|
@@ -5448,7 +5503,7 @@ const I = function(e, ...a) {
|
|
|
5448
5503
|
* @summary Retrieves all roles.
|
|
5449
5504
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
5450
5505
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
5451
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
5506
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
5452
5507
|
* @param {*} [options] Override http request option.
|
|
5453
5508
|
* @throws {RequiredError}
|
|
5454
5509
|
*/
|
|
@@ -5458,8 +5513,8 @@ const I = function(e, ...a) {
|
|
|
5458
5513
|
return (d, h) => b(s, V, u, e)(d, c || h);
|
|
5459
5514
|
}
|
|
5460
5515
|
};
|
|
5461
|
-
},
|
|
5462
|
-
const n =
|
|
5516
|
+
}, ka = function(e, a, o) {
|
|
5517
|
+
const n = Qa(e);
|
|
5463
5518
|
return {
|
|
5464
5519
|
/**
|
|
5465
5520
|
*
|
|
@@ -5491,7 +5546,7 @@ const I = function(e, ...a) {
|
|
|
5491
5546
|
return n.getRoles(t.pageNumber, t.pageSize, t.orderBy, r).then((s) => s(o, a));
|
|
5492
5547
|
}
|
|
5493
5548
|
};
|
|
5494
|
-
},
|
|
5549
|
+
}, Da = function(e) {
|
|
5495
5550
|
return {
|
|
5496
5551
|
/**
|
|
5497
5552
|
*
|
|
@@ -5520,7 +5575,7 @@ const I = function(e, ...a) {
|
|
|
5520
5575
|
* @param {SearchCategoryType} [category] Set the category filter
|
|
5521
5576
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
5522
5577
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
5523
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
5578
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
5524
5579
|
* @param {*} [options] Override http request option.
|
|
5525
5580
|
* @throws {RequiredError}
|
|
5526
5581
|
*/
|
|
@@ -5537,8 +5592,8 @@ const I = function(e, ...a) {
|
|
|
5537
5592
|
};
|
|
5538
5593
|
}
|
|
5539
5594
|
};
|
|
5540
|
-
},
|
|
5541
|
-
const a =
|
|
5595
|
+
}, Na = function(e) {
|
|
5596
|
+
const a = Da(e);
|
|
5542
5597
|
return {
|
|
5543
5598
|
/**
|
|
5544
5599
|
*
|
|
@@ -5560,7 +5615,7 @@ const I = function(e, ...a) {
|
|
|
5560
5615
|
* @param {SearchCategoryType} [category] Set the category filter
|
|
5561
5616
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
5562
5617
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
5563
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
5618
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
5564
5619
|
* @param {*} [options] Override http request option.
|
|
5565
5620
|
* @throws {RequiredError}
|
|
5566
5621
|
*/
|
|
@@ -5570,8 +5625,8 @@ const I = function(e, ...a) {
|
|
|
5570
5625
|
return (S, w) => b(i, V, u, e)(S, h || w);
|
|
5571
5626
|
}
|
|
5572
5627
|
};
|
|
5573
|
-
},
|
|
5574
|
-
const n =
|
|
5628
|
+
}, Ga = function(e, a, o) {
|
|
5629
|
+
const n = Na(e);
|
|
5575
5630
|
return {
|
|
5576
5631
|
/**
|
|
5577
5632
|
*
|
|
@@ -5593,7 +5648,7 @@ const I = function(e, ...a) {
|
|
|
5593
5648
|
return n.getSearchResults(t.query, t.useAdvancedSyntax, t.languages, t.category, t.pageNumber, t.pageSize, t.orderBy, r).then((s) => s(o, a));
|
|
5594
5649
|
}
|
|
5595
5650
|
};
|
|
5596
|
-
},
|
|
5651
|
+
}, $a = function(e) {
|
|
5597
5652
|
return {
|
|
5598
5653
|
/**
|
|
5599
5654
|
*
|
|
@@ -5729,8 +5784,8 @@ const I = function(e, ...a) {
|
|
|
5729
5784
|
};
|
|
5730
5785
|
}
|
|
5731
5786
|
};
|
|
5732
|
-
},
|
|
5733
|
-
const a =
|
|
5787
|
+
}, _a = function(e) {
|
|
5788
|
+
const a = $a(e);
|
|
5734
5789
|
return {
|
|
5735
5790
|
/**
|
|
5736
5791
|
*
|
|
@@ -5815,8 +5870,8 @@ const I = function(e, ...a) {
|
|
|
5815
5870
|
return (p, i) => b(t, V, u, e)(p, s || i);
|
|
5816
5871
|
}
|
|
5817
5872
|
};
|
|
5818
|
-
},
|
|
5819
|
-
const n =
|
|
5873
|
+
}, qa = function(e, a, o) {
|
|
5874
|
+
const n = _a(e);
|
|
5820
5875
|
return {
|
|
5821
5876
|
/**
|
|
5822
5877
|
*
|
|
@@ -5887,7 +5942,7 @@ const I = function(e, ...a) {
|
|
|
5887
5942
|
return n.updateCurrentUser(t.userForUpdateDto, r).then((s) => s(o, a));
|
|
5888
5943
|
}
|
|
5889
5944
|
};
|
|
5890
|
-
},
|
|
5945
|
+
}, Ja = function(e) {
|
|
5891
5946
|
return {
|
|
5892
5947
|
/**
|
|
5893
5948
|
*
|
|
@@ -5931,7 +5986,7 @@ const I = function(e, ...a) {
|
|
|
5931
5986
|
* @summary Retrieves all API tokens for the current authenticated user.
|
|
5932
5987
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
5933
5988
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
5934
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
5989
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
5935
5990
|
* @param {*} [options] Override http request option.
|
|
5936
5991
|
* @throws {RequiredError}
|
|
5937
5992
|
*/
|
|
@@ -5988,8 +6043,8 @@ const I = function(e, ...a) {
|
|
|
5988
6043
|
};
|
|
5989
6044
|
}
|
|
5990
6045
|
};
|
|
5991
|
-
},
|
|
5992
|
-
const a =
|
|
6046
|
+
}, Ka = function(e) {
|
|
6047
|
+
const a = Ja(e);
|
|
5993
6048
|
return {
|
|
5994
6049
|
/**
|
|
5995
6050
|
*
|
|
@@ -6019,7 +6074,7 @@ const I = function(e, ...a) {
|
|
|
6019
6074
|
* @summary Retrieves all API tokens for the current authenticated user.
|
|
6020
6075
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
6021
6076
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
6022
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
6077
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
6023
6078
|
* @param {*} [options] Override http request option.
|
|
6024
6079
|
* @throws {RequiredError}
|
|
6025
6080
|
*/
|
|
@@ -6053,8 +6108,8 @@ const I = function(e, ...a) {
|
|
|
6053
6108
|
return (p, i) => b(t, V, u, e)(p, s || i);
|
|
6054
6109
|
}
|
|
6055
6110
|
};
|
|
6056
|
-
},
|
|
6057
|
-
const n =
|
|
6111
|
+
}, Wa = function(e, a, o) {
|
|
6112
|
+
const n = Ka(e);
|
|
6058
6113
|
return {
|
|
6059
6114
|
/**
|
|
6060
6115
|
*
|
|
@@ -6106,7 +6161,7 @@ const I = function(e, ...a) {
|
|
|
6106
6161
|
return n.revokeToken(t.apiTokenId, r).then((s) => s(o, a));
|
|
6107
6162
|
}
|
|
6108
6163
|
};
|
|
6109
|
-
},
|
|
6164
|
+
}, Xa = function(e) {
|
|
6110
6165
|
return {
|
|
6111
6166
|
/**
|
|
6112
6167
|
*
|
|
@@ -6203,8 +6258,8 @@ const I = function(e, ...a) {
|
|
|
6203
6258
|
};
|
|
6204
6259
|
}
|
|
6205
6260
|
};
|
|
6206
|
-
},
|
|
6207
|
-
const a =
|
|
6261
|
+
}, Ya = function(e) {
|
|
6262
|
+
const a = Xa(e);
|
|
6208
6263
|
return {
|
|
6209
6264
|
/**
|
|
6210
6265
|
*
|
|
@@ -6264,8 +6319,8 @@ const I = function(e, ...a) {
|
|
|
6264
6319
|
return (p, i) => b(t, V, u, e)(p, s || i);
|
|
6265
6320
|
}
|
|
6266
6321
|
};
|
|
6267
|
-
},
|
|
6268
|
-
const n =
|
|
6322
|
+
}, Za = function(e, a, o) {
|
|
6323
|
+
const n = Ya(e);
|
|
6269
6324
|
return {
|
|
6270
6325
|
/**
|
|
6271
6326
|
*
|
|
@@ -6315,7 +6370,7 @@ const I = function(e, ...a) {
|
|
|
6315
6370
|
return n.merge(t.externalAuthenticatorId, r).then((s) => s(o, a));
|
|
6316
6371
|
}
|
|
6317
6372
|
};
|
|
6318
|
-
},
|
|
6373
|
+
}, fa = function(e) {
|
|
6319
6374
|
return {
|
|
6320
6375
|
/**
|
|
6321
6376
|
*
|
|
@@ -6346,7 +6401,7 @@ const I = function(e, ...a) {
|
|
|
6346
6401
|
* @param {string} [searchTerm] Filter messages by text contained in the messages or title.
|
|
6347
6402
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
6348
6403
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
6349
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
6404
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
6350
6405
|
* @param {*} [options] Override http request option.
|
|
6351
6406
|
* @throws {RequiredError}
|
|
6352
6407
|
*/
|
|
@@ -6373,7 +6428,7 @@ const I = function(e, ...a) {
|
|
|
6373
6428
|
* @param {string} [searchTerm] Filter messages by text contained in the messages or title.
|
|
6374
6429
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
6375
6430
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
6376
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
6431
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
6377
6432
|
* @param {*} [options] Override http request option.
|
|
6378
6433
|
* @throws {RequiredError}
|
|
6379
6434
|
*/
|
|
@@ -6390,8 +6445,8 @@ const I = function(e, ...a) {
|
|
|
6390
6445
|
};
|
|
6391
6446
|
}
|
|
6392
6447
|
};
|
|
6393
|
-
},
|
|
6394
|
-
const a =
|
|
6448
|
+
}, ga = function(e) {
|
|
6449
|
+
const a = fa(e);
|
|
6395
6450
|
return {
|
|
6396
6451
|
/**
|
|
6397
6452
|
*
|
|
@@ -6415,14 +6470,14 @@ const I = function(e, ...a) {
|
|
|
6415
6470
|
* @param {string} [searchTerm] Filter messages by text contained in the messages or title.
|
|
6416
6471
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
6417
6472
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
6418
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
6473
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
6419
6474
|
* @param {*} [options] Override http request option.
|
|
6420
6475
|
* @throws {RequiredError}
|
|
6421
6476
|
*/
|
|
6422
6477
|
async getInternalMessages(o, n, t, r, s, l, c, p, i, d) {
|
|
6423
6478
|
var S, w;
|
|
6424
6479
|
const h = await a.getInternalMessages(o, n, t, r, s, l, c, p, i, d), O = (e == null ? void 0 : e.serverIndex) ?? 0, R = (w = (S = A["SystemStatusApi.getInternalMessages"]) == null ? void 0 : S[O]) == null ? void 0 : w.url;
|
|
6425
|
-
return (C,
|
|
6480
|
+
return (C, z) => b(h, V, u, e)(C, R || z);
|
|
6426
6481
|
},
|
|
6427
6482
|
/**
|
|
6428
6483
|
*
|
|
@@ -6435,18 +6490,18 @@ const I = function(e, ...a) {
|
|
|
6435
6490
|
* @param {string} [searchTerm] Filter messages by text contained in the messages or title.
|
|
6436
6491
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
6437
6492
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
6438
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
6493
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
6439
6494
|
* @param {*} [options] Override http request option.
|
|
6440
6495
|
* @throws {RequiredError}
|
|
6441
6496
|
*/
|
|
6442
6497
|
async getNocMessages(o, n, t, r, s, l, c, p, i, d) {
|
|
6443
6498
|
var S, w;
|
|
6444
6499
|
const h = await a.getNocMessages(o, n, t, r, s, l, c, p, i, d), O = (e == null ? void 0 : e.serverIndex) ?? 0, R = (w = (S = A["SystemStatusApi.getNocMessages"]) == null ? void 0 : S[O]) == null ? void 0 : w.url;
|
|
6445
|
-
return (C,
|
|
6500
|
+
return (C, z) => b(h, V, u, e)(C, R || z);
|
|
6446
6501
|
}
|
|
6447
6502
|
};
|
|
6448
|
-
},
|
|
6449
|
-
const n =
|
|
6503
|
+
}, es = function(e, a, o) {
|
|
6504
|
+
const n = ga(e);
|
|
6450
6505
|
return {
|
|
6451
6506
|
/**
|
|
6452
6507
|
*
|
|
@@ -6478,7 +6533,7 @@ const I = function(e, ...a) {
|
|
|
6478
6533
|
return n.getNocMessages(t.startDateAfter, t.startDateBefore, t.endDateAfter, t.endDateBefore, t.type, t.searchTerm, t.pageNumber, t.pageSize, t.orderBy, r).then((s) => s(o, a));
|
|
6479
6534
|
}
|
|
6480
6535
|
};
|
|
6481
|
-
},
|
|
6536
|
+
}, ts = function(e) {
|
|
6482
6537
|
return {
|
|
6483
6538
|
/**
|
|
6484
6539
|
*
|
|
@@ -6523,7 +6578,7 @@ const I = function(e, ...a) {
|
|
|
6523
6578
|
* @summary Retrieves all titles.
|
|
6524
6579
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
6525
6580
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
6526
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
6581
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
6527
6582
|
* @param {*} [options] Override http request option.
|
|
6528
6583
|
* @throws {RequiredError}
|
|
6529
6584
|
*/
|
|
@@ -6540,8 +6595,8 @@ const I = function(e, ...a) {
|
|
|
6540
6595
|
};
|
|
6541
6596
|
}
|
|
6542
6597
|
};
|
|
6543
|
-
},
|
|
6544
|
-
const a =
|
|
6598
|
+
}, rs = function(e) {
|
|
6599
|
+
const a = ts(e);
|
|
6545
6600
|
return {
|
|
6546
6601
|
/**
|
|
6547
6602
|
*
|
|
@@ -6571,7 +6626,7 @@ const I = function(e, ...a) {
|
|
|
6571
6626
|
* @summary Retrieves all titles.
|
|
6572
6627
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
6573
6628
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
6574
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
6629
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
6575
6630
|
* @param {*} [options] Override http request option.
|
|
6576
6631
|
* @throws {RequiredError}
|
|
6577
6632
|
*/
|
|
@@ -6581,8 +6636,8 @@ const I = function(e, ...a) {
|
|
|
6581
6636
|
return (d, h) => b(s, V, u, e)(d, c || h);
|
|
6582
6637
|
}
|
|
6583
6638
|
};
|
|
6584
|
-
},
|
|
6585
|
-
const n =
|
|
6639
|
+
}, as = function(e, a, o) {
|
|
6640
|
+
const n = rs(e);
|
|
6586
6641
|
return {
|
|
6587
6642
|
/**
|
|
6588
6643
|
*
|
|
@@ -6614,7 +6669,7 @@ const I = function(e, ...a) {
|
|
|
6614
6669
|
return n.getTitles(t.pageNumber, t.pageSize, t.orderBy, r).then((s) => s(o, a));
|
|
6615
6670
|
}
|
|
6616
6671
|
};
|
|
6617
|
-
},
|
|
6672
|
+
}, ss = function(e) {
|
|
6618
6673
|
return {
|
|
6619
6674
|
/**
|
|
6620
6675
|
*
|
|
@@ -6653,8 +6708,8 @@ const I = function(e, ...a) {
|
|
|
6653
6708
|
};
|
|
6654
6709
|
}
|
|
6655
6710
|
};
|
|
6656
|
-
},
|
|
6657
|
-
const a =
|
|
6711
|
+
}, os = function(e) {
|
|
6712
|
+
const a = ss(e);
|
|
6658
6713
|
return {
|
|
6659
6714
|
/**
|
|
6660
6715
|
*
|
|
@@ -6679,8 +6734,8 @@ const I = function(e, ...a) {
|
|
|
6679
6734
|
return (c, p) => b(n, V, u, e)(c, r || p);
|
|
6680
6735
|
}
|
|
6681
6736
|
};
|
|
6682
|
-
},
|
|
6683
|
-
const n =
|
|
6737
|
+
}, ns = function(e, a, o) {
|
|
6738
|
+
const n = os(e);
|
|
6684
6739
|
return {
|
|
6685
6740
|
/**
|
|
6686
6741
|
*
|
|
@@ -6701,7 +6756,7 @@ const I = function(e, ...a) {
|
|
|
6701
6756
|
return n.getTos(t).then((r) => r(o, a));
|
|
6702
6757
|
}
|
|
6703
6758
|
};
|
|
6704
|
-
},
|
|
6759
|
+
}, ls = function(e) {
|
|
6705
6760
|
return {
|
|
6706
6761
|
/**
|
|
6707
6762
|
*
|
|
@@ -6798,7 +6853,7 @@ const I = function(e, ...a) {
|
|
|
6798
6853
|
* @param {string} [path] Gets or sets the path of the file tree.
|
|
6799
6854
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
6800
6855
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
6801
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
6856
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
6802
6857
|
* @param {*} [options] Override http request option.
|
|
6803
6858
|
* @throws {RequiredError}
|
|
6804
6859
|
*/
|
|
@@ -6826,7 +6881,7 @@ const I = function(e, ...a) {
|
|
|
6826
6881
|
* @param {boolean} [includeProvenance] Gets or sets if provenance metadata should be included.
|
|
6827
6882
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
6828
6883
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
6829
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
6884
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
6830
6885
|
* @param {*} [options] Override http request option.
|
|
6831
6886
|
* @throws {RequiredError}
|
|
6832
6887
|
*/
|
|
@@ -6914,8 +6969,8 @@ const I = function(e, ...a) {
|
|
|
6914
6969
|
};
|
|
6915
6970
|
}
|
|
6916
6971
|
};
|
|
6917
|
-
},
|
|
6918
|
-
const a =
|
|
6972
|
+
}, cs = function(e) {
|
|
6973
|
+
const a = ls(e);
|
|
6919
6974
|
return {
|
|
6920
6975
|
/**
|
|
6921
6976
|
*
|
|
@@ -6980,7 +7035,7 @@ const I = function(e, ...a) {
|
|
|
6980
7035
|
* @param {string} [path] Gets or sets the path of the file tree.
|
|
6981
7036
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
6982
7037
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
6983
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
7038
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
6984
7039
|
* @param {*} [options] Override http request option.
|
|
6985
7040
|
* @throws {RequiredError}
|
|
6986
7041
|
*/
|
|
@@ -7000,14 +7055,14 @@ const I = function(e, ...a) {
|
|
|
7000
7055
|
* @param {boolean} [includeProvenance] Gets or sets if provenance metadata should be included.
|
|
7001
7056
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
7002
7057
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
7003
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
7058
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
7004
7059
|
* @param {*} [options] Override http request option.
|
|
7005
7060
|
* @throws {RequiredError}
|
|
7006
7061
|
*/
|
|
7007
7062
|
async getMetadataTree(o, n, t, r, s, l, c, p, i, d) {
|
|
7008
7063
|
var S, w;
|
|
7009
7064
|
const h = await a.getMetadataTree(o, n, t, r, s, l, c, p, i, d), O = (e == null ? void 0 : e.serverIndex) ?? 0, R = (w = (S = A["TreeApi.getMetadataTree"]) == null ? void 0 : S[O]) == null ? void 0 : w.url;
|
|
7010
|
-
return (C,
|
|
7065
|
+
return (C, z) => b(h, V, u, e)(C, R || z);
|
|
7011
7066
|
},
|
|
7012
7067
|
/**
|
|
7013
7068
|
*
|
|
@@ -7056,8 +7111,8 @@ const I = function(e, ...a) {
|
|
|
7056
7111
|
return (d, h) => b(s, V, u, e)(d, c || h);
|
|
7057
7112
|
}
|
|
7058
7113
|
};
|
|
7059
|
-
},
|
|
7060
|
-
const n =
|
|
7114
|
+
}, ps = function(e, a, o) {
|
|
7115
|
+
const n = cs(e);
|
|
7061
7116
|
return {
|
|
7062
7117
|
/**
|
|
7063
7118
|
*
|
|
@@ -7150,7 +7205,7 @@ const I = function(e, ...a) {
|
|
|
7150
7205
|
return n.updateMetadataTree(t.projectId, t.resourceId, t.metadataTreeForUpdateDto, r).then((s) => s(o, a));
|
|
7151
7206
|
}
|
|
7152
7207
|
};
|
|
7153
|
-
},
|
|
7208
|
+
}, is = function(e) {
|
|
7154
7209
|
return {
|
|
7155
7210
|
/**
|
|
7156
7211
|
*
|
|
@@ -7192,8 +7247,8 @@ const I = function(e, ...a) {
|
|
|
7192
7247
|
};
|
|
7193
7248
|
}
|
|
7194
7249
|
};
|
|
7195
|
-
},
|
|
7196
|
-
const a =
|
|
7250
|
+
}, ds = function(e) {
|
|
7251
|
+
const a = is(e);
|
|
7197
7252
|
return {
|
|
7198
7253
|
/**
|
|
7199
7254
|
*
|
|
@@ -7220,8 +7275,8 @@ const I = function(e, ...a) {
|
|
|
7220
7275
|
return (i, d) => b(r, V, u, e)(i, l || d);
|
|
7221
7276
|
}
|
|
7222
7277
|
};
|
|
7223
|
-
},
|
|
7224
|
-
const n =
|
|
7278
|
+
}, hs = function(e, a, o) {
|
|
7279
|
+
const n = ds(e);
|
|
7225
7280
|
return {
|
|
7226
7281
|
/**
|
|
7227
7282
|
*
|
|
@@ -7243,7 +7298,7 @@ const I = function(e, ...a) {
|
|
|
7243
7298
|
return n.getUsers(t.searchTerm, t.orderBy, r).then((s) => s(o, a));
|
|
7244
7299
|
}
|
|
7245
7300
|
};
|
|
7246
|
-
},
|
|
7301
|
+
}, Os = function(e) {
|
|
7247
7302
|
return {
|
|
7248
7303
|
/**
|
|
7249
7304
|
*
|
|
@@ -7268,7 +7323,7 @@ const I = function(e, ...a) {
|
|
|
7268
7323
|
* @summary Retrieves all visibilities.
|
|
7269
7324
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
7270
7325
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
7271
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
7326
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
7272
7327
|
* @param {*} [options] Override http request option.
|
|
7273
7328
|
* @throws {RequiredError}
|
|
7274
7329
|
*/
|
|
@@ -7305,8 +7360,8 @@ const I = function(e, ...a) {
|
|
|
7305
7360
|
};
|
|
7306
7361
|
}
|
|
7307
7362
|
};
|
|
7308
|
-
},
|
|
7309
|
-
const a =
|
|
7363
|
+
}, Vs = function(e) {
|
|
7364
|
+
const a = Os(e);
|
|
7310
7365
|
return {
|
|
7311
7366
|
/**
|
|
7312
7367
|
*
|
|
@@ -7324,7 +7379,7 @@ const I = function(e, ...a) {
|
|
|
7324
7379
|
* @summary Retrieves all visibilities.
|
|
7325
7380
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
7326
7381
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
7327
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
7382
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
7328
7383
|
* @param {*} [options] Override http request option.
|
|
7329
7384
|
* @throws {RequiredError}
|
|
7330
7385
|
*/
|
|
@@ -7346,8 +7401,8 @@ const I = function(e, ...a) {
|
|
|
7346
7401
|
return (p, i) => b(t, V, u, e)(p, s || i);
|
|
7347
7402
|
}
|
|
7348
7403
|
};
|
|
7349
|
-
},
|
|
7350
|
-
const n =
|
|
7404
|
+
}, us = function(e, a, o) {
|
|
7405
|
+
const n = Vs(e);
|
|
7351
7406
|
return {
|
|
7352
7407
|
/**
|
|
7353
7408
|
*
|
|
@@ -7379,7 +7434,7 @@ const I = function(e, ...a) {
|
|
|
7379
7434
|
return n.getVisibility(t.visibilityId, r).then((s) => s(o, a));
|
|
7380
7435
|
}
|
|
7381
7436
|
};
|
|
7382
|
-
},
|
|
7437
|
+
}, As = function(e) {
|
|
7383
7438
|
return {
|
|
7384
7439
|
/**
|
|
7385
7440
|
*
|
|
@@ -7406,7 +7461,7 @@ const I = function(e, ...a) {
|
|
|
7406
7461
|
* @param {AcceptedLanguage} [language] Gets or sets the language for which the vocabularies are requested.
|
|
7407
7462
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
7408
7463
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
7409
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
7464
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
7410
7465
|
* @param {*} [options] Override http request option.
|
|
7411
7466
|
* @throws {RequiredError}
|
|
7412
7467
|
*/
|
|
@@ -7451,7 +7506,7 @@ const I = function(e, ...a) {
|
|
|
7451
7506
|
* @param {AcceptedLanguage} [language] Gets or sets the language for which the vocabulary instances are requested.
|
|
7452
7507
|
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `150`.
|
|
7453
7508
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
7454
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
7509
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
7455
7510
|
* @param {*} [options] Override http request option.
|
|
7456
7511
|
* @throws {RequiredError}
|
|
7457
7512
|
*/
|
|
@@ -7469,8 +7524,8 @@ const I = function(e, ...a) {
|
|
|
7469
7524
|
};
|
|
7470
7525
|
}
|
|
7471
7526
|
};
|
|
7472
|
-
},
|
|
7473
|
-
const a =
|
|
7527
|
+
}, ms = function(e) {
|
|
7528
|
+
const a = As(e);
|
|
7474
7529
|
return {
|
|
7475
7530
|
/**
|
|
7476
7531
|
*
|
|
@@ -7490,7 +7545,7 @@ const I = function(e, ...a) {
|
|
|
7490
7545
|
* @param {AcceptedLanguage} [language] Gets or sets the language for which the vocabularies are requested.
|
|
7491
7546
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
7492
7547
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
7493
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
7548
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
7494
7549
|
* @param {*} [options] Override http request option.
|
|
7495
7550
|
* @throws {RequiredError}
|
|
7496
7551
|
*/
|
|
@@ -7520,7 +7575,7 @@ const I = function(e, ...a) {
|
|
|
7520
7575
|
* @param {AcceptedLanguage} [language] Gets or sets the language for which the vocabulary instances are requested.
|
|
7521
7576
|
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `150`.
|
|
7522
7577
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
7523
|
-
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by
|
|
7578
|
+
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
7524
7579
|
* @param {*} [options] Override http request option.
|
|
7525
7580
|
* @throws {RequiredError}
|
|
7526
7581
|
*/
|
|
@@ -7530,8 +7585,8 @@ const I = function(e, ...a) {
|
|
|
7530
7585
|
return (R, S) => b(p, V, u, e)(R, d || S);
|
|
7531
7586
|
}
|
|
7532
7587
|
};
|
|
7533
|
-
},
|
|
7534
|
-
const n =
|
|
7588
|
+
}, Ps = function(e, a, o) {
|
|
7589
|
+
const n = ms(e);
|
|
7535
7590
|
return {
|
|
7536
7591
|
/**
|
|
7537
7592
|
*
|
|
@@ -7573,7 +7628,7 @@ const I = function(e, ...a) {
|
|
|
7573
7628
|
return n.getVocabularyInstances(t._class, t.searchTerm, t.language, t.pageSize, t.pageNumber, t.orderBy, r).then((s) => s(o, a));
|
|
7574
7629
|
}
|
|
7575
7630
|
};
|
|
7576
|
-
}, N = "https://d-sp28.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.STS".replace(/\/+$/, ""),
|
|
7631
|
+
}, N = "https://d-sp28.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.STS".replace(/\/+$/, ""), G = {}, $ = "https://example.com", _ = async function(e, a, o) {
|
|
7577
7632
|
if (o && o.apiKey) {
|
|
7578
7633
|
const n = typeof o.apiKey == "function" ? await o.apiKey(a) : await o.apiKey;
|
|
7579
7634
|
e[a] = n;
|
|
@@ -7594,7 +7649,7 @@ const q = function(e, ...a) {
|
|
|
7594
7649
|
const s = { ...e.options, url: ((n == null ? void 0 : n.basePath) || t.defaults.baseURL || r) + e.url };
|
|
7595
7650
|
return t.request(s);
|
|
7596
7651
|
};
|
|
7597
|
-
},
|
|
7652
|
+
}, Is = function(e) {
|
|
7598
7653
|
return {
|
|
7599
7654
|
/**
|
|
7600
7655
|
*
|
|
@@ -7603,7 +7658,7 @@ const q = function(e, ...a) {
|
|
|
7603
7658
|
* @throws {RequiredError}
|
|
7604
7659
|
*/
|
|
7605
7660
|
accountGetLoginUrls: async (a = {}) => {
|
|
7606
|
-
const o = "/Account/urls/login", n = new URL(o,
|
|
7661
|
+
const o = "/Account/urls/login", n = new URL(o, $);
|
|
7607
7662
|
let t;
|
|
7608
7663
|
e && (t = e.baseOptions);
|
|
7609
7664
|
const r = { method: "GET", ...t, ...a }, s = {}, l = {};
|
|
@@ -7621,7 +7676,7 @@ const q = function(e, ...a) {
|
|
|
7621
7676
|
* @throws {RequiredError}
|
|
7622
7677
|
*/
|
|
7623
7678
|
accountLogout: async (a = {}) => {
|
|
7624
|
-
const o = "/Account/logout", n = new URL(o,
|
|
7679
|
+
const o = "/Account/logout", n = new URL(o, $);
|
|
7625
7680
|
let t;
|
|
7626
7681
|
e && (t = e.baseOptions);
|
|
7627
7682
|
const r = { method: "GET", ...t, ...a }, s = {}, l = {};
|
|
@@ -7633,8 +7688,8 @@ const q = function(e, ...a) {
|
|
|
7633
7688
|
};
|
|
7634
7689
|
}
|
|
7635
7690
|
};
|
|
7636
|
-
},
|
|
7637
|
-
const a =
|
|
7691
|
+
}, ys = function(e) {
|
|
7692
|
+
const a = Is(e);
|
|
7638
7693
|
return {
|
|
7639
7694
|
/**
|
|
7640
7695
|
*
|
|
@@ -7644,7 +7699,7 @@ const q = function(e, ...a) {
|
|
|
7644
7699
|
*/
|
|
7645
7700
|
async accountGetLoginUrls(o) {
|
|
7646
7701
|
var s, l;
|
|
7647
|
-
const n = await a.accountGetLoginUrls(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (l = (s =
|
|
7702
|
+
const n = await a.accountGetLoginUrls(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (l = (s = G["AccountApi.accountGetLoginUrls"]) == null ? void 0 : s[t]) == null ? void 0 : l.url;
|
|
7648
7703
|
return (c, p) => K(n, V, N, e)(c, r || p);
|
|
7649
7704
|
},
|
|
7650
7705
|
/**
|
|
@@ -7655,12 +7710,12 @@ const q = function(e, ...a) {
|
|
|
7655
7710
|
*/
|
|
7656
7711
|
async accountLogout(o) {
|
|
7657
7712
|
var s, l;
|
|
7658
|
-
const n = await a.accountLogout(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (l = (s =
|
|
7713
|
+
const n = await a.accountLogout(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (l = (s = G["AccountApi.accountLogout"]) == null ? void 0 : s[t]) == null ? void 0 : l.url;
|
|
7659
7714
|
return (c, p) => K(n, V, N, e)(c, r || p);
|
|
7660
7715
|
}
|
|
7661
7716
|
};
|
|
7662
|
-
},
|
|
7663
|
-
const n =
|
|
7717
|
+
}, bs = function(e, a, o) {
|
|
7718
|
+
const n = ys(e);
|
|
7664
7719
|
return {
|
|
7665
7720
|
/**
|
|
7666
7721
|
*
|
|
@@ -7681,7 +7736,7 @@ const q = function(e, ...a) {
|
|
|
7681
7736
|
return n.accountLogout(t).then((r) => r(o, a));
|
|
7682
7737
|
}
|
|
7683
7738
|
};
|
|
7684
|
-
},
|
|
7739
|
+
}, Rs = function(e) {
|
|
7685
7740
|
return {
|
|
7686
7741
|
/**
|
|
7687
7742
|
*
|
|
@@ -7690,7 +7745,7 @@ const q = function(e, ...a) {
|
|
|
7690
7745
|
* @throws {RequiredError}
|
|
7691
7746
|
*/
|
|
7692
7747
|
homeIndex: async (a = {}) => {
|
|
7693
|
-
const o = "/", n = new URL(o,
|
|
7748
|
+
const o = "/", n = new URL(o, $);
|
|
7694
7749
|
let t;
|
|
7695
7750
|
e && (t = e.baseOptions);
|
|
7696
7751
|
const r = { method: "GET", ...t, ...a }, s = {}, l = {};
|
|
@@ -7702,8 +7757,8 @@ const q = function(e, ...a) {
|
|
|
7702
7757
|
};
|
|
7703
7758
|
}
|
|
7704
7759
|
};
|
|
7705
|
-
},
|
|
7706
|
-
const a =
|
|
7760
|
+
}, js = function(e) {
|
|
7761
|
+
const a = Rs(e);
|
|
7707
7762
|
return {
|
|
7708
7763
|
/**
|
|
7709
7764
|
*
|
|
@@ -7713,12 +7768,12 @@ const q = function(e, ...a) {
|
|
|
7713
7768
|
*/
|
|
7714
7769
|
async homeIndex(o) {
|
|
7715
7770
|
var s, l;
|
|
7716
|
-
const n = await a.homeIndex(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (l = (s =
|
|
7771
|
+
const n = await a.homeIndex(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (l = (s = G["HomeApi.homeIndex"]) == null ? void 0 : s[t]) == null ? void 0 : l.url;
|
|
7717
7772
|
return (c, p) => K(n, V, N, e)(c, r || p);
|
|
7718
7773
|
}
|
|
7719
7774
|
};
|
|
7720
|
-
},
|
|
7721
|
-
const n =
|
|
7775
|
+
}, vs = function(e, a, o) {
|
|
7776
|
+
const n = js(e);
|
|
7722
7777
|
return {
|
|
7723
7778
|
/**
|
|
7724
7779
|
*
|
|
@@ -7730,7 +7785,7 @@ const q = function(e, ...a) {
|
|
|
7730
7785
|
return n.homeIndex(t).then((r) => r(o, a));
|
|
7731
7786
|
}
|
|
7732
7787
|
};
|
|
7733
|
-
},
|
|
7788
|
+
}, Ss = function(e) {
|
|
7734
7789
|
return {
|
|
7735
7790
|
/**
|
|
7736
7791
|
*
|
|
@@ -7739,7 +7794,7 @@ const q = function(e, ...a) {
|
|
|
7739
7794
|
* @throws {RequiredError}
|
|
7740
7795
|
*/
|
|
7741
7796
|
mergeCallback: async (a, o = {}) => {
|
|
7742
|
-
const n = "/Merge/callback", t = new URL(n,
|
|
7797
|
+
const n = "/Merge/callback", t = new URL(n, $);
|
|
7743
7798
|
let r;
|
|
7744
7799
|
e && (r = e.baseOptions);
|
|
7745
7800
|
const s = { method: "GET", ...r, ...o }, l = {}, c = {};
|
|
@@ -7757,7 +7812,7 @@ const q = function(e, ...a) {
|
|
|
7757
7812
|
* @throws {RequiredError}
|
|
7758
7813
|
*/
|
|
7759
7814
|
mergeLogin: async (a, o = {}) => {
|
|
7760
|
-
const n = "/Merge/login", t = new URL(n,
|
|
7815
|
+
const n = "/Merge/login", t = new URL(n, $);
|
|
7761
7816
|
let r;
|
|
7762
7817
|
e && (r = e.baseOptions);
|
|
7763
7818
|
const s = { method: "GET", ...r, ...o }, l = {}, c = {};
|
|
@@ -7769,8 +7824,8 @@ const q = function(e, ...a) {
|
|
|
7769
7824
|
};
|
|
7770
7825
|
}
|
|
7771
7826
|
};
|
|
7772
|
-
},
|
|
7773
|
-
const a =
|
|
7827
|
+
}, ws = function(e) {
|
|
7828
|
+
const a = Ss(e);
|
|
7774
7829
|
return {
|
|
7775
7830
|
/**
|
|
7776
7831
|
*
|
|
@@ -7780,7 +7835,7 @@ const q = function(e, ...a) {
|
|
|
7780
7835
|
*/
|
|
7781
7836
|
async mergeCallback(o, n) {
|
|
7782
7837
|
var l, c;
|
|
7783
|
-
const t = await a.mergeCallback(o, n), r = (e == null ? void 0 : e.serverIndex) ?? 0, s = (c = (l =
|
|
7838
|
+
const t = await a.mergeCallback(o, n), r = (e == null ? void 0 : e.serverIndex) ?? 0, s = (c = (l = G["MergeApi.mergeCallback"]) == null ? void 0 : l[r]) == null ? void 0 : c.url;
|
|
7784
7839
|
return (p, i) => K(t, V, N, e)(p, s || i);
|
|
7785
7840
|
},
|
|
7786
7841
|
/**
|
|
@@ -7791,12 +7846,12 @@ const q = function(e, ...a) {
|
|
|
7791
7846
|
*/
|
|
7792
7847
|
async mergeLogin(o, n) {
|
|
7793
7848
|
var l, c;
|
|
7794
|
-
const t = await a.mergeLogin(o, n), r = (e == null ? void 0 : e.serverIndex) ?? 0, s = (c = (l =
|
|
7849
|
+
const t = await a.mergeLogin(o, n), r = (e == null ? void 0 : e.serverIndex) ?? 0, s = (c = (l = G["MergeApi.mergeLogin"]) == null ? void 0 : l[r]) == null ? void 0 : c.url;
|
|
7795
7850
|
return (p, i) => K(t, V, N, e)(p, s || i);
|
|
7796
7851
|
}
|
|
7797
7852
|
};
|
|
7798
|
-
},
|
|
7799
|
-
const n =
|
|
7853
|
+
}, Ts = function(e, a, o) {
|
|
7854
|
+
const n = ws(e);
|
|
7800
7855
|
return {
|
|
7801
7856
|
/**
|
|
7802
7857
|
*
|
|
@@ -7817,7 +7872,7 @@ const q = function(e, ...a) {
|
|
|
7817
7872
|
return n.mergeLogin(t.returnUrl, r).then((s) => s(o, a));
|
|
7818
7873
|
}
|
|
7819
7874
|
};
|
|
7820
|
-
},
|
|
7875
|
+
}, Us = function(e) {
|
|
7821
7876
|
return {
|
|
7822
7877
|
/**
|
|
7823
7878
|
*
|
|
@@ -7827,7 +7882,7 @@ const q = function(e, ...a) {
|
|
|
7827
7882
|
* @throws {RequiredError}
|
|
7828
7883
|
*/
|
|
7829
7884
|
oRCiDLoginGET: async (a, o = {}) => {
|
|
7830
|
-
const n = "/ORCiD/login", t = new URL(n,
|
|
7885
|
+
const n = "/ORCiD/login", t = new URL(n, $);
|
|
7831
7886
|
let r;
|
|
7832
7887
|
e && (r = e.baseOptions);
|
|
7833
7888
|
const s = { method: "GET", ...r, ...o }, l = {}, c = {};
|
|
@@ -7847,7 +7902,7 @@ const q = function(e, ...a) {
|
|
|
7847
7902
|
* @throws {RequiredError}
|
|
7848
7903
|
*/
|
|
7849
7904
|
oRCiDLoginPOST: async (a, o, n = {}) => {
|
|
7850
|
-
const t = "/ORCiD/login", r = new URL(t,
|
|
7905
|
+
const t = "/ORCiD/login", r = new URL(t, $);
|
|
7851
7906
|
let s;
|
|
7852
7907
|
e && (s = e.baseOptions);
|
|
7853
7908
|
const l = { method: "POST", ...s, ...n }, c = {}, p = {};
|
|
@@ -7859,8 +7914,8 @@ const q = function(e, ...a) {
|
|
|
7859
7914
|
};
|
|
7860
7915
|
}
|
|
7861
7916
|
};
|
|
7862
|
-
},
|
|
7863
|
-
const a =
|
|
7917
|
+
}, xs = function(e) {
|
|
7918
|
+
const a = Us(e);
|
|
7864
7919
|
return {
|
|
7865
7920
|
/**
|
|
7866
7921
|
*
|
|
@@ -7871,7 +7926,7 @@ const q = function(e, ...a) {
|
|
|
7871
7926
|
*/
|
|
7872
7927
|
async oRCiDLoginGET(o, n) {
|
|
7873
7928
|
var l, c;
|
|
7874
|
-
const t = await a.oRCiDLoginGET(o, n), r = (e == null ? void 0 : e.serverIndex) ?? 0, s = (c = (l =
|
|
7929
|
+
const t = await a.oRCiDLoginGET(o, n), r = (e == null ? void 0 : e.serverIndex) ?? 0, s = (c = (l = G["ORCiDApi.oRCiDLoginGET"]) == null ? void 0 : l[r]) == null ? void 0 : c.url;
|
|
7875
7930
|
return (p, i) => K(t, V, N, e)(p, s || i);
|
|
7876
7931
|
},
|
|
7877
7932
|
/**
|
|
@@ -7884,12 +7939,12 @@ const q = function(e, ...a) {
|
|
|
7884
7939
|
*/
|
|
7885
7940
|
async oRCiDLoginPOST(o, n, t) {
|
|
7886
7941
|
var c, p;
|
|
7887
|
-
const r = await a.oRCiDLoginPOST(o, n, t), s = (e == null ? void 0 : e.serverIndex) ?? 0, l = (p = (c =
|
|
7942
|
+
const r = await a.oRCiDLoginPOST(o, n, t), s = (e == null ? void 0 : e.serverIndex) ?? 0, l = (p = (c = G["ORCiDApi.oRCiDLoginPOST"]) == null ? void 0 : c[s]) == null ? void 0 : p.url;
|
|
7888
7943
|
return (i, d) => K(r, V, N, e)(i, l || d);
|
|
7889
7944
|
}
|
|
7890
7945
|
};
|
|
7891
|
-
},
|
|
7892
|
-
const n =
|
|
7946
|
+
}, Bs = function(e, a, o) {
|
|
7947
|
+
const n = xs(e);
|
|
7893
7948
|
return {
|
|
7894
7949
|
/**
|
|
7895
7950
|
*
|
|
@@ -7912,7 +7967,7 @@ const q = function(e, ...a) {
|
|
|
7912
7967
|
return n.oRCiDLoginPOST(t.oRCiDJWT, t.returnUrl, r).then((s) => s(o, a));
|
|
7913
7968
|
}
|
|
7914
7969
|
};
|
|
7915
|
-
},
|
|
7970
|
+
}, Fs = function(e) {
|
|
7916
7971
|
return {
|
|
7917
7972
|
/**
|
|
7918
7973
|
*
|
|
@@ -7923,7 +7978,7 @@ const q = function(e, ...a) {
|
|
|
7923
7978
|
* @throws {RequiredError}
|
|
7924
7979
|
*/
|
|
7925
7980
|
shibbolethCallback: async (a, o, n = {}) => {
|
|
7926
|
-
const t = "/Shibboleth/callback", r = new URL(t,
|
|
7981
|
+
const t = "/Shibboleth/callback", r = new URL(t, $);
|
|
7927
7982
|
let s;
|
|
7928
7983
|
e && (s = e.baseOptions);
|
|
7929
7984
|
const l = { method: "GET", ...s, ...n }, c = {}, p = {};
|
|
@@ -7943,7 +7998,7 @@ const q = function(e, ...a) {
|
|
|
7943
7998
|
* @throws {RequiredError}
|
|
7944
7999
|
*/
|
|
7945
8000
|
shibbolethLogin: async (a, o, n = {}) => {
|
|
7946
|
-
const t = "/Shibboleth/login", r = new URL(t,
|
|
8001
|
+
const t = "/Shibboleth/login", r = new URL(t, $);
|
|
7947
8002
|
let s;
|
|
7948
8003
|
e && (s = e.baseOptions);
|
|
7949
8004
|
const l = { method: "GET", ...s, ...n }, c = {}, p = {};
|
|
@@ -7955,8 +8010,8 @@ const q = function(e, ...a) {
|
|
|
7955
8010
|
};
|
|
7956
8011
|
}
|
|
7957
8012
|
};
|
|
7958
|
-
},
|
|
7959
|
-
const a =
|
|
8013
|
+
}, Cs = function(e) {
|
|
8014
|
+
const a = Fs(e);
|
|
7960
8015
|
return {
|
|
7961
8016
|
/**
|
|
7962
8017
|
*
|
|
@@ -7968,7 +8023,7 @@ const q = function(e, ...a) {
|
|
|
7968
8023
|
*/
|
|
7969
8024
|
async shibbolethCallback(o, n, t) {
|
|
7970
8025
|
var c, p;
|
|
7971
|
-
const r = await a.shibbolethCallback(o, n, t), s = (e == null ? void 0 : e.serverIndex) ?? 0, l = (p = (c =
|
|
8026
|
+
const r = await a.shibbolethCallback(o, n, t), s = (e == null ? void 0 : e.serverIndex) ?? 0, l = (p = (c = G["ShibbolethApi.shibbolethCallback"]) == null ? void 0 : c[s]) == null ? void 0 : p.url;
|
|
7972
8027
|
return (i, d) => K(r, V, N, e)(i, l || d);
|
|
7973
8028
|
},
|
|
7974
8029
|
/**
|
|
@@ -7981,12 +8036,12 @@ const q = function(e, ...a) {
|
|
|
7981
8036
|
*/
|
|
7982
8037
|
async shibbolethLogin(o, n, t) {
|
|
7983
8038
|
var c, p;
|
|
7984
|
-
const r = await a.shibbolethLogin(o, n, t), s = (e == null ? void 0 : e.serverIndex) ?? 0, l = (p = (c =
|
|
8039
|
+
const r = await a.shibbolethLogin(o, n, t), s = (e == null ? void 0 : e.serverIndex) ?? 0, l = (p = (c = G["ShibbolethApi.shibbolethLogin"]) == null ? void 0 : c[s]) == null ? void 0 : p.url;
|
|
7985
8040
|
return (i, d) => K(r, V, N, e)(i, l || d);
|
|
7986
8041
|
}
|
|
7987
8042
|
};
|
|
7988
|
-
},
|
|
7989
|
-
const n =
|
|
8043
|
+
}, Ls = function(e, a, o) {
|
|
8044
|
+
const n = Cs(e);
|
|
7990
8045
|
return {
|
|
7991
8046
|
/**
|
|
7992
8047
|
*
|
|
@@ -8022,21 +8077,21 @@ const x = () => {
|
|
|
8022
8077
|
let a = typeof window < "u" ? window.location.hostname : "coscine.rwth-aachen.de";
|
|
8023
8078
|
return a.indexOf(":") !== -1 && (a.indexOf("https://") !== -1 && (a = a.replace("https://", "")), a = a.substr(0, a.indexOf(":"))), a;
|
|
8024
8079
|
};
|
|
8025
|
-
function
|
|
8080
|
+
function Es(e) {
|
|
8026
8081
|
return {
|
|
8027
8082
|
// Upon adding or removing any API endpoints, the list of entries below may have to be manually updated:
|
|
8028
|
-
AccountApi:
|
|
8083
|
+
AccountApi: bs(new U({ accessToken: T }), "https://" + x() + "/coscine/api/Coscine.Api.STS", e),
|
|
8029
8084
|
AdminApi: Br(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8030
8085
|
ApplicationProfileApi: Lr(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8031
|
-
BlobApi:
|
|
8086
|
+
BlobApi: Mr(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8032
8087
|
DisciplineApi: kr(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8033
|
-
HandleApi:
|
|
8034
|
-
HomeApi:
|
|
8088
|
+
HandleApi: Gr(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8089
|
+
HomeApi: vs(new U({ accessToken: T }), "https://" + x() + "/coscine/api/Coscine.Api.STS", e),
|
|
8035
8090
|
LanguageApi: qr(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8036
8091
|
LicenseApi: Wr(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8037
|
-
MaintenanceApi:
|
|
8038
|
-
MergeApi:
|
|
8039
|
-
ORCiDApi:
|
|
8092
|
+
MaintenanceApi: Zr(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8093
|
+
MergeApi: Ts(new U({ accessToken: T }), "https://" + x() + "/coscine/api/Coscine.Api.STS", e),
|
|
8094
|
+
ORCiDApi: Bs(new U({ accessToken: T }), "https://" + x() + "/coscine/api/Coscine.Api.STS", e),
|
|
8040
8095
|
OrganizationApi: ea(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8041
8096
|
PidApi: aa(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8042
8097
|
ProjectApi: na(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
@@ -8049,70 +8104,72 @@ function Fs(e) {
|
|
|
8049
8104
|
ProjectResourceTypeApi: Ta(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8050
8105
|
ResourceApi: Ba(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8051
8106
|
ResourceTypeApi: La(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8052
|
-
|
|
8053
|
-
|
|
8054
|
-
|
|
8055
|
-
|
|
8056
|
-
|
|
8057
|
-
|
|
8058
|
-
|
|
8059
|
-
|
|
8060
|
-
|
|
8061
|
-
|
|
8062
|
-
|
|
8063
|
-
|
|
8064
|
-
|
|
8107
|
+
ResourceTypeGitLabApi: Ma(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8108
|
+
RoleApi: ka(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8109
|
+
SearchApi: Ga(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8110
|
+
SelfApi: qa(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8111
|
+
SelfApiTokenApi: Wa(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8112
|
+
SelfSessionApi: Za(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8113
|
+
ShibbolethApi: Ls(new U({ accessToken: T }), "https://" + x() + "/coscine/api/Coscine.Api.STS", e),
|
|
8114
|
+
SystemStatusApi: es(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8115
|
+
TitleApi: as(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8116
|
+
TosApi: ns(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8117
|
+
TreeApi: ps(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8118
|
+
UserApi: hs(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8119
|
+
VisibilityApi: us(new U({ accessToken: T }), "https://" + x() + "/coscine", e),
|
|
8120
|
+
VocabularyApi: Ps(new U({ accessToken: T }), "https://" + x() + "/coscine", e)
|
|
8065
8121
|
};
|
|
8066
8122
|
}
|
|
8067
8123
|
const nt = V.create({
|
|
8068
8124
|
withCredentials: !0
|
|
8069
|
-
}),
|
|
8070
|
-
function
|
|
8125
|
+
}), zs = "X-Coscine-Logging-CorrelationId";
|
|
8126
|
+
function Ms(e) {
|
|
8071
8127
|
if (typeof window < "u") {
|
|
8072
8128
|
const a = localStorage.getItem("coscine.authorization.bearer");
|
|
8073
8129
|
a && e.headers.setAuthorization("Bearer " + a);
|
|
8074
8130
|
const o = localStorage.getItem("coscine.clientcorrelation.id");
|
|
8075
|
-
o && e.headers.set(
|
|
8131
|
+
o && e.headers.set(zs, o);
|
|
8076
8132
|
}
|
|
8077
8133
|
}
|
|
8078
|
-
nt.interceptors.request.use((e) => (
|
|
8079
|
-
const B =
|
|
8134
|
+
nt.interceptors.request.use((e) => (Ms(e), e), (e) => Promise.reject(e), { synchronous: !0 });
|
|
8135
|
+
const B = Es(nt), Qs = B.AccountApi, ks = B.AdminApi, Ds = B.ApplicationProfileApi, Ns = B.BlobApi, Gs = B.DisciplineApi, $s = B.HandleApi, _s = B.HomeApi, qs = B.LanguageApi, Js = B.LicenseApi, Ks = B.MaintenanceApi, Ws = B.MergeApi, Xs = B.ORCiDApi, Ys = B.OrganizationApi, Zs = B.PidApi, fs = B.ProjectApi, gs = B.ProjectInvitationApi, eo = B.ProjectMemberApi, to = B.ProjectPublicationRequestApi, ro = B.ProjectQuotaApi, ao = B.ProjectResourceApi, so = B.ProjectResourceQuotaApi, oo = B.ProjectResourceTypeApi, no = B.ResourceApi, lo = B.ResourceTypeApi, co = B.ResourceTypeGitLabApi, po = B.RoleApi, io = B.SearchApi, ho = B.SelfApi, Oo = B.SelfApiTokenApi, Vo = B.ShibbolethApi, uo = B.SystemStatusApi, Ao = B.TitleApi, mo = B.TosApi, Po = B.TreeApi, Io = B.UserApi, yo = B.VisibilityApi, bo = B.VocabularyApi;
|
|
8080
8136
|
export {
|
|
8081
|
-
|
|
8082
|
-
|
|
8083
|
-
|
|
8084
|
-
|
|
8085
|
-
|
|
8086
|
-
|
|
8087
|
-
|
|
8088
|
-
|
|
8089
|
-
|
|
8090
|
-
|
|
8091
|
-
|
|
8092
|
-
|
|
8093
|
-
|
|
8094
|
-
|
|
8095
|
-
|
|
8096
|
-
|
|
8097
|
-
|
|
8098
|
-
|
|
8099
|
-
|
|
8100
|
-
|
|
8101
|
-
|
|
8102
|
-
|
|
8103
|
-
|
|
8104
|
-
|
|
8105
|
-
|
|
8106
|
-
|
|
8107
|
-
|
|
8108
|
-
|
|
8109
|
-
|
|
8110
|
-
|
|
8111
|
-
|
|
8112
|
-
|
|
8113
|
-
|
|
8114
|
-
|
|
8115
|
-
|
|
8116
|
-
|
|
8137
|
+
Qs as AccountApi,
|
|
8138
|
+
ks as AdminApi,
|
|
8139
|
+
Ds as ApplicationProfileApi,
|
|
8140
|
+
Ns as BlobApi,
|
|
8141
|
+
Gs as DisciplineApi,
|
|
8142
|
+
$s as HandleApi,
|
|
8143
|
+
_s as HomeApi,
|
|
8144
|
+
qs as LanguageApi,
|
|
8145
|
+
Js as LicenseApi,
|
|
8146
|
+
Ks as MaintenanceApi,
|
|
8147
|
+
Ws as MergeApi,
|
|
8148
|
+
Xs as ORCiDApi,
|
|
8149
|
+
Ys as OrganizationApi,
|
|
8150
|
+
Zs as PidApi,
|
|
8151
|
+
fs as ProjectApi,
|
|
8152
|
+
gs as ProjectInvitationApi,
|
|
8153
|
+
eo as ProjectMemberApi,
|
|
8154
|
+
to as ProjectPublicationRequestApi,
|
|
8155
|
+
ro as ProjectQuotaApi,
|
|
8156
|
+
ao as ProjectResourceApi,
|
|
8157
|
+
so as ProjectResourceQuotaApi,
|
|
8158
|
+
oo as ProjectResourceTypeApi,
|
|
8159
|
+
no as ResourceApi,
|
|
8160
|
+
lo as ResourceTypeApi,
|
|
8161
|
+
co as ResourceTypeGitLabApi,
|
|
8162
|
+
po as RoleApi,
|
|
8163
|
+
io as SearchApi,
|
|
8164
|
+
ho as SelfApi,
|
|
8165
|
+
Oo as SelfApiTokenApi,
|
|
8166
|
+
Vo as ShibbolethApi,
|
|
8167
|
+
uo as SystemStatusApi,
|
|
8168
|
+
Ao as TitleApi,
|
|
8169
|
+
mo as TosApi,
|
|
8170
|
+
Po as TreeApi,
|
|
8171
|
+
Io as UserApi,
|
|
8172
|
+
yo as VisibilityApi,
|
|
8173
|
+
bo as VocabularyApi,
|
|
8117
8174
|
B as default
|
|
8118
8175
|
};
|