@coscine/api-client 1.1.1 → 1.2.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 +570 -406
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +570 -405
- package/dist/index.umd.js.map +1 -1
- package/dist/lib/Coscine.Api.Search/api.js +159 -0
- package/dist/lib/Coscine.Api.Search/api.js.map +1 -0
- package/dist/lib/Coscine.Api.Search/base.js +65 -0
- package/dist/lib/Coscine.Api.Search/base.js.map +1 -0
- package/dist/lib/Coscine.Api.Search/common.js +153 -0
- package/dist/lib/Coscine.Api.Search/common.js.map +1 -0
- package/dist/lib/Coscine.Api.Search/configuration.js +43 -0
- package/dist/lib/Coscine.Api.Search/configuration.js.map +1 -0
- package/dist/lib/Coscine.Api.Search/index.js +28 -0
- package/dist/lib/Coscine.Api.Search/index.js.map +1 -0
- package/dist/lib/apis.js +12 -10
- package/dist/lib/apis.js.map +1 -1
- package/dist/lib/index.js +2 -1
- package/dist/lib/index.js.map +1 -1
- package/dist/types/Coscine.Api.Search/api.d.ts +110 -0
- package/dist/types/Coscine.Api.Search/base.d.ts +55 -0
- package/dist/types/Coscine.Api.Search/common.d.ts +65 -0
- package/dist/types/Coscine.Api.Search/configuration.d.ts +83 -0
- package/dist/types/Coscine.Api.Search/index.d.ts +13 -0
- package/dist/types/apis.d.ts +3 -0
- package/dist/types/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.umd.js
CHANGED
|
@@ -1855,7 +1855,7 @@
|
|
|
1855
1855
|
var axios = axios$2.exports;
|
|
1856
1856
|
|
|
1857
1857
|
/* tslint:disable */
|
|
1858
|
-
const BASE_PATH$
|
|
1858
|
+
const BASE_PATH$c = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.ActivatedFeatures".replace(/\/+$/, "");
|
|
1859
1859
|
/**
|
|
1860
1860
|
*
|
|
1861
1861
|
* @export
|
|
@@ -1875,7 +1875,7 @@
|
|
|
1875
1875
|
*
|
|
1876
1876
|
* @export
|
|
1877
1877
|
*/
|
|
1878
|
-
const DUMMY_BASE_URL$
|
|
1878
|
+
const DUMMY_BASE_URL$c = 'https://example.com';
|
|
1879
1879
|
/**
|
|
1880
1880
|
*
|
|
1881
1881
|
* @throws {RequiredError}
|
|
@@ -1890,7 +1890,7 @@
|
|
|
1890
1890
|
*
|
|
1891
1891
|
* @export
|
|
1892
1892
|
*/
|
|
1893
|
-
const setApiKeyToObject$
|
|
1893
|
+
const setApiKeyToObject$c = function (object, keyParamName, configuration) {
|
|
1894
1894
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1895
1895
|
if (configuration && configuration.apiKey) {
|
|
1896
1896
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -1904,7 +1904,7 @@
|
|
|
1904
1904
|
*
|
|
1905
1905
|
* @export
|
|
1906
1906
|
*/
|
|
1907
|
-
const setSearchParams$
|
|
1907
|
+
const setSearchParams$c = function (url, ...objects) {
|
|
1908
1908
|
const searchParams = new URLSearchParams(url.search);
|
|
1909
1909
|
for (const object of objects) {
|
|
1910
1910
|
for (const key in object) {
|
|
@@ -1925,14 +1925,14 @@
|
|
|
1925
1925
|
*
|
|
1926
1926
|
* @export
|
|
1927
1927
|
*/
|
|
1928
|
-
const toPathString$
|
|
1928
|
+
const toPathString$c = function (url) {
|
|
1929
1929
|
return url.pathname + url.search + url.hash;
|
|
1930
1930
|
};
|
|
1931
1931
|
/**
|
|
1932
1932
|
*
|
|
1933
1933
|
* @export
|
|
1934
1934
|
*/
|
|
1935
|
-
const createRequestFunction$
|
|
1935
|
+
const createRequestFunction$c = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
1936
1936
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
1937
1937
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
1938
1938
|
return axios.request(axiosRequestArgs);
|
|
@@ -1963,7 +1963,7 @@
|
|
|
1963
1963
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
1964
1964
|
.replace(`{${"featureId"}}`, encodeURIComponent(String(featureId)));
|
|
1965
1965
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1966
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
1966
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$c);
|
|
1967
1967
|
let baseOptions;
|
|
1968
1968
|
if (configuration) {
|
|
1969
1969
|
baseOptions = configuration.baseOptions;
|
|
@@ -1972,12 +1972,12 @@
|
|
|
1972
1972
|
const localVarHeaderParameter = {};
|
|
1973
1973
|
const localVarQueryParameter = {};
|
|
1974
1974
|
// authentication JWT token required
|
|
1975
|
-
yield setApiKeyToObject$
|
|
1976
|
-
setSearchParams$
|
|
1975
|
+
yield setApiKeyToObject$c(localVarHeaderParameter, "Authorization", configuration);
|
|
1976
|
+
setSearchParams$c(localVarUrlObj, localVarQueryParameter, options.query);
|
|
1977
1977
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1978
1978
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1979
1979
|
return {
|
|
1980
|
-
url: toPathString$
|
|
1980
|
+
url: toPathString$c(localVarUrlObj),
|
|
1981
1981
|
options: localVarRequestOptions,
|
|
1982
1982
|
};
|
|
1983
1983
|
}),
|
|
@@ -1998,7 +1998,7 @@
|
|
|
1998
1998
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
1999
1999
|
.replace(`{${"featureId"}}`, encodeURIComponent(String(featureId)));
|
|
2000
2000
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2001
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2001
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$c);
|
|
2002
2002
|
let baseOptions;
|
|
2003
2003
|
if (configuration) {
|
|
2004
2004
|
baseOptions = configuration.baseOptions;
|
|
@@ -2007,12 +2007,12 @@
|
|
|
2007
2007
|
const localVarHeaderParameter = {};
|
|
2008
2008
|
const localVarQueryParameter = {};
|
|
2009
2009
|
// authentication JWT token required
|
|
2010
|
-
yield setApiKeyToObject$
|
|
2011
|
-
setSearchParams$
|
|
2010
|
+
yield setApiKeyToObject$c(localVarHeaderParameter, "Authorization", configuration);
|
|
2011
|
+
setSearchParams$c(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2012
2012
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2013
2013
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2014
2014
|
return {
|
|
2015
|
-
url: toPathString$
|
|
2015
|
+
url: toPathString$c(localVarUrlObj),
|
|
2016
2016
|
options: localVarRequestOptions,
|
|
2017
2017
|
};
|
|
2018
2018
|
}),
|
|
@@ -2029,7 +2029,7 @@
|
|
|
2029
2029
|
const localVarPath = `/ActivatedFeatures/{projectId}/activeFeatures`
|
|
2030
2030
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
2031
2031
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2032
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2032
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$c);
|
|
2033
2033
|
let baseOptions;
|
|
2034
2034
|
if (configuration) {
|
|
2035
2035
|
baseOptions = configuration.baseOptions;
|
|
@@ -2038,12 +2038,12 @@
|
|
|
2038
2038
|
const localVarHeaderParameter = {};
|
|
2039
2039
|
const localVarQueryParameter = {};
|
|
2040
2040
|
// authentication JWT token required
|
|
2041
|
-
yield setApiKeyToObject$
|
|
2042
|
-
setSearchParams$
|
|
2041
|
+
yield setApiKeyToObject$c(localVarHeaderParameter, "Authorization", configuration);
|
|
2042
|
+
setSearchParams$c(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2043
2043
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2044
2044
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2045
2045
|
return {
|
|
2046
|
-
url: toPathString$
|
|
2046
|
+
url: toPathString$c(localVarUrlObj),
|
|
2047
2047
|
options: localVarRequestOptions,
|
|
2048
2048
|
};
|
|
2049
2049
|
}),
|
|
@@ -2060,7 +2060,7 @@
|
|
|
2060
2060
|
const localVarPath = `/ActivatedFeatures/{projectId}`
|
|
2061
2061
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
2062
2062
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2063
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2063
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$c);
|
|
2064
2064
|
let baseOptions;
|
|
2065
2065
|
if (configuration) {
|
|
2066
2066
|
baseOptions = configuration.baseOptions;
|
|
@@ -2069,12 +2069,12 @@
|
|
|
2069
2069
|
const localVarHeaderParameter = {};
|
|
2070
2070
|
const localVarQueryParameter = {};
|
|
2071
2071
|
// authentication JWT token required
|
|
2072
|
-
yield setApiKeyToObject$
|
|
2073
|
-
setSearchParams$
|
|
2072
|
+
yield setApiKeyToObject$c(localVarHeaderParameter, "Authorization", configuration);
|
|
2073
|
+
setSearchParams$c(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2074
2074
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2075
2075
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2076
2076
|
return {
|
|
2077
|
-
url: toPathString$
|
|
2077
|
+
url: toPathString$c(localVarUrlObj),
|
|
2078
2078
|
options: localVarRequestOptions,
|
|
2079
2079
|
};
|
|
2080
2080
|
}),
|
|
@@ -2087,7 +2087,7 @@
|
|
|
2087
2087
|
activatedFeaturesGetFeaturesAll: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2088
2088
|
const localVarPath = `/ActivatedFeatures`;
|
|
2089
2089
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2090
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2090
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$c);
|
|
2091
2091
|
let baseOptions;
|
|
2092
2092
|
if (configuration) {
|
|
2093
2093
|
baseOptions = configuration.baseOptions;
|
|
@@ -2096,12 +2096,12 @@
|
|
|
2096
2096
|
const localVarHeaderParameter = {};
|
|
2097
2097
|
const localVarQueryParameter = {};
|
|
2098
2098
|
// authentication JWT token required
|
|
2099
|
-
yield setApiKeyToObject$
|
|
2100
|
-
setSearchParams$
|
|
2099
|
+
yield setApiKeyToObject$c(localVarHeaderParameter, "Authorization", configuration);
|
|
2100
|
+
setSearchParams$c(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2101
2101
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2102
2102
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2103
2103
|
return {
|
|
2104
|
-
url: toPathString$
|
|
2104
|
+
url: toPathString$c(localVarUrlObj),
|
|
2105
2105
|
options: localVarRequestOptions,
|
|
2106
2106
|
};
|
|
2107
2107
|
}),
|
|
@@ -2118,7 +2118,7 @@
|
|
|
2118
2118
|
const localVarPath = `/ActivatedFeatures/{projectId}/inactiveFeatures`
|
|
2119
2119
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
2120
2120
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2121
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2121
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$c);
|
|
2122
2122
|
let baseOptions;
|
|
2123
2123
|
if (configuration) {
|
|
2124
2124
|
baseOptions = configuration.baseOptions;
|
|
@@ -2127,12 +2127,12 @@
|
|
|
2127
2127
|
const localVarHeaderParameter = {};
|
|
2128
2128
|
const localVarQueryParameter = {};
|
|
2129
2129
|
// authentication JWT token required
|
|
2130
|
-
yield setApiKeyToObject$
|
|
2131
|
-
setSearchParams$
|
|
2130
|
+
yield setApiKeyToObject$c(localVarHeaderParameter, "Authorization", configuration);
|
|
2131
|
+
setSearchParams$c(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2132
2132
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2133
2133
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2134
2134
|
return {
|
|
2135
|
-
url: toPathString$
|
|
2135
|
+
url: toPathString$c(localVarUrlObj),
|
|
2136
2136
|
options: localVarRequestOptions,
|
|
2137
2137
|
};
|
|
2138
2138
|
}),
|
|
@@ -2156,7 +2156,7 @@
|
|
|
2156
2156
|
activatedFeaturesActivateFeature(projectId, featureId, options) {
|
|
2157
2157
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2158
2158
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.activatedFeaturesActivateFeature(projectId, featureId, options);
|
|
2159
|
-
return createRequestFunction$
|
|
2159
|
+
return createRequestFunction$c(localVarAxiosArgs, axios, BASE_PATH$c, configuration);
|
|
2160
2160
|
});
|
|
2161
2161
|
},
|
|
2162
2162
|
/**
|
|
@@ -2170,7 +2170,7 @@
|
|
|
2170
2170
|
activatedFeaturesDeactivateFeature(projectId, featureId, options) {
|
|
2171
2171
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2172
2172
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.activatedFeaturesDeactivateFeature(projectId, featureId, options);
|
|
2173
|
-
return createRequestFunction$
|
|
2173
|
+
return createRequestFunction$c(localVarAxiosArgs, axios, BASE_PATH$c, configuration);
|
|
2174
2174
|
});
|
|
2175
2175
|
},
|
|
2176
2176
|
/**
|
|
@@ -2183,7 +2183,7 @@
|
|
|
2183
2183
|
activatedFeaturesGetActiveFeatures(projectId, options) {
|
|
2184
2184
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2185
2185
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.activatedFeaturesGetActiveFeatures(projectId, options);
|
|
2186
|
-
return createRequestFunction$
|
|
2186
|
+
return createRequestFunction$c(localVarAxiosArgs, axios, BASE_PATH$c, configuration);
|
|
2187
2187
|
});
|
|
2188
2188
|
},
|
|
2189
2189
|
/**
|
|
@@ -2196,7 +2196,7 @@
|
|
|
2196
2196
|
activatedFeaturesGetFeatures(projectId, options) {
|
|
2197
2197
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2198
2198
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.activatedFeaturesGetFeatures(projectId, options);
|
|
2199
|
-
return createRequestFunction$
|
|
2199
|
+
return createRequestFunction$c(localVarAxiosArgs, axios, BASE_PATH$c, configuration);
|
|
2200
2200
|
});
|
|
2201
2201
|
},
|
|
2202
2202
|
/**
|
|
@@ -2208,7 +2208,7 @@
|
|
|
2208
2208
|
activatedFeaturesGetFeaturesAll(options) {
|
|
2209
2209
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2210
2210
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.activatedFeaturesGetFeaturesAll(options);
|
|
2211
|
-
return createRequestFunction$
|
|
2211
|
+
return createRequestFunction$c(localVarAxiosArgs, axios, BASE_PATH$c, configuration);
|
|
2212
2212
|
});
|
|
2213
2213
|
},
|
|
2214
2214
|
/**
|
|
@@ -2221,7 +2221,7 @@
|
|
|
2221
2221
|
activatedFeaturesGetInactiveFeatures(projectId, options) {
|
|
2222
2222
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2223
2223
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.activatedFeaturesGetInactiveFeatures(projectId, options);
|
|
2224
|
-
return createRequestFunction$
|
|
2224
|
+
return createRequestFunction$c(localVarAxiosArgs, axios, BASE_PATH$c, configuration);
|
|
2225
2225
|
});
|
|
2226
2226
|
},
|
|
2227
2227
|
};
|
|
@@ -2337,7 +2337,7 @@
|
|
|
2337
2337
|
}
|
|
2338
2338
|
|
|
2339
2339
|
/* tslint:disable */
|
|
2340
|
-
const BASE_PATH$
|
|
2340
|
+
const BASE_PATH$b = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Admin".replace(/\/+$/, "");
|
|
2341
2341
|
/**
|
|
2342
2342
|
*
|
|
2343
2343
|
* @export
|
|
@@ -2357,7 +2357,7 @@
|
|
|
2357
2357
|
*
|
|
2358
2358
|
* @export
|
|
2359
2359
|
*/
|
|
2360
|
-
const DUMMY_BASE_URL$
|
|
2360
|
+
const DUMMY_BASE_URL$b = 'https://example.com';
|
|
2361
2361
|
/**
|
|
2362
2362
|
*
|
|
2363
2363
|
* @throws {RequiredError}
|
|
@@ -2372,7 +2372,7 @@
|
|
|
2372
2372
|
*
|
|
2373
2373
|
* @export
|
|
2374
2374
|
*/
|
|
2375
|
-
const setApiKeyToObject$
|
|
2375
|
+
const setApiKeyToObject$b = function (object, keyParamName, configuration) {
|
|
2376
2376
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2377
2377
|
if (configuration && configuration.apiKey) {
|
|
2378
2378
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -2386,7 +2386,7 @@
|
|
|
2386
2386
|
*
|
|
2387
2387
|
* @export
|
|
2388
2388
|
*/
|
|
2389
|
-
const setSearchParams$
|
|
2389
|
+
const setSearchParams$b = function (url, ...objects) {
|
|
2390
2390
|
const searchParams = new URLSearchParams(url.search);
|
|
2391
2391
|
for (const object of objects) {
|
|
2392
2392
|
for (const key in object) {
|
|
@@ -2420,14 +2420,14 @@
|
|
|
2420
2420
|
*
|
|
2421
2421
|
* @export
|
|
2422
2422
|
*/
|
|
2423
|
-
const toPathString$
|
|
2423
|
+
const toPathString$b = function (url) {
|
|
2424
2424
|
return url.pathname + url.search + url.hash;
|
|
2425
2425
|
};
|
|
2426
2426
|
/**
|
|
2427
2427
|
*
|
|
2428
2428
|
* @export
|
|
2429
2429
|
*/
|
|
2430
|
-
const createRequestFunction$
|
|
2430
|
+
const createRequestFunction$b = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
2431
2431
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
2432
2432
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
2433
2433
|
return axios.request(axiosRequestArgs);
|
|
@@ -2454,7 +2454,7 @@
|
|
|
2454
2454
|
const localVarPath = `/Admin/{projectString}`
|
|
2455
2455
|
.replace(`{${"projectString"}}`, encodeURIComponent(String(projectString)));
|
|
2456
2456
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2457
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2457
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$b);
|
|
2458
2458
|
let baseOptions;
|
|
2459
2459
|
if (configuration) {
|
|
2460
2460
|
baseOptions = configuration.baseOptions;
|
|
@@ -2463,12 +2463,12 @@
|
|
|
2463
2463
|
const localVarHeaderParameter = {};
|
|
2464
2464
|
const localVarQueryParameter = {};
|
|
2465
2465
|
// authentication JWT token required
|
|
2466
|
-
yield setApiKeyToObject$
|
|
2467
|
-
setSearchParams$
|
|
2466
|
+
yield setApiKeyToObject$b(localVarHeaderParameter, "Authorization", configuration);
|
|
2467
|
+
setSearchParams$b(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2468
2468
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2469
2469
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2470
2470
|
return {
|
|
2471
|
-
url: toPathString$
|
|
2471
|
+
url: toPathString$b(localVarUrlObj),
|
|
2472
2472
|
options: localVarRequestOptions,
|
|
2473
2473
|
};
|
|
2474
2474
|
}),
|
|
@@ -2484,7 +2484,7 @@
|
|
|
2484
2484
|
assertParamExists$a('adminUpdateQuota', 'updateQuotaParameterObject', updateQuotaParameterObject);
|
|
2485
2485
|
const localVarPath = `/Admin`;
|
|
2486
2486
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2487
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2487
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$b);
|
|
2488
2488
|
let baseOptions;
|
|
2489
2489
|
if (configuration) {
|
|
2490
2490
|
baseOptions = configuration.baseOptions;
|
|
@@ -2493,14 +2493,14 @@
|
|
|
2493
2493
|
const localVarHeaderParameter = {};
|
|
2494
2494
|
const localVarQueryParameter = {};
|
|
2495
2495
|
// authentication JWT token required
|
|
2496
|
-
yield setApiKeyToObject$
|
|
2496
|
+
yield setApiKeyToObject$b(localVarHeaderParameter, "Authorization", configuration);
|
|
2497
2497
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2498
|
-
setSearchParams$
|
|
2498
|
+
setSearchParams$b(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2499
2499
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2500
2500
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2501
2501
|
localVarRequestOptions.data = serializeDataIfNeeded$7(updateQuotaParameterObject, localVarRequestOptions, configuration);
|
|
2502
2502
|
return {
|
|
2503
|
-
url: toPathString$
|
|
2503
|
+
url: toPathString$b(localVarUrlObj),
|
|
2504
2504
|
options: localVarRequestOptions,
|
|
2505
2505
|
};
|
|
2506
2506
|
}),
|
|
@@ -2523,7 +2523,7 @@
|
|
|
2523
2523
|
adminGetProject(projectString, options) {
|
|
2524
2524
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2525
2525
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminGetProject(projectString, options);
|
|
2526
|
-
return createRequestFunction$
|
|
2526
|
+
return createRequestFunction$b(localVarAxiosArgs, axios, BASE_PATH$b, configuration);
|
|
2527
2527
|
});
|
|
2528
2528
|
},
|
|
2529
2529
|
/**
|
|
@@ -2536,7 +2536,7 @@
|
|
|
2536
2536
|
adminUpdateQuota(updateQuotaParameterObject, options) {
|
|
2537
2537
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2538
2538
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminUpdateQuota(updateQuotaParameterObject, options);
|
|
2539
|
-
return createRequestFunction$
|
|
2539
|
+
return createRequestFunction$b(localVarAxiosArgs, axios, BASE_PATH$b, configuration);
|
|
2540
2540
|
});
|
|
2541
2541
|
},
|
|
2542
2542
|
};
|
|
@@ -2572,7 +2572,7 @@
|
|
|
2572
2572
|
};
|
|
2573
2573
|
|
|
2574
2574
|
/* tslint:disable */
|
|
2575
|
-
const BASE_PATH$
|
|
2575
|
+
const BASE_PATH$a = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Blob".replace(/\/+$/, "");
|
|
2576
2576
|
/**
|
|
2577
2577
|
*
|
|
2578
2578
|
* @export
|
|
@@ -2592,7 +2592,7 @@
|
|
|
2592
2592
|
*
|
|
2593
2593
|
* @export
|
|
2594
2594
|
*/
|
|
2595
|
-
const DUMMY_BASE_URL$
|
|
2595
|
+
const DUMMY_BASE_URL$a = 'https://example.com';
|
|
2596
2596
|
/**
|
|
2597
2597
|
*
|
|
2598
2598
|
* @throws {RequiredError}
|
|
@@ -2607,7 +2607,7 @@
|
|
|
2607
2607
|
*
|
|
2608
2608
|
* @export
|
|
2609
2609
|
*/
|
|
2610
|
-
const setApiKeyToObject$
|
|
2610
|
+
const setApiKeyToObject$a = function (object, keyParamName, configuration) {
|
|
2611
2611
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2612
2612
|
if (configuration && configuration.apiKey) {
|
|
2613
2613
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -2621,7 +2621,7 @@
|
|
|
2621
2621
|
*
|
|
2622
2622
|
* @export
|
|
2623
2623
|
*/
|
|
2624
|
-
const setSearchParams$
|
|
2624
|
+
const setSearchParams$a = function (url, ...objects) {
|
|
2625
2625
|
const searchParams = new URLSearchParams(url.search);
|
|
2626
2626
|
for (const object of objects) {
|
|
2627
2627
|
for (const key in object) {
|
|
@@ -2655,14 +2655,14 @@
|
|
|
2655
2655
|
*
|
|
2656
2656
|
* @export
|
|
2657
2657
|
*/
|
|
2658
|
-
const toPathString$
|
|
2658
|
+
const toPathString$a = function (url) {
|
|
2659
2659
|
return url.pathname + url.search + url.hash;
|
|
2660
2660
|
};
|
|
2661
2661
|
/**
|
|
2662
2662
|
*
|
|
2663
2663
|
* @export
|
|
2664
2664
|
*/
|
|
2665
|
-
const createRequestFunction$
|
|
2665
|
+
const createRequestFunction$a = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
2666
2666
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
2667
2667
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
2668
2668
|
return axios.request(axiosRequestArgs);
|
|
@@ -2690,7 +2690,7 @@
|
|
|
2690
2690
|
const localVarPath = `/Blob/{resourceId}`
|
|
2691
2691
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
2692
2692
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2693
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2693
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$a);
|
|
2694
2694
|
let baseOptions;
|
|
2695
2695
|
if (configuration) {
|
|
2696
2696
|
baseOptions = configuration.baseOptions;
|
|
@@ -2699,15 +2699,15 @@
|
|
|
2699
2699
|
const localVarHeaderParameter = {};
|
|
2700
2700
|
const localVarQueryParameter = {};
|
|
2701
2701
|
// authentication JWT token required
|
|
2702
|
-
yield setApiKeyToObject$
|
|
2702
|
+
yield setApiKeyToObject$a(localVarHeaderParameter, "Authorization", configuration);
|
|
2703
2703
|
if (path !== undefined) {
|
|
2704
2704
|
localVarQueryParameter['path'] = path;
|
|
2705
2705
|
}
|
|
2706
|
-
setSearchParams$
|
|
2706
|
+
setSearchParams$a(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2707
2707
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2708
2708
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2709
2709
|
return {
|
|
2710
|
-
url: toPathString$
|
|
2710
|
+
url: toPathString$a(localVarUrlObj),
|
|
2711
2711
|
options: localVarRequestOptions,
|
|
2712
2712
|
};
|
|
2713
2713
|
}),
|
|
@@ -2725,7 +2725,7 @@
|
|
|
2725
2725
|
const localVarPath = `/Blob/{resourceId}`
|
|
2726
2726
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
2727
2727
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2728
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2728
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$a);
|
|
2729
2729
|
let baseOptions;
|
|
2730
2730
|
if (configuration) {
|
|
2731
2731
|
baseOptions = configuration.baseOptions;
|
|
@@ -2734,15 +2734,15 @@
|
|
|
2734
2734
|
const localVarHeaderParameter = {};
|
|
2735
2735
|
const localVarQueryParameter = {};
|
|
2736
2736
|
// authentication JWT token required
|
|
2737
|
-
yield setApiKeyToObject$
|
|
2737
|
+
yield setApiKeyToObject$a(localVarHeaderParameter, "Authorization", configuration);
|
|
2738
2738
|
if (path !== undefined) {
|
|
2739
2739
|
localVarQueryParameter['path'] = path;
|
|
2740
2740
|
}
|
|
2741
|
-
setSearchParams$
|
|
2741
|
+
setSearchParams$a(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2742
2742
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2743
2743
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2744
2744
|
return {
|
|
2745
|
-
url: toPathString$
|
|
2745
|
+
url: toPathString$a(localVarUrlObj),
|
|
2746
2746
|
options: localVarRequestOptions,
|
|
2747
2747
|
};
|
|
2748
2748
|
}),
|
|
@@ -2759,7 +2759,7 @@
|
|
|
2759
2759
|
const localVarPath = `/Blob/{resourceId}/quota`
|
|
2760
2760
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
2761
2761
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2762
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2762
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$a);
|
|
2763
2763
|
let baseOptions;
|
|
2764
2764
|
if (configuration) {
|
|
2765
2765
|
baseOptions = configuration.baseOptions;
|
|
@@ -2768,12 +2768,12 @@
|
|
|
2768
2768
|
const localVarHeaderParameter = {};
|
|
2769
2769
|
const localVarQueryParameter = {};
|
|
2770
2770
|
// authentication JWT token required
|
|
2771
|
-
yield setApiKeyToObject$
|
|
2772
|
-
setSearchParams$
|
|
2771
|
+
yield setApiKeyToObject$a(localVarHeaderParameter, "Authorization", configuration);
|
|
2772
|
+
setSearchParams$a(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2773
2773
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2774
2774
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2775
2775
|
return {
|
|
2776
|
-
url: toPathString$
|
|
2776
|
+
url: toPathString$a(localVarUrlObj),
|
|
2777
2777
|
options: localVarRequestOptions,
|
|
2778
2778
|
};
|
|
2779
2779
|
}),
|
|
@@ -2789,7 +2789,7 @@
|
|
|
2789
2789
|
assertParamExists$9('blobIsResourceValid', 'body', body);
|
|
2790
2790
|
const localVarPath = `/Blob/validate`;
|
|
2791
2791
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2792
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2792
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$a);
|
|
2793
2793
|
let baseOptions;
|
|
2794
2794
|
if (configuration) {
|
|
2795
2795
|
baseOptions = configuration.baseOptions;
|
|
@@ -2798,14 +2798,14 @@
|
|
|
2798
2798
|
const localVarHeaderParameter = {};
|
|
2799
2799
|
const localVarQueryParameter = {};
|
|
2800
2800
|
// authentication JWT token required
|
|
2801
|
-
yield setApiKeyToObject$
|
|
2801
|
+
yield setApiKeyToObject$a(localVarHeaderParameter, "Authorization", configuration);
|
|
2802
2802
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2803
|
-
setSearchParams$
|
|
2803
|
+
setSearchParams$a(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2804
2804
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2805
2805
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2806
2806
|
localVarRequestOptions.data = serializeDataIfNeeded$6(body, localVarRequestOptions, configuration);
|
|
2807
2807
|
return {
|
|
2808
|
-
url: toPathString$
|
|
2808
|
+
url: toPathString$a(localVarUrlObj),
|
|
2809
2809
|
options: localVarRequestOptions,
|
|
2810
2810
|
};
|
|
2811
2811
|
}),
|
|
@@ -2824,7 +2824,7 @@
|
|
|
2824
2824
|
const localVarPath = `/Blob/{resourceId}`
|
|
2825
2825
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
2826
2826
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2827
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2827
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$a);
|
|
2828
2828
|
let baseOptions;
|
|
2829
2829
|
if (configuration) {
|
|
2830
2830
|
baseOptions = configuration.baseOptions;
|
|
@@ -2834,7 +2834,7 @@
|
|
|
2834
2834
|
const localVarQueryParameter = {};
|
|
2835
2835
|
const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
2836
2836
|
// authentication JWT token required
|
|
2837
|
-
yield setApiKeyToObject$
|
|
2837
|
+
yield setApiKeyToObject$a(localVarHeaderParameter, "Authorization", configuration);
|
|
2838
2838
|
if (path !== undefined) {
|
|
2839
2839
|
localVarQueryParameter['path'] = path;
|
|
2840
2840
|
}
|
|
@@ -2844,12 +2844,12 @@
|
|
|
2844
2844
|
});
|
|
2845
2845
|
}
|
|
2846
2846
|
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
2847
|
-
setSearchParams$
|
|
2847
|
+
setSearchParams$a(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2848
2848
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2849
2849
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2850
2850
|
localVarRequestOptions.data = localVarFormParams;
|
|
2851
2851
|
return {
|
|
2852
|
-
url: toPathString$
|
|
2852
|
+
url: toPathString$a(localVarUrlObj),
|
|
2853
2853
|
options: localVarRequestOptions,
|
|
2854
2854
|
};
|
|
2855
2855
|
}),
|
|
@@ -2873,7 +2873,7 @@
|
|
|
2873
2873
|
blobDeleteFileWithParameter(resourceId, path, options) {
|
|
2874
2874
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2875
2875
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.blobDeleteFileWithParameter(resourceId, path, options);
|
|
2876
|
-
return createRequestFunction$
|
|
2876
|
+
return createRequestFunction$a(localVarAxiosArgs, axios, BASE_PATH$a, configuration);
|
|
2877
2877
|
});
|
|
2878
2878
|
},
|
|
2879
2879
|
/**
|
|
@@ -2887,7 +2887,7 @@
|
|
|
2887
2887
|
blobGetFileWithParameter(resourceId, path, options) {
|
|
2888
2888
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2889
2889
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.blobGetFileWithParameter(resourceId, path, options);
|
|
2890
|
-
return createRequestFunction$
|
|
2890
|
+
return createRequestFunction$a(localVarAxiosArgs, axios, BASE_PATH$a, configuration);
|
|
2891
2891
|
});
|
|
2892
2892
|
},
|
|
2893
2893
|
/**
|
|
@@ -2900,7 +2900,7 @@
|
|
|
2900
2900
|
blobGetQuota(resourceId, options) {
|
|
2901
2901
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2902
2902
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.blobGetQuota(resourceId, options);
|
|
2903
|
-
return createRequestFunction$
|
|
2903
|
+
return createRequestFunction$a(localVarAxiosArgs, axios, BASE_PATH$a, configuration);
|
|
2904
2904
|
});
|
|
2905
2905
|
},
|
|
2906
2906
|
/**
|
|
@@ -2913,7 +2913,7 @@
|
|
|
2913
2913
|
blobIsResourceValid(body, options) {
|
|
2914
2914
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2915
2915
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.blobIsResourceValid(body, options);
|
|
2916
|
-
return createRequestFunction$
|
|
2916
|
+
return createRequestFunction$a(localVarAxiosArgs, axios, BASE_PATH$a, configuration);
|
|
2917
2917
|
});
|
|
2918
2918
|
},
|
|
2919
2919
|
/**
|
|
@@ -2928,7 +2928,7 @@
|
|
|
2928
2928
|
blobUploadFileWithParameter(resourceId, path, files, options) {
|
|
2929
2929
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2930
2930
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.blobUploadFileWithParameter(resourceId, path, files, options);
|
|
2931
|
-
return createRequestFunction$
|
|
2931
|
+
return createRequestFunction$a(localVarAxiosArgs, axios, BASE_PATH$a, configuration);
|
|
2932
2932
|
});
|
|
2933
2933
|
},
|
|
2934
2934
|
};
|
|
@@ -2998,7 +2998,7 @@
|
|
|
2998
2998
|
};
|
|
2999
2999
|
|
|
3000
3000
|
/* tslint:disable */
|
|
3001
|
-
const BASE_PATH$
|
|
3001
|
+
const BASE_PATH$9 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Metadata".replace(/\/+$/, "");
|
|
3002
3002
|
/**
|
|
3003
3003
|
*
|
|
3004
3004
|
* @export
|
|
@@ -3018,7 +3018,7 @@
|
|
|
3018
3018
|
*
|
|
3019
3019
|
* @export
|
|
3020
3020
|
*/
|
|
3021
|
-
const DUMMY_BASE_URL$
|
|
3021
|
+
const DUMMY_BASE_URL$9 = 'https://example.com';
|
|
3022
3022
|
/**
|
|
3023
3023
|
*
|
|
3024
3024
|
* @throws {RequiredError}
|
|
@@ -3033,7 +3033,7 @@
|
|
|
3033
3033
|
*
|
|
3034
3034
|
* @export
|
|
3035
3035
|
*/
|
|
3036
|
-
const setApiKeyToObject$
|
|
3036
|
+
const setApiKeyToObject$9 = function (object, keyParamName, configuration) {
|
|
3037
3037
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3038
3038
|
if (configuration && configuration.apiKey) {
|
|
3039
3039
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -3047,7 +3047,7 @@
|
|
|
3047
3047
|
*
|
|
3048
3048
|
* @export
|
|
3049
3049
|
*/
|
|
3050
|
-
const setSearchParams$
|
|
3050
|
+
const setSearchParams$9 = function (url, ...objects) {
|
|
3051
3051
|
const searchParams = new URLSearchParams(url.search);
|
|
3052
3052
|
for (const object of objects) {
|
|
3053
3053
|
for (const key in object) {
|
|
@@ -3081,14 +3081,14 @@
|
|
|
3081
3081
|
*
|
|
3082
3082
|
* @export
|
|
3083
3083
|
*/
|
|
3084
|
-
const toPathString$
|
|
3084
|
+
const toPathString$9 = function (url) {
|
|
3085
3085
|
return url.pathname + url.search + url.hash;
|
|
3086
3086
|
};
|
|
3087
3087
|
/**
|
|
3088
3088
|
*
|
|
3089
3089
|
* @export
|
|
3090
3090
|
*/
|
|
3091
|
-
const createRequestFunction$
|
|
3091
|
+
const createRequestFunction$9 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
3092
3092
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
3093
3093
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
3094
3094
|
return axios.request(axiosRequestArgs);
|
|
@@ -3119,7 +3119,7 @@
|
|
|
3119
3119
|
.replace(`{${"profile"}}`, encodeURIComponent(String(profile)))
|
|
3120
3120
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
3121
3121
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3122
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3122
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3123
3123
|
let baseOptions;
|
|
3124
3124
|
if (configuration) {
|
|
3125
3125
|
baseOptions = configuration.baseOptions;
|
|
@@ -3128,12 +3128,12 @@
|
|
|
3128
3128
|
const localVarHeaderParameter = {};
|
|
3129
3129
|
const localVarQueryParameter = {};
|
|
3130
3130
|
// authentication JWT token required
|
|
3131
|
-
yield setApiKeyToObject$
|
|
3132
|
-
setSearchParams$
|
|
3131
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3132
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3133
3133
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3134
3134
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3135
3135
|
return {
|
|
3136
|
-
url: toPathString$
|
|
3136
|
+
url: toPathString$9(localVarUrlObj),
|
|
3137
3137
|
options: localVarRequestOptions,
|
|
3138
3138
|
};
|
|
3139
3139
|
}),
|
|
@@ -3154,7 +3154,7 @@
|
|
|
3154
3154
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
3155
3155
|
.replace(`{${"className"}}`, encodeURIComponent(String(className)));
|
|
3156
3156
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3157
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3157
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3158
3158
|
let baseOptions;
|
|
3159
3159
|
if (configuration) {
|
|
3160
3160
|
baseOptions = configuration.baseOptions;
|
|
@@ -3163,12 +3163,12 @@
|
|
|
3163
3163
|
const localVarHeaderParameter = {};
|
|
3164
3164
|
const localVarQueryParameter = {};
|
|
3165
3165
|
// authentication JWT token required
|
|
3166
|
-
yield setApiKeyToObject$
|
|
3167
|
-
setSearchParams$
|
|
3166
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3167
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3168
3168
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3169
3169
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3170
3170
|
return {
|
|
3171
|
-
url: toPathString$
|
|
3171
|
+
url: toPathString$9(localVarUrlObj),
|
|
3172
3172
|
options: localVarRequestOptions,
|
|
3173
3173
|
};
|
|
3174
3174
|
}),
|
|
@@ -3185,7 +3185,7 @@
|
|
|
3185
3185
|
const localVarPath = `/Metadata/profiles/{profile}`
|
|
3186
3186
|
.replace(`{${"profile"}}`, encodeURIComponent(String(profile)));
|
|
3187
3187
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3188
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3188
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3189
3189
|
let baseOptions;
|
|
3190
3190
|
if (configuration) {
|
|
3191
3191
|
baseOptions = configuration.baseOptions;
|
|
@@ -3194,12 +3194,12 @@
|
|
|
3194
3194
|
const localVarHeaderParameter = {};
|
|
3195
3195
|
const localVarQueryParameter = {};
|
|
3196
3196
|
// authentication JWT token required
|
|
3197
|
-
yield setApiKeyToObject$
|
|
3198
|
-
setSearchParams$
|
|
3197
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3198
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3199
3199
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3200
3200
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3201
3201
|
return {
|
|
3202
|
-
url: toPathString$
|
|
3202
|
+
url: toPathString$9(localVarUrlObj),
|
|
3203
3203
|
options: localVarRequestOptions,
|
|
3204
3204
|
};
|
|
3205
3205
|
}),
|
|
@@ -3212,7 +3212,7 @@
|
|
|
3212
3212
|
metadataGetProfiles: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3213
3213
|
const localVarPath = `/Metadata/profiles`;
|
|
3214
3214
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3215
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3215
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3216
3216
|
let baseOptions;
|
|
3217
3217
|
if (configuration) {
|
|
3218
3218
|
baseOptions = configuration.baseOptions;
|
|
@@ -3221,12 +3221,12 @@
|
|
|
3221
3221
|
const localVarHeaderParameter = {};
|
|
3222
3222
|
const localVarQueryParameter = {};
|
|
3223
3223
|
// authentication JWT token required
|
|
3224
|
-
yield setApiKeyToObject$
|
|
3225
|
-
setSearchParams$
|
|
3224
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3225
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3226
3226
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3227
3227
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3228
3228
|
return {
|
|
3229
|
-
url: toPathString$
|
|
3229
|
+
url: toPathString$9(localVarUrlObj),
|
|
3230
3230
|
options: localVarRequestOptions,
|
|
3231
3231
|
};
|
|
3232
3232
|
}),
|
|
@@ -3239,7 +3239,7 @@
|
|
|
3239
3239
|
metadataGetVocabularies: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3240
3240
|
const localVarPath = `/Metadata/vocabularies`;
|
|
3241
3241
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3242
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3242
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3243
3243
|
let baseOptions;
|
|
3244
3244
|
if (configuration) {
|
|
3245
3245
|
baseOptions = configuration.baseOptions;
|
|
@@ -3248,12 +3248,12 @@
|
|
|
3248
3248
|
const localVarHeaderParameter = {};
|
|
3249
3249
|
const localVarQueryParameter = {};
|
|
3250
3250
|
// authentication JWT token required
|
|
3251
|
-
yield setApiKeyToObject$
|
|
3252
|
-
setSearchParams$
|
|
3251
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3252
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3253
3253
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3254
3254
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3255
3255
|
return {
|
|
3256
|
-
url: toPathString$
|
|
3256
|
+
url: toPathString$9(localVarUrlObj),
|
|
3257
3257
|
options: localVarRequestOptions,
|
|
3258
3258
|
};
|
|
3259
3259
|
}),
|
|
@@ -3270,7 +3270,7 @@
|
|
|
3270
3270
|
const localVarPath = `/Metadata/vocabularies/{path}`
|
|
3271
3271
|
.replace(`{${"path"}}`, encodeURIComponent(String(path)));
|
|
3272
3272
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3273
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3273
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3274
3274
|
let baseOptions;
|
|
3275
3275
|
if (configuration) {
|
|
3276
3276
|
baseOptions = configuration.baseOptions;
|
|
@@ -3279,12 +3279,12 @@
|
|
|
3279
3279
|
const localVarHeaderParameter = {};
|
|
3280
3280
|
const localVarQueryParameter = {};
|
|
3281
3281
|
// authentication JWT token required
|
|
3282
|
-
yield setApiKeyToObject$
|
|
3283
|
-
setSearchParams$
|
|
3282
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3283
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3284
3284
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3285
3285
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3286
3286
|
return {
|
|
3287
|
-
url: toPathString$
|
|
3287
|
+
url: toPathString$9(localVarUrlObj),
|
|
3288
3288
|
options: localVarRequestOptions,
|
|
3289
3289
|
};
|
|
3290
3290
|
}),
|
|
@@ -3300,7 +3300,7 @@
|
|
|
3300
3300
|
assertParamExists$8('metadataSaveApplicationProfile', 'applicationProfile', applicationProfile);
|
|
3301
3301
|
const localVarPath = `/Metadata/profiles`;
|
|
3302
3302
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3303
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3303
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3304
3304
|
let baseOptions;
|
|
3305
3305
|
if (configuration) {
|
|
3306
3306
|
baseOptions = configuration.baseOptions;
|
|
@@ -3309,14 +3309,14 @@
|
|
|
3309
3309
|
const localVarHeaderParameter = {};
|
|
3310
3310
|
const localVarQueryParameter = {};
|
|
3311
3311
|
// authentication JWT token required
|
|
3312
|
-
yield setApiKeyToObject$
|
|
3312
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3313
3313
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3314
|
-
setSearchParams$
|
|
3314
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3315
3315
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3316
3316
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3317
3317
|
localVarRequestOptions.data = serializeDataIfNeeded$5(applicationProfile, localVarRequestOptions, configuration);
|
|
3318
3318
|
return {
|
|
3319
|
-
url: toPathString$
|
|
3319
|
+
url: toPathString$9(localVarUrlObj),
|
|
3320
3320
|
options: localVarRequestOptions,
|
|
3321
3321
|
};
|
|
3322
3322
|
}),
|
|
@@ -3340,7 +3340,7 @@
|
|
|
3340
3340
|
metadataGetApplicationProfileComplete(profile, resourceId, options) {
|
|
3341
3341
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3342
3342
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetApplicationProfileComplete(profile, resourceId, options);
|
|
3343
|
-
return createRequestFunction$
|
|
3343
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3344
3344
|
});
|
|
3345
3345
|
},
|
|
3346
3346
|
/**
|
|
@@ -3354,7 +3354,7 @@
|
|
|
3354
3354
|
metadataGetClassInstances(projectId, className, options) {
|
|
3355
3355
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3356
3356
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetClassInstances(projectId, className, options);
|
|
3357
|
-
return createRequestFunction$
|
|
3357
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3358
3358
|
});
|
|
3359
3359
|
},
|
|
3360
3360
|
/**
|
|
@@ -3367,7 +3367,7 @@
|
|
|
3367
3367
|
metadataGetProfile(profile, options) {
|
|
3368
3368
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3369
3369
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetProfile(profile, options);
|
|
3370
|
-
return createRequestFunction$
|
|
3370
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3371
3371
|
});
|
|
3372
3372
|
},
|
|
3373
3373
|
/**
|
|
@@ -3379,7 +3379,7 @@
|
|
|
3379
3379
|
metadataGetProfiles(options) {
|
|
3380
3380
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3381
3381
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetProfiles(options);
|
|
3382
|
-
return createRequestFunction$
|
|
3382
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3383
3383
|
});
|
|
3384
3384
|
},
|
|
3385
3385
|
/**
|
|
@@ -3391,7 +3391,7 @@
|
|
|
3391
3391
|
metadataGetVocabularies(options) {
|
|
3392
3392
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3393
3393
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetVocabularies(options);
|
|
3394
|
-
return createRequestFunction$
|
|
3394
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3395
3395
|
});
|
|
3396
3396
|
},
|
|
3397
3397
|
/**
|
|
@@ -3404,7 +3404,7 @@
|
|
|
3404
3404
|
metadataGetVocabulary(path, options) {
|
|
3405
3405
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3406
3406
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetVocabulary(path, options);
|
|
3407
|
-
return createRequestFunction$
|
|
3407
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3408
3408
|
});
|
|
3409
3409
|
},
|
|
3410
3410
|
/**
|
|
@@ -3417,7 +3417,7 @@
|
|
|
3417
3417
|
metadataSaveApplicationProfile(applicationProfile, options) {
|
|
3418
3418
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3419
3419
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataSaveApplicationProfile(applicationProfile, options);
|
|
3420
|
-
return createRequestFunction$
|
|
3420
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3421
3421
|
});
|
|
3422
3422
|
},
|
|
3423
3423
|
};
|
|
@@ -3503,7 +3503,7 @@
|
|
|
3503
3503
|
};
|
|
3504
3504
|
|
|
3505
3505
|
/* tslint:disable */
|
|
3506
|
-
const BASE_PATH$
|
|
3506
|
+
const BASE_PATH$8 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Notices".replace(/\/+$/, "");
|
|
3507
3507
|
/**
|
|
3508
3508
|
*
|
|
3509
3509
|
* @export
|
|
@@ -3523,7 +3523,7 @@
|
|
|
3523
3523
|
*
|
|
3524
3524
|
* @export
|
|
3525
3525
|
*/
|
|
3526
|
-
const DUMMY_BASE_URL$
|
|
3526
|
+
const DUMMY_BASE_URL$8 = 'https://example.com';
|
|
3527
3527
|
/**
|
|
3528
3528
|
*
|
|
3529
3529
|
* @throws {RequiredError}
|
|
@@ -3538,7 +3538,7 @@
|
|
|
3538
3538
|
*
|
|
3539
3539
|
* @export
|
|
3540
3540
|
*/
|
|
3541
|
-
const setApiKeyToObject$
|
|
3541
|
+
const setApiKeyToObject$8 = function (object, keyParamName, configuration) {
|
|
3542
3542
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3543
3543
|
if (configuration && configuration.apiKey) {
|
|
3544
3544
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -3552,7 +3552,7 @@
|
|
|
3552
3552
|
*
|
|
3553
3553
|
* @export
|
|
3554
3554
|
*/
|
|
3555
|
-
const setSearchParams$
|
|
3555
|
+
const setSearchParams$8 = function (url, ...objects) {
|
|
3556
3556
|
const searchParams = new URLSearchParams(url.search);
|
|
3557
3557
|
for (const object of objects) {
|
|
3558
3558
|
for (const key in object) {
|
|
@@ -3573,14 +3573,14 @@
|
|
|
3573
3573
|
*
|
|
3574
3574
|
* @export
|
|
3575
3575
|
*/
|
|
3576
|
-
const toPathString$
|
|
3576
|
+
const toPathString$8 = function (url) {
|
|
3577
3577
|
return url.pathname + url.search + url.hash;
|
|
3578
3578
|
};
|
|
3579
3579
|
/**
|
|
3580
3580
|
*
|
|
3581
3581
|
* @export
|
|
3582
3582
|
*/
|
|
3583
|
-
const createRequestFunction$
|
|
3583
|
+
const createRequestFunction$8 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
3584
3584
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
3585
3585
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
3586
3586
|
return axios.request(axiosRequestArgs);
|
|
@@ -3603,7 +3603,7 @@
|
|
|
3603
3603
|
noticeGetMaintenance: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3604
3604
|
const localVarPath = `/Notice/getMaintenance`;
|
|
3605
3605
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3606
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3606
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$8);
|
|
3607
3607
|
let baseOptions;
|
|
3608
3608
|
if (configuration) {
|
|
3609
3609
|
baseOptions = configuration.baseOptions;
|
|
@@ -3612,12 +3612,12 @@
|
|
|
3612
3612
|
const localVarHeaderParameter = {};
|
|
3613
3613
|
const localVarQueryParameter = {};
|
|
3614
3614
|
// authentication JWT token required
|
|
3615
|
-
yield setApiKeyToObject$
|
|
3616
|
-
setSearchParams$
|
|
3615
|
+
yield setApiKeyToObject$8(localVarHeaderParameter, "Authorization", configuration);
|
|
3616
|
+
setSearchParams$8(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3617
3617
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3618
3618
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3619
3619
|
return {
|
|
3620
|
-
url: toPathString$
|
|
3620
|
+
url: toPathString$8(localVarUrlObj),
|
|
3621
3621
|
options: localVarRequestOptions,
|
|
3622
3622
|
};
|
|
3623
3623
|
}),
|
|
@@ -3635,7 +3635,7 @@
|
|
|
3635
3635
|
const localVarPath = `/Notice/{documentSlug}`
|
|
3636
3636
|
.replace(`{${"documentSlug"}}`, encodeURIComponent(String(documentSlug)));
|
|
3637
3637
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3638
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3638
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$8);
|
|
3639
3639
|
let baseOptions;
|
|
3640
3640
|
if (configuration) {
|
|
3641
3641
|
baseOptions = configuration.baseOptions;
|
|
@@ -3644,15 +3644,15 @@
|
|
|
3644
3644
|
const localVarHeaderParameter = {};
|
|
3645
3645
|
const localVarQueryParameter = {};
|
|
3646
3646
|
// authentication JWT token required
|
|
3647
|
-
yield setApiKeyToObject$
|
|
3647
|
+
yield setApiKeyToObject$8(localVarHeaderParameter, "Authorization", configuration);
|
|
3648
3648
|
if (language !== undefined) {
|
|
3649
3649
|
localVarQueryParameter['language'] = language;
|
|
3650
3650
|
}
|
|
3651
|
-
setSearchParams$
|
|
3651
|
+
setSearchParams$8(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3652
3652
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3653
3653
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3654
3654
|
return {
|
|
3655
|
-
url: toPathString$
|
|
3655
|
+
url: toPathString$8(localVarUrlObj),
|
|
3656
3656
|
options: localVarRequestOptions,
|
|
3657
3657
|
};
|
|
3658
3658
|
}),
|
|
@@ -3674,7 +3674,7 @@
|
|
|
3674
3674
|
noticeGetMaintenance(options) {
|
|
3675
3675
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3676
3676
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.noticeGetMaintenance(options);
|
|
3677
|
-
return createRequestFunction$
|
|
3677
|
+
return createRequestFunction$8(localVarAxiosArgs, axios, BASE_PATH$8, configuration);
|
|
3678
3678
|
});
|
|
3679
3679
|
},
|
|
3680
3680
|
/**
|
|
@@ -3688,7 +3688,7 @@
|
|
|
3688
3688
|
noticeGetNotice(documentSlug, language, options) {
|
|
3689
3689
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3690
3690
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.noticeGetNotice(documentSlug, language, options);
|
|
3691
|
-
return createRequestFunction$
|
|
3691
|
+
return createRequestFunction$8(localVarAxiosArgs, axios, BASE_PATH$8, configuration);
|
|
3692
3692
|
});
|
|
3693
3693
|
},
|
|
3694
3694
|
};
|
|
@@ -3724,7 +3724,7 @@
|
|
|
3724
3724
|
};
|
|
3725
3725
|
|
|
3726
3726
|
/* tslint:disable */
|
|
3727
|
-
const BASE_PATH$
|
|
3727
|
+
const BASE_PATH$7 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Organization".replace(/\/+$/, "");
|
|
3728
3728
|
/**
|
|
3729
3729
|
*
|
|
3730
3730
|
* @export
|
|
@@ -3744,7 +3744,7 @@
|
|
|
3744
3744
|
*
|
|
3745
3745
|
* @export
|
|
3746
3746
|
*/
|
|
3747
|
-
const DUMMY_BASE_URL$
|
|
3747
|
+
const DUMMY_BASE_URL$7 = 'https://example.com';
|
|
3748
3748
|
/**
|
|
3749
3749
|
*
|
|
3750
3750
|
* @throws {RequiredError}
|
|
@@ -3759,7 +3759,7 @@
|
|
|
3759
3759
|
*
|
|
3760
3760
|
* @export
|
|
3761
3761
|
*/
|
|
3762
|
-
const setApiKeyToObject$
|
|
3762
|
+
const setApiKeyToObject$7 = function (object, keyParamName, configuration) {
|
|
3763
3763
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3764
3764
|
if (configuration && configuration.apiKey) {
|
|
3765
3765
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -3773,7 +3773,7 @@
|
|
|
3773
3773
|
*
|
|
3774
3774
|
* @export
|
|
3775
3775
|
*/
|
|
3776
|
-
const setSearchParams$
|
|
3776
|
+
const setSearchParams$7 = function (url, ...objects) {
|
|
3777
3777
|
const searchParams = new URLSearchParams(url.search);
|
|
3778
3778
|
for (const object of objects) {
|
|
3779
3779
|
for (const key in object) {
|
|
@@ -3794,14 +3794,14 @@
|
|
|
3794
3794
|
*
|
|
3795
3795
|
* @export
|
|
3796
3796
|
*/
|
|
3797
|
-
const toPathString$
|
|
3797
|
+
const toPathString$7 = function (url) {
|
|
3798
3798
|
return url.pathname + url.search + url.hash;
|
|
3799
3799
|
};
|
|
3800
3800
|
/**
|
|
3801
3801
|
*
|
|
3802
3802
|
* @export
|
|
3803
3803
|
*/
|
|
3804
|
-
const createRequestFunction$
|
|
3804
|
+
const createRequestFunction$7 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
3805
3805
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
3806
3806
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
3807
3807
|
return axios.request(axiosRequestArgs);
|
|
@@ -3828,7 +3828,7 @@
|
|
|
3828
3828
|
const localVarPath = `/Organization/{url}`
|
|
3829
3829
|
.replace(`{${"url"}}`, encodeURIComponent(String(url)));
|
|
3830
3830
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3831
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3831
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3832
3832
|
let baseOptions;
|
|
3833
3833
|
if (configuration) {
|
|
3834
3834
|
baseOptions = configuration.baseOptions;
|
|
@@ -3837,12 +3837,12 @@
|
|
|
3837
3837
|
const localVarHeaderParameter = {};
|
|
3838
3838
|
const localVarQueryParameter = {};
|
|
3839
3839
|
// authentication JWT token required
|
|
3840
|
-
yield setApiKeyToObject$
|
|
3841
|
-
setSearchParams$
|
|
3840
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3841
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3842
3842
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3843
3843
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3844
3844
|
return {
|
|
3845
|
-
url: toPathString$
|
|
3845
|
+
url: toPathString$7(localVarUrlObj),
|
|
3846
3846
|
options: localVarRequestOptions,
|
|
3847
3847
|
};
|
|
3848
3848
|
}),
|
|
@@ -3856,7 +3856,7 @@
|
|
|
3856
3856
|
organizationGetROR: (filter, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3857
3857
|
const localVarPath = `/Organization/-/ror`;
|
|
3858
3858
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3859
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3859
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3860
3860
|
let baseOptions;
|
|
3861
3861
|
if (configuration) {
|
|
3862
3862
|
baseOptions = configuration.baseOptions;
|
|
@@ -3865,15 +3865,15 @@
|
|
|
3865
3865
|
const localVarHeaderParameter = {};
|
|
3866
3866
|
const localVarQueryParameter = {};
|
|
3867
3867
|
// authentication JWT token required
|
|
3868
|
-
yield setApiKeyToObject$
|
|
3868
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3869
3869
|
if (filter !== undefined) {
|
|
3870
3870
|
localVarQueryParameter['filter'] = filter;
|
|
3871
3871
|
}
|
|
3872
|
-
setSearchParams$
|
|
3872
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3873
3873
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3874
3874
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3875
3875
|
return {
|
|
3876
|
-
url: toPathString$
|
|
3876
|
+
url: toPathString$7(localVarUrlObj),
|
|
3877
3877
|
options: localVarRequestOptions,
|
|
3878
3878
|
};
|
|
3879
3879
|
}),
|
|
@@ -3888,7 +3888,7 @@
|
|
|
3888
3888
|
organizationIndex: (member, filter, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3889
3889
|
const localVarPath = `/Organization`;
|
|
3890
3890
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3891
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3891
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3892
3892
|
let baseOptions;
|
|
3893
3893
|
if (configuration) {
|
|
3894
3894
|
baseOptions = configuration.baseOptions;
|
|
@@ -3897,18 +3897,18 @@
|
|
|
3897
3897
|
const localVarHeaderParameter = {};
|
|
3898
3898
|
const localVarQueryParameter = {};
|
|
3899
3899
|
// authentication JWT token required
|
|
3900
|
-
yield setApiKeyToObject$
|
|
3900
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3901
3901
|
if (member !== undefined) {
|
|
3902
3902
|
localVarQueryParameter['member'] = member;
|
|
3903
3903
|
}
|
|
3904
3904
|
if (filter !== undefined) {
|
|
3905
3905
|
localVarQueryParameter['filter'] = filter;
|
|
3906
3906
|
}
|
|
3907
|
-
setSearchParams$
|
|
3907
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3908
3908
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3909
3909
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3910
3910
|
return {
|
|
3911
|
-
url: toPathString$
|
|
3911
|
+
url: toPathString$7(localVarUrlObj),
|
|
3912
3912
|
options: localVarRequestOptions,
|
|
3913
3913
|
};
|
|
3914
3914
|
}),
|
|
@@ -3925,7 +3925,7 @@
|
|
|
3925
3925
|
const localVarPath = `/Organization/-/isMember/{url}`
|
|
3926
3926
|
.replace(`{${"url"}}`, encodeURIComponent(String(url)));
|
|
3927
3927
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3928
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3928
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3929
3929
|
let baseOptions;
|
|
3930
3930
|
if (configuration) {
|
|
3931
3931
|
baseOptions = configuration.baseOptions;
|
|
@@ -3934,12 +3934,12 @@
|
|
|
3934
3934
|
const localVarHeaderParameter = {};
|
|
3935
3935
|
const localVarQueryParameter = {};
|
|
3936
3936
|
// authentication JWT token required
|
|
3937
|
-
yield setApiKeyToObject$
|
|
3938
|
-
setSearchParams$
|
|
3937
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3938
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3939
3939
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3940
3940
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3941
3941
|
return {
|
|
3942
|
-
url: toPathString$
|
|
3942
|
+
url: toPathString$7(localVarUrlObj),
|
|
3943
3943
|
options: localVarRequestOptions,
|
|
3944
3944
|
};
|
|
3945
3945
|
}),
|
|
@@ -3952,7 +3952,7 @@
|
|
|
3952
3952
|
organizationIsMember2: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3953
3953
|
const localVarPath = `/Organization/-/isMember`;
|
|
3954
3954
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3955
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3955
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3956
3956
|
let baseOptions;
|
|
3957
3957
|
if (configuration) {
|
|
3958
3958
|
baseOptions = configuration.baseOptions;
|
|
@@ -3961,12 +3961,12 @@
|
|
|
3961
3961
|
const localVarHeaderParameter = {};
|
|
3962
3962
|
const localVarQueryParameter = {};
|
|
3963
3963
|
// authentication JWT token required
|
|
3964
|
-
yield setApiKeyToObject$
|
|
3965
|
-
setSearchParams$
|
|
3964
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3965
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3966
3966
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3967
3967
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3968
3968
|
return {
|
|
3969
|
-
url: toPathString$
|
|
3969
|
+
url: toPathString$7(localVarUrlObj),
|
|
3970
3970
|
options: localVarRequestOptions,
|
|
3971
3971
|
};
|
|
3972
3972
|
}),
|
|
@@ -3989,7 +3989,7 @@
|
|
|
3989
3989
|
organizationGetOrganization(url, options) {
|
|
3990
3990
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3991
3991
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationGetOrganization(url, options);
|
|
3992
|
-
return createRequestFunction$
|
|
3992
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
3993
3993
|
});
|
|
3994
3994
|
},
|
|
3995
3995
|
/**
|
|
@@ -4002,7 +4002,7 @@
|
|
|
4002
4002
|
organizationGetROR(filter, options) {
|
|
4003
4003
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4004
4004
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationGetROR(filter, options);
|
|
4005
|
-
return createRequestFunction$
|
|
4005
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
4006
4006
|
});
|
|
4007
4007
|
},
|
|
4008
4008
|
/**
|
|
@@ -4016,7 +4016,7 @@
|
|
|
4016
4016
|
organizationIndex(member, filter, options) {
|
|
4017
4017
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4018
4018
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationIndex(member, filter, options);
|
|
4019
|
-
return createRequestFunction$
|
|
4019
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
4020
4020
|
});
|
|
4021
4021
|
},
|
|
4022
4022
|
/**
|
|
@@ -4029,7 +4029,7 @@
|
|
|
4029
4029
|
organizationIsMember(url, options) {
|
|
4030
4030
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4031
4031
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationIsMember(url, options);
|
|
4032
|
-
return createRequestFunction$
|
|
4032
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
4033
4033
|
});
|
|
4034
4034
|
},
|
|
4035
4035
|
/**
|
|
@@ -4041,7 +4041,7 @@
|
|
|
4041
4041
|
organizationIsMember2(options) {
|
|
4042
4042
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4043
4043
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationIsMember2(options);
|
|
4044
|
-
return createRequestFunction$
|
|
4044
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
4045
4045
|
});
|
|
4046
4046
|
},
|
|
4047
4047
|
};
|
|
@@ -4107,7 +4107,7 @@
|
|
|
4107
4107
|
};
|
|
4108
4108
|
|
|
4109
4109
|
/* tslint:disable */
|
|
4110
|
-
const BASE_PATH$
|
|
4110
|
+
const BASE_PATH$6 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Project".replace(/\/+$/, "");
|
|
4111
4111
|
/**
|
|
4112
4112
|
*
|
|
4113
4113
|
* @export
|
|
@@ -4127,7 +4127,7 @@
|
|
|
4127
4127
|
*
|
|
4128
4128
|
* @export
|
|
4129
4129
|
*/
|
|
4130
|
-
const DUMMY_BASE_URL$
|
|
4130
|
+
const DUMMY_BASE_URL$6 = 'https://example.com';
|
|
4131
4131
|
/**
|
|
4132
4132
|
*
|
|
4133
4133
|
* @throws {RequiredError}
|
|
@@ -4142,7 +4142,7 @@
|
|
|
4142
4142
|
*
|
|
4143
4143
|
* @export
|
|
4144
4144
|
*/
|
|
4145
|
-
const setApiKeyToObject$
|
|
4145
|
+
const setApiKeyToObject$6 = function (object, keyParamName, configuration) {
|
|
4146
4146
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4147
4147
|
if (configuration && configuration.apiKey) {
|
|
4148
4148
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -4156,7 +4156,7 @@
|
|
|
4156
4156
|
*
|
|
4157
4157
|
* @export
|
|
4158
4158
|
*/
|
|
4159
|
-
const setSearchParams$
|
|
4159
|
+
const setSearchParams$6 = function (url, ...objects) {
|
|
4160
4160
|
const searchParams = new URLSearchParams(url.search);
|
|
4161
4161
|
for (const object of objects) {
|
|
4162
4162
|
for (const key in object) {
|
|
@@ -4190,14 +4190,14 @@
|
|
|
4190
4190
|
*
|
|
4191
4191
|
* @export
|
|
4192
4192
|
*/
|
|
4193
|
-
const toPathString$
|
|
4193
|
+
const toPathString$6 = function (url) {
|
|
4194
4194
|
return url.pathname + url.search + url.hash;
|
|
4195
4195
|
};
|
|
4196
4196
|
/**
|
|
4197
4197
|
*
|
|
4198
4198
|
* @export
|
|
4199
4199
|
*/
|
|
4200
|
-
const createRequestFunction$
|
|
4200
|
+
const createRequestFunction$6 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
4201
4201
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
4202
4202
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
4203
4203
|
return axios.request(axiosRequestArgs);
|
|
@@ -4220,7 +4220,7 @@
|
|
|
4220
4220
|
disciplineIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4221
4221
|
const localVarPath = `/Discipline`;
|
|
4222
4222
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4223
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4223
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4224
4224
|
let baseOptions;
|
|
4225
4225
|
if (configuration) {
|
|
4226
4226
|
baseOptions = configuration.baseOptions;
|
|
@@ -4229,12 +4229,12 @@
|
|
|
4229
4229
|
const localVarHeaderParameter = {};
|
|
4230
4230
|
const localVarQueryParameter = {};
|
|
4231
4231
|
// authentication JWT token required
|
|
4232
|
-
yield setApiKeyToObject$
|
|
4233
|
-
setSearchParams$
|
|
4232
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4233
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4234
4234
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4235
4235
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4236
4236
|
return {
|
|
4237
|
-
url: toPathString$
|
|
4237
|
+
url: toPathString$6(localVarUrlObj),
|
|
4238
4238
|
options: localVarRequestOptions,
|
|
4239
4239
|
};
|
|
4240
4240
|
}),
|
|
@@ -4256,7 +4256,7 @@
|
|
|
4256
4256
|
disciplineIndex(options) {
|
|
4257
4257
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4258
4258
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.disciplineIndex(options);
|
|
4259
|
-
return createRequestFunction$
|
|
4259
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4260
4260
|
});
|
|
4261
4261
|
},
|
|
4262
4262
|
};
|
|
@@ -4294,7 +4294,7 @@
|
|
|
4294
4294
|
licenseIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4295
4295
|
const localVarPath = `/License`;
|
|
4296
4296
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4297
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4297
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4298
4298
|
let baseOptions;
|
|
4299
4299
|
if (configuration) {
|
|
4300
4300
|
baseOptions = configuration.baseOptions;
|
|
@@ -4303,12 +4303,12 @@
|
|
|
4303
4303
|
const localVarHeaderParameter = {};
|
|
4304
4304
|
const localVarQueryParameter = {};
|
|
4305
4305
|
// authentication JWT token required
|
|
4306
|
-
yield setApiKeyToObject$
|
|
4307
|
-
setSearchParams$
|
|
4306
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4307
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4308
4308
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4309
4309
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4310
4310
|
return {
|
|
4311
|
-
url: toPathString$
|
|
4311
|
+
url: toPathString$6(localVarUrlObj),
|
|
4312
4312
|
options: localVarRequestOptions,
|
|
4313
4313
|
};
|
|
4314
4314
|
}),
|
|
@@ -4330,7 +4330,7 @@
|
|
|
4330
4330
|
licenseIndex(options) {
|
|
4331
4331
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4332
4332
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.licenseIndex(options);
|
|
4333
|
-
return createRequestFunction$
|
|
4333
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4334
4334
|
});
|
|
4335
4335
|
},
|
|
4336
4336
|
};
|
|
@@ -4372,7 +4372,7 @@
|
|
|
4372
4372
|
const localVarPath = `/Project/{id}`
|
|
4373
4373
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
4374
4374
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4375
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4375
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4376
4376
|
let baseOptions;
|
|
4377
4377
|
if (configuration) {
|
|
4378
4378
|
baseOptions = configuration.baseOptions;
|
|
@@ -4381,12 +4381,12 @@
|
|
|
4381
4381
|
const localVarHeaderParameter = {};
|
|
4382
4382
|
const localVarQueryParameter = {};
|
|
4383
4383
|
// authentication JWT token required
|
|
4384
|
-
yield setApiKeyToObject$
|
|
4385
|
-
setSearchParams$
|
|
4384
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4385
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4386
4386
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4387
4387
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4388
4388
|
return {
|
|
4389
|
-
url: toPathString$
|
|
4389
|
+
url: toPathString$6(localVarUrlObj),
|
|
4390
4390
|
options: localVarRequestOptions,
|
|
4391
4391
|
};
|
|
4392
4392
|
}),
|
|
@@ -4403,7 +4403,7 @@
|
|
|
4403
4403
|
const localVarPath = `/Project/invitation/{invitationId}`
|
|
4404
4404
|
.replace(`{${"invitationId"}}`, encodeURIComponent(String(invitationId)));
|
|
4405
4405
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4406
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4406
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4407
4407
|
let baseOptions;
|
|
4408
4408
|
if (configuration) {
|
|
4409
4409
|
baseOptions = configuration.baseOptions;
|
|
@@ -4412,12 +4412,12 @@
|
|
|
4412
4412
|
const localVarHeaderParameter = {};
|
|
4413
4413
|
const localVarQueryParameter = {};
|
|
4414
4414
|
// authentication JWT token required
|
|
4415
|
-
yield setApiKeyToObject$
|
|
4416
|
-
setSearchParams$
|
|
4415
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4416
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4417
4417
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4418
4418
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4419
4419
|
return {
|
|
4420
|
-
url: toPathString$
|
|
4420
|
+
url: toPathString$6(localVarUrlObj),
|
|
4421
4421
|
options: localVarRequestOptions,
|
|
4422
4422
|
};
|
|
4423
4423
|
}),
|
|
@@ -4434,7 +4434,7 @@
|
|
|
4434
4434
|
const localVarPath = `/Project/{id}`
|
|
4435
4435
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
4436
4436
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4437
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4437
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4438
4438
|
let baseOptions;
|
|
4439
4439
|
if (configuration) {
|
|
4440
4440
|
baseOptions = configuration.baseOptions;
|
|
@@ -4443,12 +4443,12 @@
|
|
|
4443
4443
|
const localVarHeaderParameter = {};
|
|
4444
4444
|
const localVarQueryParameter = {};
|
|
4445
4445
|
// authentication JWT token required
|
|
4446
|
-
yield setApiKeyToObject$
|
|
4447
|
-
setSearchParams$
|
|
4446
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4447
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4448
4448
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4449
4449
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4450
4450
|
return {
|
|
4451
|
-
url: toPathString$
|
|
4451
|
+
url: toPathString$6(localVarUrlObj),
|
|
4452
4452
|
options: localVarRequestOptions,
|
|
4453
4453
|
};
|
|
4454
4454
|
}),
|
|
@@ -4469,7 +4469,7 @@
|
|
|
4469
4469
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
4470
4470
|
.replace(`{${"resourceTypeId"}}`, encodeURIComponent(String(resourceTypeId)));
|
|
4471
4471
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4472
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4472
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4473
4473
|
let baseOptions;
|
|
4474
4474
|
if (configuration) {
|
|
4475
4475
|
baseOptions = configuration.baseOptions;
|
|
@@ -4478,12 +4478,12 @@
|
|
|
4478
4478
|
const localVarHeaderParameter = {};
|
|
4479
4479
|
const localVarQueryParameter = {};
|
|
4480
4480
|
// authentication JWT token required
|
|
4481
|
-
yield setApiKeyToObject$
|
|
4482
|
-
setSearchParams$
|
|
4481
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4482
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4483
4483
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4484
4484
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4485
4485
|
return {
|
|
4486
|
-
url: toPathString$
|
|
4486
|
+
url: toPathString$6(localVarUrlObj),
|
|
4487
4487
|
options: localVarRequestOptions,
|
|
4488
4488
|
};
|
|
4489
4489
|
}),
|
|
@@ -4500,7 +4500,7 @@
|
|
|
4500
4500
|
const localVarPath = `/Project/{id}/resources`
|
|
4501
4501
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
4502
4502
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4503
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4503
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4504
4504
|
let baseOptions;
|
|
4505
4505
|
if (configuration) {
|
|
4506
4506
|
baseOptions = configuration.baseOptions;
|
|
@@ -4509,12 +4509,12 @@
|
|
|
4509
4509
|
const localVarHeaderParameter = {};
|
|
4510
4510
|
const localVarQueryParameter = {};
|
|
4511
4511
|
// authentication JWT token required
|
|
4512
|
-
yield setApiKeyToObject$
|
|
4513
|
-
setSearchParams$
|
|
4512
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4513
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4514
4514
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4515
4515
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4516
4516
|
return {
|
|
4517
|
-
url: toPathString$
|
|
4517
|
+
url: toPathString$6(localVarUrlObj),
|
|
4518
4518
|
options: localVarRequestOptions,
|
|
4519
4519
|
};
|
|
4520
4520
|
}),
|
|
@@ -4527,7 +4527,7 @@
|
|
|
4527
4527
|
projectGetTopLevelProjects: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4528
4528
|
const localVarPath = `/Project/-/topLevel`;
|
|
4529
4529
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4530
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4530
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4531
4531
|
let baseOptions;
|
|
4532
4532
|
if (configuration) {
|
|
4533
4533
|
baseOptions = configuration.baseOptions;
|
|
@@ -4536,12 +4536,12 @@
|
|
|
4536
4536
|
const localVarHeaderParameter = {};
|
|
4537
4537
|
const localVarQueryParameter = {};
|
|
4538
4538
|
// authentication JWT token required
|
|
4539
|
-
yield setApiKeyToObject$
|
|
4540
|
-
setSearchParams$
|
|
4539
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4540
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4541
4541
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4542
4542
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4543
4543
|
return {
|
|
4544
|
-
url: toPathString$
|
|
4544
|
+
url: toPathString$6(localVarUrlObj),
|
|
4545
4545
|
options: localVarRequestOptions,
|
|
4546
4546
|
};
|
|
4547
4547
|
}),
|
|
@@ -4554,7 +4554,7 @@
|
|
|
4554
4554
|
projectIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4555
4555
|
const localVarPath = `/Project`;
|
|
4556
4556
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4557
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4557
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4558
4558
|
let baseOptions;
|
|
4559
4559
|
if (configuration) {
|
|
4560
4560
|
baseOptions = configuration.baseOptions;
|
|
@@ -4563,12 +4563,12 @@
|
|
|
4563
4563
|
const localVarHeaderParameter = {};
|
|
4564
4564
|
const localVarQueryParameter = {};
|
|
4565
4565
|
// authentication JWT token required
|
|
4566
|
-
yield setApiKeyToObject$
|
|
4567
|
-
setSearchParams$
|
|
4566
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4567
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4568
4568
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4569
4569
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4570
4570
|
return {
|
|
4571
|
-
url: toPathString$
|
|
4571
|
+
url: toPathString$6(localVarUrlObj),
|
|
4572
4572
|
options: localVarRequestOptions,
|
|
4573
4573
|
};
|
|
4574
4574
|
}),
|
|
@@ -4585,7 +4585,7 @@
|
|
|
4585
4585
|
const localVarPath = `/Project/invitation/list/{projectId}`
|
|
4586
4586
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
4587
4587
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4588
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4588
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4589
4589
|
let baseOptions;
|
|
4590
4590
|
if (configuration) {
|
|
4591
4591
|
baseOptions = configuration.baseOptions;
|
|
@@ -4594,12 +4594,12 @@
|
|
|
4594
4594
|
const localVarHeaderParameter = {};
|
|
4595
4595
|
const localVarQueryParameter = {};
|
|
4596
4596
|
// authentication JWT token required
|
|
4597
|
-
yield setApiKeyToObject$
|
|
4598
|
-
setSearchParams$
|
|
4597
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4598
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4599
4599
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4600
4600
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4601
4601
|
return {
|
|
4602
|
-
url: toPathString$
|
|
4602
|
+
url: toPathString$6(localVarUrlObj),
|
|
4603
4603
|
options: localVarRequestOptions,
|
|
4604
4604
|
};
|
|
4605
4605
|
}),
|
|
@@ -4620,7 +4620,7 @@
|
|
|
4620
4620
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
4621
4621
|
.replace(`{${"resourceTypeId"}}`, encodeURIComponent(String(resourceTypeId)));
|
|
4622
4622
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4623
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4623
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4624
4624
|
let baseOptions;
|
|
4625
4625
|
if (configuration) {
|
|
4626
4626
|
baseOptions = configuration.baseOptions;
|
|
@@ -4629,12 +4629,12 @@
|
|
|
4629
4629
|
const localVarHeaderParameter = {};
|
|
4630
4630
|
const localVarQueryParameter = {};
|
|
4631
4631
|
// authentication JWT token required
|
|
4632
|
-
yield setApiKeyToObject$
|
|
4633
|
-
setSearchParams$
|
|
4632
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4633
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4634
4634
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4635
4635
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4636
4636
|
return {
|
|
4637
|
-
url: toPathString$
|
|
4637
|
+
url: toPathString$6(localVarUrlObj),
|
|
4638
4638
|
options: localVarRequestOptions,
|
|
4639
4639
|
};
|
|
4640
4640
|
}),
|
|
@@ -4651,7 +4651,7 @@
|
|
|
4651
4651
|
const localVarPath = `/Project/{projectId}/quota/-/all`
|
|
4652
4652
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
4653
4653
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4654
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4654
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4655
4655
|
let baseOptions;
|
|
4656
4656
|
if (configuration) {
|
|
4657
4657
|
baseOptions = configuration.baseOptions;
|
|
@@ -4660,12 +4660,12 @@
|
|
|
4660
4660
|
const localVarHeaderParameter = {};
|
|
4661
4661
|
const localVarQueryParameter = {};
|
|
4662
4662
|
// authentication JWT token required
|
|
4663
|
-
yield setApiKeyToObject$
|
|
4664
|
-
setSearchParams$
|
|
4663
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4664
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4665
4665
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4666
4666
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4667
4667
|
return {
|
|
4668
|
-
url: toPathString$
|
|
4668
|
+
url: toPathString$6(localVarUrlObj),
|
|
4669
4669
|
options: localVarRequestOptions,
|
|
4670
4670
|
};
|
|
4671
4671
|
}),
|
|
@@ -4682,7 +4682,7 @@
|
|
|
4682
4682
|
const localVarPath = `/Project/invitation/resolve/{token}`
|
|
4683
4683
|
.replace(`{${"token"}}`, encodeURIComponent(String(token)));
|
|
4684
4684
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4685
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4685
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4686
4686
|
let baseOptions;
|
|
4687
4687
|
if (configuration) {
|
|
4688
4688
|
baseOptions = configuration.baseOptions;
|
|
@@ -4691,12 +4691,12 @@
|
|
|
4691
4691
|
const localVarHeaderParameter = {};
|
|
4692
4692
|
const localVarQueryParameter = {};
|
|
4693
4693
|
// authentication JWT token required
|
|
4694
|
-
yield setApiKeyToObject$
|
|
4695
|
-
setSearchParams$
|
|
4694
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4695
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4696
4696
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4697
4697
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4698
4698
|
return {
|
|
4699
|
-
url: toPathString$
|
|
4699
|
+
url: toPathString$6(localVarUrlObj),
|
|
4700
4700
|
options: localVarRequestOptions,
|
|
4701
4701
|
};
|
|
4702
4702
|
}),
|
|
@@ -4712,7 +4712,7 @@
|
|
|
4712
4712
|
assertParamExists$5('projectSendInvitation', 'sendInvitationObject', sendInvitationObject);
|
|
4713
4713
|
const localVarPath = `/Project/invitation`;
|
|
4714
4714
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4715
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4715
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4716
4716
|
let baseOptions;
|
|
4717
4717
|
if (configuration) {
|
|
4718
4718
|
baseOptions = configuration.baseOptions;
|
|
@@ -4721,14 +4721,14 @@
|
|
|
4721
4721
|
const localVarHeaderParameter = {};
|
|
4722
4722
|
const localVarQueryParameter = {};
|
|
4723
4723
|
// authentication JWT token required
|
|
4724
|
-
yield setApiKeyToObject$
|
|
4724
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4725
4725
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4726
|
-
setSearchParams$
|
|
4726
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4727
4727
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4728
4728
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4729
4729
|
localVarRequestOptions.data = serializeDataIfNeeded$4(sendInvitationObject, localVarRequestOptions, configuration);
|
|
4730
4730
|
return {
|
|
4731
|
-
url: toPathString$
|
|
4731
|
+
url: toPathString$6(localVarUrlObj),
|
|
4732
4732
|
options: localVarRequestOptions,
|
|
4733
4733
|
};
|
|
4734
4734
|
}),
|
|
@@ -4741,7 +4741,7 @@
|
|
|
4741
4741
|
projectStore: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4742
4742
|
const localVarPath = `/Project`;
|
|
4743
4743
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4744
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4744
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4745
4745
|
let baseOptions;
|
|
4746
4746
|
if (configuration) {
|
|
4747
4747
|
baseOptions = configuration.baseOptions;
|
|
@@ -4750,12 +4750,12 @@
|
|
|
4750
4750
|
const localVarHeaderParameter = {};
|
|
4751
4751
|
const localVarQueryParameter = {};
|
|
4752
4752
|
// authentication JWT token required
|
|
4753
|
-
yield setApiKeyToObject$
|
|
4754
|
-
setSearchParams$
|
|
4753
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4754
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4755
4755
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4756
4756
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4757
4757
|
return {
|
|
4758
|
-
url: toPathString$
|
|
4758
|
+
url: toPathString$6(localVarUrlObj),
|
|
4759
4759
|
options: localVarRequestOptions,
|
|
4760
4760
|
};
|
|
4761
4761
|
}),
|
|
@@ -4772,7 +4772,7 @@
|
|
|
4772
4772
|
const localVarPath = `/Project/{id}`
|
|
4773
4773
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
4774
4774
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4775
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4775
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4776
4776
|
let baseOptions;
|
|
4777
4777
|
if (configuration) {
|
|
4778
4778
|
baseOptions = configuration.baseOptions;
|
|
@@ -4781,12 +4781,12 @@
|
|
|
4781
4781
|
const localVarHeaderParameter = {};
|
|
4782
4782
|
const localVarQueryParameter = {};
|
|
4783
4783
|
// authentication JWT token required
|
|
4784
|
-
yield setApiKeyToObject$
|
|
4785
|
-
setSearchParams$
|
|
4784
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4785
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4786
4786
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4787
4787
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4788
4788
|
return {
|
|
4789
|
-
url: toPathString$
|
|
4789
|
+
url: toPathString$6(localVarUrlObj),
|
|
4790
4790
|
options: localVarRequestOptions,
|
|
4791
4791
|
};
|
|
4792
4792
|
}),
|
|
@@ -4810,7 +4810,7 @@
|
|
|
4810
4810
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
4811
4811
|
.replace(`{${"resourceTypeId"}}`, encodeURIComponent(String(resourceTypeId)));
|
|
4812
4812
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4813
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4813
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4814
4814
|
let baseOptions;
|
|
4815
4815
|
if (configuration) {
|
|
4816
4816
|
baseOptions = configuration.baseOptions;
|
|
@@ -4819,14 +4819,14 @@
|
|
|
4819
4819
|
const localVarHeaderParameter = {};
|
|
4820
4820
|
const localVarQueryParameter = {};
|
|
4821
4821
|
// authentication JWT token required
|
|
4822
|
-
yield setApiKeyToObject$
|
|
4822
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4823
4823
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4824
|
-
setSearchParams$
|
|
4824
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4825
4825
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4826
4826
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4827
4827
|
localVarRequestOptions.data = serializeDataIfNeeded$4(updateProjectQuotaObject, localVarRequestOptions, configuration);
|
|
4828
4828
|
return {
|
|
4829
|
-
url: toPathString$
|
|
4829
|
+
url: toPathString$6(localVarUrlObj),
|
|
4830
4830
|
options: localVarRequestOptions,
|
|
4831
4831
|
};
|
|
4832
4832
|
}),
|
|
@@ -4849,7 +4849,7 @@
|
|
|
4849
4849
|
projectDelete(id, options) {
|
|
4850
4850
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4851
4851
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectDelete(id, options);
|
|
4852
|
-
return createRequestFunction$
|
|
4852
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4853
4853
|
});
|
|
4854
4854
|
},
|
|
4855
4855
|
/**
|
|
@@ -4862,7 +4862,7 @@
|
|
|
4862
4862
|
projectDeleteInvitation(invitationId, options) {
|
|
4863
4863
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4864
4864
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectDeleteInvitation(invitationId, options);
|
|
4865
|
-
return createRequestFunction$
|
|
4865
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4866
4866
|
});
|
|
4867
4867
|
},
|
|
4868
4868
|
/**
|
|
@@ -4875,7 +4875,7 @@
|
|
|
4875
4875
|
projectGet(id, options) {
|
|
4876
4876
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4877
4877
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectGet(id, options);
|
|
4878
|
-
return createRequestFunction$
|
|
4878
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4879
4879
|
});
|
|
4880
4880
|
},
|
|
4881
4881
|
/**
|
|
@@ -4889,7 +4889,7 @@
|
|
|
4889
4889
|
projectGetQuotaMax(projectId, resourceTypeId, options) {
|
|
4890
4890
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4891
4891
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectGetQuotaMax(projectId, resourceTypeId, options);
|
|
4892
|
-
return createRequestFunction$
|
|
4892
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4893
4893
|
});
|
|
4894
4894
|
},
|
|
4895
4895
|
/**
|
|
@@ -4902,7 +4902,7 @@
|
|
|
4902
4902
|
projectGetResources(id, options) {
|
|
4903
4903
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4904
4904
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectGetResources(id, options);
|
|
4905
|
-
return createRequestFunction$
|
|
4905
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4906
4906
|
});
|
|
4907
4907
|
},
|
|
4908
4908
|
/**
|
|
@@ -4914,7 +4914,7 @@
|
|
|
4914
4914
|
projectGetTopLevelProjects(options) {
|
|
4915
4915
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4916
4916
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectGetTopLevelProjects(options);
|
|
4917
|
-
return createRequestFunction$
|
|
4917
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4918
4918
|
});
|
|
4919
4919
|
},
|
|
4920
4920
|
/**
|
|
@@ -4926,7 +4926,7 @@
|
|
|
4926
4926
|
projectIndex(options) {
|
|
4927
4927
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4928
4928
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectIndex(options);
|
|
4929
|
-
return createRequestFunction$
|
|
4929
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4930
4930
|
});
|
|
4931
4931
|
},
|
|
4932
4932
|
/**
|
|
@@ -4939,7 +4939,7 @@
|
|
|
4939
4939
|
projectListInvitations(projectId, options) {
|
|
4940
4940
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4941
4941
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectListInvitations(projectId, options);
|
|
4942
|
-
return createRequestFunction$
|
|
4942
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4943
4943
|
});
|
|
4944
4944
|
},
|
|
4945
4945
|
/**
|
|
@@ -4953,7 +4953,7 @@
|
|
|
4953
4953
|
projectQuota(projectId, resourceTypeId, options) {
|
|
4954
4954
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4955
4955
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectQuota(projectId, resourceTypeId, options);
|
|
4956
|
-
return createRequestFunction$
|
|
4956
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4957
4957
|
});
|
|
4958
4958
|
},
|
|
4959
4959
|
/**
|
|
@@ -4966,7 +4966,7 @@
|
|
|
4966
4966
|
projectQuotas(projectId, options) {
|
|
4967
4967
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4968
4968
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectQuotas(projectId, options);
|
|
4969
|
-
return createRequestFunction$
|
|
4969
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4970
4970
|
});
|
|
4971
4971
|
},
|
|
4972
4972
|
/**
|
|
@@ -4979,7 +4979,7 @@
|
|
|
4979
4979
|
projectResolveInvitation(token, options) {
|
|
4980
4980
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4981
4981
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectResolveInvitation(token, options);
|
|
4982
|
-
return createRequestFunction$
|
|
4982
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4983
4983
|
});
|
|
4984
4984
|
},
|
|
4985
4985
|
/**
|
|
@@ -4992,7 +4992,7 @@
|
|
|
4992
4992
|
projectSendInvitation(sendInvitationObject, options) {
|
|
4993
4993
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4994
4994
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectSendInvitation(sendInvitationObject, options);
|
|
4995
|
-
return createRequestFunction$
|
|
4995
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4996
4996
|
});
|
|
4997
4997
|
},
|
|
4998
4998
|
/**
|
|
@@ -5004,7 +5004,7 @@
|
|
|
5004
5004
|
projectStore(options) {
|
|
5005
5005
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5006
5006
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectStore(options);
|
|
5007
|
-
return createRequestFunction$
|
|
5007
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5008
5008
|
});
|
|
5009
5009
|
},
|
|
5010
5010
|
/**
|
|
@@ -5017,7 +5017,7 @@
|
|
|
5017
5017
|
projectUpdate(id, options) {
|
|
5018
5018
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5019
5019
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectUpdate(id, options);
|
|
5020
|
-
return createRequestFunction$
|
|
5020
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5021
5021
|
});
|
|
5022
5022
|
},
|
|
5023
5023
|
/**
|
|
@@ -5032,7 +5032,7 @@
|
|
|
5032
5032
|
projectUpdateQuota(projectId, resourceTypeId, updateProjectQuotaObject, options) {
|
|
5033
5033
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5034
5034
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectUpdateQuota(projectId, resourceTypeId, updateProjectQuotaObject, options);
|
|
5035
|
-
return createRequestFunction$
|
|
5035
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5036
5036
|
});
|
|
5037
5037
|
},
|
|
5038
5038
|
};
|
|
@@ -5224,7 +5224,7 @@
|
|
|
5224
5224
|
.replace(`{${"userId"}}`, encodeURIComponent(String(userId)))
|
|
5225
5225
|
.replace(`{${"roleId"}}`, encodeURIComponent(String(roleId)));
|
|
5226
5226
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5227
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5227
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5228
5228
|
let baseOptions;
|
|
5229
5229
|
if (configuration) {
|
|
5230
5230
|
baseOptions = configuration.baseOptions;
|
|
@@ -5233,12 +5233,12 @@
|
|
|
5233
5233
|
const localVarHeaderParameter = {};
|
|
5234
5234
|
const localVarQueryParameter = {};
|
|
5235
5235
|
// authentication JWT token required
|
|
5236
|
-
yield setApiKeyToObject$
|
|
5237
|
-
setSearchParams$
|
|
5236
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5237
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5238
5238
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5239
5239
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5240
5240
|
return {
|
|
5241
|
-
url: toPathString$
|
|
5241
|
+
url: toPathString$6(localVarUrlObj),
|
|
5242
5242
|
options: localVarRequestOptions,
|
|
5243
5243
|
};
|
|
5244
5244
|
}),
|
|
@@ -5255,7 +5255,7 @@
|
|
|
5255
5255
|
const localVarPath = `/ProjectRole/project/{projectId}/user`
|
|
5256
5256
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
5257
5257
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5258
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5258
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5259
5259
|
let baseOptions;
|
|
5260
5260
|
if (configuration) {
|
|
5261
5261
|
baseOptions = configuration.baseOptions;
|
|
@@ -5264,12 +5264,12 @@
|
|
|
5264
5264
|
const localVarHeaderParameter = {};
|
|
5265
5265
|
const localVarQueryParameter = {};
|
|
5266
5266
|
// authentication JWT token required
|
|
5267
|
-
yield setApiKeyToObject$
|
|
5268
|
-
setSearchParams$
|
|
5267
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5268
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5269
5269
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5270
5270
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5271
5271
|
return {
|
|
5272
|
-
url: toPathString$
|
|
5272
|
+
url: toPathString$6(localVarUrlObj),
|
|
5273
5273
|
options: localVarRequestOptions,
|
|
5274
5274
|
};
|
|
5275
5275
|
}),
|
|
@@ -5286,7 +5286,7 @@
|
|
|
5286
5286
|
const localVarPath = `/ProjectRole/project/{projectId}`
|
|
5287
5287
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
5288
5288
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5289
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5289
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5290
5290
|
let baseOptions;
|
|
5291
5291
|
if (configuration) {
|
|
5292
5292
|
baseOptions = configuration.baseOptions;
|
|
@@ -5295,12 +5295,12 @@
|
|
|
5295
5295
|
const localVarHeaderParameter = {};
|
|
5296
5296
|
const localVarQueryParameter = {};
|
|
5297
5297
|
// authentication JWT token required
|
|
5298
|
-
yield setApiKeyToObject$
|
|
5299
|
-
setSearchParams$
|
|
5298
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5299
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5300
5300
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5301
5301
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5302
5302
|
return {
|
|
5303
|
-
url: toPathString$
|
|
5303
|
+
url: toPathString$6(localVarUrlObj),
|
|
5304
5304
|
options: localVarRequestOptions,
|
|
5305
5305
|
};
|
|
5306
5306
|
}),
|
|
@@ -5317,7 +5317,7 @@
|
|
|
5317
5317
|
const localVarPath = `/ProjectRole/{projectId}`
|
|
5318
5318
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
5319
5319
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5320
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5320
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5321
5321
|
let baseOptions;
|
|
5322
5322
|
if (configuration) {
|
|
5323
5323
|
baseOptions = configuration.baseOptions;
|
|
@@ -5326,12 +5326,12 @@
|
|
|
5326
5326
|
const localVarHeaderParameter = {};
|
|
5327
5327
|
const localVarQueryParameter = {};
|
|
5328
5328
|
// authentication JWT token required
|
|
5329
|
-
yield setApiKeyToObject$
|
|
5330
|
-
setSearchParams$
|
|
5329
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5330
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5331
5331
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5332
5332
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5333
5333
|
return {
|
|
5334
|
-
url: toPathString$
|
|
5334
|
+
url: toPathString$6(localVarUrlObj),
|
|
5335
5335
|
options: localVarRequestOptions,
|
|
5336
5336
|
};
|
|
5337
5337
|
}),
|
|
@@ -5344,7 +5344,7 @@
|
|
|
5344
5344
|
projectRoleSet: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
5345
5345
|
const localVarPath = `/ProjectRole`;
|
|
5346
5346
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5347
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5347
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5348
5348
|
let baseOptions;
|
|
5349
5349
|
if (configuration) {
|
|
5350
5350
|
baseOptions = configuration.baseOptions;
|
|
@@ -5353,12 +5353,12 @@
|
|
|
5353
5353
|
const localVarHeaderParameter = {};
|
|
5354
5354
|
const localVarQueryParameter = {};
|
|
5355
5355
|
// authentication JWT token required
|
|
5356
|
-
yield setApiKeyToObject$
|
|
5357
|
-
setSearchParams$
|
|
5358
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5356
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5357
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5358
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5359
5359
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5360
5360
|
return {
|
|
5361
|
-
url: toPathString$
|
|
5361
|
+
url: toPathString$6(localVarUrlObj),
|
|
5362
5362
|
options: localVarRequestOptions,
|
|
5363
5363
|
};
|
|
5364
5364
|
}),
|
|
@@ -5383,7 +5383,7 @@
|
|
|
5383
5383
|
projectRoleDelete(projectId, userId, roleId, options) {
|
|
5384
5384
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5385
5385
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleDelete(projectId, userId, roleId, options);
|
|
5386
|
-
return createRequestFunction$
|
|
5386
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5387
5387
|
});
|
|
5388
5388
|
},
|
|
5389
5389
|
/**
|
|
@@ -5396,7 +5396,7 @@
|
|
|
5396
5396
|
projectRoleDelete2(projectId, options) {
|
|
5397
5397
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5398
5398
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleDelete2(projectId, options);
|
|
5399
|
-
return createRequestFunction$
|
|
5399
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5400
5400
|
});
|
|
5401
5401
|
},
|
|
5402
5402
|
/**
|
|
@@ -5409,7 +5409,7 @@
|
|
|
5409
5409
|
projectRoleGet(projectId, options) {
|
|
5410
5410
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5411
5411
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleGet(projectId, options);
|
|
5412
|
-
return createRequestFunction$
|
|
5412
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5413
5413
|
});
|
|
5414
5414
|
},
|
|
5415
5415
|
/**
|
|
@@ -5422,7 +5422,7 @@
|
|
|
5422
5422
|
projectRoleIndex(projectId, options) {
|
|
5423
5423
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5424
5424
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleIndex(projectId, options);
|
|
5425
|
-
return createRequestFunction$
|
|
5425
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5426
5426
|
});
|
|
5427
5427
|
},
|
|
5428
5428
|
/**
|
|
@@ -5434,7 +5434,7 @@
|
|
|
5434
5434
|
projectRoleSet(options) {
|
|
5435
5435
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5436
5436
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleSet(options);
|
|
5437
|
-
return createRequestFunction$
|
|
5437
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5438
5438
|
});
|
|
5439
5439
|
},
|
|
5440
5440
|
};
|
|
@@ -5514,7 +5514,7 @@
|
|
|
5514
5514
|
roleIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
5515
5515
|
const localVarPath = `/Role`;
|
|
5516
5516
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5517
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5517
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5518
5518
|
let baseOptions;
|
|
5519
5519
|
if (configuration) {
|
|
5520
5520
|
baseOptions = configuration.baseOptions;
|
|
@@ -5523,12 +5523,12 @@
|
|
|
5523
5523
|
const localVarHeaderParameter = {};
|
|
5524
5524
|
const localVarQueryParameter = {};
|
|
5525
5525
|
// authentication JWT token required
|
|
5526
|
-
yield setApiKeyToObject$
|
|
5527
|
-
setSearchParams$
|
|
5526
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5527
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5528
5528
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5529
5529
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5530
5530
|
return {
|
|
5531
|
-
url: toPathString$
|
|
5531
|
+
url: toPathString$6(localVarUrlObj),
|
|
5532
5532
|
options: localVarRequestOptions,
|
|
5533
5533
|
};
|
|
5534
5534
|
}),
|
|
@@ -5550,7 +5550,7 @@
|
|
|
5550
5550
|
roleIndex(options) {
|
|
5551
5551
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5552
5552
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.roleIndex(options);
|
|
5553
|
-
return createRequestFunction$
|
|
5553
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5554
5554
|
});
|
|
5555
5555
|
},
|
|
5556
5556
|
};
|
|
@@ -5592,7 +5592,7 @@
|
|
|
5592
5592
|
const localVarPath = `/Search/all/{encodedSearchWord}`
|
|
5593
5593
|
.replace(`{${"encodedSearchWord"}}`, encodeURIComponent(String(encodedSearchWord)));
|
|
5594
5594
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5595
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5595
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5596
5596
|
let baseOptions;
|
|
5597
5597
|
if (configuration) {
|
|
5598
5598
|
baseOptions = configuration.baseOptions;
|
|
@@ -5601,12 +5601,12 @@
|
|
|
5601
5601
|
const localVarHeaderParameter = {};
|
|
5602
5602
|
const localVarQueryParameter = {};
|
|
5603
5603
|
// authentication JWT token required
|
|
5604
|
-
yield setApiKeyToObject$
|
|
5605
|
-
setSearchParams$
|
|
5604
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5605
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5606
5606
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5607
5607
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5608
5608
|
return {
|
|
5609
|
-
url: toPathString$
|
|
5609
|
+
url: toPathString$6(localVarUrlObj),
|
|
5610
5610
|
options: localVarRequestOptions,
|
|
5611
5611
|
};
|
|
5612
5612
|
}),
|
|
@@ -5619,7 +5619,7 @@
|
|
|
5619
5619
|
searchSearchNoFilter: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
5620
5620
|
const localVarPath = `/Search/allNoFilter`;
|
|
5621
5621
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5622
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5622
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5623
5623
|
let baseOptions;
|
|
5624
5624
|
if (configuration) {
|
|
5625
5625
|
baseOptions = configuration.baseOptions;
|
|
@@ -5628,12 +5628,12 @@
|
|
|
5628
5628
|
const localVarHeaderParameter = {};
|
|
5629
5629
|
const localVarQueryParameter = {};
|
|
5630
5630
|
// authentication JWT token required
|
|
5631
|
-
yield setApiKeyToObject$
|
|
5632
|
-
setSearchParams$
|
|
5631
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5632
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5633
5633
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5634
5634
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5635
5635
|
return {
|
|
5636
|
-
url: toPathString$
|
|
5636
|
+
url: toPathString$6(localVarUrlObj),
|
|
5637
5637
|
options: localVarRequestOptions,
|
|
5638
5638
|
};
|
|
5639
5639
|
}),
|
|
@@ -5654,7 +5654,7 @@
|
|
|
5654
5654
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
5655
5655
|
.replace(`{${"encodedSearchWord"}}`, encodeURIComponent(String(encodedSearchWord)));
|
|
5656
5656
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5657
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5657
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5658
5658
|
let baseOptions;
|
|
5659
5659
|
if (configuration) {
|
|
5660
5660
|
baseOptions = configuration.baseOptions;
|
|
@@ -5663,12 +5663,12 @@
|
|
|
5663
5663
|
const localVarHeaderParameter = {};
|
|
5664
5664
|
const localVarQueryParameter = {};
|
|
5665
5665
|
// authentication JWT token required
|
|
5666
|
-
yield setApiKeyToObject$
|
|
5667
|
-
setSearchParams$
|
|
5666
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5667
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5668
5668
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5669
5669
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5670
5670
|
return {
|
|
5671
|
-
url: toPathString$
|
|
5671
|
+
url: toPathString$6(localVarUrlObj),
|
|
5672
5672
|
options: localVarRequestOptions,
|
|
5673
5673
|
};
|
|
5674
5674
|
}),
|
|
@@ -5685,7 +5685,7 @@
|
|
|
5685
5685
|
const localVarPath = `/Search/projectNoFilter/{projectId}`
|
|
5686
5686
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
5687
5687
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5688
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5688
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5689
5689
|
let baseOptions;
|
|
5690
5690
|
if (configuration) {
|
|
5691
5691
|
baseOptions = configuration.baseOptions;
|
|
@@ -5694,12 +5694,12 @@
|
|
|
5694
5694
|
const localVarHeaderParameter = {};
|
|
5695
5695
|
const localVarQueryParameter = {};
|
|
5696
5696
|
// authentication JWT token required
|
|
5697
|
-
yield setApiKeyToObject$
|
|
5698
|
-
setSearchParams$
|
|
5697
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5698
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5699
5699
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5700
5700
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5701
5701
|
return {
|
|
5702
|
-
url: toPathString$
|
|
5702
|
+
url: toPathString$6(localVarUrlObj),
|
|
5703
5703
|
options: localVarRequestOptions,
|
|
5704
5704
|
};
|
|
5705
5705
|
}),
|
|
@@ -5722,7 +5722,7 @@
|
|
|
5722
5722
|
searchSearch(encodedSearchWord, options) {
|
|
5723
5723
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5724
5724
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.searchSearch(encodedSearchWord, options);
|
|
5725
|
-
return createRequestFunction$
|
|
5725
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5726
5726
|
});
|
|
5727
5727
|
},
|
|
5728
5728
|
/**
|
|
@@ -5734,7 +5734,7 @@
|
|
|
5734
5734
|
searchSearchNoFilter(options) {
|
|
5735
5735
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5736
5736
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.searchSearchNoFilter(options);
|
|
5737
|
-
return createRequestFunction$
|
|
5737
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5738
5738
|
});
|
|
5739
5739
|
},
|
|
5740
5740
|
/**
|
|
@@ -5748,7 +5748,7 @@
|
|
|
5748
5748
|
searchSearchProject(projectId, encodedSearchWord, options) {
|
|
5749
5749
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5750
5750
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.searchSearchProject(projectId, encodedSearchWord, options);
|
|
5751
|
-
return createRequestFunction$
|
|
5751
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5752
5752
|
});
|
|
5753
5753
|
},
|
|
5754
5754
|
/**
|
|
@@ -5761,7 +5761,7 @@
|
|
|
5761
5761
|
searchSearchProjectNoFilter(projectId, options) {
|
|
5762
5762
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5763
5763
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.searchSearchProjectNoFilter(projectId, options);
|
|
5764
|
-
return createRequestFunction$
|
|
5764
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5765
5765
|
});
|
|
5766
5766
|
},
|
|
5767
5767
|
};
|
|
@@ -5834,7 +5834,7 @@
|
|
|
5834
5834
|
const localVarPath = `/SubProject/{parentId}`
|
|
5835
5835
|
.replace(`{${"parentId"}}`, encodeURIComponent(String(parentId)));
|
|
5836
5836
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5837
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5837
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5838
5838
|
let baseOptions;
|
|
5839
5839
|
if (configuration) {
|
|
5840
5840
|
baseOptions = configuration.baseOptions;
|
|
@@ -5843,12 +5843,12 @@
|
|
|
5843
5843
|
const localVarHeaderParameter = {};
|
|
5844
5844
|
const localVarQueryParameter = {};
|
|
5845
5845
|
// authentication JWT token required
|
|
5846
|
-
yield setApiKeyToObject$
|
|
5847
|
-
setSearchParams$
|
|
5846
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5847
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5848
5848
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5849
5849
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5850
5850
|
return {
|
|
5851
|
-
url: toPathString$
|
|
5851
|
+
url: toPathString$6(localVarUrlObj),
|
|
5852
5852
|
options: localVarRequestOptions,
|
|
5853
5853
|
};
|
|
5854
5854
|
}),
|
|
@@ -5865,7 +5865,7 @@
|
|
|
5865
5865
|
const localVarPath = `/SubProject/{childId}/accessibleParent`
|
|
5866
5866
|
.replace(`{${"childId"}}`, encodeURIComponent(String(childId)));
|
|
5867
5867
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5868
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5868
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5869
5869
|
let baseOptions;
|
|
5870
5870
|
if (configuration) {
|
|
5871
5871
|
baseOptions = configuration.baseOptions;
|
|
@@ -5874,12 +5874,12 @@
|
|
|
5874
5874
|
const localVarHeaderParameter = {};
|
|
5875
5875
|
const localVarQueryParameter = {};
|
|
5876
5876
|
// authentication JWT token required
|
|
5877
|
-
yield setApiKeyToObject$
|
|
5878
|
-
setSearchParams$
|
|
5877
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5878
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5879
5879
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5880
5880
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5881
5881
|
return {
|
|
5882
|
-
url: toPathString$
|
|
5882
|
+
url: toPathString$6(localVarUrlObj),
|
|
5883
5883
|
options: localVarRequestOptions,
|
|
5884
5884
|
};
|
|
5885
5885
|
}),
|
|
@@ -5902,7 +5902,7 @@
|
|
|
5902
5902
|
subProjectGet(parentId, options) {
|
|
5903
5903
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5904
5904
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.subProjectGet(parentId, options);
|
|
5905
|
-
return createRequestFunction$
|
|
5905
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5906
5906
|
});
|
|
5907
5907
|
},
|
|
5908
5908
|
/**
|
|
@@ -5915,7 +5915,7 @@
|
|
|
5915
5915
|
subProjectGetAccessibleParent(childId, options) {
|
|
5916
5916
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5917
5917
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.subProjectGetAccessibleParent(childId, options);
|
|
5918
|
-
return createRequestFunction$
|
|
5918
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5919
5919
|
});
|
|
5920
5920
|
},
|
|
5921
5921
|
};
|
|
@@ -5964,7 +5964,7 @@
|
|
|
5964
5964
|
visibilityIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
5965
5965
|
const localVarPath = `/Visibility`;
|
|
5966
5966
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5967
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5967
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5968
5968
|
let baseOptions;
|
|
5969
5969
|
if (configuration) {
|
|
5970
5970
|
baseOptions = configuration.baseOptions;
|
|
@@ -5973,12 +5973,12 @@
|
|
|
5973
5973
|
const localVarHeaderParameter = {};
|
|
5974
5974
|
const localVarQueryParameter = {};
|
|
5975
5975
|
// authentication JWT token required
|
|
5976
|
-
yield setApiKeyToObject$
|
|
5977
|
-
setSearchParams$
|
|
5976
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5977
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5978
5978
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5979
5979
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5980
5980
|
return {
|
|
5981
|
-
url: toPathString$
|
|
5981
|
+
url: toPathString$6(localVarUrlObj),
|
|
5982
5982
|
options: localVarRequestOptions,
|
|
5983
5983
|
};
|
|
5984
5984
|
}),
|
|
@@ -6000,7 +6000,7 @@
|
|
|
6000
6000
|
visibilityIndex(options) {
|
|
6001
6001
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6002
6002
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.visibilityIndex(options);
|
|
6003
|
-
return createRequestFunction$
|
|
6003
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
6004
6004
|
});
|
|
6005
6005
|
},
|
|
6006
6006
|
};
|
|
@@ -6025,7 +6025,7 @@
|
|
|
6025
6025
|
};
|
|
6026
6026
|
|
|
6027
6027
|
/* tslint:disable */
|
|
6028
|
-
const BASE_PATH$
|
|
6028
|
+
const BASE_PATH$5 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Quota".replace(/\/+$/, "");
|
|
6029
6029
|
/**
|
|
6030
6030
|
*
|
|
6031
6031
|
* @export
|
|
@@ -6045,7 +6045,7 @@
|
|
|
6045
6045
|
*
|
|
6046
6046
|
* @export
|
|
6047
6047
|
*/
|
|
6048
|
-
const DUMMY_BASE_URL$
|
|
6048
|
+
const DUMMY_BASE_URL$5 = 'https://example.com';
|
|
6049
6049
|
/**
|
|
6050
6050
|
*
|
|
6051
6051
|
* @throws {RequiredError}
|
|
@@ -6060,7 +6060,7 @@
|
|
|
6060
6060
|
*
|
|
6061
6061
|
* @export
|
|
6062
6062
|
*/
|
|
6063
|
-
const setApiKeyToObject$
|
|
6063
|
+
const setApiKeyToObject$5 = function (object, keyParamName, configuration) {
|
|
6064
6064
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6065
6065
|
if (configuration && configuration.apiKey) {
|
|
6066
6066
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -6074,7 +6074,7 @@
|
|
|
6074
6074
|
*
|
|
6075
6075
|
* @export
|
|
6076
6076
|
*/
|
|
6077
|
-
const setSearchParams$
|
|
6077
|
+
const setSearchParams$5 = function (url, ...objects) {
|
|
6078
6078
|
const searchParams = new URLSearchParams(url.search);
|
|
6079
6079
|
for (const object of objects) {
|
|
6080
6080
|
for (const key in object) {
|
|
@@ -6108,14 +6108,14 @@
|
|
|
6108
6108
|
*
|
|
6109
6109
|
* @export
|
|
6110
6110
|
*/
|
|
6111
|
-
const toPathString$
|
|
6111
|
+
const toPathString$5 = function (url) {
|
|
6112
6112
|
return url.pathname + url.search + url.hash;
|
|
6113
6113
|
};
|
|
6114
6114
|
/**
|
|
6115
6115
|
*
|
|
6116
6116
|
* @export
|
|
6117
6117
|
*/
|
|
6118
|
-
const createRequestFunction$
|
|
6118
|
+
const createRequestFunction$5 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
6119
6119
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
6120
6120
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
6121
6121
|
return axios.request(axiosRequestArgs);
|
|
@@ -6142,7 +6142,7 @@
|
|
|
6142
6142
|
const localVarPath = `/Quota/{resourceId}`
|
|
6143
6143
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
6144
6144
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6145
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6145
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$5);
|
|
6146
6146
|
let baseOptions;
|
|
6147
6147
|
if (configuration) {
|
|
6148
6148
|
baseOptions = configuration.baseOptions;
|
|
@@ -6151,12 +6151,12 @@
|
|
|
6151
6151
|
const localVarHeaderParameter = {};
|
|
6152
6152
|
const localVarQueryParameter = {};
|
|
6153
6153
|
// authentication JWT token required
|
|
6154
|
-
yield setApiKeyToObject$
|
|
6155
|
-
setSearchParams$
|
|
6154
|
+
yield setApiKeyToObject$5(localVarHeaderParameter, "Authorization", configuration);
|
|
6155
|
+
setSearchParams$5(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6156
6156
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6157
6157
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6158
6158
|
return {
|
|
6159
|
-
url: toPathString$
|
|
6159
|
+
url: toPathString$5(localVarUrlObj),
|
|
6160
6160
|
options: localVarRequestOptions,
|
|
6161
6161
|
};
|
|
6162
6162
|
}),
|
|
@@ -6177,7 +6177,7 @@
|
|
|
6177
6177
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
6178
6178
|
.replace(`{${"resourceTypeId"}}`, encodeURIComponent(String(resourceTypeId)));
|
|
6179
6179
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6180
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6180
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$5);
|
|
6181
6181
|
let baseOptions;
|
|
6182
6182
|
if (configuration) {
|
|
6183
6183
|
baseOptions = configuration.baseOptions;
|
|
@@ -6186,12 +6186,12 @@
|
|
|
6186
6186
|
const localVarHeaderParameter = {};
|
|
6187
6187
|
const localVarQueryParameter = {};
|
|
6188
6188
|
// authentication JWT token required
|
|
6189
|
-
yield setApiKeyToObject$
|
|
6190
|
-
setSearchParams$
|
|
6189
|
+
yield setApiKeyToObject$5(localVarHeaderParameter, "Authorization", configuration);
|
|
6190
|
+
setSearchParams$5(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6191
6191
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6192
6192
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6193
6193
|
return {
|
|
6194
|
-
url: toPathString$
|
|
6194
|
+
url: toPathString$5(localVarUrlObj),
|
|
6195
6195
|
options: localVarRequestOptions,
|
|
6196
6196
|
};
|
|
6197
6197
|
}),
|
|
@@ -6211,7 +6211,7 @@
|
|
|
6211
6211
|
const localVarPath = `/Quota/{resourceId}`
|
|
6212
6212
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
6213
6213
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6214
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6214
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$5);
|
|
6215
6215
|
let baseOptions;
|
|
6216
6216
|
if (configuration) {
|
|
6217
6217
|
baseOptions = configuration.baseOptions;
|
|
@@ -6220,14 +6220,14 @@
|
|
|
6220
6220
|
const localVarHeaderParameter = {};
|
|
6221
6221
|
const localVarQueryParameter = {};
|
|
6222
6222
|
// authentication JWT token required
|
|
6223
|
-
yield setApiKeyToObject$
|
|
6223
|
+
yield setApiKeyToObject$5(localVarHeaderParameter, "Authorization", configuration);
|
|
6224
6224
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6225
|
-
setSearchParams$
|
|
6225
|
+
setSearchParams$5(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6226
6226
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6227
6227
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6228
6228
|
localVarRequestOptions.data = serializeDataIfNeeded$3(updateResourceObject, localVarRequestOptions, configuration);
|
|
6229
6229
|
return {
|
|
6230
|
-
url: toPathString$
|
|
6230
|
+
url: toPathString$5(localVarUrlObj),
|
|
6231
6231
|
options: localVarRequestOptions,
|
|
6232
6232
|
};
|
|
6233
6233
|
}),
|
|
@@ -6250,7 +6250,7 @@
|
|
|
6250
6250
|
quotaGetResourceQuota(resourceId, options) {
|
|
6251
6251
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6252
6252
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.quotaGetResourceQuota(resourceId, options);
|
|
6253
|
-
return createRequestFunction$
|
|
6253
|
+
return createRequestFunction$5(localVarAxiosArgs, axios, BASE_PATH$5, configuration);
|
|
6254
6254
|
});
|
|
6255
6255
|
},
|
|
6256
6256
|
/**
|
|
@@ -6264,7 +6264,7 @@
|
|
|
6264
6264
|
quotaGetResourceQuotas(projectId, resourceTypeId, options) {
|
|
6265
6265
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6266
6266
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.quotaGetResourceQuotas(projectId, resourceTypeId, options);
|
|
6267
|
-
return createRequestFunction$
|
|
6267
|
+
return createRequestFunction$5(localVarAxiosArgs, axios, BASE_PATH$5, configuration);
|
|
6268
6268
|
});
|
|
6269
6269
|
},
|
|
6270
6270
|
/**
|
|
@@ -6278,7 +6278,7 @@
|
|
|
6278
6278
|
quotaUpdateResourceQuota(resourceId, updateResourceObject, options) {
|
|
6279
6279
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6280
6280
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.quotaUpdateResourceQuota(resourceId, updateResourceObject, options);
|
|
6281
|
-
return createRequestFunction$
|
|
6281
|
+
return createRequestFunction$5(localVarAxiosArgs, axios, BASE_PATH$5, configuration);
|
|
6282
6282
|
});
|
|
6283
6283
|
},
|
|
6284
6284
|
};
|
|
@@ -6326,7 +6326,7 @@
|
|
|
6326
6326
|
};
|
|
6327
6327
|
|
|
6328
6328
|
/* tslint:disable */
|
|
6329
|
-
const BASE_PATH$
|
|
6329
|
+
const BASE_PATH$4 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Resources".replace(/\/+$/, "");
|
|
6330
6330
|
/**
|
|
6331
6331
|
*
|
|
6332
6332
|
* @export
|
|
@@ -6346,7 +6346,7 @@
|
|
|
6346
6346
|
*
|
|
6347
6347
|
* @export
|
|
6348
6348
|
*/
|
|
6349
|
-
const DUMMY_BASE_URL$
|
|
6349
|
+
const DUMMY_BASE_URL$4 = 'https://example.com';
|
|
6350
6350
|
/**
|
|
6351
6351
|
*
|
|
6352
6352
|
* @throws {RequiredError}
|
|
@@ -6361,7 +6361,7 @@
|
|
|
6361
6361
|
*
|
|
6362
6362
|
* @export
|
|
6363
6363
|
*/
|
|
6364
|
-
const setApiKeyToObject$
|
|
6364
|
+
const setApiKeyToObject$4 = function (object, keyParamName, configuration) {
|
|
6365
6365
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6366
6366
|
if (configuration && configuration.apiKey) {
|
|
6367
6367
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -6375,7 +6375,7 @@
|
|
|
6375
6375
|
*
|
|
6376
6376
|
* @export
|
|
6377
6377
|
*/
|
|
6378
|
-
const setSearchParams$
|
|
6378
|
+
const setSearchParams$4 = function (url, ...objects) {
|
|
6379
6379
|
const searchParams = new URLSearchParams(url.search);
|
|
6380
6380
|
for (const object of objects) {
|
|
6381
6381
|
for (const key in object) {
|
|
@@ -6409,14 +6409,14 @@
|
|
|
6409
6409
|
*
|
|
6410
6410
|
* @export
|
|
6411
6411
|
*/
|
|
6412
|
-
const toPathString$
|
|
6412
|
+
const toPathString$4 = function (url) {
|
|
6413
6413
|
return url.pathname + url.search + url.hash;
|
|
6414
6414
|
};
|
|
6415
6415
|
/**
|
|
6416
6416
|
*
|
|
6417
6417
|
* @export
|
|
6418
6418
|
*/
|
|
6419
|
-
const createRequestFunction$
|
|
6419
|
+
const createRequestFunction$4 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
6420
6420
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
6421
6421
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
6422
6422
|
return axios.request(axiosRequestArgs);
|
|
@@ -6443,7 +6443,7 @@
|
|
|
6443
6443
|
const localVarPath = `/Resource/{id}`
|
|
6444
6444
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6445
6445
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6446
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6446
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6447
6447
|
let baseOptions;
|
|
6448
6448
|
if (configuration) {
|
|
6449
6449
|
baseOptions = configuration.baseOptions;
|
|
@@ -6452,12 +6452,12 @@
|
|
|
6452
6452
|
const localVarHeaderParameter = {};
|
|
6453
6453
|
const localVarQueryParameter = {};
|
|
6454
6454
|
// authentication JWT token required
|
|
6455
|
-
yield setApiKeyToObject$
|
|
6456
|
-
setSearchParams$
|
|
6455
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6456
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6457
6457
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6458
6458
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6459
6459
|
return {
|
|
6460
|
-
url: toPathString$
|
|
6460
|
+
url: toPathString$4(localVarUrlObj),
|
|
6461
6461
|
options: localVarRequestOptions,
|
|
6462
6462
|
};
|
|
6463
6463
|
}),
|
|
@@ -6474,7 +6474,7 @@
|
|
|
6474
6474
|
const localVarPath = `/Resource/{id}`
|
|
6475
6475
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6476
6476
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6477
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6477
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6478
6478
|
let baseOptions;
|
|
6479
6479
|
if (configuration) {
|
|
6480
6480
|
baseOptions = configuration.baseOptions;
|
|
@@ -6483,12 +6483,12 @@
|
|
|
6483
6483
|
const localVarHeaderParameter = {};
|
|
6484
6484
|
const localVarQueryParameter = {};
|
|
6485
6485
|
// authentication JWT token required
|
|
6486
|
-
yield setApiKeyToObject$
|
|
6487
|
-
setSearchParams$
|
|
6486
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6487
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6488
6488
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6489
6489
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6490
6490
|
return {
|
|
6491
|
-
url: toPathString$
|
|
6491
|
+
url: toPathString$4(localVarUrlObj),
|
|
6492
6492
|
options: localVarRequestOptions,
|
|
6493
6493
|
};
|
|
6494
6494
|
}),
|
|
@@ -6501,7 +6501,7 @@
|
|
|
6501
6501
|
resourceIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
6502
6502
|
const localVarPath = `/Resource`;
|
|
6503
6503
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6504
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6504
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6505
6505
|
let baseOptions;
|
|
6506
6506
|
if (configuration) {
|
|
6507
6507
|
baseOptions = configuration.baseOptions;
|
|
@@ -6510,12 +6510,12 @@
|
|
|
6510
6510
|
const localVarHeaderParameter = {};
|
|
6511
6511
|
const localVarQueryParameter = {};
|
|
6512
6512
|
// authentication JWT token required
|
|
6513
|
-
yield setApiKeyToObject$
|
|
6514
|
-
setSearchParams$
|
|
6513
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6514
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6515
6515
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6516
6516
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6517
6517
|
return {
|
|
6518
|
-
url: toPathString$
|
|
6518
|
+
url: toPathString$4(localVarUrlObj),
|
|
6519
6519
|
options: localVarRequestOptions,
|
|
6520
6520
|
};
|
|
6521
6521
|
}),
|
|
@@ -6532,7 +6532,7 @@
|
|
|
6532
6532
|
const localVarPath = `/Resource/{id}/isCreator`
|
|
6533
6533
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6534
6534
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6535
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6535
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6536
6536
|
let baseOptions;
|
|
6537
6537
|
if (configuration) {
|
|
6538
6538
|
baseOptions = configuration.baseOptions;
|
|
@@ -6541,12 +6541,12 @@
|
|
|
6541
6541
|
const localVarHeaderParameter = {};
|
|
6542
6542
|
const localVarQueryParameter = {};
|
|
6543
6543
|
// authentication JWT token required
|
|
6544
|
-
yield setApiKeyToObject$
|
|
6545
|
-
setSearchParams$
|
|
6544
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6545
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6546
6546
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6547
6547
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6548
6548
|
return {
|
|
6549
|
-
url: toPathString$
|
|
6549
|
+
url: toPathString$4(localVarUrlObj),
|
|
6550
6550
|
options: localVarRequestOptions,
|
|
6551
6551
|
};
|
|
6552
6552
|
}),
|
|
@@ -6564,7 +6564,7 @@
|
|
|
6564
6564
|
const localVarPath = `/Resource/{id}/setReadonly`
|
|
6565
6565
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6566
6566
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6567
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6567
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6568
6568
|
let baseOptions;
|
|
6569
6569
|
if (configuration) {
|
|
6570
6570
|
baseOptions = configuration.baseOptions;
|
|
@@ -6573,15 +6573,15 @@
|
|
|
6573
6573
|
const localVarHeaderParameter = {};
|
|
6574
6574
|
const localVarQueryParameter = {};
|
|
6575
6575
|
// authentication JWT token required
|
|
6576
|
-
yield setApiKeyToObject$
|
|
6576
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6577
6577
|
if (status !== undefined) {
|
|
6578
6578
|
localVarQueryParameter['status'] = status;
|
|
6579
6579
|
}
|
|
6580
|
-
setSearchParams$
|
|
6580
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6581
6581
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6582
6582
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6583
6583
|
return {
|
|
6584
|
-
url: toPathString$
|
|
6584
|
+
url: toPathString$4(localVarUrlObj),
|
|
6585
6585
|
options: localVarRequestOptions,
|
|
6586
6586
|
};
|
|
6587
6587
|
}),
|
|
@@ -6601,7 +6601,7 @@
|
|
|
6601
6601
|
const localVarPath = `/Resource/project/{projectId}`
|
|
6602
6602
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
6603
6603
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6604
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6604
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6605
6605
|
let baseOptions;
|
|
6606
6606
|
if (configuration) {
|
|
6607
6607
|
baseOptions = configuration.baseOptions;
|
|
@@ -6610,14 +6610,14 @@
|
|
|
6610
6610
|
const localVarHeaderParameter = {};
|
|
6611
6611
|
const localVarQueryParameter = {};
|
|
6612
6612
|
// authentication JWT token required
|
|
6613
|
-
yield setApiKeyToObject$
|
|
6613
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6614
6614
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6615
|
-
setSearchParams$
|
|
6615
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6616
6616
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6617
6617
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6618
6618
|
localVarRequestOptions.data = serializeDataIfNeeded$2(resourceObject, localVarRequestOptions, configuration);
|
|
6619
6619
|
return {
|
|
6620
|
-
url: toPathString$
|
|
6620
|
+
url: toPathString$4(localVarUrlObj),
|
|
6621
6621
|
options: localVarRequestOptions,
|
|
6622
6622
|
};
|
|
6623
6623
|
}),
|
|
@@ -6637,7 +6637,7 @@
|
|
|
6637
6637
|
const localVarPath = `/Resource/{id}`
|
|
6638
6638
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6639
6639
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6640
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6640
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6641
6641
|
let baseOptions;
|
|
6642
6642
|
if (configuration) {
|
|
6643
6643
|
baseOptions = configuration.baseOptions;
|
|
@@ -6646,14 +6646,14 @@
|
|
|
6646
6646
|
const localVarHeaderParameter = {};
|
|
6647
6647
|
const localVarQueryParameter = {};
|
|
6648
6648
|
// authentication JWT token required
|
|
6649
|
-
yield setApiKeyToObject$
|
|
6649
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6650
6650
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6651
|
-
setSearchParams$
|
|
6651
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6652
6652
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6653
6653
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6654
6654
|
localVarRequestOptions.data = serializeDataIfNeeded$2(resourceObject, localVarRequestOptions, configuration);
|
|
6655
6655
|
return {
|
|
6656
|
-
url: toPathString$
|
|
6656
|
+
url: toPathString$4(localVarUrlObj),
|
|
6657
6657
|
options: localVarRequestOptions,
|
|
6658
6658
|
};
|
|
6659
6659
|
}),
|
|
@@ -6676,7 +6676,7 @@
|
|
|
6676
6676
|
resourceDelete(id, options) {
|
|
6677
6677
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6678
6678
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceDelete(id, options);
|
|
6679
|
-
return createRequestFunction$
|
|
6679
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6680
6680
|
});
|
|
6681
6681
|
},
|
|
6682
6682
|
/**
|
|
@@ -6689,7 +6689,7 @@
|
|
|
6689
6689
|
resourceGet(id, options) {
|
|
6690
6690
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6691
6691
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceGet(id, options);
|
|
6692
|
-
return createRequestFunction$
|
|
6692
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6693
6693
|
});
|
|
6694
6694
|
},
|
|
6695
6695
|
/**
|
|
@@ -6701,7 +6701,7 @@
|
|
|
6701
6701
|
resourceIndex(options) {
|
|
6702
6702
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6703
6703
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceIndex(options);
|
|
6704
|
-
return createRequestFunction$
|
|
6704
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6705
6705
|
});
|
|
6706
6706
|
},
|
|
6707
6707
|
/**
|
|
@@ -6714,7 +6714,7 @@
|
|
|
6714
6714
|
resourceIsUserResourceCreator(id, options) {
|
|
6715
6715
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6716
6716
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceIsUserResourceCreator(id, options);
|
|
6717
|
-
return createRequestFunction$
|
|
6717
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6718
6718
|
});
|
|
6719
6719
|
},
|
|
6720
6720
|
/**
|
|
@@ -6728,7 +6728,7 @@
|
|
|
6728
6728
|
resourceSetResourceReadonly(id, status, options) {
|
|
6729
6729
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6730
6730
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceSetResourceReadonly(id, status, options);
|
|
6731
|
-
return createRequestFunction$
|
|
6731
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6732
6732
|
});
|
|
6733
6733
|
},
|
|
6734
6734
|
/**
|
|
@@ -6742,7 +6742,7 @@
|
|
|
6742
6742
|
resourceStoreToProject(projectId, resourceObject, options) {
|
|
6743
6743
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6744
6744
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceStoreToProject(projectId, resourceObject, options);
|
|
6745
|
-
return createRequestFunction$
|
|
6745
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6746
6746
|
});
|
|
6747
6747
|
},
|
|
6748
6748
|
/**
|
|
@@ -6756,7 +6756,7 @@
|
|
|
6756
6756
|
resourceUpdate(id, resourceObject, options) {
|
|
6757
6757
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6758
6758
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceUpdate(id, resourceObject, options);
|
|
6759
|
-
return createRequestFunction$
|
|
6759
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6760
6760
|
});
|
|
6761
6761
|
},
|
|
6762
6762
|
};
|
|
@@ -6857,7 +6857,7 @@
|
|
|
6857
6857
|
resourceTypeGetEnabledResourceTypes: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
6858
6858
|
const localVarPath = `/ResourceType/types/-/enabled`;
|
|
6859
6859
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6860
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6860
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6861
6861
|
let baseOptions;
|
|
6862
6862
|
if (configuration) {
|
|
6863
6863
|
baseOptions = configuration.baseOptions;
|
|
@@ -6866,12 +6866,12 @@
|
|
|
6866
6866
|
const localVarHeaderParameter = {};
|
|
6867
6867
|
const localVarQueryParameter = {};
|
|
6868
6868
|
// authentication JWT token required
|
|
6869
|
-
yield setApiKeyToObject$
|
|
6870
|
-
setSearchParams$
|
|
6869
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6870
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6871
6871
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6872
6872
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6873
6873
|
return {
|
|
6874
|
-
url: toPathString$
|
|
6874
|
+
url: toPathString$4(localVarUrlObj),
|
|
6875
6875
|
options: localVarRequestOptions,
|
|
6876
6876
|
};
|
|
6877
6877
|
}),
|
|
@@ -6888,7 +6888,7 @@
|
|
|
6888
6888
|
const localVarPath = `/ResourceType/types/{id}`
|
|
6889
6889
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6890
6890
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6891
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6891
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6892
6892
|
let baseOptions;
|
|
6893
6893
|
if (configuration) {
|
|
6894
6894
|
baseOptions = configuration.baseOptions;
|
|
@@ -6897,12 +6897,12 @@
|
|
|
6897
6897
|
const localVarHeaderParameter = {};
|
|
6898
6898
|
const localVarQueryParameter = {};
|
|
6899
6899
|
// authentication JWT token required
|
|
6900
|
-
yield setApiKeyToObject$
|
|
6901
|
-
setSearchParams$
|
|
6900
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6901
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6902
6902
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6903
6903
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6904
6904
|
return {
|
|
6905
|
-
url: toPathString$
|
|
6905
|
+
url: toPathString$4(localVarUrlObj),
|
|
6906
6906
|
options: localVarRequestOptions,
|
|
6907
6907
|
};
|
|
6908
6908
|
}),
|
|
@@ -6915,7 +6915,7 @@
|
|
|
6915
6915
|
resourceTypeGetResourceTypes: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
6916
6916
|
const localVarPath = `/ResourceType/types`;
|
|
6917
6917
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6918
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6918
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6919
6919
|
let baseOptions;
|
|
6920
6920
|
if (configuration) {
|
|
6921
6921
|
baseOptions = configuration.baseOptions;
|
|
@@ -6924,12 +6924,12 @@
|
|
|
6924
6924
|
const localVarHeaderParameter = {};
|
|
6925
6925
|
const localVarQueryParameter = {};
|
|
6926
6926
|
// authentication JWT token required
|
|
6927
|
-
yield setApiKeyToObject$
|
|
6928
|
-
setSearchParams$
|
|
6927
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6928
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6929
6929
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6930
6930
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6931
6931
|
return {
|
|
6932
|
-
url: toPathString$
|
|
6932
|
+
url: toPathString$4(localVarUrlObj),
|
|
6933
6933
|
options: localVarRequestOptions,
|
|
6934
6934
|
};
|
|
6935
6935
|
}),
|
|
@@ -6951,7 +6951,7 @@
|
|
|
6951
6951
|
resourceTypeGetEnabledResourceTypes(options) {
|
|
6952
6952
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6953
6953
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceTypeGetEnabledResourceTypes(options);
|
|
6954
|
-
return createRequestFunction$
|
|
6954
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6955
6955
|
});
|
|
6956
6956
|
},
|
|
6957
6957
|
/**
|
|
@@ -6964,7 +6964,7 @@
|
|
|
6964
6964
|
resourceTypeGetResourceType(id, options) {
|
|
6965
6965
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6966
6966
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceTypeGetResourceType(id, options);
|
|
6967
|
-
return createRequestFunction$
|
|
6967
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6968
6968
|
});
|
|
6969
6969
|
},
|
|
6970
6970
|
/**
|
|
@@ -6976,7 +6976,7 @@
|
|
|
6976
6976
|
resourceTypeGetResourceTypes(options) {
|
|
6977
6977
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6978
6978
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceTypeGetResourceTypes(options);
|
|
6979
|
-
return createRequestFunction$
|
|
6979
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6980
6980
|
});
|
|
6981
6981
|
},
|
|
6982
6982
|
};
|
|
@@ -7019,6 +7019,168 @@
|
|
|
7019
7019
|
};
|
|
7020
7020
|
};
|
|
7021
7021
|
|
|
7022
|
+
/* tslint:disable */
|
|
7023
|
+
const BASE_PATH$3 = "https://d-sp25.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Search".replace(/\/+$/, "");
|
|
7024
|
+
|
|
7025
|
+
/* tslint:disable */
|
|
7026
|
+
/**
|
|
7027
|
+
*
|
|
7028
|
+
* @export
|
|
7029
|
+
*/
|
|
7030
|
+
const DUMMY_BASE_URL$3 = 'https://example.com';
|
|
7031
|
+
/**
|
|
7032
|
+
*
|
|
7033
|
+
* @export
|
|
7034
|
+
*/
|
|
7035
|
+
const setApiKeyToObject$3 = function (object, keyParamName, configuration) {
|
|
7036
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
7037
|
+
if (configuration && configuration.apiKey) {
|
|
7038
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
7039
|
+
? yield configuration.apiKey(keyParamName)
|
|
7040
|
+
: yield configuration.apiKey;
|
|
7041
|
+
object[keyParamName] = localVarApiKeyValue;
|
|
7042
|
+
}
|
|
7043
|
+
});
|
|
7044
|
+
};
|
|
7045
|
+
/**
|
|
7046
|
+
*
|
|
7047
|
+
* @export
|
|
7048
|
+
*/
|
|
7049
|
+
const setSearchParams$3 = function (url, ...objects) {
|
|
7050
|
+
const searchParams = new URLSearchParams(url.search);
|
|
7051
|
+
for (const object of objects) {
|
|
7052
|
+
for (const key in object) {
|
|
7053
|
+
if (Array.isArray(object[key])) {
|
|
7054
|
+
searchParams.delete(key);
|
|
7055
|
+
for (const item of object[key]) {
|
|
7056
|
+
searchParams.append(key, item);
|
|
7057
|
+
}
|
|
7058
|
+
}
|
|
7059
|
+
else {
|
|
7060
|
+
searchParams.set(key, object[key]);
|
|
7061
|
+
}
|
|
7062
|
+
}
|
|
7063
|
+
}
|
|
7064
|
+
url.search = searchParams.toString();
|
|
7065
|
+
};
|
|
7066
|
+
/**
|
|
7067
|
+
*
|
|
7068
|
+
* @export
|
|
7069
|
+
*/
|
|
7070
|
+
const toPathString$3 = function (url) {
|
|
7071
|
+
return url.pathname + url.search + url.hash;
|
|
7072
|
+
};
|
|
7073
|
+
/**
|
|
7074
|
+
*
|
|
7075
|
+
* @export
|
|
7076
|
+
*/
|
|
7077
|
+
const createRequestFunction$3 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
7078
|
+
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
7079
|
+
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
7080
|
+
return axios.request(axiosRequestArgs);
|
|
7081
|
+
};
|
|
7082
|
+
};
|
|
7083
|
+
|
|
7084
|
+
/* tslint:disable */
|
|
7085
|
+
/**
|
|
7086
|
+
* SemanticSearchApi - axios parameter creator
|
|
7087
|
+
* @export
|
|
7088
|
+
*/
|
|
7089
|
+
const SemanticSearchApiAxiosParamCreator = function (configuration) {
|
|
7090
|
+
return {
|
|
7091
|
+
/**
|
|
7092
|
+
*
|
|
7093
|
+
* @summary Search with SemanticSearch;
|
|
7094
|
+
* @param {string} [query] Elasticsearch query
|
|
7095
|
+
* @param {boolean} [user] Specify user or only public metadata records could be found
|
|
7096
|
+
* @param {boolean} [adv] Set true for advanced Elasticsearch search syntax
|
|
7097
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
7098
|
+
* @param {*} [options] Override http request option.
|
|
7099
|
+
* @throws {RequiredError}
|
|
7100
|
+
*/
|
|
7101
|
+
semanticSearchSearch: (query, user, adv, languages, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
7102
|
+
const localVarPath = `/SemanticSearch`;
|
|
7103
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7104
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
7105
|
+
let baseOptions;
|
|
7106
|
+
if (configuration) {
|
|
7107
|
+
baseOptions = configuration.baseOptions;
|
|
7108
|
+
}
|
|
7109
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
7110
|
+
const localVarHeaderParameter = {};
|
|
7111
|
+
const localVarQueryParameter = {};
|
|
7112
|
+
// authentication JWT token required
|
|
7113
|
+
yield setApiKeyToObject$3(localVarHeaderParameter, "Authorization", configuration);
|
|
7114
|
+
if (query !== undefined) {
|
|
7115
|
+
localVarQueryParameter['query'] = query;
|
|
7116
|
+
}
|
|
7117
|
+
if (user !== undefined) {
|
|
7118
|
+
localVarQueryParameter['user'] = user;
|
|
7119
|
+
}
|
|
7120
|
+
if (adv !== undefined) {
|
|
7121
|
+
localVarQueryParameter['adv'] = adv;
|
|
7122
|
+
}
|
|
7123
|
+
if (languages) {
|
|
7124
|
+
localVarQueryParameter['languages'] = languages;
|
|
7125
|
+
}
|
|
7126
|
+
setSearchParams$3(localVarUrlObj, localVarQueryParameter, options.query);
|
|
7127
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7128
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
7129
|
+
return {
|
|
7130
|
+
url: toPathString$3(localVarUrlObj),
|
|
7131
|
+
options: localVarRequestOptions,
|
|
7132
|
+
};
|
|
7133
|
+
}),
|
|
7134
|
+
};
|
|
7135
|
+
};
|
|
7136
|
+
/**
|
|
7137
|
+
* SemanticSearchApi - functional programming interface
|
|
7138
|
+
* @export
|
|
7139
|
+
*/
|
|
7140
|
+
const SemanticSearchApiFp = function (configuration) {
|
|
7141
|
+
const localVarAxiosParamCreator = SemanticSearchApiAxiosParamCreator(configuration);
|
|
7142
|
+
return {
|
|
7143
|
+
/**
|
|
7144
|
+
*
|
|
7145
|
+
* @summary Search with SemanticSearch;
|
|
7146
|
+
* @param {string} [query] Elasticsearch query
|
|
7147
|
+
* @param {boolean} [user] Specify user or only public metadata records could be found
|
|
7148
|
+
* @param {boolean} [adv] Set true for advanced Elasticsearch search syntax
|
|
7149
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
7150
|
+
* @param {*} [options] Override http request option.
|
|
7151
|
+
* @throws {RequiredError}
|
|
7152
|
+
*/
|
|
7153
|
+
semanticSearchSearch(query, user, adv, languages, options) {
|
|
7154
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
7155
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.semanticSearchSearch(query, user, adv, languages, options);
|
|
7156
|
+
return createRequestFunction$3(localVarAxiosArgs, axios, BASE_PATH$3, configuration);
|
|
7157
|
+
});
|
|
7158
|
+
},
|
|
7159
|
+
};
|
|
7160
|
+
};
|
|
7161
|
+
/**
|
|
7162
|
+
* SemanticSearchApi - factory interface
|
|
7163
|
+
* @export
|
|
7164
|
+
*/
|
|
7165
|
+
const SemanticSearchApiFactory = function (configuration, basePath, axios) {
|
|
7166
|
+
const localVarFp = SemanticSearchApiFp(configuration);
|
|
7167
|
+
return {
|
|
7168
|
+
/**
|
|
7169
|
+
*
|
|
7170
|
+
* @summary Search with SemanticSearch;
|
|
7171
|
+
* @param {string} [query] Elasticsearch query
|
|
7172
|
+
* @param {boolean} [user] Specify user or only public metadata records could be found
|
|
7173
|
+
* @param {boolean} [adv] Set true for advanced Elasticsearch search syntax
|
|
7174
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
7175
|
+
* @param {*} [options] Override http request option.
|
|
7176
|
+
* @throws {RequiredError}
|
|
7177
|
+
*/
|
|
7178
|
+
semanticSearchSearch(query, user, adv, languages, options) {
|
|
7179
|
+
return localVarFp.semanticSearchSearch(query, user, adv, languages, options).then((request) => request(axios, basePath));
|
|
7180
|
+
},
|
|
7181
|
+
};
|
|
7182
|
+
};
|
|
7183
|
+
|
|
7022
7184
|
/* tslint:disable */
|
|
7023
7185
|
const BASE_PATH$2 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Token".replace(/\/+$/, "");
|
|
7024
7186
|
/**
|
|
@@ -8418,6 +8580,7 @@
|
|
|
8418
8580
|
ResourceTypeApi: ResourceTypeApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Resources', axios),
|
|
8419
8581
|
RoleApi: RoleApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Project', axios),
|
|
8420
8582
|
SearchApi: SearchApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Project', axios),
|
|
8583
|
+
SemanticSearchApi: SemanticSearchApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Search', axios),
|
|
8421
8584
|
SubProjectApi: SubProjectApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Project', axios),
|
|
8422
8585
|
TitleApi: TitleApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.User', axios),
|
|
8423
8586
|
TokenApi: TokenApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Token', axios),
|
|
@@ -8481,6 +8644,7 @@
|
|
|
8481
8644
|
const ResourceTypeApi = apis.ResourceTypeApi;
|
|
8482
8645
|
const RoleApi = apis.RoleApi;
|
|
8483
8646
|
const SearchApi = apis.SearchApi;
|
|
8647
|
+
const SemanticSearchApi = apis.SemanticSearchApi;
|
|
8484
8648
|
const SubProjectApi = apis.SubProjectApi;
|
|
8485
8649
|
const TitleApi = apis.TitleApi;
|
|
8486
8650
|
const TokenApi = apis.TokenApi;
|
|
@@ -8506,6 +8670,7 @@
|
|
|
8506
8670
|
exports.ResourceTypeApi = ResourceTypeApi;
|
|
8507
8671
|
exports.RoleApi = RoleApi;
|
|
8508
8672
|
exports.SearchApi = SearchApi;
|
|
8673
|
+
exports.SemanticSearchApi = SemanticSearchApi;
|
|
8509
8674
|
exports.SubProjectApi = SubProjectApi;
|
|
8510
8675
|
exports.TOSApi = TOSApi;
|
|
8511
8676
|
exports.TitleApi = TitleApi;
|