@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.js
CHANGED
|
@@ -1849,7 +1849,7 @@ axios$2.exports.default = axios$1;
|
|
|
1849
1849
|
var axios = axios$2.exports;
|
|
1850
1850
|
|
|
1851
1851
|
/* tslint:disable */
|
|
1852
|
-
const BASE_PATH$
|
|
1852
|
+
const BASE_PATH$c = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.ActivatedFeatures".replace(/\/+$/, "");
|
|
1853
1853
|
/**
|
|
1854
1854
|
*
|
|
1855
1855
|
* @export
|
|
@@ -1869,7 +1869,7 @@ class RequiredError$b extends Error {
|
|
|
1869
1869
|
*
|
|
1870
1870
|
* @export
|
|
1871
1871
|
*/
|
|
1872
|
-
const DUMMY_BASE_URL$
|
|
1872
|
+
const DUMMY_BASE_URL$c = 'https://example.com';
|
|
1873
1873
|
/**
|
|
1874
1874
|
*
|
|
1875
1875
|
* @throws {RequiredError}
|
|
@@ -1884,7 +1884,7 @@ const assertParamExists$b = function (functionName, paramName, paramValue) {
|
|
|
1884
1884
|
*
|
|
1885
1885
|
* @export
|
|
1886
1886
|
*/
|
|
1887
|
-
const setApiKeyToObject$
|
|
1887
|
+
const setApiKeyToObject$c = function (object, keyParamName, configuration) {
|
|
1888
1888
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1889
1889
|
if (configuration && configuration.apiKey) {
|
|
1890
1890
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -1898,7 +1898,7 @@ const setApiKeyToObject$b = function (object, keyParamName, configuration) {
|
|
|
1898
1898
|
*
|
|
1899
1899
|
* @export
|
|
1900
1900
|
*/
|
|
1901
|
-
const setSearchParams$
|
|
1901
|
+
const setSearchParams$c = function (url, ...objects) {
|
|
1902
1902
|
const searchParams = new URLSearchParams(url.search);
|
|
1903
1903
|
for (const object of objects) {
|
|
1904
1904
|
for (const key in object) {
|
|
@@ -1919,14 +1919,14 @@ const setSearchParams$b = function (url, ...objects) {
|
|
|
1919
1919
|
*
|
|
1920
1920
|
* @export
|
|
1921
1921
|
*/
|
|
1922
|
-
const toPathString$
|
|
1922
|
+
const toPathString$c = function (url) {
|
|
1923
1923
|
return url.pathname + url.search + url.hash;
|
|
1924
1924
|
};
|
|
1925
1925
|
/**
|
|
1926
1926
|
*
|
|
1927
1927
|
* @export
|
|
1928
1928
|
*/
|
|
1929
|
-
const createRequestFunction$
|
|
1929
|
+
const createRequestFunction$c = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
1930
1930
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
1931
1931
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
1932
1932
|
return axios.request(axiosRequestArgs);
|
|
@@ -1957,7 +1957,7 @@ const ActivatedFeaturesApiAxiosParamCreator = function (configuration) {
|
|
|
1957
1957
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
1958
1958
|
.replace(`{${"featureId"}}`, encodeURIComponent(String(featureId)));
|
|
1959
1959
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1960
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
1960
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$c);
|
|
1961
1961
|
let baseOptions;
|
|
1962
1962
|
if (configuration) {
|
|
1963
1963
|
baseOptions = configuration.baseOptions;
|
|
@@ -1966,12 +1966,12 @@ const ActivatedFeaturesApiAxiosParamCreator = function (configuration) {
|
|
|
1966
1966
|
const localVarHeaderParameter = {};
|
|
1967
1967
|
const localVarQueryParameter = {};
|
|
1968
1968
|
// authentication JWT token required
|
|
1969
|
-
yield setApiKeyToObject$
|
|
1970
|
-
setSearchParams$
|
|
1969
|
+
yield setApiKeyToObject$c(localVarHeaderParameter, "Authorization", configuration);
|
|
1970
|
+
setSearchParams$c(localVarUrlObj, localVarQueryParameter, options.query);
|
|
1971
1971
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1972
1972
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1973
1973
|
return {
|
|
1974
|
-
url: toPathString$
|
|
1974
|
+
url: toPathString$c(localVarUrlObj),
|
|
1975
1975
|
options: localVarRequestOptions,
|
|
1976
1976
|
};
|
|
1977
1977
|
}),
|
|
@@ -1992,7 +1992,7 @@ const ActivatedFeaturesApiAxiosParamCreator = function (configuration) {
|
|
|
1992
1992
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
1993
1993
|
.replace(`{${"featureId"}}`, encodeURIComponent(String(featureId)));
|
|
1994
1994
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1995
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
1995
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$c);
|
|
1996
1996
|
let baseOptions;
|
|
1997
1997
|
if (configuration) {
|
|
1998
1998
|
baseOptions = configuration.baseOptions;
|
|
@@ -2001,12 +2001,12 @@ const ActivatedFeaturesApiAxiosParamCreator = function (configuration) {
|
|
|
2001
2001
|
const localVarHeaderParameter = {};
|
|
2002
2002
|
const localVarQueryParameter = {};
|
|
2003
2003
|
// authentication JWT token required
|
|
2004
|
-
yield setApiKeyToObject$
|
|
2005
|
-
setSearchParams$
|
|
2004
|
+
yield setApiKeyToObject$c(localVarHeaderParameter, "Authorization", configuration);
|
|
2005
|
+
setSearchParams$c(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2006
2006
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2007
2007
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2008
2008
|
return {
|
|
2009
|
-
url: toPathString$
|
|
2009
|
+
url: toPathString$c(localVarUrlObj),
|
|
2010
2010
|
options: localVarRequestOptions,
|
|
2011
2011
|
};
|
|
2012
2012
|
}),
|
|
@@ -2023,7 +2023,7 @@ const ActivatedFeaturesApiAxiosParamCreator = function (configuration) {
|
|
|
2023
2023
|
const localVarPath = `/ActivatedFeatures/{projectId}/activeFeatures`
|
|
2024
2024
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
2025
2025
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2026
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2026
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$c);
|
|
2027
2027
|
let baseOptions;
|
|
2028
2028
|
if (configuration) {
|
|
2029
2029
|
baseOptions = configuration.baseOptions;
|
|
@@ -2032,12 +2032,12 @@ const ActivatedFeaturesApiAxiosParamCreator = function (configuration) {
|
|
|
2032
2032
|
const localVarHeaderParameter = {};
|
|
2033
2033
|
const localVarQueryParameter = {};
|
|
2034
2034
|
// authentication JWT token required
|
|
2035
|
-
yield setApiKeyToObject$
|
|
2036
|
-
setSearchParams$
|
|
2035
|
+
yield setApiKeyToObject$c(localVarHeaderParameter, "Authorization", configuration);
|
|
2036
|
+
setSearchParams$c(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2037
2037
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2038
2038
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2039
2039
|
return {
|
|
2040
|
-
url: toPathString$
|
|
2040
|
+
url: toPathString$c(localVarUrlObj),
|
|
2041
2041
|
options: localVarRequestOptions,
|
|
2042
2042
|
};
|
|
2043
2043
|
}),
|
|
@@ -2054,7 +2054,7 @@ const ActivatedFeaturesApiAxiosParamCreator = function (configuration) {
|
|
|
2054
2054
|
const localVarPath = `/ActivatedFeatures/{projectId}`
|
|
2055
2055
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
2056
2056
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2057
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2057
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$c);
|
|
2058
2058
|
let baseOptions;
|
|
2059
2059
|
if (configuration) {
|
|
2060
2060
|
baseOptions = configuration.baseOptions;
|
|
@@ -2063,12 +2063,12 @@ const ActivatedFeaturesApiAxiosParamCreator = function (configuration) {
|
|
|
2063
2063
|
const localVarHeaderParameter = {};
|
|
2064
2064
|
const localVarQueryParameter = {};
|
|
2065
2065
|
// authentication JWT token required
|
|
2066
|
-
yield setApiKeyToObject$
|
|
2067
|
-
setSearchParams$
|
|
2066
|
+
yield setApiKeyToObject$c(localVarHeaderParameter, "Authorization", configuration);
|
|
2067
|
+
setSearchParams$c(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2068
2068
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2069
2069
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2070
2070
|
return {
|
|
2071
|
-
url: toPathString$
|
|
2071
|
+
url: toPathString$c(localVarUrlObj),
|
|
2072
2072
|
options: localVarRequestOptions,
|
|
2073
2073
|
};
|
|
2074
2074
|
}),
|
|
@@ -2081,7 +2081,7 @@ const ActivatedFeaturesApiAxiosParamCreator = function (configuration) {
|
|
|
2081
2081
|
activatedFeaturesGetFeaturesAll: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2082
2082
|
const localVarPath = `/ActivatedFeatures`;
|
|
2083
2083
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2084
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2084
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$c);
|
|
2085
2085
|
let baseOptions;
|
|
2086
2086
|
if (configuration) {
|
|
2087
2087
|
baseOptions = configuration.baseOptions;
|
|
@@ -2090,12 +2090,12 @@ const ActivatedFeaturesApiAxiosParamCreator = function (configuration) {
|
|
|
2090
2090
|
const localVarHeaderParameter = {};
|
|
2091
2091
|
const localVarQueryParameter = {};
|
|
2092
2092
|
// authentication JWT token required
|
|
2093
|
-
yield setApiKeyToObject$
|
|
2094
|
-
setSearchParams$
|
|
2093
|
+
yield setApiKeyToObject$c(localVarHeaderParameter, "Authorization", configuration);
|
|
2094
|
+
setSearchParams$c(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2095
2095
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2096
2096
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2097
2097
|
return {
|
|
2098
|
-
url: toPathString$
|
|
2098
|
+
url: toPathString$c(localVarUrlObj),
|
|
2099
2099
|
options: localVarRequestOptions,
|
|
2100
2100
|
};
|
|
2101
2101
|
}),
|
|
@@ -2112,7 +2112,7 @@ const ActivatedFeaturesApiAxiosParamCreator = function (configuration) {
|
|
|
2112
2112
|
const localVarPath = `/ActivatedFeatures/{projectId}/inactiveFeatures`
|
|
2113
2113
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
2114
2114
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2115
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2115
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$c);
|
|
2116
2116
|
let baseOptions;
|
|
2117
2117
|
if (configuration) {
|
|
2118
2118
|
baseOptions = configuration.baseOptions;
|
|
@@ -2121,12 +2121,12 @@ const ActivatedFeaturesApiAxiosParamCreator = function (configuration) {
|
|
|
2121
2121
|
const localVarHeaderParameter = {};
|
|
2122
2122
|
const localVarQueryParameter = {};
|
|
2123
2123
|
// authentication JWT token required
|
|
2124
|
-
yield setApiKeyToObject$
|
|
2125
|
-
setSearchParams$
|
|
2124
|
+
yield setApiKeyToObject$c(localVarHeaderParameter, "Authorization", configuration);
|
|
2125
|
+
setSearchParams$c(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2126
2126
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2127
2127
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2128
2128
|
return {
|
|
2129
|
-
url: toPathString$
|
|
2129
|
+
url: toPathString$c(localVarUrlObj),
|
|
2130
2130
|
options: localVarRequestOptions,
|
|
2131
2131
|
};
|
|
2132
2132
|
}),
|
|
@@ -2150,7 +2150,7 @@ const ActivatedFeaturesApiFp = function (configuration) {
|
|
|
2150
2150
|
activatedFeaturesActivateFeature(projectId, featureId, options) {
|
|
2151
2151
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2152
2152
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.activatedFeaturesActivateFeature(projectId, featureId, options);
|
|
2153
|
-
return createRequestFunction$
|
|
2153
|
+
return createRequestFunction$c(localVarAxiosArgs, axios, BASE_PATH$c, configuration);
|
|
2154
2154
|
});
|
|
2155
2155
|
},
|
|
2156
2156
|
/**
|
|
@@ -2164,7 +2164,7 @@ const ActivatedFeaturesApiFp = function (configuration) {
|
|
|
2164
2164
|
activatedFeaturesDeactivateFeature(projectId, featureId, options) {
|
|
2165
2165
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2166
2166
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.activatedFeaturesDeactivateFeature(projectId, featureId, options);
|
|
2167
|
-
return createRequestFunction$
|
|
2167
|
+
return createRequestFunction$c(localVarAxiosArgs, axios, BASE_PATH$c, configuration);
|
|
2168
2168
|
});
|
|
2169
2169
|
},
|
|
2170
2170
|
/**
|
|
@@ -2177,7 +2177,7 @@ const ActivatedFeaturesApiFp = function (configuration) {
|
|
|
2177
2177
|
activatedFeaturesGetActiveFeatures(projectId, options) {
|
|
2178
2178
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2179
2179
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.activatedFeaturesGetActiveFeatures(projectId, options);
|
|
2180
|
-
return createRequestFunction$
|
|
2180
|
+
return createRequestFunction$c(localVarAxiosArgs, axios, BASE_PATH$c, configuration);
|
|
2181
2181
|
});
|
|
2182
2182
|
},
|
|
2183
2183
|
/**
|
|
@@ -2190,7 +2190,7 @@ const ActivatedFeaturesApiFp = function (configuration) {
|
|
|
2190
2190
|
activatedFeaturesGetFeatures(projectId, options) {
|
|
2191
2191
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2192
2192
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.activatedFeaturesGetFeatures(projectId, options);
|
|
2193
|
-
return createRequestFunction$
|
|
2193
|
+
return createRequestFunction$c(localVarAxiosArgs, axios, BASE_PATH$c, configuration);
|
|
2194
2194
|
});
|
|
2195
2195
|
},
|
|
2196
2196
|
/**
|
|
@@ -2202,7 +2202,7 @@ const ActivatedFeaturesApiFp = function (configuration) {
|
|
|
2202
2202
|
activatedFeaturesGetFeaturesAll(options) {
|
|
2203
2203
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2204
2204
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.activatedFeaturesGetFeaturesAll(options);
|
|
2205
|
-
return createRequestFunction$
|
|
2205
|
+
return createRequestFunction$c(localVarAxiosArgs, axios, BASE_PATH$c, configuration);
|
|
2206
2206
|
});
|
|
2207
2207
|
},
|
|
2208
2208
|
/**
|
|
@@ -2215,7 +2215,7 @@ const ActivatedFeaturesApiFp = function (configuration) {
|
|
|
2215
2215
|
activatedFeaturesGetInactiveFeatures(projectId, options) {
|
|
2216
2216
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2217
2217
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.activatedFeaturesGetInactiveFeatures(projectId, options);
|
|
2218
|
-
return createRequestFunction$
|
|
2218
|
+
return createRequestFunction$c(localVarAxiosArgs, axios, BASE_PATH$c, configuration);
|
|
2219
2219
|
});
|
|
2220
2220
|
},
|
|
2221
2221
|
};
|
|
@@ -2331,7 +2331,7 @@ class Configuration {
|
|
|
2331
2331
|
}
|
|
2332
2332
|
|
|
2333
2333
|
/* tslint:disable */
|
|
2334
|
-
const BASE_PATH$
|
|
2334
|
+
const BASE_PATH$b = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Admin".replace(/\/+$/, "");
|
|
2335
2335
|
/**
|
|
2336
2336
|
*
|
|
2337
2337
|
* @export
|
|
@@ -2351,7 +2351,7 @@ class RequiredError$a extends Error {
|
|
|
2351
2351
|
*
|
|
2352
2352
|
* @export
|
|
2353
2353
|
*/
|
|
2354
|
-
const DUMMY_BASE_URL$
|
|
2354
|
+
const DUMMY_BASE_URL$b = 'https://example.com';
|
|
2355
2355
|
/**
|
|
2356
2356
|
*
|
|
2357
2357
|
* @throws {RequiredError}
|
|
@@ -2366,7 +2366,7 @@ const assertParamExists$a = function (functionName, paramName, paramValue) {
|
|
|
2366
2366
|
*
|
|
2367
2367
|
* @export
|
|
2368
2368
|
*/
|
|
2369
|
-
const setApiKeyToObject$
|
|
2369
|
+
const setApiKeyToObject$b = function (object, keyParamName, configuration) {
|
|
2370
2370
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2371
2371
|
if (configuration && configuration.apiKey) {
|
|
2372
2372
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -2380,7 +2380,7 @@ const setApiKeyToObject$a = function (object, keyParamName, configuration) {
|
|
|
2380
2380
|
*
|
|
2381
2381
|
* @export
|
|
2382
2382
|
*/
|
|
2383
|
-
const setSearchParams$
|
|
2383
|
+
const setSearchParams$b = function (url, ...objects) {
|
|
2384
2384
|
const searchParams = new URLSearchParams(url.search);
|
|
2385
2385
|
for (const object of objects) {
|
|
2386
2386
|
for (const key in object) {
|
|
@@ -2414,14 +2414,14 @@ const serializeDataIfNeeded$7 = function (value, requestOptions, configuration)
|
|
|
2414
2414
|
*
|
|
2415
2415
|
* @export
|
|
2416
2416
|
*/
|
|
2417
|
-
const toPathString$
|
|
2417
|
+
const toPathString$b = function (url) {
|
|
2418
2418
|
return url.pathname + url.search + url.hash;
|
|
2419
2419
|
};
|
|
2420
2420
|
/**
|
|
2421
2421
|
*
|
|
2422
2422
|
* @export
|
|
2423
2423
|
*/
|
|
2424
|
-
const createRequestFunction$
|
|
2424
|
+
const createRequestFunction$b = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
2425
2425
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
2426
2426
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
2427
2427
|
return axios.request(axiosRequestArgs);
|
|
@@ -2448,7 +2448,7 @@ const AdminApiAxiosParamCreator = function (configuration) {
|
|
|
2448
2448
|
const localVarPath = `/Admin/{projectString}`
|
|
2449
2449
|
.replace(`{${"projectString"}}`, encodeURIComponent(String(projectString)));
|
|
2450
2450
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2451
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2451
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$b);
|
|
2452
2452
|
let baseOptions;
|
|
2453
2453
|
if (configuration) {
|
|
2454
2454
|
baseOptions = configuration.baseOptions;
|
|
@@ -2457,12 +2457,12 @@ const AdminApiAxiosParamCreator = function (configuration) {
|
|
|
2457
2457
|
const localVarHeaderParameter = {};
|
|
2458
2458
|
const localVarQueryParameter = {};
|
|
2459
2459
|
// authentication JWT token required
|
|
2460
|
-
yield setApiKeyToObject$
|
|
2461
|
-
setSearchParams$
|
|
2460
|
+
yield setApiKeyToObject$b(localVarHeaderParameter, "Authorization", configuration);
|
|
2461
|
+
setSearchParams$b(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2462
2462
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2463
2463
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2464
2464
|
return {
|
|
2465
|
-
url: toPathString$
|
|
2465
|
+
url: toPathString$b(localVarUrlObj),
|
|
2466
2466
|
options: localVarRequestOptions,
|
|
2467
2467
|
};
|
|
2468
2468
|
}),
|
|
@@ -2478,7 +2478,7 @@ const AdminApiAxiosParamCreator = function (configuration) {
|
|
|
2478
2478
|
assertParamExists$a('adminUpdateQuota', 'updateQuotaParameterObject', updateQuotaParameterObject);
|
|
2479
2479
|
const localVarPath = `/Admin`;
|
|
2480
2480
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2481
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2481
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$b);
|
|
2482
2482
|
let baseOptions;
|
|
2483
2483
|
if (configuration) {
|
|
2484
2484
|
baseOptions = configuration.baseOptions;
|
|
@@ -2487,14 +2487,14 @@ const AdminApiAxiosParamCreator = function (configuration) {
|
|
|
2487
2487
|
const localVarHeaderParameter = {};
|
|
2488
2488
|
const localVarQueryParameter = {};
|
|
2489
2489
|
// authentication JWT token required
|
|
2490
|
-
yield setApiKeyToObject$
|
|
2490
|
+
yield setApiKeyToObject$b(localVarHeaderParameter, "Authorization", configuration);
|
|
2491
2491
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2492
|
-
setSearchParams$
|
|
2492
|
+
setSearchParams$b(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2493
2493
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2494
2494
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2495
2495
|
localVarRequestOptions.data = serializeDataIfNeeded$7(updateQuotaParameterObject, localVarRequestOptions, configuration);
|
|
2496
2496
|
return {
|
|
2497
|
-
url: toPathString$
|
|
2497
|
+
url: toPathString$b(localVarUrlObj),
|
|
2498
2498
|
options: localVarRequestOptions,
|
|
2499
2499
|
};
|
|
2500
2500
|
}),
|
|
@@ -2517,7 +2517,7 @@ const AdminApiFp = function (configuration) {
|
|
|
2517
2517
|
adminGetProject(projectString, options) {
|
|
2518
2518
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2519
2519
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminGetProject(projectString, options);
|
|
2520
|
-
return createRequestFunction$
|
|
2520
|
+
return createRequestFunction$b(localVarAxiosArgs, axios, BASE_PATH$b, configuration);
|
|
2521
2521
|
});
|
|
2522
2522
|
},
|
|
2523
2523
|
/**
|
|
@@ -2530,7 +2530,7 @@ const AdminApiFp = function (configuration) {
|
|
|
2530
2530
|
adminUpdateQuota(updateQuotaParameterObject, options) {
|
|
2531
2531
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2532
2532
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminUpdateQuota(updateQuotaParameterObject, options);
|
|
2533
|
-
return createRequestFunction$
|
|
2533
|
+
return createRequestFunction$b(localVarAxiosArgs, axios, BASE_PATH$b, configuration);
|
|
2534
2534
|
});
|
|
2535
2535
|
},
|
|
2536
2536
|
};
|
|
@@ -2566,7 +2566,7 @@ const AdminApiFactory = function (configuration, basePath, axios) {
|
|
|
2566
2566
|
};
|
|
2567
2567
|
|
|
2568
2568
|
/* tslint:disable */
|
|
2569
|
-
const BASE_PATH$
|
|
2569
|
+
const BASE_PATH$a = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Blob".replace(/\/+$/, "");
|
|
2570
2570
|
/**
|
|
2571
2571
|
*
|
|
2572
2572
|
* @export
|
|
@@ -2586,7 +2586,7 @@ class RequiredError$9 extends Error {
|
|
|
2586
2586
|
*
|
|
2587
2587
|
* @export
|
|
2588
2588
|
*/
|
|
2589
|
-
const DUMMY_BASE_URL$
|
|
2589
|
+
const DUMMY_BASE_URL$a = 'https://example.com';
|
|
2590
2590
|
/**
|
|
2591
2591
|
*
|
|
2592
2592
|
* @throws {RequiredError}
|
|
@@ -2601,7 +2601,7 @@ const assertParamExists$9 = function (functionName, paramName, paramValue) {
|
|
|
2601
2601
|
*
|
|
2602
2602
|
* @export
|
|
2603
2603
|
*/
|
|
2604
|
-
const setApiKeyToObject$
|
|
2604
|
+
const setApiKeyToObject$a = function (object, keyParamName, configuration) {
|
|
2605
2605
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2606
2606
|
if (configuration && configuration.apiKey) {
|
|
2607
2607
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -2615,7 +2615,7 @@ const setApiKeyToObject$9 = function (object, keyParamName, configuration) {
|
|
|
2615
2615
|
*
|
|
2616
2616
|
* @export
|
|
2617
2617
|
*/
|
|
2618
|
-
const setSearchParams$
|
|
2618
|
+
const setSearchParams$a = function (url, ...objects) {
|
|
2619
2619
|
const searchParams = new URLSearchParams(url.search);
|
|
2620
2620
|
for (const object of objects) {
|
|
2621
2621
|
for (const key in object) {
|
|
@@ -2649,14 +2649,14 @@ const serializeDataIfNeeded$6 = function (value, requestOptions, configuration)
|
|
|
2649
2649
|
*
|
|
2650
2650
|
* @export
|
|
2651
2651
|
*/
|
|
2652
|
-
const toPathString$
|
|
2652
|
+
const toPathString$a = function (url) {
|
|
2653
2653
|
return url.pathname + url.search + url.hash;
|
|
2654
2654
|
};
|
|
2655
2655
|
/**
|
|
2656
2656
|
*
|
|
2657
2657
|
* @export
|
|
2658
2658
|
*/
|
|
2659
|
-
const createRequestFunction$
|
|
2659
|
+
const createRequestFunction$a = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
2660
2660
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
2661
2661
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
2662
2662
|
return axios.request(axiosRequestArgs);
|
|
@@ -2684,7 +2684,7 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
2684
2684
|
const localVarPath = `/Blob/{resourceId}`
|
|
2685
2685
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
2686
2686
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2687
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2687
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$a);
|
|
2688
2688
|
let baseOptions;
|
|
2689
2689
|
if (configuration) {
|
|
2690
2690
|
baseOptions = configuration.baseOptions;
|
|
@@ -2693,15 +2693,15 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
2693
2693
|
const localVarHeaderParameter = {};
|
|
2694
2694
|
const localVarQueryParameter = {};
|
|
2695
2695
|
// authentication JWT token required
|
|
2696
|
-
yield setApiKeyToObject$
|
|
2696
|
+
yield setApiKeyToObject$a(localVarHeaderParameter, "Authorization", configuration);
|
|
2697
2697
|
if (path !== undefined) {
|
|
2698
2698
|
localVarQueryParameter['path'] = path;
|
|
2699
2699
|
}
|
|
2700
|
-
setSearchParams$
|
|
2700
|
+
setSearchParams$a(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2701
2701
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2702
2702
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2703
2703
|
return {
|
|
2704
|
-
url: toPathString$
|
|
2704
|
+
url: toPathString$a(localVarUrlObj),
|
|
2705
2705
|
options: localVarRequestOptions,
|
|
2706
2706
|
};
|
|
2707
2707
|
}),
|
|
@@ -2719,7 +2719,7 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
2719
2719
|
const localVarPath = `/Blob/{resourceId}`
|
|
2720
2720
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
2721
2721
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2722
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2722
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$a);
|
|
2723
2723
|
let baseOptions;
|
|
2724
2724
|
if (configuration) {
|
|
2725
2725
|
baseOptions = configuration.baseOptions;
|
|
@@ -2728,15 +2728,15 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
2728
2728
|
const localVarHeaderParameter = {};
|
|
2729
2729
|
const localVarQueryParameter = {};
|
|
2730
2730
|
// authentication JWT token required
|
|
2731
|
-
yield setApiKeyToObject$
|
|
2731
|
+
yield setApiKeyToObject$a(localVarHeaderParameter, "Authorization", configuration);
|
|
2732
2732
|
if (path !== undefined) {
|
|
2733
2733
|
localVarQueryParameter['path'] = path;
|
|
2734
2734
|
}
|
|
2735
|
-
setSearchParams$
|
|
2735
|
+
setSearchParams$a(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2736
2736
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2737
2737
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2738
2738
|
return {
|
|
2739
|
-
url: toPathString$
|
|
2739
|
+
url: toPathString$a(localVarUrlObj),
|
|
2740
2740
|
options: localVarRequestOptions,
|
|
2741
2741
|
};
|
|
2742
2742
|
}),
|
|
@@ -2753,7 +2753,7 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
2753
2753
|
const localVarPath = `/Blob/{resourceId}/quota`
|
|
2754
2754
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
2755
2755
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2756
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2756
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$a);
|
|
2757
2757
|
let baseOptions;
|
|
2758
2758
|
if (configuration) {
|
|
2759
2759
|
baseOptions = configuration.baseOptions;
|
|
@@ -2762,12 +2762,12 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
2762
2762
|
const localVarHeaderParameter = {};
|
|
2763
2763
|
const localVarQueryParameter = {};
|
|
2764
2764
|
// authentication JWT token required
|
|
2765
|
-
yield setApiKeyToObject$
|
|
2766
|
-
setSearchParams$
|
|
2765
|
+
yield setApiKeyToObject$a(localVarHeaderParameter, "Authorization", configuration);
|
|
2766
|
+
setSearchParams$a(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2767
2767
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2768
2768
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2769
2769
|
return {
|
|
2770
|
-
url: toPathString$
|
|
2770
|
+
url: toPathString$a(localVarUrlObj),
|
|
2771
2771
|
options: localVarRequestOptions,
|
|
2772
2772
|
};
|
|
2773
2773
|
}),
|
|
@@ -2783,7 +2783,7 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
2783
2783
|
assertParamExists$9('blobIsResourceValid', 'body', body);
|
|
2784
2784
|
const localVarPath = `/Blob/validate`;
|
|
2785
2785
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2786
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2786
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$a);
|
|
2787
2787
|
let baseOptions;
|
|
2788
2788
|
if (configuration) {
|
|
2789
2789
|
baseOptions = configuration.baseOptions;
|
|
@@ -2792,14 +2792,14 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
2792
2792
|
const localVarHeaderParameter = {};
|
|
2793
2793
|
const localVarQueryParameter = {};
|
|
2794
2794
|
// authentication JWT token required
|
|
2795
|
-
yield setApiKeyToObject$
|
|
2795
|
+
yield setApiKeyToObject$a(localVarHeaderParameter, "Authorization", configuration);
|
|
2796
2796
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2797
|
-
setSearchParams$
|
|
2797
|
+
setSearchParams$a(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2798
2798
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2799
2799
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2800
2800
|
localVarRequestOptions.data = serializeDataIfNeeded$6(body, localVarRequestOptions, configuration);
|
|
2801
2801
|
return {
|
|
2802
|
-
url: toPathString$
|
|
2802
|
+
url: toPathString$a(localVarUrlObj),
|
|
2803
2803
|
options: localVarRequestOptions,
|
|
2804
2804
|
};
|
|
2805
2805
|
}),
|
|
@@ -2818,7 +2818,7 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
2818
2818
|
const localVarPath = `/Blob/{resourceId}`
|
|
2819
2819
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
2820
2820
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2821
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
2821
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$a);
|
|
2822
2822
|
let baseOptions;
|
|
2823
2823
|
if (configuration) {
|
|
2824
2824
|
baseOptions = configuration.baseOptions;
|
|
@@ -2828,7 +2828,7 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
2828
2828
|
const localVarQueryParameter = {};
|
|
2829
2829
|
const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
2830
2830
|
// authentication JWT token required
|
|
2831
|
-
yield setApiKeyToObject$
|
|
2831
|
+
yield setApiKeyToObject$a(localVarHeaderParameter, "Authorization", configuration);
|
|
2832
2832
|
if (path !== undefined) {
|
|
2833
2833
|
localVarQueryParameter['path'] = path;
|
|
2834
2834
|
}
|
|
@@ -2838,12 +2838,12 @@ const BlobApiAxiosParamCreator = function (configuration) {
|
|
|
2838
2838
|
});
|
|
2839
2839
|
}
|
|
2840
2840
|
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
2841
|
-
setSearchParams$
|
|
2841
|
+
setSearchParams$a(localVarUrlObj, localVarQueryParameter, options.query);
|
|
2842
2842
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2843
2843
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2844
2844
|
localVarRequestOptions.data = localVarFormParams;
|
|
2845
2845
|
return {
|
|
2846
|
-
url: toPathString$
|
|
2846
|
+
url: toPathString$a(localVarUrlObj),
|
|
2847
2847
|
options: localVarRequestOptions,
|
|
2848
2848
|
};
|
|
2849
2849
|
}),
|
|
@@ -2867,7 +2867,7 @@ const BlobApiFp = function (configuration) {
|
|
|
2867
2867
|
blobDeleteFileWithParameter(resourceId, path, options) {
|
|
2868
2868
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2869
2869
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.blobDeleteFileWithParameter(resourceId, path, options);
|
|
2870
|
-
return createRequestFunction$
|
|
2870
|
+
return createRequestFunction$a(localVarAxiosArgs, axios, BASE_PATH$a, configuration);
|
|
2871
2871
|
});
|
|
2872
2872
|
},
|
|
2873
2873
|
/**
|
|
@@ -2881,7 +2881,7 @@ const BlobApiFp = function (configuration) {
|
|
|
2881
2881
|
blobGetFileWithParameter(resourceId, path, options) {
|
|
2882
2882
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2883
2883
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.blobGetFileWithParameter(resourceId, path, options);
|
|
2884
|
-
return createRequestFunction$
|
|
2884
|
+
return createRequestFunction$a(localVarAxiosArgs, axios, BASE_PATH$a, configuration);
|
|
2885
2885
|
});
|
|
2886
2886
|
},
|
|
2887
2887
|
/**
|
|
@@ -2894,7 +2894,7 @@ const BlobApiFp = function (configuration) {
|
|
|
2894
2894
|
blobGetQuota(resourceId, options) {
|
|
2895
2895
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2896
2896
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.blobGetQuota(resourceId, options);
|
|
2897
|
-
return createRequestFunction$
|
|
2897
|
+
return createRequestFunction$a(localVarAxiosArgs, axios, BASE_PATH$a, configuration);
|
|
2898
2898
|
});
|
|
2899
2899
|
},
|
|
2900
2900
|
/**
|
|
@@ -2907,7 +2907,7 @@ const BlobApiFp = function (configuration) {
|
|
|
2907
2907
|
blobIsResourceValid(body, options) {
|
|
2908
2908
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2909
2909
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.blobIsResourceValid(body, options);
|
|
2910
|
-
return createRequestFunction$
|
|
2910
|
+
return createRequestFunction$a(localVarAxiosArgs, axios, BASE_PATH$a, configuration);
|
|
2911
2911
|
});
|
|
2912
2912
|
},
|
|
2913
2913
|
/**
|
|
@@ -2922,7 +2922,7 @@ const BlobApiFp = function (configuration) {
|
|
|
2922
2922
|
blobUploadFileWithParameter(resourceId, path, files, options) {
|
|
2923
2923
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2924
2924
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.blobUploadFileWithParameter(resourceId, path, files, options);
|
|
2925
|
-
return createRequestFunction$
|
|
2925
|
+
return createRequestFunction$a(localVarAxiosArgs, axios, BASE_PATH$a, configuration);
|
|
2926
2926
|
});
|
|
2927
2927
|
},
|
|
2928
2928
|
};
|
|
@@ -2992,7 +2992,7 @@ const BlobApiFactory = function (configuration, basePath, axios) {
|
|
|
2992
2992
|
};
|
|
2993
2993
|
|
|
2994
2994
|
/* tslint:disable */
|
|
2995
|
-
const BASE_PATH$
|
|
2995
|
+
const BASE_PATH$9 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Metadata".replace(/\/+$/, "");
|
|
2996
2996
|
/**
|
|
2997
2997
|
*
|
|
2998
2998
|
* @export
|
|
@@ -3012,7 +3012,7 @@ class RequiredError$8 extends Error {
|
|
|
3012
3012
|
*
|
|
3013
3013
|
* @export
|
|
3014
3014
|
*/
|
|
3015
|
-
const DUMMY_BASE_URL$
|
|
3015
|
+
const DUMMY_BASE_URL$9 = 'https://example.com';
|
|
3016
3016
|
/**
|
|
3017
3017
|
*
|
|
3018
3018
|
* @throws {RequiredError}
|
|
@@ -3027,7 +3027,7 @@ const assertParamExists$8 = function (functionName, paramName, paramValue) {
|
|
|
3027
3027
|
*
|
|
3028
3028
|
* @export
|
|
3029
3029
|
*/
|
|
3030
|
-
const setApiKeyToObject$
|
|
3030
|
+
const setApiKeyToObject$9 = function (object, keyParamName, configuration) {
|
|
3031
3031
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3032
3032
|
if (configuration && configuration.apiKey) {
|
|
3033
3033
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -3041,7 +3041,7 @@ const setApiKeyToObject$8 = function (object, keyParamName, configuration) {
|
|
|
3041
3041
|
*
|
|
3042
3042
|
* @export
|
|
3043
3043
|
*/
|
|
3044
|
-
const setSearchParams$
|
|
3044
|
+
const setSearchParams$9 = function (url, ...objects) {
|
|
3045
3045
|
const searchParams = new URLSearchParams(url.search);
|
|
3046
3046
|
for (const object of objects) {
|
|
3047
3047
|
for (const key in object) {
|
|
@@ -3075,14 +3075,14 @@ const serializeDataIfNeeded$5 = function (value, requestOptions, configuration)
|
|
|
3075
3075
|
*
|
|
3076
3076
|
* @export
|
|
3077
3077
|
*/
|
|
3078
|
-
const toPathString$
|
|
3078
|
+
const toPathString$9 = function (url) {
|
|
3079
3079
|
return url.pathname + url.search + url.hash;
|
|
3080
3080
|
};
|
|
3081
3081
|
/**
|
|
3082
3082
|
*
|
|
3083
3083
|
* @export
|
|
3084
3084
|
*/
|
|
3085
|
-
const createRequestFunction$
|
|
3085
|
+
const createRequestFunction$9 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
3086
3086
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
3087
3087
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
3088
3088
|
return axios.request(axiosRequestArgs);
|
|
@@ -3113,7 +3113,7 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3113
3113
|
.replace(`{${"profile"}}`, encodeURIComponent(String(profile)))
|
|
3114
3114
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
3115
3115
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3116
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3116
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3117
3117
|
let baseOptions;
|
|
3118
3118
|
if (configuration) {
|
|
3119
3119
|
baseOptions = configuration.baseOptions;
|
|
@@ -3122,12 +3122,12 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3122
3122
|
const localVarHeaderParameter = {};
|
|
3123
3123
|
const localVarQueryParameter = {};
|
|
3124
3124
|
// authentication JWT token required
|
|
3125
|
-
yield setApiKeyToObject$
|
|
3126
|
-
setSearchParams$
|
|
3125
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3126
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3127
3127
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3128
3128
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3129
3129
|
return {
|
|
3130
|
-
url: toPathString$
|
|
3130
|
+
url: toPathString$9(localVarUrlObj),
|
|
3131
3131
|
options: localVarRequestOptions,
|
|
3132
3132
|
};
|
|
3133
3133
|
}),
|
|
@@ -3148,7 +3148,7 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3148
3148
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
3149
3149
|
.replace(`{${"className"}}`, encodeURIComponent(String(className)));
|
|
3150
3150
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3151
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3151
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3152
3152
|
let baseOptions;
|
|
3153
3153
|
if (configuration) {
|
|
3154
3154
|
baseOptions = configuration.baseOptions;
|
|
@@ -3157,12 +3157,12 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3157
3157
|
const localVarHeaderParameter = {};
|
|
3158
3158
|
const localVarQueryParameter = {};
|
|
3159
3159
|
// authentication JWT token required
|
|
3160
|
-
yield setApiKeyToObject$
|
|
3161
|
-
setSearchParams$
|
|
3160
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3161
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3162
3162
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3163
3163
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3164
3164
|
return {
|
|
3165
|
-
url: toPathString$
|
|
3165
|
+
url: toPathString$9(localVarUrlObj),
|
|
3166
3166
|
options: localVarRequestOptions,
|
|
3167
3167
|
};
|
|
3168
3168
|
}),
|
|
@@ -3179,7 +3179,7 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3179
3179
|
const localVarPath = `/Metadata/profiles/{profile}`
|
|
3180
3180
|
.replace(`{${"profile"}}`, encodeURIComponent(String(profile)));
|
|
3181
3181
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3182
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3182
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3183
3183
|
let baseOptions;
|
|
3184
3184
|
if (configuration) {
|
|
3185
3185
|
baseOptions = configuration.baseOptions;
|
|
@@ -3188,12 +3188,12 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3188
3188
|
const localVarHeaderParameter = {};
|
|
3189
3189
|
const localVarQueryParameter = {};
|
|
3190
3190
|
// authentication JWT token required
|
|
3191
|
-
yield setApiKeyToObject$
|
|
3192
|
-
setSearchParams$
|
|
3191
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3192
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3193
3193
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3194
3194
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3195
3195
|
return {
|
|
3196
|
-
url: toPathString$
|
|
3196
|
+
url: toPathString$9(localVarUrlObj),
|
|
3197
3197
|
options: localVarRequestOptions,
|
|
3198
3198
|
};
|
|
3199
3199
|
}),
|
|
@@ -3206,7 +3206,7 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3206
3206
|
metadataGetProfiles: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3207
3207
|
const localVarPath = `/Metadata/profiles`;
|
|
3208
3208
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3209
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3209
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3210
3210
|
let baseOptions;
|
|
3211
3211
|
if (configuration) {
|
|
3212
3212
|
baseOptions = configuration.baseOptions;
|
|
@@ -3215,12 +3215,12 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3215
3215
|
const localVarHeaderParameter = {};
|
|
3216
3216
|
const localVarQueryParameter = {};
|
|
3217
3217
|
// authentication JWT token required
|
|
3218
|
-
yield setApiKeyToObject$
|
|
3219
|
-
setSearchParams$
|
|
3218
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3219
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3220
3220
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3221
3221
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3222
3222
|
return {
|
|
3223
|
-
url: toPathString$
|
|
3223
|
+
url: toPathString$9(localVarUrlObj),
|
|
3224
3224
|
options: localVarRequestOptions,
|
|
3225
3225
|
};
|
|
3226
3226
|
}),
|
|
@@ -3233,7 +3233,7 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3233
3233
|
metadataGetVocabularies: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3234
3234
|
const localVarPath = `/Metadata/vocabularies`;
|
|
3235
3235
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3236
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3236
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3237
3237
|
let baseOptions;
|
|
3238
3238
|
if (configuration) {
|
|
3239
3239
|
baseOptions = configuration.baseOptions;
|
|
@@ -3242,12 +3242,12 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3242
3242
|
const localVarHeaderParameter = {};
|
|
3243
3243
|
const localVarQueryParameter = {};
|
|
3244
3244
|
// authentication JWT token required
|
|
3245
|
-
yield setApiKeyToObject$
|
|
3246
|
-
setSearchParams$
|
|
3245
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3246
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3247
3247
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3248
3248
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3249
3249
|
return {
|
|
3250
|
-
url: toPathString$
|
|
3250
|
+
url: toPathString$9(localVarUrlObj),
|
|
3251
3251
|
options: localVarRequestOptions,
|
|
3252
3252
|
};
|
|
3253
3253
|
}),
|
|
@@ -3264,7 +3264,7 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3264
3264
|
const localVarPath = `/Metadata/vocabularies/{path}`
|
|
3265
3265
|
.replace(`{${"path"}}`, encodeURIComponent(String(path)));
|
|
3266
3266
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3267
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3267
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3268
3268
|
let baseOptions;
|
|
3269
3269
|
if (configuration) {
|
|
3270
3270
|
baseOptions = configuration.baseOptions;
|
|
@@ -3273,12 +3273,12 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3273
3273
|
const localVarHeaderParameter = {};
|
|
3274
3274
|
const localVarQueryParameter = {};
|
|
3275
3275
|
// authentication JWT token required
|
|
3276
|
-
yield setApiKeyToObject$
|
|
3277
|
-
setSearchParams$
|
|
3276
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3277
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3278
3278
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3279
3279
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3280
3280
|
return {
|
|
3281
|
-
url: toPathString$
|
|
3281
|
+
url: toPathString$9(localVarUrlObj),
|
|
3282
3282
|
options: localVarRequestOptions,
|
|
3283
3283
|
};
|
|
3284
3284
|
}),
|
|
@@ -3294,7 +3294,7 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3294
3294
|
assertParamExists$8('metadataSaveApplicationProfile', 'applicationProfile', applicationProfile);
|
|
3295
3295
|
const localVarPath = `/Metadata/profiles`;
|
|
3296
3296
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3297
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3297
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3298
3298
|
let baseOptions;
|
|
3299
3299
|
if (configuration) {
|
|
3300
3300
|
baseOptions = configuration.baseOptions;
|
|
@@ -3303,14 +3303,14 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3303
3303
|
const localVarHeaderParameter = {};
|
|
3304
3304
|
const localVarQueryParameter = {};
|
|
3305
3305
|
// authentication JWT token required
|
|
3306
|
-
yield setApiKeyToObject$
|
|
3306
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3307
3307
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3308
|
-
setSearchParams$
|
|
3308
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3309
3309
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3310
3310
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3311
3311
|
localVarRequestOptions.data = serializeDataIfNeeded$5(applicationProfile, localVarRequestOptions, configuration);
|
|
3312
3312
|
return {
|
|
3313
|
-
url: toPathString$
|
|
3313
|
+
url: toPathString$9(localVarUrlObj),
|
|
3314
3314
|
options: localVarRequestOptions,
|
|
3315
3315
|
};
|
|
3316
3316
|
}),
|
|
@@ -3334,7 +3334,7 @@ const MetadataApiFp = function (configuration) {
|
|
|
3334
3334
|
metadataGetApplicationProfileComplete(profile, resourceId, options) {
|
|
3335
3335
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3336
3336
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetApplicationProfileComplete(profile, resourceId, options);
|
|
3337
|
-
return createRequestFunction$
|
|
3337
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3338
3338
|
});
|
|
3339
3339
|
},
|
|
3340
3340
|
/**
|
|
@@ -3348,7 +3348,7 @@ const MetadataApiFp = function (configuration) {
|
|
|
3348
3348
|
metadataGetClassInstances(projectId, className, options) {
|
|
3349
3349
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3350
3350
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetClassInstances(projectId, className, options);
|
|
3351
|
-
return createRequestFunction$
|
|
3351
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3352
3352
|
});
|
|
3353
3353
|
},
|
|
3354
3354
|
/**
|
|
@@ -3361,7 +3361,7 @@ const MetadataApiFp = function (configuration) {
|
|
|
3361
3361
|
metadataGetProfile(profile, options) {
|
|
3362
3362
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3363
3363
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetProfile(profile, options);
|
|
3364
|
-
return createRequestFunction$
|
|
3364
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3365
3365
|
});
|
|
3366
3366
|
},
|
|
3367
3367
|
/**
|
|
@@ -3373,7 +3373,7 @@ const MetadataApiFp = function (configuration) {
|
|
|
3373
3373
|
metadataGetProfiles(options) {
|
|
3374
3374
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3375
3375
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetProfiles(options);
|
|
3376
|
-
return createRequestFunction$
|
|
3376
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3377
3377
|
});
|
|
3378
3378
|
},
|
|
3379
3379
|
/**
|
|
@@ -3385,7 +3385,7 @@ const MetadataApiFp = function (configuration) {
|
|
|
3385
3385
|
metadataGetVocabularies(options) {
|
|
3386
3386
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3387
3387
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetVocabularies(options);
|
|
3388
|
-
return createRequestFunction$
|
|
3388
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3389
3389
|
});
|
|
3390
3390
|
},
|
|
3391
3391
|
/**
|
|
@@ -3398,7 +3398,7 @@ const MetadataApiFp = function (configuration) {
|
|
|
3398
3398
|
metadataGetVocabulary(path, options) {
|
|
3399
3399
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3400
3400
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetVocabulary(path, options);
|
|
3401
|
-
return createRequestFunction$
|
|
3401
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3402
3402
|
});
|
|
3403
3403
|
},
|
|
3404
3404
|
/**
|
|
@@ -3411,7 +3411,7 @@ const MetadataApiFp = function (configuration) {
|
|
|
3411
3411
|
metadataSaveApplicationProfile(applicationProfile, options) {
|
|
3412
3412
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3413
3413
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataSaveApplicationProfile(applicationProfile, options);
|
|
3414
|
-
return createRequestFunction$
|
|
3414
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3415
3415
|
});
|
|
3416
3416
|
},
|
|
3417
3417
|
};
|
|
@@ -3497,7 +3497,7 @@ const MetadataApiFactory = function (configuration, basePath, axios) {
|
|
|
3497
3497
|
};
|
|
3498
3498
|
|
|
3499
3499
|
/* tslint:disable */
|
|
3500
|
-
const BASE_PATH$
|
|
3500
|
+
const BASE_PATH$8 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Notices".replace(/\/+$/, "");
|
|
3501
3501
|
/**
|
|
3502
3502
|
*
|
|
3503
3503
|
* @export
|
|
@@ -3517,7 +3517,7 @@ class RequiredError$7 extends Error {
|
|
|
3517
3517
|
*
|
|
3518
3518
|
* @export
|
|
3519
3519
|
*/
|
|
3520
|
-
const DUMMY_BASE_URL$
|
|
3520
|
+
const DUMMY_BASE_URL$8 = 'https://example.com';
|
|
3521
3521
|
/**
|
|
3522
3522
|
*
|
|
3523
3523
|
* @throws {RequiredError}
|
|
@@ -3532,7 +3532,7 @@ const assertParamExists$7 = function (functionName, paramName, paramValue) {
|
|
|
3532
3532
|
*
|
|
3533
3533
|
* @export
|
|
3534
3534
|
*/
|
|
3535
|
-
const setApiKeyToObject$
|
|
3535
|
+
const setApiKeyToObject$8 = function (object, keyParamName, configuration) {
|
|
3536
3536
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3537
3537
|
if (configuration && configuration.apiKey) {
|
|
3538
3538
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -3546,7 +3546,7 @@ const setApiKeyToObject$7 = function (object, keyParamName, configuration) {
|
|
|
3546
3546
|
*
|
|
3547
3547
|
* @export
|
|
3548
3548
|
*/
|
|
3549
|
-
const setSearchParams$
|
|
3549
|
+
const setSearchParams$8 = function (url, ...objects) {
|
|
3550
3550
|
const searchParams = new URLSearchParams(url.search);
|
|
3551
3551
|
for (const object of objects) {
|
|
3552
3552
|
for (const key in object) {
|
|
@@ -3567,14 +3567,14 @@ const setSearchParams$7 = function (url, ...objects) {
|
|
|
3567
3567
|
*
|
|
3568
3568
|
* @export
|
|
3569
3569
|
*/
|
|
3570
|
-
const toPathString$
|
|
3570
|
+
const toPathString$8 = function (url) {
|
|
3571
3571
|
return url.pathname + url.search + url.hash;
|
|
3572
3572
|
};
|
|
3573
3573
|
/**
|
|
3574
3574
|
*
|
|
3575
3575
|
* @export
|
|
3576
3576
|
*/
|
|
3577
|
-
const createRequestFunction$
|
|
3577
|
+
const createRequestFunction$8 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
3578
3578
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
3579
3579
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
3580
3580
|
return axios.request(axiosRequestArgs);
|
|
@@ -3597,7 +3597,7 @@ const NoticeApiAxiosParamCreator = function (configuration) {
|
|
|
3597
3597
|
noticeGetMaintenance: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3598
3598
|
const localVarPath = `/Notice/getMaintenance`;
|
|
3599
3599
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3600
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3600
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$8);
|
|
3601
3601
|
let baseOptions;
|
|
3602
3602
|
if (configuration) {
|
|
3603
3603
|
baseOptions = configuration.baseOptions;
|
|
@@ -3606,12 +3606,12 @@ const NoticeApiAxiosParamCreator = function (configuration) {
|
|
|
3606
3606
|
const localVarHeaderParameter = {};
|
|
3607
3607
|
const localVarQueryParameter = {};
|
|
3608
3608
|
// authentication JWT token required
|
|
3609
|
-
yield setApiKeyToObject$
|
|
3610
|
-
setSearchParams$
|
|
3609
|
+
yield setApiKeyToObject$8(localVarHeaderParameter, "Authorization", configuration);
|
|
3610
|
+
setSearchParams$8(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3611
3611
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3612
3612
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3613
3613
|
return {
|
|
3614
|
-
url: toPathString$
|
|
3614
|
+
url: toPathString$8(localVarUrlObj),
|
|
3615
3615
|
options: localVarRequestOptions,
|
|
3616
3616
|
};
|
|
3617
3617
|
}),
|
|
@@ -3629,7 +3629,7 @@ const NoticeApiAxiosParamCreator = function (configuration) {
|
|
|
3629
3629
|
const localVarPath = `/Notice/{documentSlug}`
|
|
3630
3630
|
.replace(`{${"documentSlug"}}`, encodeURIComponent(String(documentSlug)));
|
|
3631
3631
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3632
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3632
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$8);
|
|
3633
3633
|
let baseOptions;
|
|
3634
3634
|
if (configuration) {
|
|
3635
3635
|
baseOptions = configuration.baseOptions;
|
|
@@ -3638,15 +3638,15 @@ const NoticeApiAxiosParamCreator = function (configuration) {
|
|
|
3638
3638
|
const localVarHeaderParameter = {};
|
|
3639
3639
|
const localVarQueryParameter = {};
|
|
3640
3640
|
// authentication JWT token required
|
|
3641
|
-
yield setApiKeyToObject$
|
|
3641
|
+
yield setApiKeyToObject$8(localVarHeaderParameter, "Authorization", configuration);
|
|
3642
3642
|
if (language !== undefined) {
|
|
3643
3643
|
localVarQueryParameter['language'] = language;
|
|
3644
3644
|
}
|
|
3645
|
-
setSearchParams$
|
|
3645
|
+
setSearchParams$8(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3646
3646
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3647
3647
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3648
3648
|
return {
|
|
3649
|
-
url: toPathString$
|
|
3649
|
+
url: toPathString$8(localVarUrlObj),
|
|
3650
3650
|
options: localVarRequestOptions,
|
|
3651
3651
|
};
|
|
3652
3652
|
}),
|
|
@@ -3668,7 +3668,7 @@ const NoticeApiFp = function (configuration) {
|
|
|
3668
3668
|
noticeGetMaintenance(options) {
|
|
3669
3669
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3670
3670
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.noticeGetMaintenance(options);
|
|
3671
|
-
return createRequestFunction$
|
|
3671
|
+
return createRequestFunction$8(localVarAxiosArgs, axios, BASE_PATH$8, configuration);
|
|
3672
3672
|
});
|
|
3673
3673
|
},
|
|
3674
3674
|
/**
|
|
@@ -3682,7 +3682,7 @@ const NoticeApiFp = function (configuration) {
|
|
|
3682
3682
|
noticeGetNotice(documentSlug, language, options) {
|
|
3683
3683
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3684
3684
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.noticeGetNotice(documentSlug, language, options);
|
|
3685
|
-
return createRequestFunction$
|
|
3685
|
+
return createRequestFunction$8(localVarAxiosArgs, axios, BASE_PATH$8, configuration);
|
|
3686
3686
|
});
|
|
3687
3687
|
},
|
|
3688
3688
|
};
|
|
@@ -3718,7 +3718,7 @@ const NoticeApiFactory = function (configuration, basePath, axios) {
|
|
|
3718
3718
|
};
|
|
3719
3719
|
|
|
3720
3720
|
/* tslint:disable */
|
|
3721
|
-
const BASE_PATH$
|
|
3721
|
+
const BASE_PATH$7 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Organization".replace(/\/+$/, "");
|
|
3722
3722
|
/**
|
|
3723
3723
|
*
|
|
3724
3724
|
* @export
|
|
@@ -3738,7 +3738,7 @@ class RequiredError$6 extends Error {
|
|
|
3738
3738
|
*
|
|
3739
3739
|
* @export
|
|
3740
3740
|
*/
|
|
3741
|
-
const DUMMY_BASE_URL$
|
|
3741
|
+
const DUMMY_BASE_URL$7 = 'https://example.com';
|
|
3742
3742
|
/**
|
|
3743
3743
|
*
|
|
3744
3744
|
* @throws {RequiredError}
|
|
@@ -3753,7 +3753,7 @@ const assertParamExists$6 = function (functionName, paramName, paramValue) {
|
|
|
3753
3753
|
*
|
|
3754
3754
|
* @export
|
|
3755
3755
|
*/
|
|
3756
|
-
const setApiKeyToObject$
|
|
3756
|
+
const setApiKeyToObject$7 = function (object, keyParamName, configuration) {
|
|
3757
3757
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3758
3758
|
if (configuration && configuration.apiKey) {
|
|
3759
3759
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -3767,7 +3767,7 @@ const setApiKeyToObject$6 = function (object, keyParamName, configuration) {
|
|
|
3767
3767
|
*
|
|
3768
3768
|
* @export
|
|
3769
3769
|
*/
|
|
3770
|
-
const setSearchParams$
|
|
3770
|
+
const setSearchParams$7 = function (url, ...objects) {
|
|
3771
3771
|
const searchParams = new URLSearchParams(url.search);
|
|
3772
3772
|
for (const object of objects) {
|
|
3773
3773
|
for (const key in object) {
|
|
@@ -3788,14 +3788,14 @@ const setSearchParams$6 = function (url, ...objects) {
|
|
|
3788
3788
|
*
|
|
3789
3789
|
* @export
|
|
3790
3790
|
*/
|
|
3791
|
-
const toPathString$
|
|
3791
|
+
const toPathString$7 = function (url) {
|
|
3792
3792
|
return url.pathname + url.search + url.hash;
|
|
3793
3793
|
};
|
|
3794
3794
|
/**
|
|
3795
3795
|
*
|
|
3796
3796
|
* @export
|
|
3797
3797
|
*/
|
|
3798
|
-
const createRequestFunction$
|
|
3798
|
+
const createRequestFunction$7 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
3799
3799
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
3800
3800
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
3801
3801
|
return axios.request(axiosRequestArgs);
|
|
@@ -3822,7 +3822,7 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3822
3822
|
const localVarPath = `/Organization/{url}`
|
|
3823
3823
|
.replace(`{${"url"}}`, encodeURIComponent(String(url)));
|
|
3824
3824
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3825
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3825
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3826
3826
|
let baseOptions;
|
|
3827
3827
|
if (configuration) {
|
|
3828
3828
|
baseOptions = configuration.baseOptions;
|
|
@@ -3831,12 +3831,12 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3831
3831
|
const localVarHeaderParameter = {};
|
|
3832
3832
|
const localVarQueryParameter = {};
|
|
3833
3833
|
// authentication JWT token required
|
|
3834
|
-
yield setApiKeyToObject$
|
|
3835
|
-
setSearchParams$
|
|
3834
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3835
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3836
3836
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3837
3837
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3838
3838
|
return {
|
|
3839
|
-
url: toPathString$
|
|
3839
|
+
url: toPathString$7(localVarUrlObj),
|
|
3840
3840
|
options: localVarRequestOptions,
|
|
3841
3841
|
};
|
|
3842
3842
|
}),
|
|
@@ -3850,7 +3850,7 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3850
3850
|
organizationGetROR: (filter, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3851
3851
|
const localVarPath = `/Organization/-/ror`;
|
|
3852
3852
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3853
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3853
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3854
3854
|
let baseOptions;
|
|
3855
3855
|
if (configuration) {
|
|
3856
3856
|
baseOptions = configuration.baseOptions;
|
|
@@ -3859,15 +3859,15 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3859
3859
|
const localVarHeaderParameter = {};
|
|
3860
3860
|
const localVarQueryParameter = {};
|
|
3861
3861
|
// authentication JWT token required
|
|
3862
|
-
yield setApiKeyToObject$
|
|
3862
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3863
3863
|
if (filter !== undefined) {
|
|
3864
3864
|
localVarQueryParameter['filter'] = filter;
|
|
3865
3865
|
}
|
|
3866
|
-
setSearchParams$
|
|
3866
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3867
3867
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3868
3868
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3869
3869
|
return {
|
|
3870
|
-
url: toPathString$
|
|
3870
|
+
url: toPathString$7(localVarUrlObj),
|
|
3871
3871
|
options: localVarRequestOptions,
|
|
3872
3872
|
};
|
|
3873
3873
|
}),
|
|
@@ -3882,7 +3882,7 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3882
3882
|
organizationIndex: (member, filter, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3883
3883
|
const localVarPath = `/Organization`;
|
|
3884
3884
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3885
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3885
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3886
3886
|
let baseOptions;
|
|
3887
3887
|
if (configuration) {
|
|
3888
3888
|
baseOptions = configuration.baseOptions;
|
|
@@ -3891,18 +3891,18 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3891
3891
|
const localVarHeaderParameter = {};
|
|
3892
3892
|
const localVarQueryParameter = {};
|
|
3893
3893
|
// authentication JWT token required
|
|
3894
|
-
yield setApiKeyToObject$
|
|
3894
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3895
3895
|
if (member !== undefined) {
|
|
3896
3896
|
localVarQueryParameter['member'] = member;
|
|
3897
3897
|
}
|
|
3898
3898
|
if (filter !== undefined) {
|
|
3899
3899
|
localVarQueryParameter['filter'] = filter;
|
|
3900
3900
|
}
|
|
3901
|
-
setSearchParams$
|
|
3901
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3902
3902
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3903
3903
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3904
3904
|
return {
|
|
3905
|
-
url: toPathString$
|
|
3905
|
+
url: toPathString$7(localVarUrlObj),
|
|
3906
3906
|
options: localVarRequestOptions,
|
|
3907
3907
|
};
|
|
3908
3908
|
}),
|
|
@@ -3919,7 +3919,7 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3919
3919
|
const localVarPath = `/Organization/-/isMember/{url}`
|
|
3920
3920
|
.replace(`{${"url"}}`, encodeURIComponent(String(url)));
|
|
3921
3921
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3922
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3922
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3923
3923
|
let baseOptions;
|
|
3924
3924
|
if (configuration) {
|
|
3925
3925
|
baseOptions = configuration.baseOptions;
|
|
@@ -3928,12 +3928,12 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3928
3928
|
const localVarHeaderParameter = {};
|
|
3929
3929
|
const localVarQueryParameter = {};
|
|
3930
3930
|
// authentication JWT token required
|
|
3931
|
-
yield setApiKeyToObject$
|
|
3932
|
-
setSearchParams$
|
|
3931
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3932
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3933
3933
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3934
3934
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3935
3935
|
return {
|
|
3936
|
-
url: toPathString$
|
|
3936
|
+
url: toPathString$7(localVarUrlObj),
|
|
3937
3937
|
options: localVarRequestOptions,
|
|
3938
3938
|
};
|
|
3939
3939
|
}),
|
|
@@ -3946,7 +3946,7 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3946
3946
|
organizationIsMember2: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3947
3947
|
const localVarPath = `/Organization/-/isMember`;
|
|
3948
3948
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3949
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3949
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3950
3950
|
let baseOptions;
|
|
3951
3951
|
if (configuration) {
|
|
3952
3952
|
baseOptions = configuration.baseOptions;
|
|
@@ -3955,12 +3955,12 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3955
3955
|
const localVarHeaderParameter = {};
|
|
3956
3956
|
const localVarQueryParameter = {};
|
|
3957
3957
|
// authentication JWT token required
|
|
3958
|
-
yield setApiKeyToObject$
|
|
3959
|
-
setSearchParams$
|
|
3958
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3959
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3960
3960
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3961
3961
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3962
3962
|
return {
|
|
3963
|
-
url: toPathString$
|
|
3963
|
+
url: toPathString$7(localVarUrlObj),
|
|
3964
3964
|
options: localVarRequestOptions,
|
|
3965
3965
|
};
|
|
3966
3966
|
}),
|
|
@@ -3983,7 +3983,7 @@ const OrganizationApiFp = function (configuration) {
|
|
|
3983
3983
|
organizationGetOrganization(url, options) {
|
|
3984
3984
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3985
3985
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationGetOrganization(url, options);
|
|
3986
|
-
return createRequestFunction$
|
|
3986
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
3987
3987
|
});
|
|
3988
3988
|
},
|
|
3989
3989
|
/**
|
|
@@ -3996,7 +3996,7 @@ const OrganizationApiFp = function (configuration) {
|
|
|
3996
3996
|
organizationGetROR(filter, options) {
|
|
3997
3997
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3998
3998
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationGetROR(filter, options);
|
|
3999
|
-
return createRequestFunction$
|
|
3999
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
4000
4000
|
});
|
|
4001
4001
|
},
|
|
4002
4002
|
/**
|
|
@@ -4010,7 +4010,7 @@ const OrganizationApiFp = function (configuration) {
|
|
|
4010
4010
|
organizationIndex(member, filter, options) {
|
|
4011
4011
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4012
4012
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationIndex(member, filter, options);
|
|
4013
|
-
return createRequestFunction$
|
|
4013
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
4014
4014
|
});
|
|
4015
4015
|
},
|
|
4016
4016
|
/**
|
|
@@ -4023,7 +4023,7 @@ const OrganizationApiFp = function (configuration) {
|
|
|
4023
4023
|
organizationIsMember(url, options) {
|
|
4024
4024
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4025
4025
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationIsMember(url, options);
|
|
4026
|
-
return createRequestFunction$
|
|
4026
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
4027
4027
|
});
|
|
4028
4028
|
},
|
|
4029
4029
|
/**
|
|
@@ -4035,7 +4035,7 @@ const OrganizationApiFp = function (configuration) {
|
|
|
4035
4035
|
organizationIsMember2(options) {
|
|
4036
4036
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4037
4037
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationIsMember2(options);
|
|
4038
|
-
return createRequestFunction$
|
|
4038
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
4039
4039
|
});
|
|
4040
4040
|
},
|
|
4041
4041
|
};
|
|
@@ -4101,7 +4101,7 @@ const OrganizationApiFactory = function (configuration, basePath, axios) {
|
|
|
4101
4101
|
};
|
|
4102
4102
|
|
|
4103
4103
|
/* tslint:disable */
|
|
4104
|
-
const BASE_PATH$
|
|
4104
|
+
const BASE_PATH$6 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Project".replace(/\/+$/, "");
|
|
4105
4105
|
/**
|
|
4106
4106
|
*
|
|
4107
4107
|
* @export
|
|
@@ -4121,7 +4121,7 @@ class RequiredError$5 extends Error {
|
|
|
4121
4121
|
*
|
|
4122
4122
|
* @export
|
|
4123
4123
|
*/
|
|
4124
|
-
const DUMMY_BASE_URL$
|
|
4124
|
+
const DUMMY_BASE_URL$6 = 'https://example.com';
|
|
4125
4125
|
/**
|
|
4126
4126
|
*
|
|
4127
4127
|
* @throws {RequiredError}
|
|
@@ -4136,7 +4136,7 @@ const assertParamExists$5 = function (functionName, paramName, paramValue) {
|
|
|
4136
4136
|
*
|
|
4137
4137
|
* @export
|
|
4138
4138
|
*/
|
|
4139
|
-
const setApiKeyToObject$
|
|
4139
|
+
const setApiKeyToObject$6 = function (object, keyParamName, configuration) {
|
|
4140
4140
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4141
4141
|
if (configuration && configuration.apiKey) {
|
|
4142
4142
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -4150,7 +4150,7 @@ const setApiKeyToObject$5 = function (object, keyParamName, configuration) {
|
|
|
4150
4150
|
*
|
|
4151
4151
|
* @export
|
|
4152
4152
|
*/
|
|
4153
|
-
const setSearchParams$
|
|
4153
|
+
const setSearchParams$6 = function (url, ...objects) {
|
|
4154
4154
|
const searchParams = new URLSearchParams(url.search);
|
|
4155
4155
|
for (const object of objects) {
|
|
4156
4156
|
for (const key in object) {
|
|
@@ -4184,14 +4184,14 @@ const serializeDataIfNeeded$4 = function (value, requestOptions, configuration)
|
|
|
4184
4184
|
*
|
|
4185
4185
|
* @export
|
|
4186
4186
|
*/
|
|
4187
|
-
const toPathString$
|
|
4187
|
+
const toPathString$6 = function (url) {
|
|
4188
4188
|
return url.pathname + url.search + url.hash;
|
|
4189
4189
|
};
|
|
4190
4190
|
/**
|
|
4191
4191
|
*
|
|
4192
4192
|
* @export
|
|
4193
4193
|
*/
|
|
4194
|
-
const createRequestFunction$
|
|
4194
|
+
const createRequestFunction$6 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
4195
4195
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
4196
4196
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
4197
4197
|
return axios.request(axiosRequestArgs);
|
|
@@ -4214,7 +4214,7 @@ const DisciplineApiAxiosParamCreator = function (configuration) {
|
|
|
4214
4214
|
disciplineIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4215
4215
|
const localVarPath = `/Discipline`;
|
|
4216
4216
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4217
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4217
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4218
4218
|
let baseOptions;
|
|
4219
4219
|
if (configuration) {
|
|
4220
4220
|
baseOptions = configuration.baseOptions;
|
|
@@ -4223,12 +4223,12 @@ const DisciplineApiAxiosParamCreator = function (configuration) {
|
|
|
4223
4223
|
const localVarHeaderParameter = {};
|
|
4224
4224
|
const localVarQueryParameter = {};
|
|
4225
4225
|
// authentication JWT token required
|
|
4226
|
-
yield setApiKeyToObject$
|
|
4227
|
-
setSearchParams$
|
|
4226
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4227
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4228
4228
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4229
4229
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4230
4230
|
return {
|
|
4231
|
-
url: toPathString$
|
|
4231
|
+
url: toPathString$6(localVarUrlObj),
|
|
4232
4232
|
options: localVarRequestOptions,
|
|
4233
4233
|
};
|
|
4234
4234
|
}),
|
|
@@ -4250,7 +4250,7 @@ const DisciplineApiFp = function (configuration) {
|
|
|
4250
4250
|
disciplineIndex(options) {
|
|
4251
4251
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4252
4252
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.disciplineIndex(options);
|
|
4253
|
-
return createRequestFunction$
|
|
4253
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4254
4254
|
});
|
|
4255
4255
|
},
|
|
4256
4256
|
};
|
|
@@ -4288,7 +4288,7 @@ const LicenseApiAxiosParamCreator = function (configuration) {
|
|
|
4288
4288
|
licenseIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4289
4289
|
const localVarPath = `/License`;
|
|
4290
4290
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4291
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4291
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4292
4292
|
let baseOptions;
|
|
4293
4293
|
if (configuration) {
|
|
4294
4294
|
baseOptions = configuration.baseOptions;
|
|
@@ -4297,12 +4297,12 @@ const LicenseApiAxiosParamCreator = function (configuration) {
|
|
|
4297
4297
|
const localVarHeaderParameter = {};
|
|
4298
4298
|
const localVarQueryParameter = {};
|
|
4299
4299
|
// authentication JWT token required
|
|
4300
|
-
yield setApiKeyToObject$
|
|
4301
|
-
setSearchParams$
|
|
4300
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4301
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4302
4302
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4303
4303
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4304
4304
|
return {
|
|
4305
|
-
url: toPathString$
|
|
4305
|
+
url: toPathString$6(localVarUrlObj),
|
|
4306
4306
|
options: localVarRequestOptions,
|
|
4307
4307
|
};
|
|
4308
4308
|
}),
|
|
@@ -4324,7 +4324,7 @@ const LicenseApiFp = function (configuration) {
|
|
|
4324
4324
|
licenseIndex(options) {
|
|
4325
4325
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4326
4326
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.licenseIndex(options);
|
|
4327
|
-
return createRequestFunction$
|
|
4327
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4328
4328
|
});
|
|
4329
4329
|
},
|
|
4330
4330
|
};
|
|
@@ -4366,7 +4366,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4366
4366
|
const localVarPath = `/Project/{id}`
|
|
4367
4367
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
4368
4368
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4369
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4369
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4370
4370
|
let baseOptions;
|
|
4371
4371
|
if (configuration) {
|
|
4372
4372
|
baseOptions = configuration.baseOptions;
|
|
@@ -4375,12 +4375,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4375
4375
|
const localVarHeaderParameter = {};
|
|
4376
4376
|
const localVarQueryParameter = {};
|
|
4377
4377
|
// authentication JWT token required
|
|
4378
|
-
yield setApiKeyToObject$
|
|
4379
|
-
setSearchParams$
|
|
4378
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4379
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4380
4380
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4381
4381
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4382
4382
|
return {
|
|
4383
|
-
url: toPathString$
|
|
4383
|
+
url: toPathString$6(localVarUrlObj),
|
|
4384
4384
|
options: localVarRequestOptions,
|
|
4385
4385
|
};
|
|
4386
4386
|
}),
|
|
@@ -4397,7 +4397,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4397
4397
|
const localVarPath = `/Project/invitation/{invitationId}`
|
|
4398
4398
|
.replace(`{${"invitationId"}}`, encodeURIComponent(String(invitationId)));
|
|
4399
4399
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4400
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4400
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4401
4401
|
let baseOptions;
|
|
4402
4402
|
if (configuration) {
|
|
4403
4403
|
baseOptions = configuration.baseOptions;
|
|
@@ -4406,12 +4406,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4406
4406
|
const localVarHeaderParameter = {};
|
|
4407
4407
|
const localVarQueryParameter = {};
|
|
4408
4408
|
// authentication JWT token required
|
|
4409
|
-
yield setApiKeyToObject$
|
|
4410
|
-
setSearchParams$
|
|
4409
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4410
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4411
4411
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4412
4412
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4413
4413
|
return {
|
|
4414
|
-
url: toPathString$
|
|
4414
|
+
url: toPathString$6(localVarUrlObj),
|
|
4415
4415
|
options: localVarRequestOptions,
|
|
4416
4416
|
};
|
|
4417
4417
|
}),
|
|
@@ -4428,7 +4428,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4428
4428
|
const localVarPath = `/Project/{id}`
|
|
4429
4429
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
4430
4430
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4431
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4431
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4432
4432
|
let baseOptions;
|
|
4433
4433
|
if (configuration) {
|
|
4434
4434
|
baseOptions = configuration.baseOptions;
|
|
@@ -4437,12 +4437,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4437
4437
|
const localVarHeaderParameter = {};
|
|
4438
4438
|
const localVarQueryParameter = {};
|
|
4439
4439
|
// authentication JWT token required
|
|
4440
|
-
yield setApiKeyToObject$
|
|
4441
|
-
setSearchParams$
|
|
4440
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4441
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4442
4442
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4443
4443
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4444
4444
|
return {
|
|
4445
|
-
url: toPathString$
|
|
4445
|
+
url: toPathString$6(localVarUrlObj),
|
|
4446
4446
|
options: localVarRequestOptions,
|
|
4447
4447
|
};
|
|
4448
4448
|
}),
|
|
@@ -4463,7 +4463,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4463
4463
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
4464
4464
|
.replace(`{${"resourceTypeId"}}`, encodeURIComponent(String(resourceTypeId)));
|
|
4465
4465
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4466
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4466
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4467
4467
|
let baseOptions;
|
|
4468
4468
|
if (configuration) {
|
|
4469
4469
|
baseOptions = configuration.baseOptions;
|
|
@@ -4472,12 +4472,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4472
4472
|
const localVarHeaderParameter = {};
|
|
4473
4473
|
const localVarQueryParameter = {};
|
|
4474
4474
|
// authentication JWT token required
|
|
4475
|
-
yield setApiKeyToObject$
|
|
4476
|
-
setSearchParams$
|
|
4475
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4476
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4477
4477
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4478
4478
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4479
4479
|
return {
|
|
4480
|
-
url: toPathString$
|
|
4480
|
+
url: toPathString$6(localVarUrlObj),
|
|
4481
4481
|
options: localVarRequestOptions,
|
|
4482
4482
|
};
|
|
4483
4483
|
}),
|
|
@@ -4494,7 +4494,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4494
4494
|
const localVarPath = `/Project/{id}/resources`
|
|
4495
4495
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
4496
4496
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4497
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4497
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4498
4498
|
let baseOptions;
|
|
4499
4499
|
if (configuration) {
|
|
4500
4500
|
baseOptions = configuration.baseOptions;
|
|
@@ -4503,12 +4503,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4503
4503
|
const localVarHeaderParameter = {};
|
|
4504
4504
|
const localVarQueryParameter = {};
|
|
4505
4505
|
// authentication JWT token required
|
|
4506
|
-
yield setApiKeyToObject$
|
|
4507
|
-
setSearchParams$
|
|
4506
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4507
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4508
4508
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4509
4509
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4510
4510
|
return {
|
|
4511
|
-
url: toPathString$
|
|
4511
|
+
url: toPathString$6(localVarUrlObj),
|
|
4512
4512
|
options: localVarRequestOptions,
|
|
4513
4513
|
};
|
|
4514
4514
|
}),
|
|
@@ -4521,7 +4521,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4521
4521
|
projectGetTopLevelProjects: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4522
4522
|
const localVarPath = `/Project/-/topLevel`;
|
|
4523
4523
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4524
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4524
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4525
4525
|
let baseOptions;
|
|
4526
4526
|
if (configuration) {
|
|
4527
4527
|
baseOptions = configuration.baseOptions;
|
|
@@ -4530,12 +4530,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4530
4530
|
const localVarHeaderParameter = {};
|
|
4531
4531
|
const localVarQueryParameter = {};
|
|
4532
4532
|
// authentication JWT token required
|
|
4533
|
-
yield setApiKeyToObject$
|
|
4534
|
-
setSearchParams$
|
|
4533
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4534
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4535
4535
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4536
4536
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4537
4537
|
return {
|
|
4538
|
-
url: toPathString$
|
|
4538
|
+
url: toPathString$6(localVarUrlObj),
|
|
4539
4539
|
options: localVarRequestOptions,
|
|
4540
4540
|
};
|
|
4541
4541
|
}),
|
|
@@ -4548,7 +4548,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4548
4548
|
projectIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4549
4549
|
const localVarPath = `/Project`;
|
|
4550
4550
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4551
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4551
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4552
4552
|
let baseOptions;
|
|
4553
4553
|
if (configuration) {
|
|
4554
4554
|
baseOptions = configuration.baseOptions;
|
|
@@ -4557,12 +4557,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4557
4557
|
const localVarHeaderParameter = {};
|
|
4558
4558
|
const localVarQueryParameter = {};
|
|
4559
4559
|
// authentication JWT token required
|
|
4560
|
-
yield setApiKeyToObject$
|
|
4561
|
-
setSearchParams$
|
|
4560
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4561
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4562
4562
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4563
4563
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4564
4564
|
return {
|
|
4565
|
-
url: toPathString$
|
|
4565
|
+
url: toPathString$6(localVarUrlObj),
|
|
4566
4566
|
options: localVarRequestOptions,
|
|
4567
4567
|
};
|
|
4568
4568
|
}),
|
|
@@ -4579,7 +4579,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4579
4579
|
const localVarPath = `/Project/invitation/list/{projectId}`
|
|
4580
4580
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
4581
4581
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4582
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4582
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4583
4583
|
let baseOptions;
|
|
4584
4584
|
if (configuration) {
|
|
4585
4585
|
baseOptions = configuration.baseOptions;
|
|
@@ -4588,12 +4588,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4588
4588
|
const localVarHeaderParameter = {};
|
|
4589
4589
|
const localVarQueryParameter = {};
|
|
4590
4590
|
// authentication JWT token required
|
|
4591
|
-
yield setApiKeyToObject$
|
|
4592
|
-
setSearchParams$
|
|
4591
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4592
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4593
4593
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4594
4594
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4595
4595
|
return {
|
|
4596
|
-
url: toPathString$
|
|
4596
|
+
url: toPathString$6(localVarUrlObj),
|
|
4597
4597
|
options: localVarRequestOptions,
|
|
4598
4598
|
};
|
|
4599
4599
|
}),
|
|
@@ -4614,7 +4614,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4614
4614
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
4615
4615
|
.replace(`{${"resourceTypeId"}}`, encodeURIComponent(String(resourceTypeId)));
|
|
4616
4616
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4617
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4617
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4618
4618
|
let baseOptions;
|
|
4619
4619
|
if (configuration) {
|
|
4620
4620
|
baseOptions = configuration.baseOptions;
|
|
@@ -4623,12 +4623,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4623
4623
|
const localVarHeaderParameter = {};
|
|
4624
4624
|
const localVarQueryParameter = {};
|
|
4625
4625
|
// authentication JWT token required
|
|
4626
|
-
yield setApiKeyToObject$
|
|
4627
|
-
setSearchParams$
|
|
4626
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4627
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4628
4628
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4629
4629
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4630
4630
|
return {
|
|
4631
|
-
url: toPathString$
|
|
4631
|
+
url: toPathString$6(localVarUrlObj),
|
|
4632
4632
|
options: localVarRequestOptions,
|
|
4633
4633
|
};
|
|
4634
4634
|
}),
|
|
@@ -4645,7 +4645,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4645
4645
|
const localVarPath = `/Project/{projectId}/quota/-/all`
|
|
4646
4646
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
4647
4647
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4648
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4648
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4649
4649
|
let baseOptions;
|
|
4650
4650
|
if (configuration) {
|
|
4651
4651
|
baseOptions = configuration.baseOptions;
|
|
@@ -4654,12 +4654,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4654
4654
|
const localVarHeaderParameter = {};
|
|
4655
4655
|
const localVarQueryParameter = {};
|
|
4656
4656
|
// authentication JWT token required
|
|
4657
|
-
yield setApiKeyToObject$
|
|
4658
|
-
setSearchParams$
|
|
4657
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4658
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4659
4659
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4660
4660
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4661
4661
|
return {
|
|
4662
|
-
url: toPathString$
|
|
4662
|
+
url: toPathString$6(localVarUrlObj),
|
|
4663
4663
|
options: localVarRequestOptions,
|
|
4664
4664
|
};
|
|
4665
4665
|
}),
|
|
@@ -4676,7 +4676,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4676
4676
|
const localVarPath = `/Project/invitation/resolve/{token}`
|
|
4677
4677
|
.replace(`{${"token"}}`, encodeURIComponent(String(token)));
|
|
4678
4678
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4679
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4679
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4680
4680
|
let baseOptions;
|
|
4681
4681
|
if (configuration) {
|
|
4682
4682
|
baseOptions = configuration.baseOptions;
|
|
@@ -4685,12 +4685,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4685
4685
|
const localVarHeaderParameter = {};
|
|
4686
4686
|
const localVarQueryParameter = {};
|
|
4687
4687
|
// authentication JWT token required
|
|
4688
|
-
yield setApiKeyToObject$
|
|
4689
|
-
setSearchParams$
|
|
4688
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4689
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4690
4690
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4691
4691
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4692
4692
|
return {
|
|
4693
|
-
url: toPathString$
|
|
4693
|
+
url: toPathString$6(localVarUrlObj),
|
|
4694
4694
|
options: localVarRequestOptions,
|
|
4695
4695
|
};
|
|
4696
4696
|
}),
|
|
@@ -4706,7 +4706,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4706
4706
|
assertParamExists$5('projectSendInvitation', 'sendInvitationObject', sendInvitationObject);
|
|
4707
4707
|
const localVarPath = `/Project/invitation`;
|
|
4708
4708
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4709
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4709
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4710
4710
|
let baseOptions;
|
|
4711
4711
|
if (configuration) {
|
|
4712
4712
|
baseOptions = configuration.baseOptions;
|
|
@@ -4715,14 +4715,14 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4715
4715
|
const localVarHeaderParameter = {};
|
|
4716
4716
|
const localVarQueryParameter = {};
|
|
4717
4717
|
// authentication JWT token required
|
|
4718
|
-
yield setApiKeyToObject$
|
|
4718
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4719
4719
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4720
|
-
setSearchParams$
|
|
4720
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4721
4721
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4722
4722
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4723
4723
|
localVarRequestOptions.data = serializeDataIfNeeded$4(sendInvitationObject, localVarRequestOptions, configuration);
|
|
4724
4724
|
return {
|
|
4725
|
-
url: toPathString$
|
|
4725
|
+
url: toPathString$6(localVarUrlObj),
|
|
4726
4726
|
options: localVarRequestOptions,
|
|
4727
4727
|
};
|
|
4728
4728
|
}),
|
|
@@ -4735,7 +4735,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4735
4735
|
projectStore: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4736
4736
|
const localVarPath = `/Project`;
|
|
4737
4737
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4738
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4738
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4739
4739
|
let baseOptions;
|
|
4740
4740
|
if (configuration) {
|
|
4741
4741
|
baseOptions = configuration.baseOptions;
|
|
@@ -4744,12 +4744,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4744
4744
|
const localVarHeaderParameter = {};
|
|
4745
4745
|
const localVarQueryParameter = {};
|
|
4746
4746
|
// authentication JWT token required
|
|
4747
|
-
yield setApiKeyToObject$
|
|
4748
|
-
setSearchParams$
|
|
4747
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4748
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4749
4749
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4750
4750
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4751
4751
|
return {
|
|
4752
|
-
url: toPathString$
|
|
4752
|
+
url: toPathString$6(localVarUrlObj),
|
|
4753
4753
|
options: localVarRequestOptions,
|
|
4754
4754
|
};
|
|
4755
4755
|
}),
|
|
@@ -4766,7 +4766,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4766
4766
|
const localVarPath = `/Project/{id}`
|
|
4767
4767
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
4768
4768
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4769
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4769
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4770
4770
|
let baseOptions;
|
|
4771
4771
|
if (configuration) {
|
|
4772
4772
|
baseOptions = configuration.baseOptions;
|
|
@@ -4775,12 +4775,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4775
4775
|
const localVarHeaderParameter = {};
|
|
4776
4776
|
const localVarQueryParameter = {};
|
|
4777
4777
|
// authentication JWT token required
|
|
4778
|
-
yield setApiKeyToObject$
|
|
4779
|
-
setSearchParams$
|
|
4778
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4779
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4780
4780
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4781
4781
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4782
4782
|
return {
|
|
4783
|
-
url: toPathString$
|
|
4783
|
+
url: toPathString$6(localVarUrlObj),
|
|
4784
4784
|
options: localVarRequestOptions,
|
|
4785
4785
|
};
|
|
4786
4786
|
}),
|
|
@@ -4804,7 +4804,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4804
4804
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
4805
4805
|
.replace(`{${"resourceTypeId"}}`, encodeURIComponent(String(resourceTypeId)));
|
|
4806
4806
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4807
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4807
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4808
4808
|
let baseOptions;
|
|
4809
4809
|
if (configuration) {
|
|
4810
4810
|
baseOptions = configuration.baseOptions;
|
|
@@ -4813,14 +4813,14 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4813
4813
|
const localVarHeaderParameter = {};
|
|
4814
4814
|
const localVarQueryParameter = {};
|
|
4815
4815
|
// authentication JWT token required
|
|
4816
|
-
yield setApiKeyToObject$
|
|
4816
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4817
4817
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4818
|
-
setSearchParams$
|
|
4818
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4819
4819
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4820
4820
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4821
4821
|
localVarRequestOptions.data = serializeDataIfNeeded$4(updateProjectQuotaObject, localVarRequestOptions, configuration);
|
|
4822
4822
|
return {
|
|
4823
|
-
url: toPathString$
|
|
4823
|
+
url: toPathString$6(localVarUrlObj),
|
|
4824
4824
|
options: localVarRequestOptions,
|
|
4825
4825
|
};
|
|
4826
4826
|
}),
|
|
@@ -4843,7 +4843,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4843
4843
|
projectDelete(id, options) {
|
|
4844
4844
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4845
4845
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectDelete(id, options);
|
|
4846
|
-
return createRequestFunction$
|
|
4846
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4847
4847
|
});
|
|
4848
4848
|
},
|
|
4849
4849
|
/**
|
|
@@ -4856,7 +4856,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4856
4856
|
projectDeleteInvitation(invitationId, options) {
|
|
4857
4857
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4858
4858
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectDeleteInvitation(invitationId, options);
|
|
4859
|
-
return createRequestFunction$
|
|
4859
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4860
4860
|
});
|
|
4861
4861
|
},
|
|
4862
4862
|
/**
|
|
@@ -4869,7 +4869,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4869
4869
|
projectGet(id, options) {
|
|
4870
4870
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4871
4871
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectGet(id, options);
|
|
4872
|
-
return createRequestFunction$
|
|
4872
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4873
4873
|
});
|
|
4874
4874
|
},
|
|
4875
4875
|
/**
|
|
@@ -4883,7 +4883,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4883
4883
|
projectGetQuotaMax(projectId, resourceTypeId, options) {
|
|
4884
4884
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4885
4885
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectGetQuotaMax(projectId, resourceTypeId, options);
|
|
4886
|
-
return createRequestFunction$
|
|
4886
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4887
4887
|
});
|
|
4888
4888
|
},
|
|
4889
4889
|
/**
|
|
@@ -4896,7 +4896,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4896
4896
|
projectGetResources(id, options) {
|
|
4897
4897
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4898
4898
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectGetResources(id, options);
|
|
4899
|
-
return createRequestFunction$
|
|
4899
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4900
4900
|
});
|
|
4901
4901
|
},
|
|
4902
4902
|
/**
|
|
@@ -4908,7 +4908,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4908
4908
|
projectGetTopLevelProjects(options) {
|
|
4909
4909
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4910
4910
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectGetTopLevelProjects(options);
|
|
4911
|
-
return createRequestFunction$
|
|
4911
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4912
4912
|
});
|
|
4913
4913
|
},
|
|
4914
4914
|
/**
|
|
@@ -4920,7 +4920,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4920
4920
|
projectIndex(options) {
|
|
4921
4921
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4922
4922
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectIndex(options);
|
|
4923
|
-
return createRequestFunction$
|
|
4923
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4924
4924
|
});
|
|
4925
4925
|
},
|
|
4926
4926
|
/**
|
|
@@ -4933,7 +4933,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4933
4933
|
projectListInvitations(projectId, options) {
|
|
4934
4934
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4935
4935
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectListInvitations(projectId, options);
|
|
4936
|
-
return createRequestFunction$
|
|
4936
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4937
4937
|
});
|
|
4938
4938
|
},
|
|
4939
4939
|
/**
|
|
@@ -4947,7 +4947,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4947
4947
|
projectQuota(projectId, resourceTypeId, options) {
|
|
4948
4948
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4949
4949
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectQuota(projectId, resourceTypeId, options);
|
|
4950
|
-
return createRequestFunction$
|
|
4950
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4951
4951
|
});
|
|
4952
4952
|
},
|
|
4953
4953
|
/**
|
|
@@ -4960,7 +4960,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4960
4960
|
projectQuotas(projectId, options) {
|
|
4961
4961
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4962
4962
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectQuotas(projectId, options);
|
|
4963
|
-
return createRequestFunction$
|
|
4963
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4964
4964
|
});
|
|
4965
4965
|
},
|
|
4966
4966
|
/**
|
|
@@ -4973,7 +4973,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4973
4973
|
projectResolveInvitation(token, options) {
|
|
4974
4974
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4975
4975
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectResolveInvitation(token, options);
|
|
4976
|
-
return createRequestFunction$
|
|
4976
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4977
4977
|
});
|
|
4978
4978
|
},
|
|
4979
4979
|
/**
|
|
@@ -4986,7 +4986,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4986
4986
|
projectSendInvitation(sendInvitationObject, options) {
|
|
4987
4987
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4988
4988
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectSendInvitation(sendInvitationObject, options);
|
|
4989
|
-
return createRequestFunction$
|
|
4989
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4990
4990
|
});
|
|
4991
4991
|
},
|
|
4992
4992
|
/**
|
|
@@ -4998,7 +4998,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4998
4998
|
projectStore(options) {
|
|
4999
4999
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5000
5000
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectStore(options);
|
|
5001
|
-
return createRequestFunction$
|
|
5001
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5002
5002
|
});
|
|
5003
5003
|
},
|
|
5004
5004
|
/**
|
|
@@ -5011,7 +5011,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
5011
5011
|
projectUpdate(id, options) {
|
|
5012
5012
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5013
5013
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectUpdate(id, options);
|
|
5014
|
-
return createRequestFunction$
|
|
5014
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5015
5015
|
});
|
|
5016
5016
|
},
|
|
5017
5017
|
/**
|
|
@@ -5026,7 +5026,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
5026
5026
|
projectUpdateQuota(projectId, resourceTypeId, updateProjectQuotaObject, options) {
|
|
5027
5027
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5028
5028
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectUpdateQuota(projectId, resourceTypeId, updateProjectQuotaObject, options);
|
|
5029
|
-
return createRequestFunction$
|
|
5029
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5030
5030
|
});
|
|
5031
5031
|
},
|
|
5032
5032
|
};
|
|
@@ -5218,7 +5218,7 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5218
5218
|
.replace(`{${"userId"}}`, encodeURIComponent(String(userId)))
|
|
5219
5219
|
.replace(`{${"roleId"}}`, encodeURIComponent(String(roleId)));
|
|
5220
5220
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5221
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5221
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5222
5222
|
let baseOptions;
|
|
5223
5223
|
if (configuration) {
|
|
5224
5224
|
baseOptions = configuration.baseOptions;
|
|
@@ -5227,12 +5227,12 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5227
5227
|
const localVarHeaderParameter = {};
|
|
5228
5228
|
const localVarQueryParameter = {};
|
|
5229
5229
|
// authentication JWT token required
|
|
5230
|
-
yield setApiKeyToObject$
|
|
5231
|
-
setSearchParams$
|
|
5230
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5231
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5232
5232
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5233
5233
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5234
5234
|
return {
|
|
5235
|
-
url: toPathString$
|
|
5235
|
+
url: toPathString$6(localVarUrlObj),
|
|
5236
5236
|
options: localVarRequestOptions,
|
|
5237
5237
|
};
|
|
5238
5238
|
}),
|
|
@@ -5249,7 +5249,7 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5249
5249
|
const localVarPath = `/ProjectRole/project/{projectId}/user`
|
|
5250
5250
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
5251
5251
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5252
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5252
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5253
5253
|
let baseOptions;
|
|
5254
5254
|
if (configuration) {
|
|
5255
5255
|
baseOptions = configuration.baseOptions;
|
|
@@ -5258,12 +5258,12 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5258
5258
|
const localVarHeaderParameter = {};
|
|
5259
5259
|
const localVarQueryParameter = {};
|
|
5260
5260
|
// authentication JWT token required
|
|
5261
|
-
yield setApiKeyToObject$
|
|
5262
|
-
setSearchParams$
|
|
5261
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5262
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5263
5263
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5264
5264
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5265
5265
|
return {
|
|
5266
|
-
url: toPathString$
|
|
5266
|
+
url: toPathString$6(localVarUrlObj),
|
|
5267
5267
|
options: localVarRequestOptions,
|
|
5268
5268
|
};
|
|
5269
5269
|
}),
|
|
@@ -5280,7 +5280,7 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5280
5280
|
const localVarPath = `/ProjectRole/project/{projectId}`
|
|
5281
5281
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
5282
5282
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5283
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5283
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5284
5284
|
let baseOptions;
|
|
5285
5285
|
if (configuration) {
|
|
5286
5286
|
baseOptions = configuration.baseOptions;
|
|
@@ -5289,12 +5289,12 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5289
5289
|
const localVarHeaderParameter = {};
|
|
5290
5290
|
const localVarQueryParameter = {};
|
|
5291
5291
|
// authentication JWT token required
|
|
5292
|
-
yield setApiKeyToObject$
|
|
5293
|
-
setSearchParams$
|
|
5292
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5293
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5294
5294
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5295
5295
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5296
5296
|
return {
|
|
5297
|
-
url: toPathString$
|
|
5297
|
+
url: toPathString$6(localVarUrlObj),
|
|
5298
5298
|
options: localVarRequestOptions,
|
|
5299
5299
|
};
|
|
5300
5300
|
}),
|
|
@@ -5311,7 +5311,7 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5311
5311
|
const localVarPath = `/ProjectRole/{projectId}`
|
|
5312
5312
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
5313
5313
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5314
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5314
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5315
5315
|
let baseOptions;
|
|
5316
5316
|
if (configuration) {
|
|
5317
5317
|
baseOptions = configuration.baseOptions;
|
|
@@ -5320,12 +5320,12 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5320
5320
|
const localVarHeaderParameter = {};
|
|
5321
5321
|
const localVarQueryParameter = {};
|
|
5322
5322
|
// authentication JWT token required
|
|
5323
|
-
yield setApiKeyToObject$
|
|
5324
|
-
setSearchParams$
|
|
5323
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5324
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5325
5325
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5326
5326
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5327
5327
|
return {
|
|
5328
|
-
url: toPathString$
|
|
5328
|
+
url: toPathString$6(localVarUrlObj),
|
|
5329
5329
|
options: localVarRequestOptions,
|
|
5330
5330
|
};
|
|
5331
5331
|
}),
|
|
@@ -5338,7 +5338,7 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5338
5338
|
projectRoleSet: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
5339
5339
|
const localVarPath = `/ProjectRole`;
|
|
5340
5340
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5341
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5341
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5342
5342
|
let baseOptions;
|
|
5343
5343
|
if (configuration) {
|
|
5344
5344
|
baseOptions = configuration.baseOptions;
|
|
@@ -5347,12 +5347,12 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5347
5347
|
const localVarHeaderParameter = {};
|
|
5348
5348
|
const localVarQueryParameter = {};
|
|
5349
5349
|
// authentication JWT token required
|
|
5350
|
-
yield setApiKeyToObject$
|
|
5351
|
-
setSearchParams$
|
|
5352
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5350
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5351
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5352
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5353
5353
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5354
5354
|
return {
|
|
5355
|
-
url: toPathString$
|
|
5355
|
+
url: toPathString$6(localVarUrlObj),
|
|
5356
5356
|
options: localVarRequestOptions,
|
|
5357
5357
|
};
|
|
5358
5358
|
}),
|
|
@@ -5377,7 +5377,7 @@ const ProjectRoleApiFp = function (configuration) {
|
|
|
5377
5377
|
projectRoleDelete(projectId, userId, roleId, options) {
|
|
5378
5378
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5379
5379
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleDelete(projectId, userId, roleId, options);
|
|
5380
|
-
return createRequestFunction$
|
|
5380
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5381
5381
|
});
|
|
5382
5382
|
},
|
|
5383
5383
|
/**
|
|
@@ -5390,7 +5390,7 @@ const ProjectRoleApiFp = function (configuration) {
|
|
|
5390
5390
|
projectRoleDelete2(projectId, options) {
|
|
5391
5391
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5392
5392
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleDelete2(projectId, options);
|
|
5393
|
-
return createRequestFunction$
|
|
5393
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5394
5394
|
});
|
|
5395
5395
|
},
|
|
5396
5396
|
/**
|
|
@@ -5403,7 +5403,7 @@ const ProjectRoleApiFp = function (configuration) {
|
|
|
5403
5403
|
projectRoleGet(projectId, options) {
|
|
5404
5404
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5405
5405
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleGet(projectId, options);
|
|
5406
|
-
return createRequestFunction$
|
|
5406
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5407
5407
|
});
|
|
5408
5408
|
},
|
|
5409
5409
|
/**
|
|
@@ -5416,7 +5416,7 @@ const ProjectRoleApiFp = function (configuration) {
|
|
|
5416
5416
|
projectRoleIndex(projectId, options) {
|
|
5417
5417
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5418
5418
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleIndex(projectId, options);
|
|
5419
|
-
return createRequestFunction$
|
|
5419
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5420
5420
|
});
|
|
5421
5421
|
},
|
|
5422
5422
|
/**
|
|
@@ -5428,7 +5428,7 @@ const ProjectRoleApiFp = function (configuration) {
|
|
|
5428
5428
|
projectRoleSet(options) {
|
|
5429
5429
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5430
5430
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleSet(options);
|
|
5431
|
-
return createRequestFunction$
|
|
5431
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5432
5432
|
});
|
|
5433
5433
|
},
|
|
5434
5434
|
};
|
|
@@ -5508,7 +5508,7 @@ const RoleApiAxiosParamCreator = function (configuration) {
|
|
|
5508
5508
|
roleIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
5509
5509
|
const localVarPath = `/Role`;
|
|
5510
5510
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5511
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5511
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5512
5512
|
let baseOptions;
|
|
5513
5513
|
if (configuration) {
|
|
5514
5514
|
baseOptions = configuration.baseOptions;
|
|
@@ -5517,12 +5517,12 @@ const RoleApiAxiosParamCreator = function (configuration) {
|
|
|
5517
5517
|
const localVarHeaderParameter = {};
|
|
5518
5518
|
const localVarQueryParameter = {};
|
|
5519
5519
|
// authentication JWT token required
|
|
5520
|
-
yield setApiKeyToObject$
|
|
5521
|
-
setSearchParams$
|
|
5520
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5521
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5522
5522
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5523
5523
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5524
5524
|
return {
|
|
5525
|
-
url: toPathString$
|
|
5525
|
+
url: toPathString$6(localVarUrlObj),
|
|
5526
5526
|
options: localVarRequestOptions,
|
|
5527
5527
|
};
|
|
5528
5528
|
}),
|
|
@@ -5544,7 +5544,7 @@ const RoleApiFp = function (configuration) {
|
|
|
5544
5544
|
roleIndex(options) {
|
|
5545
5545
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5546
5546
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.roleIndex(options);
|
|
5547
|
-
return createRequestFunction$
|
|
5547
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5548
5548
|
});
|
|
5549
5549
|
},
|
|
5550
5550
|
};
|
|
@@ -5586,7 +5586,7 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5586
5586
|
const localVarPath = `/Search/all/{encodedSearchWord}`
|
|
5587
5587
|
.replace(`{${"encodedSearchWord"}}`, encodeURIComponent(String(encodedSearchWord)));
|
|
5588
5588
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5589
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5589
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5590
5590
|
let baseOptions;
|
|
5591
5591
|
if (configuration) {
|
|
5592
5592
|
baseOptions = configuration.baseOptions;
|
|
@@ -5595,12 +5595,12 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5595
5595
|
const localVarHeaderParameter = {};
|
|
5596
5596
|
const localVarQueryParameter = {};
|
|
5597
5597
|
// authentication JWT token required
|
|
5598
|
-
yield setApiKeyToObject$
|
|
5599
|
-
setSearchParams$
|
|
5598
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5599
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5600
5600
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5601
5601
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5602
5602
|
return {
|
|
5603
|
-
url: toPathString$
|
|
5603
|
+
url: toPathString$6(localVarUrlObj),
|
|
5604
5604
|
options: localVarRequestOptions,
|
|
5605
5605
|
};
|
|
5606
5606
|
}),
|
|
@@ -5613,7 +5613,7 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5613
5613
|
searchSearchNoFilter: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
5614
5614
|
const localVarPath = `/Search/allNoFilter`;
|
|
5615
5615
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5616
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5616
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5617
5617
|
let baseOptions;
|
|
5618
5618
|
if (configuration) {
|
|
5619
5619
|
baseOptions = configuration.baseOptions;
|
|
@@ -5622,12 +5622,12 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5622
5622
|
const localVarHeaderParameter = {};
|
|
5623
5623
|
const localVarQueryParameter = {};
|
|
5624
5624
|
// authentication JWT token required
|
|
5625
|
-
yield setApiKeyToObject$
|
|
5626
|
-
setSearchParams$
|
|
5625
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5626
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5627
5627
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5628
5628
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5629
5629
|
return {
|
|
5630
|
-
url: toPathString$
|
|
5630
|
+
url: toPathString$6(localVarUrlObj),
|
|
5631
5631
|
options: localVarRequestOptions,
|
|
5632
5632
|
};
|
|
5633
5633
|
}),
|
|
@@ -5648,7 +5648,7 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5648
5648
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
5649
5649
|
.replace(`{${"encodedSearchWord"}}`, encodeURIComponent(String(encodedSearchWord)));
|
|
5650
5650
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5651
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5651
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5652
5652
|
let baseOptions;
|
|
5653
5653
|
if (configuration) {
|
|
5654
5654
|
baseOptions = configuration.baseOptions;
|
|
@@ -5657,12 +5657,12 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5657
5657
|
const localVarHeaderParameter = {};
|
|
5658
5658
|
const localVarQueryParameter = {};
|
|
5659
5659
|
// authentication JWT token required
|
|
5660
|
-
yield setApiKeyToObject$
|
|
5661
|
-
setSearchParams$
|
|
5660
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5661
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5662
5662
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5663
5663
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5664
5664
|
return {
|
|
5665
|
-
url: toPathString$
|
|
5665
|
+
url: toPathString$6(localVarUrlObj),
|
|
5666
5666
|
options: localVarRequestOptions,
|
|
5667
5667
|
};
|
|
5668
5668
|
}),
|
|
@@ -5679,7 +5679,7 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5679
5679
|
const localVarPath = `/Search/projectNoFilter/{projectId}`
|
|
5680
5680
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
5681
5681
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5682
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5682
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5683
5683
|
let baseOptions;
|
|
5684
5684
|
if (configuration) {
|
|
5685
5685
|
baseOptions = configuration.baseOptions;
|
|
@@ -5688,12 +5688,12 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5688
5688
|
const localVarHeaderParameter = {};
|
|
5689
5689
|
const localVarQueryParameter = {};
|
|
5690
5690
|
// authentication JWT token required
|
|
5691
|
-
yield setApiKeyToObject$
|
|
5692
|
-
setSearchParams$
|
|
5691
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5692
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5693
5693
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5694
5694
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5695
5695
|
return {
|
|
5696
|
-
url: toPathString$
|
|
5696
|
+
url: toPathString$6(localVarUrlObj),
|
|
5697
5697
|
options: localVarRequestOptions,
|
|
5698
5698
|
};
|
|
5699
5699
|
}),
|
|
@@ -5716,7 +5716,7 @@ const SearchApiFp = function (configuration) {
|
|
|
5716
5716
|
searchSearch(encodedSearchWord, options) {
|
|
5717
5717
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5718
5718
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.searchSearch(encodedSearchWord, options);
|
|
5719
|
-
return createRequestFunction$
|
|
5719
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5720
5720
|
});
|
|
5721
5721
|
},
|
|
5722
5722
|
/**
|
|
@@ -5728,7 +5728,7 @@ const SearchApiFp = function (configuration) {
|
|
|
5728
5728
|
searchSearchNoFilter(options) {
|
|
5729
5729
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5730
5730
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.searchSearchNoFilter(options);
|
|
5731
|
-
return createRequestFunction$
|
|
5731
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5732
5732
|
});
|
|
5733
5733
|
},
|
|
5734
5734
|
/**
|
|
@@ -5742,7 +5742,7 @@ const SearchApiFp = function (configuration) {
|
|
|
5742
5742
|
searchSearchProject(projectId, encodedSearchWord, options) {
|
|
5743
5743
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5744
5744
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.searchSearchProject(projectId, encodedSearchWord, options);
|
|
5745
|
-
return createRequestFunction$
|
|
5745
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5746
5746
|
});
|
|
5747
5747
|
},
|
|
5748
5748
|
/**
|
|
@@ -5755,7 +5755,7 @@ const SearchApiFp = function (configuration) {
|
|
|
5755
5755
|
searchSearchProjectNoFilter(projectId, options) {
|
|
5756
5756
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5757
5757
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.searchSearchProjectNoFilter(projectId, options);
|
|
5758
|
-
return createRequestFunction$
|
|
5758
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5759
5759
|
});
|
|
5760
5760
|
},
|
|
5761
5761
|
};
|
|
@@ -5828,7 +5828,7 @@ const SubProjectApiAxiosParamCreator = function (configuration) {
|
|
|
5828
5828
|
const localVarPath = `/SubProject/{parentId}`
|
|
5829
5829
|
.replace(`{${"parentId"}}`, encodeURIComponent(String(parentId)));
|
|
5830
5830
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5831
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5831
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5832
5832
|
let baseOptions;
|
|
5833
5833
|
if (configuration) {
|
|
5834
5834
|
baseOptions = configuration.baseOptions;
|
|
@@ -5837,12 +5837,12 @@ const SubProjectApiAxiosParamCreator = function (configuration) {
|
|
|
5837
5837
|
const localVarHeaderParameter = {};
|
|
5838
5838
|
const localVarQueryParameter = {};
|
|
5839
5839
|
// authentication JWT token required
|
|
5840
|
-
yield setApiKeyToObject$
|
|
5841
|
-
setSearchParams$
|
|
5840
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5841
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5842
5842
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5843
5843
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5844
5844
|
return {
|
|
5845
|
-
url: toPathString$
|
|
5845
|
+
url: toPathString$6(localVarUrlObj),
|
|
5846
5846
|
options: localVarRequestOptions,
|
|
5847
5847
|
};
|
|
5848
5848
|
}),
|
|
@@ -5859,7 +5859,7 @@ const SubProjectApiAxiosParamCreator = function (configuration) {
|
|
|
5859
5859
|
const localVarPath = `/SubProject/{childId}/accessibleParent`
|
|
5860
5860
|
.replace(`{${"childId"}}`, encodeURIComponent(String(childId)));
|
|
5861
5861
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5862
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5862
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5863
5863
|
let baseOptions;
|
|
5864
5864
|
if (configuration) {
|
|
5865
5865
|
baseOptions = configuration.baseOptions;
|
|
@@ -5868,12 +5868,12 @@ const SubProjectApiAxiosParamCreator = function (configuration) {
|
|
|
5868
5868
|
const localVarHeaderParameter = {};
|
|
5869
5869
|
const localVarQueryParameter = {};
|
|
5870
5870
|
// authentication JWT token required
|
|
5871
|
-
yield setApiKeyToObject$
|
|
5872
|
-
setSearchParams$
|
|
5871
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5872
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5873
5873
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5874
5874
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5875
5875
|
return {
|
|
5876
|
-
url: toPathString$
|
|
5876
|
+
url: toPathString$6(localVarUrlObj),
|
|
5877
5877
|
options: localVarRequestOptions,
|
|
5878
5878
|
};
|
|
5879
5879
|
}),
|
|
@@ -5896,7 +5896,7 @@ const SubProjectApiFp = function (configuration) {
|
|
|
5896
5896
|
subProjectGet(parentId, options) {
|
|
5897
5897
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5898
5898
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.subProjectGet(parentId, options);
|
|
5899
|
-
return createRequestFunction$
|
|
5899
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5900
5900
|
});
|
|
5901
5901
|
},
|
|
5902
5902
|
/**
|
|
@@ -5909,7 +5909,7 @@ const SubProjectApiFp = function (configuration) {
|
|
|
5909
5909
|
subProjectGetAccessibleParent(childId, options) {
|
|
5910
5910
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5911
5911
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.subProjectGetAccessibleParent(childId, options);
|
|
5912
|
-
return createRequestFunction$
|
|
5912
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5913
5913
|
});
|
|
5914
5914
|
},
|
|
5915
5915
|
};
|
|
@@ -5958,7 +5958,7 @@ const VisibilityApiAxiosParamCreator = function (configuration) {
|
|
|
5958
5958
|
visibilityIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
5959
5959
|
const localVarPath = `/Visibility`;
|
|
5960
5960
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5961
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5961
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5962
5962
|
let baseOptions;
|
|
5963
5963
|
if (configuration) {
|
|
5964
5964
|
baseOptions = configuration.baseOptions;
|
|
@@ -5967,12 +5967,12 @@ const VisibilityApiAxiosParamCreator = function (configuration) {
|
|
|
5967
5967
|
const localVarHeaderParameter = {};
|
|
5968
5968
|
const localVarQueryParameter = {};
|
|
5969
5969
|
// authentication JWT token required
|
|
5970
|
-
yield setApiKeyToObject$
|
|
5971
|
-
setSearchParams$
|
|
5970
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5971
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5972
5972
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5973
5973
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5974
5974
|
return {
|
|
5975
|
-
url: toPathString$
|
|
5975
|
+
url: toPathString$6(localVarUrlObj),
|
|
5976
5976
|
options: localVarRequestOptions,
|
|
5977
5977
|
};
|
|
5978
5978
|
}),
|
|
@@ -5994,7 +5994,7 @@ const VisibilityApiFp = function (configuration) {
|
|
|
5994
5994
|
visibilityIndex(options) {
|
|
5995
5995
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5996
5996
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.visibilityIndex(options);
|
|
5997
|
-
return createRequestFunction$
|
|
5997
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5998
5998
|
});
|
|
5999
5999
|
},
|
|
6000
6000
|
};
|
|
@@ -6019,7 +6019,7 @@ const VisibilityApiFactory = function (configuration, basePath, axios) {
|
|
|
6019
6019
|
};
|
|
6020
6020
|
|
|
6021
6021
|
/* tslint:disable */
|
|
6022
|
-
const BASE_PATH$
|
|
6022
|
+
const BASE_PATH$5 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Quota".replace(/\/+$/, "");
|
|
6023
6023
|
/**
|
|
6024
6024
|
*
|
|
6025
6025
|
* @export
|
|
@@ -6039,7 +6039,7 @@ class RequiredError$4 extends Error {
|
|
|
6039
6039
|
*
|
|
6040
6040
|
* @export
|
|
6041
6041
|
*/
|
|
6042
|
-
const DUMMY_BASE_URL$
|
|
6042
|
+
const DUMMY_BASE_URL$5 = 'https://example.com';
|
|
6043
6043
|
/**
|
|
6044
6044
|
*
|
|
6045
6045
|
* @throws {RequiredError}
|
|
@@ -6054,7 +6054,7 @@ const assertParamExists$4 = function (functionName, paramName, paramValue) {
|
|
|
6054
6054
|
*
|
|
6055
6055
|
* @export
|
|
6056
6056
|
*/
|
|
6057
|
-
const setApiKeyToObject$
|
|
6057
|
+
const setApiKeyToObject$5 = function (object, keyParamName, configuration) {
|
|
6058
6058
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6059
6059
|
if (configuration && configuration.apiKey) {
|
|
6060
6060
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -6068,7 +6068,7 @@ const setApiKeyToObject$4 = function (object, keyParamName, configuration) {
|
|
|
6068
6068
|
*
|
|
6069
6069
|
* @export
|
|
6070
6070
|
*/
|
|
6071
|
-
const setSearchParams$
|
|
6071
|
+
const setSearchParams$5 = function (url, ...objects) {
|
|
6072
6072
|
const searchParams = new URLSearchParams(url.search);
|
|
6073
6073
|
for (const object of objects) {
|
|
6074
6074
|
for (const key in object) {
|
|
@@ -6102,14 +6102,14 @@ const serializeDataIfNeeded$3 = function (value, requestOptions, configuration)
|
|
|
6102
6102
|
*
|
|
6103
6103
|
* @export
|
|
6104
6104
|
*/
|
|
6105
|
-
const toPathString$
|
|
6105
|
+
const toPathString$5 = function (url) {
|
|
6106
6106
|
return url.pathname + url.search + url.hash;
|
|
6107
6107
|
};
|
|
6108
6108
|
/**
|
|
6109
6109
|
*
|
|
6110
6110
|
* @export
|
|
6111
6111
|
*/
|
|
6112
|
-
const createRequestFunction$
|
|
6112
|
+
const createRequestFunction$5 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
6113
6113
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
6114
6114
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
6115
6115
|
return axios.request(axiosRequestArgs);
|
|
@@ -6136,7 +6136,7 @@ const QuotaApiAxiosParamCreator = function (configuration) {
|
|
|
6136
6136
|
const localVarPath = `/Quota/{resourceId}`
|
|
6137
6137
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
6138
6138
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6139
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6139
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$5);
|
|
6140
6140
|
let baseOptions;
|
|
6141
6141
|
if (configuration) {
|
|
6142
6142
|
baseOptions = configuration.baseOptions;
|
|
@@ -6145,12 +6145,12 @@ const QuotaApiAxiosParamCreator = function (configuration) {
|
|
|
6145
6145
|
const localVarHeaderParameter = {};
|
|
6146
6146
|
const localVarQueryParameter = {};
|
|
6147
6147
|
// authentication JWT token required
|
|
6148
|
-
yield setApiKeyToObject$
|
|
6149
|
-
setSearchParams$
|
|
6148
|
+
yield setApiKeyToObject$5(localVarHeaderParameter, "Authorization", configuration);
|
|
6149
|
+
setSearchParams$5(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6150
6150
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6151
6151
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6152
6152
|
return {
|
|
6153
|
-
url: toPathString$
|
|
6153
|
+
url: toPathString$5(localVarUrlObj),
|
|
6154
6154
|
options: localVarRequestOptions,
|
|
6155
6155
|
};
|
|
6156
6156
|
}),
|
|
@@ -6171,7 +6171,7 @@ const QuotaApiAxiosParamCreator = function (configuration) {
|
|
|
6171
6171
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
6172
6172
|
.replace(`{${"resourceTypeId"}}`, encodeURIComponent(String(resourceTypeId)));
|
|
6173
6173
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6174
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6174
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$5);
|
|
6175
6175
|
let baseOptions;
|
|
6176
6176
|
if (configuration) {
|
|
6177
6177
|
baseOptions = configuration.baseOptions;
|
|
@@ -6180,12 +6180,12 @@ const QuotaApiAxiosParamCreator = function (configuration) {
|
|
|
6180
6180
|
const localVarHeaderParameter = {};
|
|
6181
6181
|
const localVarQueryParameter = {};
|
|
6182
6182
|
// authentication JWT token required
|
|
6183
|
-
yield setApiKeyToObject$
|
|
6184
|
-
setSearchParams$
|
|
6183
|
+
yield setApiKeyToObject$5(localVarHeaderParameter, "Authorization", configuration);
|
|
6184
|
+
setSearchParams$5(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6185
6185
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6186
6186
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6187
6187
|
return {
|
|
6188
|
-
url: toPathString$
|
|
6188
|
+
url: toPathString$5(localVarUrlObj),
|
|
6189
6189
|
options: localVarRequestOptions,
|
|
6190
6190
|
};
|
|
6191
6191
|
}),
|
|
@@ -6205,7 +6205,7 @@ const QuotaApiAxiosParamCreator = function (configuration) {
|
|
|
6205
6205
|
const localVarPath = `/Quota/{resourceId}`
|
|
6206
6206
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
6207
6207
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6208
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6208
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$5);
|
|
6209
6209
|
let baseOptions;
|
|
6210
6210
|
if (configuration) {
|
|
6211
6211
|
baseOptions = configuration.baseOptions;
|
|
@@ -6214,14 +6214,14 @@ const QuotaApiAxiosParamCreator = function (configuration) {
|
|
|
6214
6214
|
const localVarHeaderParameter = {};
|
|
6215
6215
|
const localVarQueryParameter = {};
|
|
6216
6216
|
// authentication JWT token required
|
|
6217
|
-
yield setApiKeyToObject$
|
|
6217
|
+
yield setApiKeyToObject$5(localVarHeaderParameter, "Authorization", configuration);
|
|
6218
6218
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6219
|
-
setSearchParams$
|
|
6219
|
+
setSearchParams$5(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6220
6220
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6221
6221
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6222
6222
|
localVarRequestOptions.data = serializeDataIfNeeded$3(updateResourceObject, localVarRequestOptions, configuration);
|
|
6223
6223
|
return {
|
|
6224
|
-
url: toPathString$
|
|
6224
|
+
url: toPathString$5(localVarUrlObj),
|
|
6225
6225
|
options: localVarRequestOptions,
|
|
6226
6226
|
};
|
|
6227
6227
|
}),
|
|
@@ -6244,7 +6244,7 @@ const QuotaApiFp = function (configuration) {
|
|
|
6244
6244
|
quotaGetResourceQuota(resourceId, options) {
|
|
6245
6245
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6246
6246
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.quotaGetResourceQuota(resourceId, options);
|
|
6247
|
-
return createRequestFunction$
|
|
6247
|
+
return createRequestFunction$5(localVarAxiosArgs, axios, BASE_PATH$5, configuration);
|
|
6248
6248
|
});
|
|
6249
6249
|
},
|
|
6250
6250
|
/**
|
|
@@ -6258,7 +6258,7 @@ const QuotaApiFp = function (configuration) {
|
|
|
6258
6258
|
quotaGetResourceQuotas(projectId, resourceTypeId, options) {
|
|
6259
6259
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6260
6260
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.quotaGetResourceQuotas(projectId, resourceTypeId, options);
|
|
6261
|
-
return createRequestFunction$
|
|
6261
|
+
return createRequestFunction$5(localVarAxiosArgs, axios, BASE_PATH$5, configuration);
|
|
6262
6262
|
});
|
|
6263
6263
|
},
|
|
6264
6264
|
/**
|
|
@@ -6272,7 +6272,7 @@ const QuotaApiFp = function (configuration) {
|
|
|
6272
6272
|
quotaUpdateResourceQuota(resourceId, updateResourceObject, options) {
|
|
6273
6273
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6274
6274
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.quotaUpdateResourceQuota(resourceId, updateResourceObject, options);
|
|
6275
|
-
return createRequestFunction$
|
|
6275
|
+
return createRequestFunction$5(localVarAxiosArgs, axios, BASE_PATH$5, configuration);
|
|
6276
6276
|
});
|
|
6277
6277
|
},
|
|
6278
6278
|
};
|
|
@@ -6320,7 +6320,7 @@ const QuotaApiFactory = function (configuration, basePath, axios) {
|
|
|
6320
6320
|
};
|
|
6321
6321
|
|
|
6322
6322
|
/* tslint:disable */
|
|
6323
|
-
const BASE_PATH$
|
|
6323
|
+
const BASE_PATH$4 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Resources".replace(/\/+$/, "");
|
|
6324
6324
|
/**
|
|
6325
6325
|
*
|
|
6326
6326
|
* @export
|
|
@@ -6340,7 +6340,7 @@ class RequiredError$3 extends Error {
|
|
|
6340
6340
|
*
|
|
6341
6341
|
* @export
|
|
6342
6342
|
*/
|
|
6343
|
-
const DUMMY_BASE_URL$
|
|
6343
|
+
const DUMMY_BASE_URL$4 = 'https://example.com';
|
|
6344
6344
|
/**
|
|
6345
6345
|
*
|
|
6346
6346
|
* @throws {RequiredError}
|
|
@@ -6355,7 +6355,7 @@ const assertParamExists$3 = function (functionName, paramName, paramValue) {
|
|
|
6355
6355
|
*
|
|
6356
6356
|
* @export
|
|
6357
6357
|
*/
|
|
6358
|
-
const setApiKeyToObject$
|
|
6358
|
+
const setApiKeyToObject$4 = function (object, keyParamName, configuration) {
|
|
6359
6359
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6360
6360
|
if (configuration && configuration.apiKey) {
|
|
6361
6361
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -6369,7 +6369,7 @@ const setApiKeyToObject$3 = function (object, keyParamName, configuration) {
|
|
|
6369
6369
|
*
|
|
6370
6370
|
* @export
|
|
6371
6371
|
*/
|
|
6372
|
-
const setSearchParams$
|
|
6372
|
+
const setSearchParams$4 = function (url, ...objects) {
|
|
6373
6373
|
const searchParams = new URLSearchParams(url.search);
|
|
6374
6374
|
for (const object of objects) {
|
|
6375
6375
|
for (const key in object) {
|
|
@@ -6403,14 +6403,14 @@ const serializeDataIfNeeded$2 = function (value, requestOptions, configuration)
|
|
|
6403
6403
|
*
|
|
6404
6404
|
* @export
|
|
6405
6405
|
*/
|
|
6406
|
-
const toPathString$
|
|
6406
|
+
const toPathString$4 = function (url) {
|
|
6407
6407
|
return url.pathname + url.search + url.hash;
|
|
6408
6408
|
};
|
|
6409
6409
|
/**
|
|
6410
6410
|
*
|
|
6411
6411
|
* @export
|
|
6412
6412
|
*/
|
|
6413
|
-
const createRequestFunction$
|
|
6413
|
+
const createRequestFunction$4 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
6414
6414
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
6415
6415
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
6416
6416
|
return axios.request(axiosRequestArgs);
|
|
@@ -6437,7 +6437,7 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6437
6437
|
const localVarPath = `/Resource/{id}`
|
|
6438
6438
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6439
6439
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6440
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6440
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6441
6441
|
let baseOptions;
|
|
6442
6442
|
if (configuration) {
|
|
6443
6443
|
baseOptions = configuration.baseOptions;
|
|
@@ -6446,12 +6446,12 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6446
6446
|
const localVarHeaderParameter = {};
|
|
6447
6447
|
const localVarQueryParameter = {};
|
|
6448
6448
|
// authentication JWT token required
|
|
6449
|
-
yield setApiKeyToObject$
|
|
6450
|
-
setSearchParams$
|
|
6449
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6450
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6451
6451
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6452
6452
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6453
6453
|
return {
|
|
6454
|
-
url: toPathString$
|
|
6454
|
+
url: toPathString$4(localVarUrlObj),
|
|
6455
6455
|
options: localVarRequestOptions,
|
|
6456
6456
|
};
|
|
6457
6457
|
}),
|
|
@@ -6468,7 +6468,7 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6468
6468
|
const localVarPath = `/Resource/{id}`
|
|
6469
6469
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6470
6470
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6471
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6471
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6472
6472
|
let baseOptions;
|
|
6473
6473
|
if (configuration) {
|
|
6474
6474
|
baseOptions = configuration.baseOptions;
|
|
@@ -6477,12 +6477,12 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6477
6477
|
const localVarHeaderParameter = {};
|
|
6478
6478
|
const localVarQueryParameter = {};
|
|
6479
6479
|
// authentication JWT token required
|
|
6480
|
-
yield setApiKeyToObject$
|
|
6481
|
-
setSearchParams$
|
|
6480
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6481
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6482
6482
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6483
6483
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6484
6484
|
return {
|
|
6485
|
-
url: toPathString$
|
|
6485
|
+
url: toPathString$4(localVarUrlObj),
|
|
6486
6486
|
options: localVarRequestOptions,
|
|
6487
6487
|
};
|
|
6488
6488
|
}),
|
|
@@ -6495,7 +6495,7 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6495
6495
|
resourceIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
6496
6496
|
const localVarPath = `/Resource`;
|
|
6497
6497
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6498
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6498
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6499
6499
|
let baseOptions;
|
|
6500
6500
|
if (configuration) {
|
|
6501
6501
|
baseOptions = configuration.baseOptions;
|
|
@@ -6504,12 +6504,12 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6504
6504
|
const localVarHeaderParameter = {};
|
|
6505
6505
|
const localVarQueryParameter = {};
|
|
6506
6506
|
// authentication JWT token required
|
|
6507
|
-
yield setApiKeyToObject$
|
|
6508
|
-
setSearchParams$
|
|
6507
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6508
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6509
6509
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6510
6510
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6511
6511
|
return {
|
|
6512
|
-
url: toPathString$
|
|
6512
|
+
url: toPathString$4(localVarUrlObj),
|
|
6513
6513
|
options: localVarRequestOptions,
|
|
6514
6514
|
};
|
|
6515
6515
|
}),
|
|
@@ -6526,7 +6526,7 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6526
6526
|
const localVarPath = `/Resource/{id}/isCreator`
|
|
6527
6527
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6528
6528
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6529
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6529
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6530
6530
|
let baseOptions;
|
|
6531
6531
|
if (configuration) {
|
|
6532
6532
|
baseOptions = configuration.baseOptions;
|
|
@@ -6535,12 +6535,12 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6535
6535
|
const localVarHeaderParameter = {};
|
|
6536
6536
|
const localVarQueryParameter = {};
|
|
6537
6537
|
// authentication JWT token required
|
|
6538
|
-
yield setApiKeyToObject$
|
|
6539
|
-
setSearchParams$
|
|
6538
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6539
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6540
6540
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6541
6541
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6542
6542
|
return {
|
|
6543
|
-
url: toPathString$
|
|
6543
|
+
url: toPathString$4(localVarUrlObj),
|
|
6544
6544
|
options: localVarRequestOptions,
|
|
6545
6545
|
};
|
|
6546
6546
|
}),
|
|
@@ -6558,7 +6558,7 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6558
6558
|
const localVarPath = `/Resource/{id}/setReadonly`
|
|
6559
6559
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6560
6560
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6561
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6561
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6562
6562
|
let baseOptions;
|
|
6563
6563
|
if (configuration) {
|
|
6564
6564
|
baseOptions = configuration.baseOptions;
|
|
@@ -6567,15 +6567,15 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6567
6567
|
const localVarHeaderParameter = {};
|
|
6568
6568
|
const localVarQueryParameter = {};
|
|
6569
6569
|
// authentication JWT token required
|
|
6570
|
-
yield setApiKeyToObject$
|
|
6570
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6571
6571
|
if (status !== undefined) {
|
|
6572
6572
|
localVarQueryParameter['status'] = status;
|
|
6573
6573
|
}
|
|
6574
|
-
setSearchParams$
|
|
6574
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6575
6575
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6576
6576
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6577
6577
|
return {
|
|
6578
|
-
url: toPathString$
|
|
6578
|
+
url: toPathString$4(localVarUrlObj),
|
|
6579
6579
|
options: localVarRequestOptions,
|
|
6580
6580
|
};
|
|
6581
6581
|
}),
|
|
@@ -6595,7 +6595,7 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6595
6595
|
const localVarPath = `/Resource/project/{projectId}`
|
|
6596
6596
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
6597
6597
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6598
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6598
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6599
6599
|
let baseOptions;
|
|
6600
6600
|
if (configuration) {
|
|
6601
6601
|
baseOptions = configuration.baseOptions;
|
|
@@ -6604,14 +6604,14 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6604
6604
|
const localVarHeaderParameter = {};
|
|
6605
6605
|
const localVarQueryParameter = {};
|
|
6606
6606
|
// authentication JWT token required
|
|
6607
|
-
yield setApiKeyToObject$
|
|
6607
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6608
6608
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6609
|
-
setSearchParams$
|
|
6609
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6610
6610
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6611
6611
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6612
6612
|
localVarRequestOptions.data = serializeDataIfNeeded$2(resourceObject, localVarRequestOptions, configuration);
|
|
6613
6613
|
return {
|
|
6614
|
-
url: toPathString$
|
|
6614
|
+
url: toPathString$4(localVarUrlObj),
|
|
6615
6615
|
options: localVarRequestOptions,
|
|
6616
6616
|
};
|
|
6617
6617
|
}),
|
|
@@ -6631,7 +6631,7 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6631
6631
|
const localVarPath = `/Resource/{id}`
|
|
6632
6632
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6633
6633
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6634
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6634
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6635
6635
|
let baseOptions;
|
|
6636
6636
|
if (configuration) {
|
|
6637
6637
|
baseOptions = configuration.baseOptions;
|
|
@@ -6640,14 +6640,14 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6640
6640
|
const localVarHeaderParameter = {};
|
|
6641
6641
|
const localVarQueryParameter = {};
|
|
6642
6642
|
// authentication JWT token required
|
|
6643
|
-
yield setApiKeyToObject$
|
|
6643
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6644
6644
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6645
|
-
setSearchParams$
|
|
6645
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6646
6646
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6647
6647
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6648
6648
|
localVarRequestOptions.data = serializeDataIfNeeded$2(resourceObject, localVarRequestOptions, configuration);
|
|
6649
6649
|
return {
|
|
6650
|
-
url: toPathString$
|
|
6650
|
+
url: toPathString$4(localVarUrlObj),
|
|
6651
6651
|
options: localVarRequestOptions,
|
|
6652
6652
|
};
|
|
6653
6653
|
}),
|
|
@@ -6670,7 +6670,7 @@ const ResourceApiFp = function (configuration) {
|
|
|
6670
6670
|
resourceDelete(id, options) {
|
|
6671
6671
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6672
6672
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceDelete(id, options);
|
|
6673
|
-
return createRequestFunction$
|
|
6673
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6674
6674
|
});
|
|
6675
6675
|
},
|
|
6676
6676
|
/**
|
|
@@ -6683,7 +6683,7 @@ const ResourceApiFp = function (configuration) {
|
|
|
6683
6683
|
resourceGet(id, options) {
|
|
6684
6684
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6685
6685
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceGet(id, options);
|
|
6686
|
-
return createRequestFunction$
|
|
6686
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6687
6687
|
});
|
|
6688
6688
|
},
|
|
6689
6689
|
/**
|
|
@@ -6695,7 +6695,7 @@ const ResourceApiFp = function (configuration) {
|
|
|
6695
6695
|
resourceIndex(options) {
|
|
6696
6696
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6697
6697
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceIndex(options);
|
|
6698
|
-
return createRequestFunction$
|
|
6698
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6699
6699
|
});
|
|
6700
6700
|
},
|
|
6701
6701
|
/**
|
|
@@ -6708,7 +6708,7 @@ const ResourceApiFp = function (configuration) {
|
|
|
6708
6708
|
resourceIsUserResourceCreator(id, options) {
|
|
6709
6709
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6710
6710
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceIsUserResourceCreator(id, options);
|
|
6711
|
-
return createRequestFunction$
|
|
6711
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6712
6712
|
});
|
|
6713
6713
|
},
|
|
6714
6714
|
/**
|
|
@@ -6722,7 +6722,7 @@ const ResourceApiFp = function (configuration) {
|
|
|
6722
6722
|
resourceSetResourceReadonly(id, status, options) {
|
|
6723
6723
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6724
6724
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceSetResourceReadonly(id, status, options);
|
|
6725
|
-
return createRequestFunction$
|
|
6725
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6726
6726
|
});
|
|
6727
6727
|
},
|
|
6728
6728
|
/**
|
|
@@ -6736,7 +6736,7 @@ const ResourceApiFp = function (configuration) {
|
|
|
6736
6736
|
resourceStoreToProject(projectId, resourceObject, options) {
|
|
6737
6737
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6738
6738
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceStoreToProject(projectId, resourceObject, options);
|
|
6739
|
-
return createRequestFunction$
|
|
6739
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6740
6740
|
});
|
|
6741
6741
|
},
|
|
6742
6742
|
/**
|
|
@@ -6750,7 +6750,7 @@ const ResourceApiFp = function (configuration) {
|
|
|
6750
6750
|
resourceUpdate(id, resourceObject, options) {
|
|
6751
6751
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6752
6752
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceUpdate(id, resourceObject, options);
|
|
6753
|
-
return createRequestFunction$
|
|
6753
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6754
6754
|
});
|
|
6755
6755
|
},
|
|
6756
6756
|
};
|
|
@@ -6851,7 +6851,7 @@ const ResourceTypeApiAxiosParamCreator = function (configuration) {
|
|
|
6851
6851
|
resourceTypeGetEnabledResourceTypes: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
6852
6852
|
const localVarPath = `/ResourceType/types/-/enabled`;
|
|
6853
6853
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6854
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6854
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6855
6855
|
let baseOptions;
|
|
6856
6856
|
if (configuration) {
|
|
6857
6857
|
baseOptions = configuration.baseOptions;
|
|
@@ -6860,12 +6860,12 @@ const ResourceTypeApiAxiosParamCreator = function (configuration) {
|
|
|
6860
6860
|
const localVarHeaderParameter = {};
|
|
6861
6861
|
const localVarQueryParameter = {};
|
|
6862
6862
|
// authentication JWT token required
|
|
6863
|
-
yield setApiKeyToObject$
|
|
6864
|
-
setSearchParams$
|
|
6863
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6864
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6865
6865
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6866
6866
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6867
6867
|
return {
|
|
6868
|
-
url: toPathString$
|
|
6868
|
+
url: toPathString$4(localVarUrlObj),
|
|
6869
6869
|
options: localVarRequestOptions,
|
|
6870
6870
|
};
|
|
6871
6871
|
}),
|
|
@@ -6882,7 +6882,7 @@ const ResourceTypeApiAxiosParamCreator = function (configuration) {
|
|
|
6882
6882
|
const localVarPath = `/ResourceType/types/{id}`
|
|
6883
6883
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6884
6884
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6885
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6885
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6886
6886
|
let baseOptions;
|
|
6887
6887
|
if (configuration) {
|
|
6888
6888
|
baseOptions = configuration.baseOptions;
|
|
@@ -6891,12 +6891,12 @@ const ResourceTypeApiAxiosParamCreator = function (configuration) {
|
|
|
6891
6891
|
const localVarHeaderParameter = {};
|
|
6892
6892
|
const localVarQueryParameter = {};
|
|
6893
6893
|
// authentication JWT token required
|
|
6894
|
-
yield setApiKeyToObject$
|
|
6895
|
-
setSearchParams$
|
|
6894
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6895
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6896
6896
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6897
6897
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6898
6898
|
return {
|
|
6899
|
-
url: toPathString$
|
|
6899
|
+
url: toPathString$4(localVarUrlObj),
|
|
6900
6900
|
options: localVarRequestOptions,
|
|
6901
6901
|
};
|
|
6902
6902
|
}),
|
|
@@ -6909,7 +6909,7 @@ const ResourceTypeApiAxiosParamCreator = function (configuration) {
|
|
|
6909
6909
|
resourceTypeGetResourceTypes: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
6910
6910
|
const localVarPath = `/ResourceType/types`;
|
|
6911
6911
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6912
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6912
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6913
6913
|
let baseOptions;
|
|
6914
6914
|
if (configuration) {
|
|
6915
6915
|
baseOptions = configuration.baseOptions;
|
|
@@ -6918,12 +6918,12 @@ const ResourceTypeApiAxiosParamCreator = function (configuration) {
|
|
|
6918
6918
|
const localVarHeaderParameter = {};
|
|
6919
6919
|
const localVarQueryParameter = {};
|
|
6920
6920
|
// authentication JWT token required
|
|
6921
|
-
yield setApiKeyToObject$
|
|
6922
|
-
setSearchParams$
|
|
6921
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6922
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6923
6923
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6924
6924
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6925
6925
|
return {
|
|
6926
|
-
url: toPathString$
|
|
6926
|
+
url: toPathString$4(localVarUrlObj),
|
|
6927
6927
|
options: localVarRequestOptions,
|
|
6928
6928
|
};
|
|
6929
6929
|
}),
|
|
@@ -6945,7 +6945,7 @@ const ResourceTypeApiFp = function (configuration) {
|
|
|
6945
6945
|
resourceTypeGetEnabledResourceTypes(options) {
|
|
6946
6946
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6947
6947
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceTypeGetEnabledResourceTypes(options);
|
|
6948
|
-
return createRequestFunction$
|
|
6948
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6949
6949
|
});
|
|
6950
6950
|
},
|
|
6951
6951
|
/**
|
|
@@ -6958,7 +6958,7 @@ const ResourceTypeApiFp = function (configuration) {
|
|
|
6958
6958
|
resourceTypeGetResourceType(id, options) {
|
|
6959
6959
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6960
6960
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceTypeGetResourceType(id, options);
|
|
6961
|
-
return createRequestFunction$
|
|
6961
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6962
6962
|
});
|
|
6963
6963
|
},
|
|
6964
6964
|
/**
|
|
@@ -6970,7 +6970,7 @@ const ResourceTypeApiFp = function (configuration) {
|
|
|
6970
6970
|
resourceTypeGetResourceTypes(options) {
|
|
6971
6971
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6972
6972
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceTypeGetResourceTypes(options);
|
|
6973
|
-
return createRequestFunction$
|
|
6973
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6974
6974
|
});
|
|
6975
6975
|
},
|
|
6976
6976
|
};
|
|
@@ -7013,6 +7013,168 @@ const ResourceTypeApiFactory = function (configuration, basePath, axios) {
|
|
|
7013
7013
|
};
|
|
7014
7014
|
};
|
|
7015
7015
|
|
|
7016
|
+
/* tslint:disable */
|
|
7017
|
+
const BASE_PATH$3 = "https://d-sp25.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Search".replace(/\/+$/, "");
|
|
7018
|
+
|
|
7019
|
+
/* tslint:disable */
|
|
7020
|
+
/**
|
|
7021
|
+
*
|
|
7022
|
+
* @export
|
|
7023
|
+
*/
|
|
7024
|
+
const DUMMY_BASE_URL$3 = 'https://example.com';
|
|
7025
|
+
/**
|
|
7026
|
+
*
|
|
7027
|
+
* @export
|
|
7028
|
+
*/
|
|
7029
|
+
const setApiKeyToObject$3 = function (object, keyParamName, configuration) {
|
|
7030
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
7031
|
+
if (configuration && configuration.apiKey) {
|
|
7032
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
7033
|
+
? yield configuration.apiKey(keyParamName)
|
|
7034
|
+
: yield configuration.apiKey;
|
|
7035
|
+
object[keyParamName] = localVarApiKeyValue;
|
|
7036
|
+
}
|
|
7037
|
+
});
|
|
7038
|
+
};
|
|
7039
|
+
/**
|
|
7040
|
+
*
|
|
7041
|
+
* @export
|
|
7042
|
+
*/
|
|
7043
|
+
const setSearchParams$3 = function (url, ...objects) {
|
|
7044
|
+
const searchParams = new URLSearchParams(url.search);
|
|
7045
|
+
for (const object of objects) {
|
|
7046
|
+
for (const key in object) {
|
|
7047
|
+
if (Array.isArray(object[key])) {
|
|
7048
|
+
searchParams.delete(key);
|
|
7049
|
+
for (const item of object[key]) {
|
|
7050
|
+
searchParams.append(key, item);
|
|
7051
|
+
}
|
|
7052
|
+
}
|
|
7053
|
+
else {
|
|
7054
|
+
searchParams.set(key, object[key]);
|
|
7055
|
+
}
|
|
7056
|
+
}
|
|
7057
|
+
}
|
|
7058
|
+
url.search = searchParams.toString();
|
|
7059
|
+
};
|
|
7060
|
+
/**
|
|
7061
|
+
*
|
|
7062
|
+
* @export
|
|
7063
|
+
*/
|
|
7064
|
+
const toPathString$3 = function (url) {
|
|
7065
|
+
return url.pathname + url.search + url.hash;
|
|
7066
|
+
};
|
|
7067
|
+
/**
|
|
7068
|
+
*
|
|
7069
|
+
* @export
|
|
7070
|
+
*/
|
|
7071
|
+
const createRequestFunction$3 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
7072
|
+
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
7073
|
+
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
7074
|
+
return axios.request(axiosRequestArgs);
|
|
7075
|
+
};
|
|
7076
|
+
};
|
|
7077
|
+
|
|
7078
|
+
/* tslint:disable */
|
|
7079
|
+
/**
|
|
7080
|
+
* SemanticSearchApi - axios parameter creator
|
|
7081
|
+
* @export
|
|
7082
|
+
*/
|
|
7083
|
+
const SemanticSearchApiAxiosParamCreator = function (configuration) {
|
|
7084
|
+
return {
|
|
7085
|
+
/**
|
|
7086
|
+
*
|
|
7087
|
+
* @summary Search with SemanticSearch;
|
|
7088
|
+
* @param {string} [query] Elasticsearch query
|
|
7089
|
+
* @param {boolean} [user] Specify user or only public metadata records could be found
|
|
7090
|
+
* @param {boolean} [adv] Set true for advanced Elasticsearch search syntax
|
|
7091
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
7092
|
+
* @param {*} [options] Override http request option.
|
|
7093
|
+
* @throws {RequiredError}
|
|
7094
|
+
*/
|
|
7095
|
+
semanticSearchSearch: (query, user, adv, languages, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
7096
|
+
const localVarPath = `/SemanticSearch`;
|
|
7097
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7098
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
7099
|
+
let baseOptions;
|
|
7100
|
+
if (configuration) {
|
|
7101
|
+
baseOptions = configuration.baseOptions;
|
|
7102
|
+
}
|
|
7103
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
7104
|
+
const localVarHeaderParameter = {};
|
|
7105
|
+
const localVarQueryParameter = {};
|
|
7106
|
+
// authentication JWT token required
|
|
7107
|
+
yield setApiKeyToObject$3(localVarHeaderParameter, "Authorization", configuration);
|
|
7108
|
+
if (query !== undefined) {
|
|
7109
|
+
localVarQueryParameter['query'] = query;
|
|
7110
|
+
}
|
|
7111
|
+
if (user !== undefined) {
|
|
7112
|
+
localVarQueryParameter['user'] = user;
|
|
7113
|
+
}
|
|
7114
|
+
if (adv !== undefined) {
|
|
7115
|
+
localVarQueryParameter['adv'] = adv;
|
|
7116
|
+
}
|
|
7117
|
+
if (languages) {
|
|
7118
|
+
localVarQueryParameter['languages'] = languages;
|
|
7119
|
+
}
|
|
7120
|
+
setSearchParams$3(localVarUrlObj, localVarQueryParameter, options.query);
|
|
7121
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7122
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
7123
|
+
return {
|
|
7124
|
+
url: toPathString$3(localVarUrlObj),
|
|
7125
|
+
options: localVarRequestOptions,
|
|
7126
|
+
};
|
|
7127
|
+
}),
|
|
7128
|
+
};
|
|
7129
|
+
};
|
|
7130
|
+
/**
|
|
7131
|
+
* SemanticSearchApi - functional programming interface
|
|
7132
|
+
* @export
|
|
7133
|
+
*/
|
|
7134
|
+
const SemanticSearchApiFp = function (configuration) {
|
|
7135
|
+
const localVarAxiosParamCreator = SemanticSearchApiAxiosParamCreator(configuration);
|
|
7136
|
+
return {
|
|
7137
|
+
/**
|
|
7138
|
+
*
|
|
7139
|
+
* @summary Search with SemanticSearch;
|
|
7140
|
+
* @param {string} [query] Elasticsearch query
|
|
7141
|
+
* @param {boolean} [user] Specify user or only public metadata records could be found
|
|
7142
|
+
* @param {boolean} [adv] Set true for advanced Elasticsearch search syntax
|
|
7143
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
7144
|
+
* @param {*} [options] Override http request option.
|
|
7145
|
+
* @throws {RequiredError}
|
|
7146
|
+
*/
|
|
7147
|
+
semanticSearchSearch(query, user, adv, languages, options) {
|
|
7148
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
7149
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.semanticSearchSearch(query, user, adv, languages, options);
|
|
7150
|
+
return createRequestFunction$3(localVarAxiosArgs, axios, BASE_PATH$3, configuration);
|
|
7151
|
+
});
|
|
7152
|
+
},
|
|
7153
|
+
};
|
|
7154
|
+
};
|
|
7155
|
+
/**
|
|
7156
|
+
* SemanticSearchApi - factory interface
|
|
7157
|
+
* @export
|
|
7158
|
+
*/
|
|
7159
|
+
const SemanticSearchApiFactory = function (configuration, basePath, axios) {
|
|
7160
|
+
const localVarFp = SemanticSearchApiFp(configuration);
|
|
7161
|
+
return {
|
|
7162
|
+
/**
|
|
7163
|
+
*
|
|
7164
|
+
* @summary Search with SemanticSearch;
|
|
7165
|
+
* @param {string} [query] Elasticsearch query
|
|
7166
|
+
* @param {boolean} [user] Specify user or only public metadata records could be found
|
|
7167
|
+
* @param {boolean} [adv] Set true for advanced Elasticsearch search syntax
|
|
7168
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
7169
|
+
* @param {*} [options] Override http request option.
|
|
7170
|
+
* @throws {RequiredError}
|
|
7171
|
+
*/
|
|
7172
|
+
semanticSearchSearch(query, user, adv, languages, options) {
|
|
7173
|
+
return localVarFp.semanticSearchSearch(query, user, adv, languages, options).then((request) => request(axios, basePath));
|
|
7174
|
+
},
|
|
7175
|
+
};
|
|
7176
|
+
};
|
|
7177
|
+
|
|
7016
7178
|
/* tslint:disable */
|
|
7017
7179
|
const BASE_PATH$2 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Token".replace(/\/+$/, "");
|
|
7018
7180
|
/**
|
|
@@ -8412,6 +8574,7 @@ function implementations(axios) {
|
|
|
8412
8574
|
ResourceTypeApi: ResourceTypeApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Resources', axios),
|
|
8413
8575
|
RoleApi: RoleApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Project', axios),
|
|
8414
8576
|
SearchApi: SearchApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Project', axios),
|
|
8577
|
+
SemanticSearchApi: SemanticSearchApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Search', axios),
|
|
8415
8578
|
SubProjectApi: SubProjectApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Project', axios),
|
|
8416
8579
|
TitleApi: TitleApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.User', axios),
|
|
8417
8580
|
TokenApi: TokenApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Token', axios),
|
|
@@ -8475,6 +8638,7 @@ const ResourceApi = apis.ResourceApi;
|
|
|
8475
8638
|
const ResourceTypeApi = apis.ResourceTypeApi;
|
|
8476
8639
|
const RoleApi = apis.RoleApi;
|
|
8477
8640
|
const SearchApi = apis.SearchApi;
|
|
8641
|
+
const SemanticSearchApi = apis.SemanticSearchApi;
|
|
8478
8642
|
const SubProjectApi = apis.SubProjectApi;
|
|
8479
8643
|
const TitleApi = apis.TitleApi;
|
|
8480
8644
|
const TokenApi = apis.TokenApi;
|
|
@@ -8483,5 +8647,5 @@ const TreeApi = apis.TreeApi;
|
|
|
8483
8647
|
const UserApi = apis.UserApi;
|
|
8484
8648
|
const VisibilityApi = apis.VisibilityApi;
|
|
8485
8649
|
|
|
8486
|
-
export { ActivatedFeaturesApi, AdminApi, BlobApi, ContactChangeApi, DisciplineApi, LanguageApi, LicenseApi, MetadataApi, NoticeApi, OrganizationApi, ProjectApi, ProjectRoleApi, QuotaApi, ResourceApi, ResourceTypeApi, RoleApi, SearchApi, SubProjectApi, TOSApi, TitleApi, TokenApi, TreeApi, UserApi, VisibilityApi, apis as default };
|
|
8650
|
+
export { ActivatedFeaturesApi, AdminApi, BlobApi, ContactChangeApi, DisciplineApi, LanguageApi, LicenseApi, MetadataApi, NoticeApi, OrganizationApi, ProjectApi, ProjectRoleApi, QuotaApi, ResourceApi, ResourceTypeApi, RoleApi, SearchApi, SemanticSearchApi, SubProjectApi, TOSApi, TitleApi, TokenApi, TreeApi, UserApi, VisibilityApi, apis as default };
|
|
8487
8651
|
//# sourceMappingURL=index.js.map
|