@coscine/api-client 1.1.1 → 1.4.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 +615 -482
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +617 -481
- package/dist/index.umd.js.map +1 -1
- package/dist/lib/Coscine.Api.Metadata/api.js +9 -88
- package/dist/lib/Coscine.Api.Metadata/api.js.map +1 -1
- package/dist/lib/Coscine.Api.Metadata/base.js +1 -1
- package/dist/lib/Coscine.Api.Metadata/common.js +1 -1
- package/dist/lib/Coscine.Api.Metadata/configuration.js +1 -1
- package/dist/lib/Coscine.Api.Metadata/index.js +1 -1
- package/dist/lib/Coscine.Api.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 +20 -11
- package/dist/lib/apis.js.map +1 -1
- package/dist/lib/axios-basic.js +36 -8
- package/dist/lib/axios-basic.js.map +1 -1
- package/dist/lib/index.js +4 -1
- package/dist/lib/index.js.map +1 -1
- package/dist/types/Coscine.Api.Metadata/api.d.ts +52 -55
- package/dist/types/Coscine.Api.Metadata/base.d.ts +1 -1
- package/dist/types/Coscine.Api.Metadata/common.d.ts +1 -1
- package/dist/types/Coscine.Api.Metadata/configuration.d.ts +1 -1
- package/dist/types/Coscine.Api.Metadata/index.d.ts +1 -1
- package/dist/types/Coscine.Api.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 +7 -5
- package/dist/types/index.d.ts +17 -10
- package/package.json +2 -2
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);
|
|
@@ -3096,59 +3096,20 @@ const createRequestFunction$8 = function (axiosArgs, globalAxios, BASE_PATH, con
|
|
|
3096
3096
|
*/
|
|
3097
3097
|
const MetadataApiAxiosParamCreator = function (configuration) {
|
|
3098
3098
|
return {
|
|
3099
|
-
/**
|
|
3100
|
-
*
|
|
3101
|
-
* @summary Returns the application profile with the fixed values for the given resource.
|
|
3102
|
-
* @param {string} profile Url of the application profile
|
|
3103
|
-
* @param {string} resourceId Id of the resource
|
|
3104
|
-
* @param {*} [options] Override http request option.
|
|
3105
|
-
* @throws {RequiredError}
|
|
3106
|
-
*/
|
|
3107
|
-
metadataGetApplicationProfileComplete: (profile, resourceId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3108
|
-
// verify required parameter 'profile' is not null or undefined
|
|
3109
|
-
assertParamExists$8('metadataGetApplicationProfileComplete', 'profile', profile);
|
|
3110
|
-
// verify required parameter 'resourceId' is not null or undefined
|
|
3111
|
-
assertParamExists$8('metadataGetApplicationProfileComplete', 'resourceId', resourceId);
|
|
3112
|
-
const localVarPath = `/Metadata/profiles/{profile}/{resourceId}`
|
|
3113
|
-
.replace(`{${"profile"}}`, encodeURIComponent(String(profile)))
|
|
3114
|
-
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
3115
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3116
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$8);
|
|
3117
|
-
let baseOptions;
|
|
3118
|
-
if (configuration) {
|
|
3119
|
-
baseOptions = configuration.baseOptions;
|
|
3120
|
-
}
|
|
3121
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
3122
|
-
const localVarHeaderParameter = {};
|
|
3123
|
-
const localVarQueryParameter = {};
|
|
3124
|
-
// authentication JWT token required
|
|
3125
|
-
yield setApiKeyToObject$8(localVarHeaderParameter, "Authorization", configuration);
|
|
3126
|
-
setSearchParams$8(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3127
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3128
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3129
|
-
return {
|
|
3130
|
-
url: toPathString$8(localVarUrlObj),
|
|
3131
|
-
options: localVarRequestOptions,
|
|
3132
|
-
};
|
|
3133
|
-
}),
|
|
3134
3099
|
/**
|
|
3135
3100
|
*
|
|
3136
3101
|
* @summary This method returns instances.
|
|
3137
|
-
* @param {string} projectId Id of the project
|
|
3138
3102
|
* @param {string} className class name
|
|
3139
3103
|
* @param {*} [options] Override http request option.
|
|
3140
3104
|
* @throws {RequiredError}
|
|
3141
3105
|
*/
|
|
3142
|
-
metadataGetClassInstances: (
|
|
3143
|
-
// verify required parameter 'projectId' is not null or undefined
|
|
3144
|
-
assertParamExists$8('metadataGetClassInstances', 'projectId', projectId);
|
|
3106
|
+
metadataGetClassInstances: (className, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3145
3107
|
// verify required parameter 'className' is not null or undefined
|
|
3146
3108
|
assertParamExists$8('metadataGetClassInstances', 'className', className);
|
|
3147
|
-
const localVarPath = `/Metadata/instances/{
|
|
3148
|
-
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
3109
|
+
const localVarPath = `/Metadata/instances/{className}`
|
|
3149
3110
|
.replace(`{${"className"}}`, encodeURIComponent(String(className)));
|
|
3150
3111
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3151
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3112
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3152
3113
|
let baseOptions;
|
|
3153
3114
|
if (configuration) {
|
|
3154
3115
|
baseOptions = configuration.baseOptions;
|
|
@@ -3157,12 +3118,12 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3157
3118
|
const localVarHeaderParameter = {};
|
|
3158
3119
|
const localVarQueryParameter = {};
|
|
3159
3120
|
// authentication JWT token required
|
|
3160
|
-
yield setApiKeyToObject$
|
|
3161
|
-
setSearchParams$
|
|
3121
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3122
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3162
3123
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3163
3124
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3164
3125
|
return {
|
|
3165
|
-
url: toPathString$
|
|
3126
|
+
url: toPathString$9(localVarUrlObj),
|
|
3166
3127
|
options: localVarRequestOptions,
|
|
3167
3128
|
};
|
|
3168
3129
|
}),
|
|
@@ -3179,7 +3140,7 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3179
3140
|
const localVarPath = `/Metadata/profiles/{profile}`
|
|
3180
3141
|
.replace(`{${"profile"}}`, encodeURIComponent(String(profile)));
|
|
3181
3142
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3182
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3143
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3183
3144
|
let baseOptions;
|
|
3184
3145
|
if (configuration) {
|
|
3185
3146
|
baseOptions = configuration.baseOptions;
|
|
@@ -3188,12 +3149,12 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3188
3149
|
const localVarHeaderParameter = {};
|
|
3189
3150
|
const localVarQueryParameter = {};
|
|
3190
3151
|
// authentication JWT token required
|
|
3191
|
-
yield setApiKeyToObject$
|
|
3192
|
-
setSearchParams$
|
|
3152
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3153
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3193
3154
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3194
3155
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3195
3156
|
return {
|
|
3196
|
-
url: toPathString$
|
|
3157
|
+
url: toPathString$9(localVarUrlObj),
|
|
3197
3158
|
options: localVarRequestOptions,
|
|
3198
3159
|
};
|
|
3199
3160
|
}),
|
|
@@ -3206,7 +3167,7 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3206
3167
|
metadataGetProfiles: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3207
3168
|
const localVarPath = `/Metadata/profiles`;
|
|
3208
3169
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3209
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3170
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3210
3171
|
let baseOptions;
|
|
3211
3172
|
if (configuration) {
|
|
3212
3173
|
baseOptions = configuration.baseOptions;
|
|
@@ -3215,12 +3176,12 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3215
3176
|
const localVarHeaderParameter = {};
|
|
3216
3177
|
const localVarQueryParameter = {};
|
|
3217
3178
|
// authentication JWT token required
|
|
3218
|
-
yield setApiKeyToObject$
|
|
3219
|
-
setSearchParams$
|
|
3179
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3180
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3220
3181
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3221
3182
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3222
3183
|
return {
|
|
3223
|
-
url: toPathString$
|
|
3184
|
+
url: toPathString$9(localVarUrlObj),
|
|
3224
3185
|
options: localVarRequestOptions,
|
|
3225
3186
|
};
|
|
3226
3187
|
}),
|
|
@@ -3233,7 +3194,7 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3233
3194
|
metadataGetVocabularies: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3234
3195
|
const localVarPath = `/Metadata/vocabularies`;
|
|
3235
3196
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3236
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3197
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3237
3198
|
let baseOptions;
|
|
3238
3199
|
if (configuration) {
|
|
3239
3200
|
baseOptions = configuration.baseOptions;
|
|
@@ -3242,12 +3203,12 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3242
3203
|
const localVarHeaderParameter = {};
|
|
3243
3204
|
const localVarQueryParameter = {};
|
|
3244
3205
|
// authentication JWT token required
|
|
3245
|
-
yield setApiKeyToObject$
|
|
3246
|
-
setSearchParams$
|
|
3206
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3207
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3247
3208
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3248
3209
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3249
3210
|
return {
|
|
3250
|
-
url: toPathString$
|
|
3211
|
+
url: toPathString$9(localVarUrlObj),
|
|
3251
3212
|
options: localVarRequestOptions,
|
|
3252
3213
|
};
|
|
3253
3214
|
}),
|
|
@@ -3264,7 +3225,7 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3264
3225
|
const localVarPath = `/Metadata/vocabularies/{path}`
|
|
3265
3226
|
.replace(`{${"path"}}`, encodeURIComponent(String(path)));
|
|
3266
3227
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3267
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3228
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3268
3229
|
let baseOptions;
|
|
3269
3230
|
if (configuration) {
|
|
3270
3231
|
baseOptions = configuration.baseOptions;
|
|
@@ -3273,12 +3234,12 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3273
3234
|
const localVarHeaderParameter = {};
|
|
3274
3235
|
const localVarQueryParameter = {};
|
|
3275
3236
|
// authentication JWT token required
|
|
3276
|
-
yield setApiKeyToObject$
|
|
3277
|
-
setSearchParams$
|
|
3237
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3238
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3278
3239
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3279
3240
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3280
3241
|
return {
|
|
3281
|
-
url: toPathString$
|
|
3242
|
+
url: toPathString$9(localVarUrlObj),
|
|
3282
3243
|
options: localVarRequestOptions,
|
|
3283
3244
|
};
|
|
3284
3245
|
}),
|
|
@@ -3294,7 +3255,7 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3294
3255
|
assertParamExists$8('metadataSaveApplicationProfile', 'applicationProfile', applicationProfile);
|
|
3295
3256
|
const localVarPath = `/Metadata/profiles`;
|
|
3296
3257
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3297
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3258
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$9);
|
|
3298
3259
|
let baseOptions;
|
|
3299
3260
|
if (configuration) {
|
|
3300
3261
|
baseOptions = configuration.baseOptions;
|
|
@@ -3303,14 +3264,14 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3303
3264
|
const localVarHeaderParameter = {};
|
|
3304
3265
|
const localVarQueryParameter = {};
|
|
3305
3266
|
// authentication JWT token required
|
|
3306
|
-
yield setApiKeyToObject$
|
|
3267
|
+
yield setApiKeyToObject$9(localVarHeaderParameter, "Authorization", configuration);
|
|
3307
3268
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3308
|
-
setSearchParams$
|
|
3269
|
+
setSearchParams$9(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3309
3270
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3310
3271
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3311
3272
|
localVarRequestOptions.data = serializeDataIfNeeded$5(applicationProfile, localVarRequestOptions, configuration);
|
|
3312
3273
|
return {
|
|
3313
|
-
url: toPathString$
|
|
3274
|
+
url: toPathString$9(localVarUrlObj),
|
|
3314
3275
|
options: localVarRequestOptions,
|
|
3315
3276
|
};
|
|
3316
3277
|
}),
|
|
@@ -3323,32 +3284,17 @@ const MetadataApiAxiosParamCreator = function (configuration) {
|
|
|
3323
3284
|
const MetadataApiFp = function (configuration) {
|
|
3324
3285
|
const localVarAxiosParamCreator = MetadataApiAxiosParamCreator(configuration);
|
|
3325
3286
|
return {
|
|
3326
|
-
/**
|
|
3327
|
-
*
|
|
3328
|
-
* @summary Returns the application profile with the fixed values for the given resource.
|
|
3329
|
-
* @param {string} profile Url of the application profile
|
|
3330
|
-
* @param {string} resourceId Id of the resource
|
|
3331
|
-
* @param {*} [options] Override http request option.
|
|
3332
|
-
* @throws {RequiredError}
|
|
3333
|
-
*/
|
|
3334
|
-
metadataGetApplicationProfileComplete(profile, resourceId, options) {
|
|
3335
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
3336
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetApplicationProfileComplete(profile, resourceId, options);
|
|
3337
|
-
return createRequestFunction$8(localVarAxiosArgs, axios, BASE_PATH$8, configuration);
|
|
3338
|
-
});
|
|
3339
|
-
},
|
|
3340
3287
|
/**
|
|
3341
3288
|
*
|
|
3342
3289
|
* @summary This method returns instances.
|
|
3343
|
-
* @param {string} projectId Id of the project
|
|
3344
3290
|
* @param {string} className class name
|
|
3345
3291
|
* @param {*} [options] Override http request option.
|
|
3346
3292
|
* @throws {RequiredError}
|
|
3347
3293
|
*/
|
|
3348
|
-
metadataGetClassInstances(
|
|
3294
|
+
metadataGetClassInstances(className, options) {
|
|
3349
3295
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3350
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetClassInstances(
|
|
3351
|
-
return createRequestFunction$
|
|
3296
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetClassInstances(className, options);
|
|
3297
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3352
3298
|
});
|
|
3353
3299
|
},
|
|
3354
3300
|
/**
|
|
@@ -3361,7 +3307,7 @@ const MetadataApiFp = function (configuration) {
|
|
|
3361
3307
|
metadataGetProfile(profile, options) {
|
|
3362
3308
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3363
3309
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetProfile(profile, options);
|
|
3364
|
-
return createRequestFunction$
|
|
3310
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3365
3311
|
});
|
|
3366
3312
|
},
|
|
3367
3313
|
/**
|
|
@@ -3373,7 +3319,7 @@ const MetadataApiFp = function (configuration) {
|
|
|
3373
3319
|
metadataGetProfiles(options) {
|
|
3374
3320
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3375
3321
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetProfiles(options);
|
|
3376
|
-
return createRequestFunction$
|
|
3322
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3377
3323
|
});
|
|
3378
3324
|
},
|
|
3379
3325
|
/**
|
|
@@ -3385,7 +3331,7 @@ const MetadataApiFp = function (configuration) {
|
|
|
3385
3331
|
metadataGetVocabularies(options) {
|
|
3386
3332
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3387
3333
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetVocabularies(options);
|
|
3388
|
-
return createRequestFunction$
|
|
3334
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3389
3335
|
});
|
|
3390
3336
|
},
|
|
3391
3337
|
/**
|
|
@@ -3398,7 +3344,7 @@ const MetadataApiFp = function (configuration) {
|
|
|
3398
3344
|
metadataGetVocabulary(path, options) {
|
|
3399
3345
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3400
3346
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataGetVocabulary(path, options);
|
|
3401
|
-
return createRequestFunction$
|
|
3347
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3402
3348
|
});
|
|
3403
3349
|
},
|
|
3404
3350
|
/**
|
|
@@ -3411,7 +3357,7 @@ const MetadataApiFp = function (configuration) {
|
|
|
3411
3357
|
metadataSaveApplicationProfile(applicationProfile, options) {
|
|
3412
3358
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3413
3359
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.metadataSaveApplicationProfile(applicationProfile, options);
|
|
3414
|
-
return createRequestFunction$
|
|
3360
|
+
return createRequestFunction$9(localVarAxiosArgs, axios, BASE_PATH$9, configuration);
|
|
3415
3361
|
});
|
|
3416
3362
|
},
|
|
3417
3363
|
};
|
|
@@ -3423,27 +3369,15 @@ const MetadataApiFp = function (configuration) {
|
|
|
3423
3369
|
const MetadataApiFactory = function (configuration, basePath, axios) {
|
|
3424
3370
|
const localVarFp = MetadataApiFp(configuration);
|
|
3425
3371
|
return {
|
|
3426
|
-
/**
|
|
3427
|
-
*
|
|
3428
|
-
* @summary Returns the application profile with the fixed values for the given resource.
|
|
3429
|
-
* @param {string} profile Url of the application profile
|
|
3430
|
-
* @param {string} resourceId Id of the resource
|
|
3431
|
-
* @param {*} [options] Override http request option.
|
|
3432
|
-
* @throws {RequiredError}
|
|
3433
|
-
*/
|
|
3434
|
-
metadataGetApplicationProfileComplete(profile, resourceId, options) {
|
|
3435
|
-
return localVarFp.metadataGetApplicationProfileComplete(profile, resourceId, options).then((request) => request(axios, basePath));
|
|
3436
|
-
},
|
|
3437
3372
|
/**
|
|
3438
3373
|
*
|
|
3439
3374
|
* @summary This method returns instances.
|
|
3440
|
-
* @param {string} projectId Id of the project
|
|
3441
3375
|
* @param {string} className class name
|
|
3442
3376
|
* @param {*} [options] Override http request option.
|
|
3443
3377
|
* @throws {RequiredError}
|
|
3444
3378
|
*/
|
|
3445
|
-
metadataGetClassInstances(
|
|
3446
|
-
return localVarFp.metadataGetClassInstances(
|
|
3379
|
+
metadataGetClassInstances(className, options) {
|
|
3380
|
+
return localVarFp.metadataGetClassInstances(className, options).then((request) => request(axios, basePath));
|
|
3447
3381
|
},
|
|
3448
3382
|
/**
|
|
3449
3383
|
*
|
|
@@ -3497,7 +3431,7 @@ const MetadataApiFactory = function (configuration, basePath, axios) {
|
|
|
3497
3431
|
};
|
|
3498
3432
|
|
|
3499
3433
|
/* tslint:disable */
|
|
3500
|
-
const BASE_PATH$
|
|
3434
|
+
const BASE_PATH$8 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Notices".replace(/\/+$/, "");
|
|
3501
3435
|
/**
|
|
3502
3436
|
*
|
|
3503
3437
|
* @export
|
|
@@ -3517,7 +3451,7 @@ class RequiredError$7 extends Error {
|
|
|
3517
3451
|
*
|
|
3518
3452
|
* @export
|
|
3519
3453
|
*/
|
|
3520
|
-
const DUMMY_BASE_URL$
|
|
3454
|
+
const DUMMY_BASE_URL$8 = 'https://example.com';
|
|
3521
3455
|
/**
|
|
3522
3456
|
*
|
|
3523
3457
|
* @throws {RequiredError}
|
|
@@ -3532,7 +3466,7 @@ const assertParamExists$7 = function (functionName, paramName, paramValue) {
|
|
|
3532
3466
|
*
|
|
3533
3467
|
* @export
|
|
3534
3468
|
*/
|
|
3535
|
-
const setApiKeyToObject$
|
|
3469
|
+
const setApiKeyToObject$8 = function (object, keyParamName, configuration) {
|
|
3536
3470
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3537
3471
|
if (configuration && configuration.apiKey) {
|
|
3538
3472
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -3546,7 +3480,7 @@ const setApiKeyToObject$7 = function (object, keyParamName, configuration) {
|
|
|
3546
3480
|
*
|
|
3547
3481
|
* @export
|
|
3548
3482
|
*/
|
|
3549
|
-
const setSearchParams$
|
|
3483
|
+
const setSearchParams$8 = function (url, ...objects) {
|
|
3550
3484
|
const searchParams = new URLSearchParams(url.search);
|
|
3551
3485
|
for (const object of objects) {
|
|
3552
3486
|
for (const key in object) {
|
|
@@ -3567,14 +3501,14 @@ const setSearchParams$7 = function (url, ...objects) {
|
|
|
3567
3501
|
*
|
|
3568
3502
|
* @export
|
|
3569
3503
|
*/
|
|
3570
|
-
const toPathString$
|
|
3504
|
+
const toPathString$8 = function (url) {
|
|
3571
3505
|
return url.pathname + url.search + url.hash;
|
|
3572
3506
|
};
|
|
3573
3507
|
/**
|
|
3574
3508
|
*
|
|
3575
3509
|
* @export
|
|
3576
3510
|
*/
|
|
3577
|
-
const createRequestFunction$
|
|
3511
|
+
const createRequestFunction$8 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
3578
3512
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
3579
3513
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
3580
3514
|
return axios.request(axiosRequestArgs);
|
|
@@ -3597,7 +3531,7 @@ const NoticeApiAxiosParamCreator = function (configuration) {
|
|
|
3597
3531
|
noticeGetMaintenance: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3598
3532
|
const localVarPath = `/Notice/getMaintenance`;
|
|
3599
3533
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3600
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3534
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$8);
|
|
3601
3535
|
let baseOptions;
|
|
3602
3536
|
if (configuration) {
|
|
3603
3537
|
baseOptions = configuration.baseOptions;
|
|
@@ -3606,12 +3540,12 @@ const NoticeApiAxiosParamCreator = function (configuration) {
|
|
|
3606
3540
|
const localVarHeaderParameter = {};
|
|
3607
3541
|
const localVarQueryParameter = {};
|
|
3608
3542
|
// authentication JWT token required
|
|
3609
|
-
yield setApiKeyToObject$
|
|
3610
|
-
setSearchParams$
|
|
3543
|
+
yield setApiKeyToObject$8(localVarHeaderParameter, "Authorization", configuration);
|
|
3544
|
+
setSearchParams$8(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3611
3545
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3612
3546
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3613
3547
|
return {
|
|
3614
|
-
url: toPathString$
|
|
3548
|
+
url: toPathString$8(localVarUrlObj),
|
|
3615
3549
|
options: localVarRequestOptions,
|
|
3616
3550
|
};
|
|
3617
3551
|
}),
|
|
@@ -3629,7 +3563,7 @@ const NoticeApiAxiosParamCreator = function (configuration) {
|
|
|
3629
3563
|
const localVarPath = `/Notice/{documentSlug}`
|
|
3630
3564
|
.replace(`{${"documentSlug"}}`, encodeURIComponent(String(documentSlug)));
|
|
3631
3565
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3632
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3566
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$8);
|
|
3633
3567
|
let baseOptions;
|
|
3634
3568
|
if (configuration) {
|
|
3635
3569
|
baseOptions = configuration.baseOptions;
|
|
@@ -3638,15 +3572,15 @@ const NoticeApiAxiosParamCreator = function (configuration) {
|
|
|
3638
3572
|
const localVarHeaderParameter = {};
|
|
3639
3573
|
const localVarQueryParameter = {};
|
|
3640
3574
|
// authentication JWT token required
|
|
3641
|
-
yield setApiKeyToObject$
|
|
3575
|
+
yield setApiKeyToObject$8(localVarHeaderParameter, "Authorization", configuration);
|
|
3642
3576
|
if (language !== undefined) {
|
|
3643
3577
|
localVarQueryParameter['language'] = language;
|
|
3644
3578
|
}
|
|
3645
|
-
setSearchParams$
|
|
3579
|
+
setSearchParams$8(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3646
3580
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3647
3581
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3648
3582
|
return {
|
|
3649
|
-
url: toPathString$
|
|
3583
|
+
url: toPathString$8(localVarUrlObj),
|
|
3650
3584
|
options: localVarRequestOptions,
|
|
3651
3585
|
};
|
|
3652
3586
|
}),
|
|
@@ -3668,7 +3602,7 @@ const NoticeApiFp = function (configuration) {
|
|
|
3668
3602
|
noticeGetMaintenance(options) {
|
|
3669
3603
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3670
3604
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.noticeGetMaintenance(options);
|
|
3671
|
-
return createRequestFunction$
|
|
3605
|
+
return createRequestFunction$8(localVarAxiosArgs, axios, BASE_PATH$8, configuration);
|
|
3672
3606
|
});
|
|
3673
3607
|
},
|
|
3674
3608
|
/**
|
|
@@ -3682,7 +3616,7 @@ const NoticeApiFp = function (configuration) {
|
|
|
3682
3616
|
noticeGetNotice(documentSlug, language, options) {
|
|
3683
3617
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3684
3618
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.noticeGetNotice(documentSlug, language, options);
|
|
3685
|
-
return createRequestFunction$
|
|
3619
|
+
return createRequestFunction$8(localVarAxiosArgs, axios, BASE_PATH$8, configuration);
|
|
3686
3620
|
});
|
|
3687
3621
|
},
|
|
3688
3622
|
};
|
|
@@ -3718,7 +3652,7 @@ const NoticeApiFactory = function (configuration, basePath, axios) {
|
|
|
3718
3652
|
};
|
|
3719
3653
|
|
|
3720
3654
|
/* tslint:disable */
|
|
3721
|
-
const BASE_PATH$
|
|
3655
|
+
const BASE_PATH$7 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Organization".replace(/\/+$/, "");
|
|
3722
3656
|
/**
|
|
3723
3657
|
*
|
|
3724
3658
|
* @export
|
|
@@ -3738,7 +3672,7 @@ class RequiredError$6 extends Error {
|
|
|
3738
3672
|
*
|
|
3739
3673
|
* @export
|
|
3740
3674
|
*/
|
|
3741
|
-
const DUMMY_BASE_URL$
|
|
3675
|
+
const DUMMY_BASE_URL$7 = 'https://example.com';
|
|
3742
3676
|
/**
|
|
3743
3677
|
*
|
|
3744
3678
|
* @throws {RequiredError}
|
|
@@ -3753,7 +3687,7 @@ const assertParamExists$6 = function (functionName, paramName, paramValue) {
|
|
|
3753
3687
|
*
|
|
3754
3688
|
* @export
|
|
3755
3689
|
*/
|
|
3756
|
-
const setApiKeyToObject$
|
|
3690
|
+
const setApiKeyToObject$7 = function (object, keyParamName, configuration) {
|
|
3757
3691
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3758
3692
|
if (configuration && configuration.apiKey) {
|
|
3759
3693
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -3767,7 +3701,7 @@ const setApiKeyToObject$6 = function (object, keyParamName, configuration) {
|
|
|
3767
3701
|
*
|
|
3768
3702
|
* @export
|
|
3769
3703
|
*/
|
|
3770
|
-
const setSearchParams$
|
|
3704
|
+
const setSearchParams$7 = function (url, ...objects) {
|
|
3771
3705
|
const searchParams = new URLSearchParams(url.search);
|
|
3772
3706
|
for (const object of objects) {
|
|
3773
3707
|
for (const key in object) {
|
|
@@ -3788,14 +3722,14 @@ const setSearchParams$6 = function (url, ...objects) {
|
|
|
3788
3722
|
*
|
|
3789
3723
|
* @export
|
|
3790
3724
|
*/
|
|
3791
|
-
const toPathString$
|
|
3725
|
+
const toPathString$7 = function (url) {
|
|
3792
3726
|
return url.pathname + url.search + url.hash;
|
|
3793
3727
|
};
|
|
3794
3728
|
/**
|
|
3795
3729
|
*
|
|
3796
3730
|
* @export
|
|
3797
3731
|
*/
|
|
3798
|
-
const createRequestFunction$
|
|
3732
|
+
const createRequestFunction$7 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
3799
3733
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
3800
3734
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
3801
3735
|
return axios.request(axiosRequestArgs);
|
|
@@ -3822,7 +3756,7 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3822
3756
|
const localVarPath = `/Organization/{url}`
|
|
3823
3757
|
.replace(`{${"url"}}`, encodeURIComponent(String(url)));
|
|
3824
3758
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3825
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3759
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3826
3760
|
let baseOptions;
|
|
3827
3761
|
if (configuration) {
|
|
3828
3762
|
baseOptions = configuration.baseOptions;
|
|
@@ -3831,12 +3765,12 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3831
3765
|
const localVarHeaderParameter = {};
|
|
3832
3766
|
const localVarQueryParameter = {};
|
|
3833
3767
|
// authentication JWT token required
|
|
3834
|
-
yield setApiKeyToObject$
|
|
3835
|
-
setSearchParams$
|
|
3768
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3769
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3836
3770
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3837
3771
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3838
3772
|
return {
|
|
3839
|
-
url: toPathString$
|
|
3773
|
+
url: toPathString$7(localVarUrlObj),
|
|
3840
3774
|
options: localVarRequestOptions,
|
|
3841
3775
|
};
|
|
3842
3776
|
}),
|
|
@@ -3850,7 +3784,7 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3850
3784
|
organizationGetROR: (filter, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3851
3785
|
const localVarPath = `/Organization/-/ror`;
|
|
3852
3786
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3853
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3787
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3854
3788
|
let baseOptions;
|
|
3855
3789
|
if (configuration) {
|
|
3856
3790
|
baseOptions = configuration.baseOptions;
|
|
@@ -3859,15 +3793,15 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3859
3793
|
const localVarHeaderParameter = {};
|
|
3860
3794
|
const localVarQueryParameter = {};
|
|
3861
3795
|
// authentication JWT token required
|
|
3862
|
-
yield setApiKeyToObject$
|
|
3796
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3863
3797
|
if (filter !== undefined) {
|
|
3864
3798
|
localVarQueryParameter['filter'] = filter;
|
|
3865
3799
|
}
|
|
3866
|
-
setSearchParams$
|
|
3800
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3867
3801
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3868
3802
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3869
3803
|
return {
|
|
3870
|
-
url: toPathString$
|
|
3804
|
+
url: toPathString$7(localVarUrlObj),
|
|
3871
3805
|
options: localVarRequestOptions,
|
|
3872
3806
|
};
|
|
3873
3807
|
}),
|
|
@@ -3882,7 +3816,7 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3882
3816
|
organizationIndex: (member, filter, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3883
3817
|
const localVarPath = `/Organization`;
|
|
3884
3818
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3885
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3819
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3886
3820
|
let baseOptions;
|
|
3887
3821
|
if (configuration) {
|
|
3888
3822
|
baseOptions = configuration.baseOptions;
|
|
@@ -3891,18 +3825,18 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3891
3825
|
const localVarHeaderParameter = {};
|
|
3892
3826
|
const localVarQueryParameter = {};
|
|
3893
3827
|
// authentication JWT token required
|
|
3894
|
-
yield setApiKeyToObject$
|
|
3828
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3895
3829
|
if (member !== undefined) {
|
|
3896
3830
|
localVarQueryParameter['member'] = member;
|
|
3897
3831
|
}
|
|
3898
3832
|
if (filter !== undefined) {
|
|
3899
3833
|
localVarQueryParameter['filter'] = filter;
|
|
3900
3834
|
}
|
|
3901
|
-
setSearchParams$
|
|
3835
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3902
3836
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3903
3837
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3904
3838
|
return {
|
|
3905
|
-
url: toPathString$
|
|
3839
|
+
url: toPathString$7(localVarUrlObj),
|
|
3906
3840
|
options: localVarRequestOptions,
|
|
3907
3841
|
};
|
|
3908
3842
|
}),
|
|
@@ -3919,7 +3853,7 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3919
3853
|
const localVarPath = `/Organization/-/isMember/{url}`
|
|
3920
3854
|
.replace(`{${"url"}}`, encodeURIComponent(String(url)));
|
|
3921
3855
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3922
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3856
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3923
3857
|
let baseOptions;
|
|
3924
3858
|
if (configuration) {
|
|
3925
3859
|
baseOptions = configuration.baseOptions;
|
|
@@ -3928,12 +3862,12 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3928
3862
|
const localVarHeaderParameter = {};
|
|
3929
3863
|
const localVarQueryParameter = {};
|
|
3930
3864
|
// authentication JWT token required
|
|
3931
|
-
yield setApiKeyToObject$
|
|
3932
|
-
setSearchParams$
|
|
3865
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3866
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3933
3867
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3934
3868
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3935
3869
|
return {
|
|
3936
|
-
url: toPathString$
|
|
3870
|
+
url: toPathString$7(localVarUrlObj),
|
|
3937
3871
|
options: localVarRequestOptions,
|
|
3938
3872
|
};
|
|
3939
3873
|
}),
|
|
@@ -3946,7 +3880,7 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3946
3880
|
organizationIsMember2: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
3947
3881
|
const localVarPath = `/Organization/-/isMember`;
|
|
3948
3882
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3949
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
3883
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
3950
3884
|
let baseOptions;
|
|
3951
3885
|
if (configuration) {
|
|
3952
3886
|
baseOptions = configuration.baseOptions;
|
|
@@ -3955,12 +3889,12 @@ const OrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
3955
3889
|
const localVarHeaderParameter = {};
|
|
3956
3890
|
const localVarQueryParameter = {};
|
|
3957
3891
|
// authentication JWT token required
|
|
3958
|
-
yield setApiKeyToObject$
|
|
3959
|
-
setSearchParams$
|
|
3892
|
+
yield setApiKeyToObject$7(localVarHeaderParameter, "Authorization", configuration);
|
|
3893
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter, options.query);
|
|
3960
3894
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3961
3895
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3962
3896
|
return {
|
|
3963
|
-
url: toPathString$
|
|
3897
|
+
url: toPathString$7(localVarUrlObj),
|
|
3964
3898
|
options: localVarRequestOptions,
|
|
3965
3899
|
};
|
|
3966
3900
|
}),
|
|
@@ -3983,7 +3917,7 @@ const OrganizationApiFp = function (configuration) {
|
|
|
3983
3917
|
organizationGetOrganization(url, options) {
|
|
3984
3918
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3985
3919
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationGetOrganization(url, options);
|
|
3986
|
-
return createRequestFunction$
|
|
3920
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
3987
3921
|
});
|
|
3988
3922
|
},
|
|
3989
3923
|
/**
|
|
@@ -3996,7 +3930,7 @@ const OrganizationApiFp = function (configuration) {
|
|
|
3996
3930
|
organizationGetROR(filter, options) {
|
|
3997
3931
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3998
3932
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationGetROR(filter, options);
|
|
3999
|
-
return createRequestFunction$
|
|
3933
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
4000
3934
|
});
|
|
4001
3935
|
},
|
|
4002
3936
|
/**
|
|
@@ -4010,7 +3944,7 @@ const OrganizationApiFp = function (configuration) {
|
|
|
4010
3944
|
organizationIndex(member, filter, options) {
|
|
4011
3945
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4012
3946
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationIndex(member, filter, options);
|
|
4013
|
-
return createRequestFunction$
|
|
3947
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
4014
3948
|
});
|
|
4015
3949
|
},
|
|
4016
3950
|
/**
|
|
@@ -4023,7 +3957,7 @@ const OrganizationApiFp = function (configuration) {
|
|
|
4023
3957
|
organizationIsMember(url, options) {
|
|
4024
3958
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4025
3959
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationIsMember(url, options);
|
|
4026
|
-
return createRequestFunction$
|
|
3960
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
4027
3961
|
});
|
|
4028
3962
|
},
|
|
4029
3963
|
/**
|
|
@@ -4035,7 +3969,7 @@ const OrganizationApiFp = function (configuration) {
|
|
|
4035
3969
|
organizationIsMember2(options) {
|
|
4036
3970
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4037
3971
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.organizationIsMember2(options);
|
|
4038
|
-
return createRequestFunction$
|
|
3972
|
+
return createRequestFunction$7(localVarAxiosArgs, axios, BASE_PATH$7, configuration);
|
|
4039
3973
|
});
|
|
4040
3974
|
},
|
|
4041
3975
|
};
|
|
@@ -4101,7 +4035,7 @@ const OrganizationApiFactory = function (configuration, basePath, axios) {
|
|
|
4101
4035
|
};
|
|
4102
4036
|
|
|
4103
4037
|
/* tslint:disable */
|
|
4104
|
-
const BASE_PATH$
|
|
4038
|
+
const BASE_PATH$6 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Project".replace(/\/+$/, "");
|
|
4105
4039
|
/**
|
|
4106
4040
|
*
|
|
4107
4041
|
* @export
|
|
@@ -4121,7 +4055,7 @@ class RequiredError$5 extends Error {
|
|
|
4121
4055
|
*
|
|
4122
4056
|
* @export
|
|
4123
4057
|
*/
|
|
4124
|
-
const DUMMY_BASE_URL$
|
|
4058
|
+
const DUMMY_BASE_URL$6 = 'https://example.com';
|
|
4125
4059
|
/**
|
|
4126
4060
|
*
|
|
4127
4061
|
* @throws {RequiredError}
|
|
@@ -4136,7 +4070,7 @@ const assertParamExists$5 = function (functionName, paramName, paramValue) {
|
|
|
4136
4070
|
*
|
|
4137
4071
|
* @export
|
|
4138
4072
|
*/
|
|
4139
|
-
const setApiKeyToObject$
|
|
4073
|
+
const setApiKeyToObject$6 = function (object, keyParamName, configuration) {
|
|
4140
4074
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4141
4075
|
if (configuration && configuration.apiKey) {
|
|
4142
4076
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -4150,7 +4084,7 @@ const setApiKeyToObject$5 = function (object, keyParamName, configuration) {
|
|
|
4150
4084
|
*
|
|
4151
4085
|
* @export
|
|
4152
4086
|
*/
|
|
4153
|
-
const setSearchParams$
|
|
4087
|
+
const setSearchParams$6 = function (url, ...objects) {
|
|
4154
4088
|
const searchParams = new URLSearchParams(url.search);
|
|
4155
4089
|
for (const object of objects) {
|
|
4156
4090
|
for (const key in object) {
|
|
@@ -4184,14 +4118,14 @@ const serializeDataIfNeeded$4 = function (value, requestOptions, configuration)
|
|
|
4184
4118
|
*
|
|
4185
4119
|
* @export
|
|
4186
4120
|
*/
|
|
4187
|
-
const toPathString$
|
|
4121
|
+
const toPathString$6 = function (url) {
|
|
4188
4122
|
return url.pathname + url.search + url.hash;
|
|
4189
4123
|
};
|
|
4190
4124
|
/**
|
|
4191
4125
|
*
|
|
4192
4126
|
* @export
|
|
4193
4127
|
*/
|
|
4194
|
-
const createRequestFunction$
|
|
4128
|
+
const createRequestFunction$6 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
4195
4129
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
4196
4130
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
4197
4131
|
return axios.request(axiosRequestArgs);
|
|
@@ -4214,7 +4148,7 @@ const DisciplineApiAxiosParamCreator = function (configuration) {
|
|
|
4214
4148
|
disciplineIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4215
4149
|
const localVarPath = `/Discipline`;
|
|
4216
4150
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4217
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4151
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4218
4152
|
let baseOptions;
|
|
4219
4153
|
if (configuration) {
|
|
4220
4154
|
baseOptions = configuration.baseOptions;
|
|
@@ -4223,12 +4157,12 @@ const DisciplineApiAxiosParamCreator = function (configuration) {
|
|
|
4223
4157
|
const localVarHeaderParameter = {};
|
|
4224
4158
|
const localVarQueryParameter = {};
|
|
4225
4159
|
// authentication JWT token required
|
|
4226
|
-
yield setApiKeyToObject$
|
|
4227
|
-
setSearchParams$
|
|
4160
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4161
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4228
4162
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4229
4163
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4230
4164
|
return {
|
|
4231
|
-
url: toPathString$
|
|
4165
|
+
url: toPathString$6(localVarUrlObj),
|
|
4232
4166
|
options: localVarRequestOptions,
|
|
4233
4167
|
};
|
|
4234
4168
|
}),
|
|
@@ -4250,7 +4184,7 @@ const DisciplineApiFp = function (configuration) {
|
|
|
4250
4184
|
disciplineIndex(options) {
|
|
4251
4185
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4252
4186
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.disciplineIndex(options);
|
|
4253
|
-
return createRequestFunction$
|
|
4187
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4254
4188
|
});
|
|
4255
4189
|
},
|
|
4256
4190
|
};
|
|
@@ -4288,7 +4222,7 @@ const LicenseApiAxiosParamCreator = function (configuration) {
|
|
|
4288
4222
|
licenseIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4289
4223
|
const localVarPath = `/License`;
|
|
4290
4224
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4291
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4225
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4292
4226
|
let baseOptions;
|
|
4293
4227
|
if (configuration) {
|
|
4294
4228
|
baseOptions = configuration.baseOptions;
|
|
@@ -4297,12 +4231,12 @@ const LicenseApiAxiosParamCreator = function (configuration) {
|
|
|
4297
4231
|
const localVarHeaderParameter = {};
|
|
4298
4232
|
const localVarQueryParameter = {};
|
|
4299
4233
|
// authentication JWT token required
|
|
4300
|
-
yield setApiKeyToObject$
|
|
4301
|
-
setSearchParams$
|
|
4234
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4235
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4302
4236
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4303
4237
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4304
4238
|
return {
|
|
4305
|
-
url: toPathString$
|
|
4239
|
+
url: toPathString$6(localVarUrlObj),
|
|
4306
4240
|
options: localVarRequestOptions,
|
|
4307
4241
|
};
|
|
4308
4242
|
}),
|
|
@@ -4324,7 +4258,7 @@ const LicenseApiFp = function (configuration) {
|
|
|
4324
4258
|
licenseIndex(options) {
|
|
4325
4259
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4326
4260
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.licenseIndex(options);
|
|
4327
|
-
return createRequestFunction$
|
|
4261
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4328
4262
|
});
|
|
4329
4263
|
},
|
|
4330
4264
|
};
|
|
@@ -4366,7 +4300,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4366
4300
|
const localVarPath = `/Project/{id}`
|
|
4367
4301
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
4368
4302
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4369
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4303
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4370
4304
|
let baseOptions;
|
|
4371
4305
|
if (configuration) {
|
|
4372
4306
|
baseOptions = configuration.baseOptions;
|
|
@@ -4375,12 +4309,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4375
4309
|
const localVarHeaderParameter = {};
|
|
4376
4310
|
const localVarQueryParameter = {};
|
|
4377
4311
|
// authentication JWT token required
|
|
4378
|
-
yield setApiKeyToObject$
|
|
4379
|
-
setSearchParams$
|
|
4312
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4313
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4380
4314
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4381
4315
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4382
4316
|
return {
|
|
4383
|
-
url: toPathString$
|
|
4317
|
+
url: toPathString$6(localVarUrlObj),
|
|
4384
4318
|
options: localVarRequestOptions,
|
|
4385
4319
|
};
|
|
4386
4320
|
}),
|
|
@@ -4397,7 +4331,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4397
4331
|
const localVarPath = `/Project/invitation/{invitationId}`
|
|
4398
4332
|
.replace(`{${"invitationId"}}`, encodeURIComponent(String(invitationId)));
|
|
4399
4333
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4400
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4334
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4401
4335
|
let baseOptions;
|
|
4402
4336
|
if (configuration) {
|
|
4403
4337
|
baseOptions = configuration.baseOptions;
|
|
@@ -4406,12 +4340,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4406
4340
|
const localVarHeaderParameter = {};
|
|
4407
4341
|
const localVarQueryParameter = {};
|
|
4408
4342
|
// authentication JWT token required
|
|
4409
|
-
yield setApiKeyToObject$
|
|
4410
|
-
setSearchParams$
|
|
4343
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4344
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4411
4345
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4412
4346
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4413
4347
|
return {
|
|
4414
|
-
url: toPathString$
|
|
4348
|
+
url: toPathString$6(localVarUrlObj),
|
|
4415
4349
|
options: localVarRequestOptions,
|
|
4416
4350
|
};
|
|
4417
4351
|
}),
|
|
@@ -4428,7 +4362,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4428
4362
|
const localVarPath = `/Project/{id}`
|
|
4429
4363
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
4430
4364
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4431
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4365
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4432
4366
|
let baseOptions;
|
|
4433
4367
|
if (configuration) {
|
|
4434
4368
|
baseOptions = configuration.baseOptions;
|
|
@@ -4437,12 +4371,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4437
4371
|
const localVarHeaderParameter = {};
|
|
4438
4372
|
const localVarQueryParameter = {};
|
|
4439
4373
|
// authentication JWT token required
|
|
4440
|
-
yield setApiKeyToObject$
|
|
4441
|
-
setSearchParams$
|
|
4374
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4375
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4442
4376
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4443
4377
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4444
4378
|
return {
|
|
4445
|
-
url: toPathString$
|
|
4379
|
+
url: toPathString$6(localVarUrlObj),
|
|
4446
4380
|
options: localVarRequestOptions,
|
|
4447
4381
|
};
|
|
4448
4382
|
}),
|
|
@@ -4463,7 +4397,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4463
4397
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
4464
4398
|
.replace(`{${"resourceTypeId"}}`, encodeURIComponent(String(resourceTypeId)));
|
|
4465
4399
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4466
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4400
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4467
4401
|
let baseOptions;
|
|
4468
4402
|
if (configuration) {
|
|
4469
4403
|
baseOptions = configuration.baseOptions;
|
|
@@ -4472,12 +4406,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4472
4406
|
const localVarHeaderParameter = {};
|
|
4473
4407
|
const localVarQueryParameter = {};
|
|
4474
4408
|
// authentication JWT token required
|
|
4475
|
-
yield setApiKeyToObject$
|
|
4476
|
-
setSearchParams$
|
|
4409
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4410
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4477
4411
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4478
4412
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4479
4413
|
return {
|
|
4480
|
-
url: toPathString$
|
|
4414
|
+
url: toPathString$6(localVarUrlObj),
|
|
4481
4415
|
options: localVarRequestOptions,
|
|
4482
4416
|
};
|
|
4483
4417
|
}),
|
|
@@ -4494,7 +4428,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4494
4428
|
const localVarPath = `/Project/{id}/resources`
|
|
4495
4429
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
4496
4430
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4497
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4431
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4498
4432
|
let baseOptions;
|
|
4499
4433
|
if (configuration) {
|
|
4500
4434
|
baseOptions = configuration.baseOptions;
|
|
@@ -4503,12 +4437,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4503
4437
|
const localVarHeaderParameter = {};
|
|
4504
4438
|
const localVarQueryParameter = {};
|
|
4505
4439
|
// authentication JWT token required
|
|
4506
|
-
yield setApiKeyToObject$
|
|
4507
|
-
setSearchParams$
|
|
4440
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4441
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4508
4442
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4509
4443
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4510
4444
|
return {
|
|
4511
|
-
url: toPathString$
|
|
4445
|
+
url: toPathString$6(localVarUrlObj),
|
|
4512
4446
|
options: localVarRequestOptions,
|
|
4513
4447
|
};
|
|
4514
4448
|
}),
|
|
@@ -4521,7 +4455,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4521
4455
|
projectGetTopLevelProjects: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4522
4456
|
const localVarPath = `/Project/-/topLevel`;
|
|
4523
4457
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4524
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4458
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4525
4459
|
let baseOptions;
|
|
4526
4460
|
if (configuration) {
|
|
4527
4461
|
baseOptions = configuration.baseOptions;
|
|
@@ -4530,12 +4464,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4530
4464
|
const localVarHeaderParameter = {};
|
|
4531
4465
|
const localVarQueryParameter = {};
|
|
4532
4466
|
// authentication JWT token required
|
|
4533
|
-
yield setApiKeyToObject$
|
|
4534
|
-
setSearchParams$
|
|
4467
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4468
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4535
4469
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4536
4470
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4537
4471
|
return {
|
|
4538
|
-
url: toPathString$
|
|
4472
|
+
url: toPathString$6(localVarUrlObj),
|
|
4539
4473
|
options: localVarRequestOptions,
|
|
4540
4474
|
};
|
|
4541
4475
|
}),
|
|
@@ -4548,7 +4482,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4548
4482
|
projectIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4549
4483
|
const localVarPath = `/Project`;
|
|
4550
4484
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4551
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4485
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4552
4486
|
let baseOptions;
|
|
4553
4487
|
if (configuration) {
|
|
4554
4488
|
baseOptions = configuration.baseOptions;
|
|
@@ -4557,12 +4491,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4557
4491
|
const localVarHeaderParameter = {};
|
|
4558
4492
|
const localVarQueryParameter = {};
|
|
4559
4493
|
// authentication JWT token required
|
|
4560
|
-
yield setApiKeyToObject$
|
|
4561
|
-
setSearchParams$
|
|
4494
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4495
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4562
4496
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4563
4497
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4564
4498
|
return {
|
|
4565
|
-
url: toPathString$
|
|
4499
|
+
url: toPathString$6(localVarUrlObj),
|
|
4566
4500
|
options: localVarRequestOptions,
|
|
4567
4501
|
};
|
|
4568
4502
|
}),
|
|
@@ -4579,7 +4513,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4579
4513
|
const localVarPath = `/Project/invitation/list/{projectId}`
|
|
4580
4514
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
4581
4515
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4582
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4516
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4583
4517
|
let baseOptions;
|
|
4584
4518
|
if (configuration) {
|
|
4585
4519
|
baseOptions = configuration.baseOptions;
|
|
@@ -4588,12 +4522,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4588
4522
|
const localVarHeaderParameter = {};
|
|
4589
4523
|
const localVarQueryParameter = {};
|
|
4590
4524
|
// authentication JWT token required
|
|
4591
|
-
yield setApiKeyToObject$
|
|
4592
|
-
setSearchParams$
|
|
4525
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4526
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4593
4527
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4594
4528
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4595
4529
|
return {
|
|
4596
|
-
url: toPathString$
|
|
4530
|
+
url: toPathString$6(localVarUrlObj),
|
|
4597
4531
|
options: localVarRequestOptions,
|
|
4598
4532
|
};
|
|
4599
4533
|
}),
|
|
@@ -4614,7 +4548,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4614
4548
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
4615
4549
|
.replace(`{${"resourceTypeId"}}`, encodeURIComponent(String(resourceTypeId)));
|
|
4616
4550
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4617
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4551
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4618
4552
|
let baseOptions;
|
|
4619
4553
|
if (configuration) {
|
|
4620
4554
|
baseOptions = configuration.baseOptions;
|
|
@@ -4622,13 +4556,13 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4622
4556
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
4623
4557
|
const localVarHeaderParameter = {};
|
|
4624
4558
|
const localVarQueryParameter = {};
|
|
4625
|
-
// authentication JWT token required
|
|
4626
|
-
yield setApiKeyToObject$
|
|
4627
|
-
setSearchParams$
|
|
4559
|
+
// authentication JWT token required
|
|
4560
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4561
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4628
4562
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4629
4563
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4630
4564
|
return {
|
|
4631
|
-
url: toPathString$
|
|
4565
|
+
url: toPathString$6(localVarUrlObj),
|
|
4632
4566
|
options: localVarRequestOptions,
|
|
4633
4567
|
};
|
|
4634
4568
|
}),
|
|
@@ -4645,7 +4579,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4645
4579
|
const localVarPath = `/Project/{projectId}/quota/-/all`
|
|
4646
4580
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
4647
4581
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4648
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4582
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4649
4583
|
let baseOptions;
|
|
4650
4584
|
if (configuration) {
|
|
4651
4585
|
baseOptions = configuration.baseOptions;
|
|
@@ -4654,12 +4588,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4654
4588
|
const localVarHeaderParameter = {};
|
|
4655
4589
|
const localVarQueryParameter = {};
|
|
4656
4590
|
// authentication JWT token required
|
|
4657
|
-
yield setApiKeyToObject$
|
|
4658
|
-
setSearchParams$
|
|
4591
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4592
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4659
4593
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4660
4594
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4661
4595
|
return {
|
|
4662
|
-
url: toPathString$
|
|
4596
|
+
url: toPathString$6(localVarUrlObj),
|
|
4663
4597
|
options: localVarRequestOptions,
|
|
4664
4598
|
};
|
|
4665
4599
|
}),
|
|
@@ -4676,7 +4610,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4676
4610
|
const localVarPath = `/Project/invitation/resolve/{token}`
|
|
4677
4611
|
.replace(`{${"token"}}`, encodeURIComponent(String(token)));
|
|
4678
4612
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4679
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4613
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4680
4614
|
let baseOptions;
|
|
4681
4615
|
if (configuration) {
|
|
4682
4616
|
baseOptions = configuration.baseOptions;
|
|
@@ -4685,12 +4619,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4685
4619
|
const localVarHeaderParameter = {};
|
|
4686
4620
|
const localVarQueryParameter = {};
|
|
4687
4621
|
// authentication JWT token required
|
|
4688
|
-
yield setApiKeyToObject$
|
|
4689
|
-
setSearchParams$
|
|
4622
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4623
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4690
4624
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4691
4625
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4692
4626
|
return {
|
|
4693
|
-
url: toPathString$
|
|
4627
|
+
url: toPathString$6(localVarUrlObj),
|
|
4694
4628
|
options: localVarRequestOptions,
|
|
4695
4629
|
};
|
|
4696
4630
|
}),
|
|
@@ -4706,7 +4640,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4706
4640
|
assertParamExists$5('projectSendInvitation', 'sendInvitationObject', sendInvitationObject);
|
|
4707
4641
|
const localVarPath = `/Project/invitation`;
|
|
4708
4642
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4709
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4643
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4710
4644
|
let baseOptions;
|
|
4711
4645
|
if (configuration) {
|
|
4712
4646
|
baseOptions = configuration.baseOptions;
|
|
@@ -4715,14 +4649,14 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4715
4649
|
const localVarHeaderParameter = {};
|
|
4716
4650
|
const localVarQueryParameter = {};
|
|
4717
4651
|
// authentication JWT token required
|
|
4718
|
-
yield setApiKeyToObject$
|
|
4652
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4719
4653
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4720
|
-
setSearchParams$
|
|
4654
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4721
4655
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4722
4656
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4723
4657
|
localVarRequestOptions.data = serializeDataIfNeeded$4(sendInvitationObject, localVarRequestOptions, configuration);
|
|
4724
4658
|
return {
|
|
4725
|
-
url: toPathString$
|
|
4659
|
+
url: toPathString$6(localVarUrlObj),
|
|
4726
4660
|
options: localVarRequestOptions,
|
|
4727
4661
|
};
|
|
4728
4662
|
}),
|
|
@@ -4735,7 +4669,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4735
4669
|
projectStore: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4736
4670
|
const localVarPath = `/Project`;
|
|
4737
4671
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4738
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4672
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4739
4673
|
let baseOptions;
|
|
4740
4674
|
if (configuration) {
|
|
4741
4675
|
baseOptions = configuration.baseOptions;
|
|
@@ -4744,12 +4678,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4744
4678
|
const localVarHeaderParameter = {};
|
|
4745
4679
|
const localVarQueryParameter = {};
|
|
4746
4680
|
// authentication JWT token required
|
|
4747
|
-
yield setApiKeyToObject$
|
|
4748
|
-
setSearchParams$
|
|
4681
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4682
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4749
4683
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4750
4684
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4751
4685
|
return {
|
|
4752
|
-
url: toPathString$
|
|
4686
|
+
url: toPathString$6(localVarUrlObj),
|
|
4753
4687
|
options: localVarRequestOptions,
|
|
4754
4688
|
};
|
|
4755
4689
|
}),
|
|
@@ -4766,7 +4700,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4766
4700
|
const localVarPath = `/Project/{id}`
|
|
4767
4701
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
4768
4702
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4769
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4703
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4770
4704
|
let baseOptions;
|
|
4771
4705
|
if (configuration) {
|
|
4772
4706
|
baseOptions = configuration.baseOptions;
|
|
@@ -4775,12 +4709,12 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4775
4709
|
const localVarHeaderParameter = {};
|
|
4776
4710
|
const localVarQueryParameter = {};
|
|
4777
4711
|
// authentication JWT token required
|
|
4778
|
-
yield setApiKeyToObject$
|
|
4779
|
-
setSearchParams$
|
|
4712
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4713
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4780
4714
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4781
4715
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4782
4716
|
return {
|
|
4783
|
-
url: toPathString$
|
|
4717
|
+
url: toPathString$6(localVarUrlObj),
|
|
4784
4718
|
options: localVarRequestOptions,
|
|
4785
4719
|
};
|
|
4786
4720
|
}),
|
|
@@ -4804,7 +4738,7 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4804
4738
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
4805
4739
|
.replace(`{${"resourceTypeId"}}`, encodeURIComponent(String(resourceTypeId)));
|
|
4806
4740
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4807
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
4741
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
4808
4742
|
let baseOptions;
|
|
4809
4743
|
if (configuration) {
|
|
4810
4744
|
baseOptions = configuration.baseOptions;
|
|
@@ -4813,14 +4747,14 @@ const ProjectApiAxiosParamCreator = function (configuration) {
|
|
|
4813
4747
|
const localVarHeaderParameter = {};
|
|
4814
4748
|
const localVarQueryParameter = {};
|
|
4815
4749
|
// authentication JWT token required
|
|
4816
|
-
yield setApiKeyToObject$
|
|
4750
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
4817
4751
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4818
|
-
setSearchParams$
|
|
4752
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
4819
4753
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4820
4754
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4821
4755
|
localVarRequestOptions.data = serializeDataIfNeeded$4(updateProjectQuotaObject, localVarRequestOptions, configuration);
|
|
4822
4756
|
return {
|
|
4823
|
-
url: toPathString$
|
|
4757
|
+
url: toPathString$6(localVarUrlObj),
|
|
4824
4758
|
options: localVarRequestOptions,
|
|
4825
4759
|
};
|
|
4826
4760
|
}),
|
|
@@ -4843,7 +4777,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4843
4777
|
projectDelete(id, options) {
|
|
4844
4778
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4845
4779
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectDelete(id, options);
|
|
4846
|
-
return createRequestFunction$
|
|
4780
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4847
4781
|
});
|
|
4848
4782
|
},
|
|
4849
4783
|
/**
|
|
@@ -4856,7 +4790,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4856
4790
|
projectDeleteInvitation(invitationId, options) {
|
|
4857
4791
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4858
4792
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectDeleteInvitation(invitationId, options);
|
|
4859
|
-
return createRequestFunction$
|
|
4793
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4860
4794
|
});
|
|
4861
4795
|
},
|
|
4862
4796
|
/**
|
|
@@ -4869,7 +4803,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4869
4803
|
projectGet(id, options) {
|
|
4870
4804
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4871
4805
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectGet(id, options);
|
|
4872
|
-
return createRequestFunction$
|
|
4806
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4873
4807
|
});
|
|
4874
4808
|
},
|
|
4875
4809
|
/**
|
|
@@ -4883,7 +4817,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4883
4817
|
projectGetQuotaMax(projectId, resourceTypeId, options) {
|
|
4884
4818
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4885
4819
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectGetQuotaMax(projectId, resourceTypeId, options);
|
|
4886
|
-
return createRequestFunction$
|
|
4820
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4887
4821
|
});
|
|
4888
4822
|
},
|
|
4889
4823
|
/**
|
|
@@ -4896,7 +4830,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4896
4830
|
projectGetResources(id, options) {
|
|
4897
4831
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4898
4832
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectGetResources(id, options);
|
|
4899
|
-
return createRequestFunction$
|
|
4833
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4900
4834
|
});
|
|
4901
4835
|
},
|
|
4902
4836
|
/**
|
|
@@ -4908,7 +4842,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4908
4842
|
projectGetTopLevelProjects(options) {
|
|
4909
4843
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4910
4844
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectGetTopLevelProjects(options);
|
|
4911
|
-
return createRequestFunction$
|
|
4845
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4912
4846
|
});
|
|
4913
4847
|
},
|
|
4914
4848
|
/**
|
|
@@ -4920,7 +4854,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4920
4854
|
projectIndex(options) {
|
|
4921
4855
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4922
4856
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectIndex(options);
|
|
4923
|
-
return createRequestFunction$
|
|
4857
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4924
4858
|
});
|
|
4925
4859
|
},
|
|
4926
4860
|
/**
|
|
@@ -4933,7 +4867,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4933
4867
|
projectListInvitations(projectId, options) {
|
|
4934
4868
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4935
4869
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectListInvitations(projectId, options);
|
|
4936
|
-
return createRequestFunction$
|
|
4870
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4937
4871
|
});
|
|
4938
4872
|
},
|
|
4939
4873
|
/**
|
|
@@ -4947,7 +4881,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4947
4881
|
projectQuota(projectId, resourceTypeId, options) {
|
|
4948
4882
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4949
4883
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectQuota(projectId, resourceTypeId, options);
|
|
4950
|
-
return createRequestFunction$
|
|
4884
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4951
4885
|
});
|
|
4952
4886
|
},
|
|
4953
4887
|
/**
|
|
@@ -4960,7 +4894,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4960
4894
|
projectQuotas(projectId, options) {
|
|
4961
4895
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4962
4896
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectQuotas(projectId, options);
|
|
4963
|
-
return createRequestFunction$
|
|
4897
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4964
4898
|
});
|
|
4965
4899
|
},
|
|
4966
4900
|
/**
|
|
@@ -4973,7 +4907,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4973
4907
|
projectResolveInvitation(token, options) {
|
|
4974
4908
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4975
4909
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectResolveInvitation(token, options);
|
|
4976
|
-
return createRequestFunction$
|
|
4910
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4977
4911
|
});
|
|
4978
4912
|
},
|
|
4979
4913
|
/**
|
|
@@ -4986,7 +4920,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4986
4920
|
projectSendInvitation(sendInvitationObject, options) {
|
|
4987
4921
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4988
4922
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectSendInvitation(sendInvitationObject, options);
|
|
4989
|
-
return createRequestFunction$
|
|
4923
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
4990
4924
|
});
|
|
4991
4925
|
},
|
|
4992
4926
|
/**
|
|
@@ -4998,7 +4932,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
4998
4932
|
projectStore(options) {
|
|
4999
4933
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5000
4934
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectStore(options);
|
|
5001
|
-
return createRequestFunction$
|
|
4935
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5002
4936
|
});
|
|
5003
4937
|
},
|
|
5004
4938
|
/**
|
|
@@ -5011,7 +4945,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
5011
4945
|
projectUpdate(id, options) {
|
|
5012
4946
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5013
4947
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectUpdate(id, options);
|
|
5014
|
-
return createRequestFunction$
|
|
4948
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5015
4949
|
});
|
|
5016
4950
|
},
|
|
5017
4951
|
/**
|
|
@@ -5026,7 +4960,7 @@ const ProjectApiFp = function (configuration) {
|
|
|
5026
4960
|
projectUpdateQuota(projectId, resourceTypeId, updateProjectQuotaObject, options) {
|
|
5027
4961
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5028
4962
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectUpdateQuota(projectId, resourceTypeId, updateProjectQuotaObject, options);
|
|
5029
|
-
return createRequestFunction$
|
|
4963
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5030
4964
|
});
|
|
5031
4965
|
},
|
|
5032
4966
|
};
|
|
@@ -5218,7 +5152,7 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5218
5152
|
.replace(`{${"userId"}}`, encodeURIComponent(String(userId)))
|
|
5219
5153
|
.replace(`{${"roleId"}}`, encodeURIComponent(String(roleId)));
|
|
5220
5154
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5221
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5155
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5222
5156
|
let baseOptions;
|
|
5223
5157
|
if (configuration) {
|
|
5224
5158
|
baseOptions = configuration.baseOptions;
|
|
@@ -5227,12 +5161,12 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5227
5161
|
const localVarHeaderParameter = {};
|
|
5228
5162
|
const localVarQueryParameter = {};
|
|
5229
5163
|
// authentication JWT token required
|
|
5230
|
-
yield setApiKeyToObject$
|
|
5231
|
-
setSearchParams$
|
|
5164
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5165
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5232
5166
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5233
5167
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5234
5168
|
return {
|
|
5235
|
-
url: toPathString$
|
|
5169
|
+
url: toPathString$6(localVarUrlObj),
|
|
5236
5170
|
options: localVarRequestOptions,
|
|
5237
5171
|
};
|
|
5238
5172
|
}),
|
|
@@ -5249,7 +5183,7 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5249
5183
|
const localVarPath = `/ProjectRole/project/{projectId}/user`
|
|
5250
5184
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
5251
5185
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5252
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5186
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5253
5187
|
let baseOptions;
|
|
5254
5188
|
if (configuration) {
|
|
5255
5189
|
baseOptions = configuration.baseOptions;
|
|
@@ -5258,12 +5192,12 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5258
5192
|
const localVarHeaderParameter = {};
|
|
5259
5193
|
const localVarQueryParameter = {};
|
|
5260
5194
|
// authentication JWT token required
|
|
5261
|
-
yield setApiKeyToObject$
|
|
5262
|
-
setSearchParams$
|
|
5195
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5196
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5263
5197
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5264
5198
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5265
5199
|
return {
|
|
5266
|
-
url: toPathString$
|
|
5200
|
+
url: toPathString$6(localVarUrlObj),
|
|
5267
5201
|
options: localVarRequestOptions,
|
|
5268
5202
|
};
|
|
5269
5203
|
}),
|
|
@@ -5280,7 +5214,7 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5280
5214
|
const localVarPath = `/ProjectRole/project/{projectId}`
|
|
5281
5215
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
5282
5216
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5283
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5217
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5284
5218
|
let baseOptions;
|
|
5285
5219
|
if (configuration) {
|
|
5286
5220
|
baseOptions = configuration.baseOptions;
|
|
@@ -5289,12 +5223,12 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5289
5223
|
const localVarHeaderParameter = {};
|
|
5290
5224
|
const localVarQueryParameter = {};
|
|
5291
5225
|
// authentication JWT token required
|
|
5292
|
-
yield setApiKeyToObject$
|
|
5293
|
-
setSearchParams$
|
|
5226
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5227
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5294
5228
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5295
5229
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5296
5230
|
return {
|
|
5297
|
-
url: toPathString$
|
|
5231
|
+
url: toPathString$6(localVarUrlObj),
|
|
5298
5232
|
options: localVarRequestOptions,
|
|
5299
5233
|
};
|
|
5300
5234
|
}),
|
|
@@ -5311,7 +5245,7 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5311
5245
|
const localVarPath = `/ProjectRole/{projectId}`
|
|
5312
5246
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
5313
5247
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5314
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5248
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5315
5249
|
let baseOptions;
|
|
5316
5250
|
if (configuration) {
|
|
5317
5251
|
baseOptions = configuration.baseOptions;
|
|
@@ -5320,12 +5254,12 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5320
5254
|
const localVarHeaderParameter = {};
|
|
5321
5255
|
const localVarQueryParameter = {};
|
|
5322
5256
|
// authentication JWT token required
|
|
5323
|
-
yield setApiKeyToObject$
|
|
5324
|
-
setSearchParams$
|
|
5257
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5258
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5325
5259
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5326
5260
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5327
5261
|
return {
|
|
5328
|
-
url: toPathString$
|
|
5262
|
+
url: toPathString$6(localVarUrlObj),
|
|
5329
5263
|
options: localVarRequestOptions,
|
|
5330
5264
|
};
|
|
5331
5265
|
}),
|
|
@@ -5338,7 +5272,7 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5338
5272
|
projectRoleSet: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
5339
5273
|
const localVarPath = `/ProjectRole`;
|
|
5340
5274
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5341
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5275
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5342
5276
|
let baseOptions;
|
|
5343
5277
|
if (configuration) {
|
|
5344
5278
|
baseOptions = configuration.baseOptions;
|
|
@@ -5347,12 +5281,12 @@ const ProjectRoleApiAxiosParamCreator = function (configuration) {
|
|
|
5347
5281
|
const localVarHeaderParameter = {};
|
|
5348
5282
|
const localVarQueryParameter = {};
|
|
5349
5283
|
// authentication JWT token required
|
|
5350
|
-
yield setApiKeyToObject$
|
|
5351
|
-
setSearchParams$
|
|
5284
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5285
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5352
5286
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5353
5287
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5354
5288
|
return {
|
|
5355
|
-
url: toPathString$
|
|
5289
|
+
url: toPathString$6(localVarUrlObj),
|
|
5356
5290
|
options: localVarRequestOptions,
|
|
5357
5291
|
};
|
|
5358
5292
|
}),
|
|
@@ -5377,7 +5311,7 @@ const ProjectRoleApiFp = function (configuration) {
|
|
|
5377
5311
|
projectRoleDelete(projectId, userId, roleId, options) {
|
|
5378
5312
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5379
5313
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleDelete(projectId, userId, roleId, options);
|
|
5380
|
-
return createRequestFunction$
|
|
5314
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5381
5315
|
});
|
|
5382
5316
|
},
|
|
5383
5317
|
/**
|
|
@@ -5390,7 +5324,7 @@ const ProjectRoleApiFp = function (configuration) {
|
|
|
5390
5324
|
projectRoleDelete2(projectId, options) {
|
|
5391
5325
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5392
5326
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleDelete2(projectId, options);
|
|
5393
|
-
return createRequestFunction$
|
|
5327
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5394
5328
|
});
|
|
5395
5329
|
},
|
|
5396
5330
|
/**
|
|
@@ -5403,7 +5337,7 @@ const ProjectRoleApiFp = function (configuration) {
|
|
|
5403
5337
|
projectRoleGet(projectId, options) {
|
|
5404
5338
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5405
5339
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleGet(projectId, options);
|
|
5406
|
-
return createRequestFunction$
|
|
5340
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5407
5341
|
});
|
|
5408
5342
|
},
|
|
5409
5343
|
/**
|
|
@@ -5416,7 +5350,7 @@ const ProjectRoleApiFp = function (configuration) {
|
|
|
5416
5350
|
projectRoleIndex(projectId, options) {
|
|
5417
5351
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5418
5352
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleIndex(projectId, options);
|
|
5419
|
-
return createRequestFunction$
|
|
5353
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5420
5354
|
});
|
|
5421
5355
|
},
|
|
5422
5356
|
/**
|
|
@@ -5428,7 +5362,7 @@ const ProjectRoleApiFp = function (configuration) {
|
|
|
5428
5362
|
projectRoleSet(options) {
|
|
5429
5363
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5430
5364
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.projectRoleSet(options);
|
|
5431
|
-
return createRequestFunction$
|
|
5365
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5432
5366
|
});
|
|
5433
5367
|
},
|
|
5434
5368
|
};
|
|
@@ -5508,7 +5442,7 @@ const RoleApiAxiosParamCreator = function (configuration) {
|
|
|
5508
5442
|
roleIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
5509
5443
|
const localVarPath = `/Role`;
|
|
5510
5444
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5511
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5445
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5512
5446
|
let baseOptions;
|
|
5513
5447
|
if (configuration) {
|
|
5514
5448
|
baseOptions = configuration.baseOptions;
|
|
@@ -5517,12 +5451,12 @@ const RoleApiAxiosParamCreator = function (configuration) {
|
|
|
5517
5451
|
const localVarHeaderParameter = {};
|
|
5518
5452
|
const localVarQueryParameter = {};
|
|
5519
5453
|
// authentication JWT token required
|
|
5520
|
-
yield setApiKeyToObject$
|
|
5521
|
-
setSearchParams$
|
|
5454
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5455
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5522
5456
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5523
5457
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5524
5458
|
return {
|
|
5525
|
-
url: toPathString$
|
|
5459
|
+
url: toPathString$6(localVarUrlObj),
|
|
5526
5460
|
options: localVarRequestOptions,
|
|
5527
5461
|
};
|
|
5528
5462
|
}),
|
|
@@ -5544,7 +5478,7 @@ const RoleApiFp = function (configuration) {
|
|
|
5544
5478
|
roleIndex(options) {
|
|
5545
5479
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5546
5480
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.roleIndex(options);
|
|
5547
|
-
return createRequestFunction$
|
|
5481
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5548
5482
|
});
|
|
5549
5483
|
},
|
|
5550
5484
|
};
|
|
@@ -5586,7 +5520,7 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5586
5520
|
const localVarPath = `/Search/all/{encodedSearchWord}`
|
|
5587
5521
|
.replace(`{${"encodedSearchWord"}}`, encodeURIComponent(String(encodedSearchWord)));
|
|
5588
5522
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5589
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5523
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5590
5524
|
let baseOptions;
|
|
5591
5525
|
if (configuration) {
|
|
5592
5526
|
baseOptions = configuration.baseOptions;
|
|
@@ -5595,12 +5529,12 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5595
5529
|
const localVarHeaderParameter = {};
|
|
5596
5530
|
const localVarQueryParameter = {};
|
|
5597
5531
|
// authentication JWT token required
|
|
5598
|
-
yield setApiKeyToObject$
|
|
5599
|
-
setSearchParams$
|
|
5532
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5533
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5600
5534
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5601
5535
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5602
5536
|
return {
|
|
5603
|
-
url: toPathString$
|
|
5537
|
+
url: toPathString$6(localVarUrlObj),
|
|
5604
5538
|
options: localVarRequestOptions,
|
|
5605
5539
|
};
|
|
5606
5540
|
}),
|
|
@@ -5613,7 +5547,7 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5613
5547
|
searchSearchNoFilter: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
5614
5548
|
const localVarPath = `/Search/allNoFilter`;
|
|
5615
5549
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5616
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5550
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5617
5551
|
let baseOptions;
|
|
5618
5552
|
if (configuration) {
|
|
5619
5553
|
baseOptions = configuration.baseOptions;
|
|
@@ -5622,12 +5556,12 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5622
5556
|
const localVarHeaderParameter = {};
|
|
5623
5557
|
const localVarQueryParameter = {};
|
|
5624
5558
|
// authentication JWT token required
|
|
5625
|
-
yield setApiKeyToObject$
|
|
5626
|
-
setSearchParams$
|
|
5559
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5560
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5627
5561
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5628
5562
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5629
5563
|
return {
|
|
5630
|
-
url: toPathString$
|
|
5564
|
+
url: toPathString$6(localVarUrlObj),
|
|
5631
5565
|
options: localVarRequestOptions,
|
|
5632
5566
|
};
|
|
5633
5567
|
}),
|
|
@@ -5648,7 +5582,7 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5648
5582
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
5649
5583
|
.replace(`{${"encodedSearchWord"}}`, encodeURIComponent(String(encodedSearchWord)));
|
|
5650
5584
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5651
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5585
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5652
5586
|
let baseOptions;
|
|
5653
5587
|
if (configuration) {
|
|
5654
5588
|
baseOptions = configuration.baseOptions;
|
|
@@ -5657,12 +5591,12 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5657
5591
|
const localVarHeaderParameter = {};
|
|
5658
5592
|
const localVarQueryParameter = {};
|
|
5659
5593
|
// authentication JWT token required
|
|
5660
|
-
yield setApiKeyToObject$
|
|
5661
|
-
setSearchParams$
|
|
5594
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5595
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5662
5596
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5663
5597
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5664
5598
|
return {
|
|
5665
|
-
url: toPathString$
|
|
5599
|
+
url: toPathString$6(localVarUrlObj),
|
|
5666
5600
|
options: localVarRequestOptions,
|
|
5667
5601
|
};
|
|
5668
5602
|
}),
|
|
@@ -5679,7 +5613,7 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5679
5613
|
const localVarPath = `/Search/projectNoFilter/{projectId}`
|
|
5680
5614
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
5681
5615
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5682
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5616
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5683
5617
|
let baseOptions;
|
|
5684
5618
|
if (configuration) {
|
|
5685
5619
|
baseOptions = configuration.baseOptions;
|
|
@@ -5688,12 +5622,12 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
5688
5622
|
const localVarHeaderParameter = {};
|
|
5689
5623
|
const localVarQueryParameter = {};
|
|
5690
5624
|
// authentication JWT token required
|
|
5691
|
-
yield setApiKeyToObject$
|
|
5692
|
-
setSearchParams$
|
|
5625
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5626
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5693
5627
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5694
5628
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5695
5629
|
return {
|
|
5696
|
-
url: toPathString$
|
|
5630
|
+
url: toPathString$6(localVarUrlObj),
|
|
5697
5631
|
options: localVarRequestOptions,
|
|
5698
5632
|
};
|
|
5699
5633
|
}),
|
|
@@ -5716,7 +5650,7 @@ const SearchApiFp = function (configuration) {
|
|
|
5716
5650
|
searchSearch(encodedSearchWord, options) {
|
|
5717
5651
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5718
5652
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.searchSearch(encodedSearchWord, options);
|
|
5719
|
-
return createRequestFunction$
|
|
5653
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5720
5654
|
});
|
|
5721
5655
|
},
|
|
5722
5656
|
/**
|
|
@@ -5728,7 +5662,7 @@ const SearchApiFp = function (configuration) {
|
|
|
5728
5662
|
searchSearchNoFilter(options) {
|
|
5729
5663
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5730
5664
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.searchSearchNoFilter(options);
|
|
5731
|
-
return createRequestFunction$
|
|
5665
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5732
5666
|
});
|
|
5733
5667
|
},
|
|
5734
5668
|
/**
|
|
@@ -5742,7 +5676,7 @@ const SearchApiFp = function (configuration) {
|
|
|
5742
5676
|
searchSearchProject(projectId, encodedSearchWord, options) {
|
|
5743
5677
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5744
5678
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.searchSearchProject(projectId, encodedSearchWord, options);
|
|
5745
|
-
return createRequestFunction$
|
|
5679
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5746
5680
|
});
|
|
5747
5681
|
},
|
|
5748
5682
|
/**
|
|
@@ -5755,7 +5689,7 @@ const SearchApiFp = function (configuration) {
|
|
|
5755
5689
|
searchSearchProjectNoFilter(projectId, options) {
|
|
5756
5690
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5757
5691
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.searchSearchProjectNoFilter(projectId, options);
|
|
5758
|
-
return createRequestFunction$
|
|
5692
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5759
5693
|
});
|
|
5760
5694
|
},
|
|
5761
5695
|
};
|
|
@@ -5828,7 +5762,7 @@ const SubProjectApiAxiosParamCreator = function (configuration) {
|
|
|
5828
5762
|
const localVarPath = `/SubProject/{parentId}`
|
|
5829
5763
|
.replace(`{${"parentId"}}`, encodeURIComponent(String(parentId)));
|
|
5830
5764
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5831
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5765
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5832
5766
|
let baseOptions;
|
|
5833
5767
|
if (configuration) {
|
|
5834
5768
|
baseOptions = configuration.baseOptions;
|
|
@@ -5837,12 +5771,12 @@ const SubProjectApiAxiosParamCreator = function (configuration) {
|
|
|
5837
5771
|
const localVarHeaderParameter = {};
|
|
5838
5772
|
const localVarQueryParameter = {};
|
|
5839
5773
|
// authentication JWT token required
|
|
5840
|
-
yield setApiKeyToObject$
|
|
5841
|
-
setSearchParams$
|
|
5774
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5775
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5842
5776
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5843
5777
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5844
5778
|
return {
|
|
5845
|
-
url: toPathString$
|
|
5779
|
+
url: toPathString$6(localVarUrlObj),
|
|
5846
5780
|
options: localVarRequestOptions,
|
|
5847
5781
|
};
|
|
5848
5782
|
}),
|
|
@@ -5859,7 +5793,7 @@ const SubProjectApiAxiosParamCreator = function (configuration) {
|
|
|
5859
5793
|
const localVarPath = `/SubProject/{childId}/accessibleParent`
|
|
5860
5794
|
.replace(`{${"childId"}}`, encodeURIComponent(String(childId)));
|
|
5861
5795
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5862
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5796
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5863
5797
|
let baseOptions;
|
|
5864
5798
|
if (configuration) {
|
|
5865
5799
|
baseOptions = configuration.baseOptions;
|
|
@@ -5868,12 +5802,12 @@ const SubProjectApiAxiosParamCreator = function (configuration) {
|
|
|
5868
5802
|
const localVarHeaderParameter = {};
|
|
5869
5803
|
const localVarQueryParameter = {};
|
|
5870
5804
|
// authentication JWT token required
|
|
5871
|
-
yield setApiKeyToObject$
|
|
5872
|
-
setSearchParams$
|
|
5805
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5806
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5873
5807
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5874
5808
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5875
5809
|
return {
|
|
5876
|
-
url: toPathString$
|
|
5810
|
+
url: toPathString$6(localVarUrlObj),
|
|
5877
5811
|
options: localVarRequestOptions,
|
|
5878
5812
|
};
|
|
5879
5813
|
}),
|
|
@@ -5896,7 +5830,7 @@ const SubProjectApiFp = function (configuration) {
|
|
|
5896
5830
|
subProjectGet(parentId, options) {
|
|
5897
5831
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5898
5832
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.subProjectGet(parentId, options);
|
|
5899
|
-
return createRequestFunction$
|
|
5833
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5900
5834
|
});
|
|
5901
5835
|
},
|
|
5902
5836
|
/**
|
|
@@ -5909,7 +5843,7 @@ const SubProjectApiFp = function (configuration) {
|
|
|
5909
5843
|
subProjectGetAccessibleParent(childId, options) {
|
|
5910
5844
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5911
5845
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.subProjectGetAccessibleParent(childId, options);
|
|
5912
|
-
return createRequestFunction$
|
|
5846
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5913
5847
|
});
|
|
5914
5848
|
},
|
|
5915
5849
|
};
|
|
@@ -5958,7 +5892,7 @@ const VisibilityApiAxiosParamCreator = function (configuration) {
|
|
|
5958
5892
|
visibilityIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
5959
5893
|
const localVarPath = `/Visibility`;
|
|
5960
5894
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5961
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
5895
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
5962
5896
|
let baseOptions;
|
|
5963
5897
|
if (configuration) {
|
|
5964
5898
|
baseOptions = configuration.baseOptions;
|
|
@@ -5967,12 +5901,12 @@ const VisibilityApiAxiosParamCreator = function (configuration) {
|
|
|
5967
5901
|
const localVarHeaderParameter = {};
|
|
5968
5902
|
const localVarQueryParameter = {};
|
|
5969
5903
|
// authentication JWT token required
|
|
5970
|
-
yield setApiKeyToObject$
|
|
5971
|
-
setSearchParams$
|
|
5904
|
+
yield setApiKeyToObject$6(localVarHeaderParameter, "Authorization", configuration);
|
|
5905
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter, options.query);
|
|
5972
5906
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5973
5907
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5974
5908
|
return {
|
|
5975
|
-
url: toPathString$
|
|
5909
|
+
url: toPathString$6(localVarUrlObj),
|
|
5976
5910
|
options: localVarRequestOptions,
|
|
5977
5911
|
};
|
|
5978
5912
|
}),
|
|
@@ -5994,7 +5928,7 @@ const VisibilityApiFp = function (configuration) {
|
|
|
5994
5928
|
visibilityIndex(options) {
|
|
5995
5929
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5996
5930
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.visibilityIndex(options);
|
|
5997
|
-
return createRequestFunction$
|
|
5931
|
+
return createRequestFunction$6(localVarAxiosArgs, axios, BASE_PATH$6, configuration);
|
|
5998
5932
|
});
|
|
5999
5933
|
},
|
|
6000
5934
|
};
|
|
@@ -6019,7 +5953,7 @@ const VisibilityApiFactory = function (configuration, basePath, axios) {
|
|
|
6019
5953
|
};
|
|
6020
5954
|
|
|
6021
5955
|
/* tslint:disable */
|
|
6022
|
-
const BASE_PATH$
|
|
5956
|
+
const BASE_PATH$5 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Quota".replace(/\/+$/, "");
|
|
6023
5957
|
/**
|
|
6024
5958
|
*
|
|
6025
5959
|
* @export
|
|
@@ -6039,7 +5973,7 @@ class RequiredError$4 extends Error {
|
|
|
6039
5973
|
*
|
|
6040
5974
|
* @export
|
|
6041
5975
|
*/
|
|
6042
|
-
const DUMMY_BASE_URL$
|
|
5976
|
+
const DUMMY_BASE_URL$5 = 'https://example.com';
|
|
6043
5977
|
/**
|
|
6044
5978
|
*
|
|
6045
5979
|
* @throws {RequiredError}
|
|
@@ -6054,7 +5988,7 @@ const assertParamExists$4 = function (functionName, paramName, paramValue) {
|
|
|
6054
5988
|
*
|
|
6055
5989
|
* @export
|
|
6056
5990
|
*/
|
|
6057
|
-
const setApiKeyToObject$
|
|
5991
|
+
const setApiKeyToObject$5 = function (object, keyParamName, configuration) {
|
|
6058
5992
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6059
5993
|
if (configuration && configuration.apiKey) {
|
|
6060
5994
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -6068,7 +6002,7 @@ const setApiKeyToObject$4 = function (object, keyParamName, configuration) {
|
|
|
6068
6002
|
*
|
|
6069
6003
|
* @export
|
|
6070
6004
|
*/
|
|
6071
|
-
const setSearchParams$
|
|
6005
|
+
const setSearchParams$5 = function (url, ...objects) {
|
|
6072
6006
|
const searchParams = new URLSearchParams(url.search);
|
|
6073
6007
|
for (const object of objects) {
|
|
6074
6008
|
for (const key in object) {
|
|
@@ -6102,14 +6036,14 @@ const serializeDataIfNeeded$3 = function (value, requestOptions, configuration)
|
|
|
6102
6036
|
*
|
|
6103
6037
|
* @export
|
|
6104
6038
|
*/
|
|
6105
|
-
const toPathString$
|
|
6039
|
+
const toPathString$5 = function (url) {
|
|
6106
6040
|
return url.pathname + url.search + url.hash;
|
|
6107
6041
|
};
|
|
6108
6042
|
/**
|
|
6109
6043
|
*
|
|
6110
6044
|
* @export
|
|
6111
6045
|
*/
|
|
6112
|
-
const createRequestFunction$
|
|
6046
|
+
const createRequestFunction$5 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
6113
6047
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
6114
6048
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
6115
6049
|
return axios.request(axiosRequestArgs);
|
|
@@ -6136,7 +6070,7 @@ const QuotaApiAxiosParamCreator = function (configuration) {
|
|
|
6136
6070
|
const localVarPath = `/Quota/{resourceId}`
|
|
6137
6071
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
6138
6072
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6139
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6073
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$5);
|
|
6140
6074
|
let baseOptions;
|
|
6141
6075
|
if (configuration) {
|
|
6142
6076
|
baseOptions = configuration.baseOptions;
|
|
@@ -6145,12 +6079,12 @@ const QuotaApiAxiosParamCreator = function (configuration) {
|
|
|
6145
6079
|
const localVarHeaderParameter = {};
|
|
6146
6080
|
const localVarQueryParameter = {};
|
|
6147
6081
|
// authentication JWT token required
|
|
6148
|
-
yield setApiKeyToObject$
|
|
6149
|
-
setSearchParams$
|
|
6082
|
+
yield setApiKeyToObject$5(localVarHeaderParameter, "Authorization", configuration);
|
|
6083
|
+
setSearchParams$5(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6150
6084
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6151
6085
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6152
6086
|
return {
|
|
6153
|
-
url: toPathString$
|
|
6087
|
+
url: toPathString$5(localVarUrlObj),
|
|
6154
6088
|
options: localVarRequestOptions,
|
|
6155
6089
|
};
|
|
6156
6090
|
}),
|
|
@@ -6171,7 +6105,7 @@ const QuotaApiAxiosParamCreator = function (configuration) {
|
|
|
6171
6105
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
6172
6106
|
.replace(`{${"resourceTypeId"}}`, encodeURIComponent(String(resourceTypeId)));
|
|
6173
6107
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6174
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6108
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$5);
|
|
6175
6109
|
let baseOptions;
|
|
6176
6110
|
if (configuration) {
|
|
6177
6111
|
baseOptions = configuration.baseOptions;
|
|
@@ -6180,12 +6114,12 @@ const QuotaApiAxiosParamCreator = function (configuration) {
|
|
|
6180
6114
|
const localVarHeaderParameter = {};
|
|
6181
6115
|
const localVarQueryParameter = {};
|
|
6182
6116
|
// authentication JWT token required
|
|
6183
|
-
yield setApiKeyToObject$
|
|
6184
|
-
setSearchParams$
|
|
6117
|
+
yield setApiKeyToObject$5(localVarHeaderParameter, "Authorization", configuration);
|
|
6118
|
+
setSearchParams$5(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6185
6119
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6186
6120
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6187
6121
|
return {
|
|
6188
|
-
url: toPathString$
|
|
6122
|
+
url: toPathString$5(localVarUrlObj),
|
|
6189
6123
|
options: localVarRequestOptions,
|
|
6190
6124
|
};
|
|
6191
6125
|
}),
|
|
@@ -6205,7 +6139,7 @@ const QuotaApiAxiosParamCreator = function (configuration) {
|
|
|
6205
6139
|
const localVarPath = `/Quota/{resourceId}`
|
|
6206
6140
|
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
|
|
6207
6141
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6208
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6142
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$5);
|
|
6209
6143
|
let baseOptions;
|
|
6210
6144
|
if (configuration) {
|
|
6211
6145
|
baseOptions = configuration.baseOptions;
|
|
@@ -6214,14 +6148,14 @@ const QuotaApiAxiosParamCreator = function (configuration) {
|
|
|
6214
6148
|
const localVarHeaderParameter = {};
|
|
6215
6149
|
const localVarQueryParameter = {};
|
|
6216
6150
|
// authentication JWT token required
|
|
6217
|
-
yield setApiKeyToObject$
|
|
6151
|
+
yield setApiKeyToObject$5(localVarHeaderParameter, "Authorization", configuration);
|
|
6218
6152
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6219
|
-
setSearchParams$
|
|
6153
|
+
setSearchParams$5(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6220
6154
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6221
6155
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6222
6156
|
localVarRequestOptions.data = serializeDataIfNeeded$3(updateResourceObject, localVarRequestOptions, configuration);
|
|
6223
6157
|
return {
|
|
6224
|
-
url: toPathString$
|
|
6158
|
+
url: toPathString$5(localVarUrlObj),
|
|
6225
6159
|
options: localVarRequestOptions,
|
|
6226
6160
|
};
|
|
6227
6161
|
}),
|
|
@@ -6244,7 +6178,7 @@ const QuotaApiFp = function (configuration) {
|
|
|
6244
6178
|
quotaGetResourceQuota(resourceId, options) {
|
|
6245
6179
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6246
6180
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.quotaGetResourceQuota(resourceId, options);
|
|
6247
|
-
return createRequestFunction$
|
|
6181
|
+
return createRequestFunction$5(localVarAxiosArgs, axios, BASE_PATH$5, configuration);
|
|
6248
6182
|
});
|
|
6249
6183
|
},
|
|
6250
6184
|
/**
|
|
@@ -6258,7 +6192,7 @@ const QuotaApiFp = function (configuration) {
|
|
|
6258
6192
|
quotaGetResourceQuotas(projectId, resourceTypeId, options) {
|
|
6259
6193
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6260
6194
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.quotaGetResourceQuotas(projectId, resourceTypeId, options);
|
|
6261
|
-
return createRequestFunction$
|
|
6195
|
+
return createRequestFunction$5(localVarAxiosArgs, axios, BASE_PATH$5, configuration);
|
|
6262
6196
|
});
|
|
6263
6197
|
},
|
|
6264
6198
|
/**
|
|
@@ -6272,7 +6206,7 @@ const QuotaApiFp = function (configuration) {
|
|
|
6272
6206
|
quotaUpdateResourceQuota(resourceId, updateResourceObject, options) {
|
|
6273
6207
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6274
6208
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.quotaUpdateResourceQuota(resourceId, updateResourceObject, options);
|
|
6275
|
-
return createRequestFunction$
|
|
6209
|
+
return createRequestFunction$5(localVarAxiosArgs, axios, BASE_PATH$5, configuration);
|
|
6276
6210
|
});
|
|
6277
6211
|
},
|
|
6278
6212
|
};
|
|
@@ -6320,7 +6254,7 @@ const QuotaApiFactory = function (configuration, basePath, axios) {
|
|
|
6320
6254
|
};
|
|
6321
6255
|
|
|
6322
6256
|
/* tslint:disable */
|
|
6323
|
-
const BASE_PATH$
|
|
6257
|
+
const BASE_PATH$4 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Resources".replace(/\/+$/, "");
|
|
6324
6258
|
/**
|
|
6325
6259
|
*
|
|
6326
6260
|
* @export
|
|
@@ -6340,7 +6274,7 @@ class RequiredError$3 extends Error {
|
|
|
6340
6274
|
*
|
|
6341
6275
|
* @export
|
|
6342
6276
|
*/
|
|
6343
|
-
const DUMMY_BASE_URL$
|
|
6277
|
+
const DUMMY_BASE_URL$4 = 'https://example.com';
|
|
6344
6278
|
/**
|
|
6345
6279
|
*
|
|
6346
6280
|
* @throws {RequiredError}
|
|
@@ -6355,7 +6289,7 @@ const assertParamExists$3 = function (functionName, paramName, paramValue) {
|
|
|
6355
6289
|
*
|
|
6356
6290
|
* @export
|
|
6357
6291
|
*/
|
|
6358
|
-
const setApiKeyToObject$
|
|
6292
|
+
const setApiKeyToObject$4 = function (object, keyParamName, configuration) {
|
|
6359
6293
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6360
6294
|
if (configuration && configuration.apiKey) {
|
|
6361
6295
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
@@ -6369,7 +6303,7 @@ const setApiKeyToObject$3 = function (object, keyParamName, configuration) {
|
|
|
6369
6303
|
*
|
|
6370
6304
|
* @export
|
|
6371
6305
|
*/
|
|
6372
|
-
const setSearchParams$
|
|
6306
|
+
const setSearchParams$4 = function (url, ...objects) {
|
|
6373
6307
|
const searchParams = new URLSearchParams(url.search);
|
|
6374
6308
|
for (const object of objects) {
|
|
6375
6309
|
for (const key in object) {
|
|
@@ -6403,14 +6337,14 @@ const serializeDataIfNeeded$2 = function (value, requestOptions, configuration)
|
|
|
6403
6337
|
*
|
|
6404
6338
|
* @export
|
|
6405
6339
|
*/
|
|
6406
|
-
const toPathString$
|
|
6340
|
+
const toPathString$4 = function (url) {
|
|
6407
6341
|
return url.pathname + url.search + url.hash;
|
|
6408
6342
|
};
|
|
6409
6343
|
/**
|
|
6410
6344
|
*
|
|
6411
6345
|
* @export
|
|
6412
6346
|
*/
|
|
6413
|
-
const createRequestFunction$
|
|
6347
|
+
const createRequestFunction$4 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
6414
6348
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
6415
6349
|
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
6416
6350
|
return axios.request(axiosRequestArgs);
|
|
@@ -6437,7 +6371,7 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6437
6371
|
const localVarPath = `/Resource/{id}`
|
|
6438
6372
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6439
6373
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6440
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6374
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6441
6375
|
let baseOptions;
|
|
6442
6376
|
if (configuration) {
|
|
6443
6377
|
baseOptions = configuration.baseOptions;
|
|
@@ -6446,12 +6380,12 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6446
6380
|
const localVarHeaderParameter = {};
|
|
6447
6381
|
const localVarQueryParameter = {};
|
|
6448
6382
|
// authentication JWT token required
|
|
6449
|
-
yield setApiKeyToObject$
|
|
6450
|
-
setSearchParams$
|
|
6383
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6384
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6451
6385
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6452
6386
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6453
6387
|
return {
|
|
6454
|
-
url: toPathString$
|
|
6388
|
+
url: toPathString$4(localVarUrlObj),
|
|
6455
6389
|
options: localVarRequestOptions,
|
|
6456
6390
|
};
|
|
6457
6391
|
}),
|
|
@@ -6468,7 +6402,7 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6468
6402
|
const localVarPath = `/Resource/{id}`
|
|
6469
6403
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6470
6404
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6471
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6405
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6472
6406
|
let baseOptions;
|
|
6473
6407
|
if (configuration) {
|
|
6474
6408
|
baseOptions = configuration.baseOptions;
|
|
@@ -6477,12 +6411,12 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6477
6411
|
const localVarHeaderParameter = {};
|
|
6478
6412
|
const localVarQueryParameter = {};
|
|
6479
6413
|
// authentication JWT token required
|
|
6480
|
-
yield setApiKeyToObject$
|
|
6481
|
-
setSearchParams$
|
|
6414
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6415
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6482
6416
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6483
6417
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6484
6418
|
return {
|
|
6485
|
-
url: toPathString$
|
|
6419
|
+
url: toPathString$4(localVarUrlObj),
|
|
6486
6420
|
options: localVarRequestOptions,
|
|
6487
6421
|
};
|
|
6488
6422
|
}),
|
|
@@ -6495,7 +6429,7 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6495
6429
|
resourceIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
6496
6430
|
const localVarPath = `/Resource`;
|
|
6497
6431
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6498
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6432
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6499
6433
|
let baseOptions;
|
|
6500
6434
|
if (configuration) {
|
|
6501
6435
|
baseOptions = configuration.baseOptions;
|
|
@@ -6504,12 +6438,12 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6504
6438
|
const localVarHeaderParameter = {};
|
|
6505
6439
|
const localVarQueryParameter = {};
|
|
6506
6440
|
// authentication JWT token required
|
|
6507
|
-
yield setApiKeyToObject$
|
|
6508
|
-
setSearchParams$
|
|
6441
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6442
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6509
6443
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6510
6444
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6511
6445
|
return {
|
|
6512
|
-
url: toPathString$
|
|
6446
|
+
url: toPathString$4(localVarUrlObj),
|
|
6513
6447
|
options: localVarRequestOptions,
|
|
6514
6448
|
};
|
|
6515
6449
|
}),
|
|
@@ -6526,7 +6460,7 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6526
6460
|
const localVarPath = `/Resource/{id}/isCreator`
|
|
6527
6461
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6528
6462
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6529
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6463
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6530
6464
|
let baseOptions;
|
|
6531
6465
|
if (configuration) {
|
|
6532
6466
|
baseOptions = configuration.baseOptions;
|
|
@@ -6535,12 +6469,12 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6535
6469
|
const localVarHeaderParameter = {};
|
|
6536
6470
|
const localVarQueryParameter = {};
|
|
6537
6471
|
// authentication JWT token required
|
|
6538
|
-
yield setApiKeyToObject$
|
|
6539
|
-
setSearchParams$
|
|
6472
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6473
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6540
6474
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6541
6475
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6542
6476
|
return {
|
|
6543
|
-
url: toPathString$
|
|
6477
|
+
url: toPathString$4(localVarUrlObj),
|
|
6544
6478
|
options: localVarRequestOptions,
|
|
6545
6479
|
};
|
|
6546
6480
|
}),
|
|
@@ -6558,7 +6492,7 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6558
6492
|
const localVarPath = `/Resource/{id}/setReadonly`
|
|
6559
6493
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6560
6494
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6561
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6495
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6562
6496
|
let baseOptions;
|
|
6563
6497
|
if (configuration) {
|
|
6564
6498
|
baseOptions = configuration.baseOptions;
|
|
@@ -6567,15 +6501,15 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6567
6501
|
const localVarHeaderParameter = {};
|
|
6568
6502
|
const localVarQueryParameter = {};
|
|
6569
6503
|
// authentication JWT token required
|
|
6570
|
-
yield setApiKeyToObject$
|
|
6504
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6571
6505
|
if (status !== undefined) {
|
|
6572
6506
|
localVarQueryParameter['status'] = status;
|
|
6573
6507
|
}
|
|
6574
|
-
setSearchParams$
|
|
6508
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6575
6509
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6576
6510
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6577
6511
|
return {
|
|
6578
|
-
url: toPathString$
|
|
6512
|
+
url: toPathString$4(localVarUrlObj),
|
|
6579
6513
|
options: localVarRequestOptions,
|
|
6580
6514
|
};
|
|
6581
6515
|
}),
|
|
@@ -6595,7 +6529,7 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6595
6529
|
const localVarPath = `/Resource/project/{projectId}`
|
|
6596
6530
|
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
|
|
6597
6531
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6598
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6532
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6599
6533
|
let baseOptions;
|
|
6600
6534
|
if (configuration) {
|
|
6601
6535
|
baseOptions = configuration.baseOptions;
|
|
@@ -6604,14 +6538,14 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6604
6538
|
const localVarHeaderParameter = {};
|
|
6605
6539
|
const localVarQueryParameter = {};
|
|
6606
6540
|
// authentication JWT token required
|
|
6607
|
-
yield setApiKeyToObject$
|
|
6541
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6608
6542
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6609
|
-
setSearchParams$
|
|
6543
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6610
6544
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6611
6545
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6612
6546
|
localVarRequestOptions.data = serializeDataIfNeeded$2(resourceObject, localVarRequestOptions, configuration);
|
|
6613
6547
|
return {
|
|
6614
|
-
url: toPathString$
|
|
6548
|
+
url: toPathString$4(localVarUrlObj),
|
|
6615
6549
|
options: localVarRequestOptions,
|
|
6616
6550
|
};
|
|
6617
6551
|
}),
|
|
@@ -6631,7 +6565,7 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6631
6565
|
const localVarPath = `/Resource/{id}`
|
|
6632
6566
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6633
6567
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6634
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6568
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6635
6569
|
let baseOptions;
|
|
6636
6570
|
if (configuration) {
|
|
6637
6571
|
baseOptions = configuration.baseOptions;
|
|
@@ -6640,14 +6574,14 @@ const ResourceApiAxiosParamCreator = function (configuration) {
|
|
|
6640
6574
|
const localVarHeaderParameter = {};
|
|
6641
6575
|
const localVarQueryParameter = {};
|
|
6642
6576
|
// authentication JWT token required
|
|
6643
|
-
yield setApiKeyToObject$
|
|
6577
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6644
6578
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6645
|
-
setSearchParams$
|
|
6579
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6646
6580
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6647
6581
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6648
6582
|
localVarRequestOptions.data = serializeDataIfNeeded$2(resourceObject, localVarRequestOptions, configuration);
|
|
6649
6583
|
return {
|
|
6650
|
-
url: toPathString$
|
|
6584
|
+
url: toPathString$4(localVarUrlObj),
|
|
6651
6585
|
options: localVarRequestOptions,
|
|
6652
6586
|
};
|
|
6653
6587
|
}),
|
|
@@ -6670,7 +6604,7 @@ const ResourceApiFp = function (configuration) {
|
|
|
6670
6604
|
resourceDelete(id, options) {
|
|
6671
6605
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6672
6606
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceDelete(id, options);
|
|
6673
|
-
return createRequestFunction$
|
|
6607
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6674
6608
|
});
|
|
6675
6609
|
},
|
|
6676
6610
|
/**
|
|
@@ -6683,7 +6617,7 @@ const ResourceApiFp = function (configuration) {
|
|
|
6683
6617
|
resourceGet(id, options) {
|
|
6684
6618
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6685
6619
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceGet(id, options);
|
|
6686
|
-
return createRequestFunction$
|
|
6620
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6687
6621
|
});
|
|
6688
6622
|
},
|
|
6689
6623
|
/**
|
|
@@ -6695,7 +6629,7 @@ const ResourceApiFp = function (configuration) {
|
|
|
6695
6629
|
resourceIndex(options) {
|
|
6696
6630
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6697
6631
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceIndex(options);
|
|
6698
|
-
return createRequestFunction$
|
|
6632
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6699
6633
|
});
|
|
6700
6634
|
},
|
|
6701
6635
|
/**
|
|
@@ -6708,7 +6642,7 @@ const ResourceApiFp = function (configuration) {
|
|
|
6708
6642
|
resourceIsUserResourceCreator(id, options) {
|
|
6709
6643
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6710
6644
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceIsUserResourceCreator(id, options);
|
|
6711
|
-
return createRequestFunction$
|
|
6645
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6712
6646
|
});
|
|
6713
6647
|
},
|
|
6714
6648
|
/**
|
|
@@ -6722,7 +6656,7 @@ const ResourceApiFp = function (configuration) {
|
|
|
6722
6656
|
resourceSetResourceReadonly(id, status, options) {
|
|
6723
6657
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6724
6658
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceSetResourceReadonly(id, status, options);
|
|
6725
|
-
return createRequestFunction$
|
|
6659
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6726
6660
|
});
|
|
6727
6661
|
},
|
|
6728
6662
|
/**
|
|
@@ -6736,7 +6670,7 @@ const ResourceApiFp = function (configuration) {
|
|
|
6736
6670
|
resourceStoreToProject(projectId, resourceObject, options) {
|
|
6737
6671
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6738
6672
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceStoreToProject(projectId, resourceObject, options);
|
|
6739
|
-
return createRequestFunction$
|
|
6673
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6740
6674
|
});
|
|
6741
6675
|
},
|
|
6742
6676
|
/**
|
|
@@ -6750,7 +6684,7 @@ const ResourceApiFp = function (configuration) {
|
|
|
6750
6684
|
resourceUpdate(id, resourceObject, options) {
|
|
6751
6685
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6752
6686
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceUpdate(id, resourceObject, options);
|
|
6753
|
-
return createRequestFunction$
|
|
6687
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6754
6688
|
});
|
|
6755
6689
|
},
|
|
6756
6690
|
};
|
|
@@ -6851,7 +6785,7 @@ const ResourceTypeApiAxiosParamCreator = function (configuration) {
|
|
|
6851
6785
|
resourceTypeGetEnabledResourceTypes: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
6852
6786
|
const localVarPath = `/ResourceType/types/-/enabled`;
|
|
6853
6787
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6854
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6788
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6855
6789
|
let baseOptions;
|
|
6856
6790
|
if (configuration) {
|
|
6857
6791
|
baseOptions = configuration.baseOptions;
|
|
@@ -6860,12 +6794,12 @@ const ResourceTypeApiAxiosParamCreator = function (configuration) {
|
|
|
6860
6794
|
const localVarHeaderParameter = {};
|
|
6861
6795
|
const localVarQueryParameter = {};
|
|
6862
6796
|
// authentication JWT token required
|
|
6863
|
-
yield setApiKeyToObject$
|
|
6864
|
-
setSearchParams$
|
|
6797
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6798
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6865
6799
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6866
6800
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6867
6801
|
return {
|
|
6868
|
-
url: toPathString$
|
|
6802
|
+
url: toPathString$4(localVarUrlObj),
|
|
6869
6803
|
options: localVarRequestOptions,
|
|
6870
6804
|
};
|
|
6871
6805
|
}),
|
|
@@ -6882,7 +6816,7 @@ const ResourceTypeApiAxiosParamCreator = function (configuration) {
|
|
|
6882
6816
|
const localVarPath = `/ResourceType/types/{id}`
|
|
6883
6817
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6884
6818
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6885
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6819
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6886
6820
|
let baseOptions;
|
|
6887
6821
|
if (configuration) {
|
|
6888
6822
|
baseOptions = configuration.baseOptions;
|
|
@@ -6891,12 +6825,12 @@ const ResourceTypeApiAxiosParamCreator = function (configuration) {
|
|
|
6891
6825
|
const localVarHeaderParameter = {};
|
|
6892
6826
|
const localVarQueryParameter = {};
|
|
6893
6827
|
// authentication JWT token required
|
|
6894
|
-
yield setApiKeyToObject$
|
|
6895
|
-
setSearchParams$
|
|
6828
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6829
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6896
6830
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6897
6831
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6898
6832
|
return {
|
|
6899
|
-
url: toPathString$
|
|
6833
|
+
url: toPathString$4(localVarUrlObj),
|
|
6900
6834
|
options: localVarRequestOptions,
|
|
6901
6835
|
};
|
|
6902
6836
|
}),
|
|
@@ -6909,7 +6843,7 @@ const ResourceTypeApiAxiosParamCreator = function (configuration) {
|
|
|
6909
6843
|
resourceTypeGetResourceTypes: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
6910
6844
|
const localVarPath = `/ResourceType/types`;
|
|
6911
6845
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6912
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$
|
|
6846
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
6913
6847
|
let baseOptions;
|
|
6914
6848
|
if (configuration) {
|
|
6915
6849
|
baseOptions = configuration.baseOptions;
|
|
@@ -6918,12 +6852,12 @@ const ResourceTypeApiAxiosParamCreator = function (configuration) {
|
|
|
6918
6852
|
const localVarHeaderParameter = {};
|
|
6919
6853
|
const localVarQueryParameter = {};
|
|
6920
6854
|
// authentication JWT token required
|
|
6921
|
-
yield setApiKeyToObject$
|
|
6922
|
-
setSearchParams$
|
|
6855
|
+
yield setApiKeyToObject$4(localVarHeaderParameter, "Authorization", configuration);
|
|
6856
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter, options.query);
|
|
6923
6857
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6924
6858
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6925
6859
|
return {
|
|
6926
|
-
url: toPathString$
|
|
6860
|
+
url: toPathString$4(localVarUrlObj),
|
|
6927
6861
|
options: localVarRequestOptions,
|
|
6928
6862
|
};
|
|
6929
6863
|
}),
|
|
@@ -6945,7 +6879,7 @@ const ResourceTypeApiFp = function (configuration) {
|
|
|
6945
6879
|
resourceTypeGetEnabledResourceTypes(options) {
|
|
6946
6880
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6947
6881
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceTypeGetEnabledResourceTypes(options);
|
|
6948
|
-
return createRequestFunction$
|
|
6882
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6949
6883
|
});
|
|
6950
6884
|
},
|
|
6951
6885
|
/**
|
|
@@ -6958,7 +6892,7 @@ const ResourceTypeApiFp = function (configuration) {
|
|
|
6958
6892
|
resourceTypeGetResourceType(id, options) {
|
|
6959
6893
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6960
6894
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceTypeGetResourceType(id, options);
|
|
6961
|
-
return createRequestFunction$
|
|
6895
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6962
6896
|
});
|
|
6963
6897
|
},
|
|
6964
6898
|
/**
|
|
@@ -6970,7 +6904,7 @@ const ResourceTypeApiFp = function (configuration) {
|
|
|
6970
6904
|
resourceTypeGetResourceTypes(options) {
|
|
6971
6905
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6972
6906
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resourceTypeGetResourceTypes(options);
|
|
6973
|
-
return createRequestFunction$
|
|
6907
|
+
return createRequestFunction$4(localVarAxiosArgs, axios, BASE_PATH$4, configuration);
|
|
6974
6908
|
});
|
|
6975
6909
|
},
|
|
6976
6910
|
};
|
|
@@ -7013,6 +6947,168 @@ const ResourceTypeApiFactory = function (configuration, basePath, axios) {
|
|
|
7013
6947
|
};
|
|
7014
6948
|
};
|
|
7015
6949
|
|
|
6950
|
+
/* tslint:disable */
|
|
6951
|
+
const BASE_PATH$3 = "https://d-sp25.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Search".replace(/\/+$/, "");
|
|
6952
|
+
|
|
6953
|
+
/* tslint:disable */
|
|
6954
|
+
/**
|
|
6955
|
+
*
|
|
6956
|
+
* @export
|
|
6957
|
+
*/
|
|
6958
|
+
const DUMMY_BASE_URL$3 = 'https://example.com';
|
|
6959
|
+
/**
|
|
6960
|
+
*
|
|
6961
|
+
* @export
|
|
6962
|
+
*/
|
|
6963
|
+
const setApiKeyToObject$3 = function (object, keyParamName, configuration) {
|
|
6964
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
6965
|
+
if (configuration && configuration.apiKey) {
|
|
6966
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
6967
|
+
? yield configuration.apiKey(keyParamName)
|
|
6968
|
+
: yield configuration.apiKey;
|
|
6969
|
+
object[keyParamName] = localVarApiKeyValue;
|
|
6970
|
+
}
|
|
6971
|
+
});
|
|
6972
|
+
};
|
|
6973
|
+
/**
|
|
6974
|
+
*
|
|
6975
|
+
* @export
|
|
6976
|
+
*/
|
|
6977
|
+
const setSearchParams$3 = function (url, ...objects) {
|
|
6978
|
+
const searchParams = new URLSearchParams(url.search);
|
|
6979
|
+
for (const object of objects) {
|
|
6980
|
+
for (const key in object) {
|
|
6981
|
+
if (Array.isArray(object[key])) {
|
|
6982
|
+
searchParams.delete(key);
|
|
6983
|
+
for (const item of object[key]) {
|
|
6984
|
+
searchParams.append(key, item);
|
|
6985
|
+
}
|
|
6986
|
+
}
|
|
6987
|
+
else {
|
|
6988
|
+
searchParams.set(key, object[key]);
|
|
6989
|
+
}
|
|
6990
|
+
}
|
|
6991
|
+
}
|
|
6992
|
+
url.search = searchParams.toString();
|
|
6993
|
+
};
|
|
6994
|
+
/**
|
|
6995
|
+
*
|
|
6996
|
+
* @export
|
|
6997
|
+
*/
|
|
6998
|
+
const toPathString$3 = function (url) {
|
|
6999
|
+
return url.pathname + url.search + url.hash;
|
|
7000
|
+
};
|
|
7001
|
+
/**
|
|
7002
|
+
*
|
|
7003
|
+
* @export
|
|
7004
|
+
*/
|
|
7005
|
+
const createRequestFunction$3 = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
7006
|
+
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
7007
|
+
const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url });
|
|
7008
|
+
return axios.request(axiosRequestArgs);
|
|
7009
|
+
};
|
|
7010
|
+
};
|
|
7011
|
+
|
|
7012
|
+
/* tslint:disable */
|
|
7013
|
+
/**
|
|
7014
|
+
* SemanticSearchApi - axios parameter creator
|
|
7015
|
+
* @export
|
|
7016
|
+
*/
|
|
7017
|
+
const SemanticSearchApiAxiosParamCreator = function (configuration) {
|
|
7018
|
+
return {
|
|
7019
|
+
/**
|
|
7020
|
+
*
|
|
7021
|
+
* @summary Search with SemanticSearch;
|
|
7022
|
+
* @param {string} [query] Elasticsearch query
|
|
7023
|
+
* @param {boolean} [user] Specify user or only public metadata records could be found
|
|
7024
|
+
* @param {boolean} [adv] Set true for advanced Elasticsearch search syntax
|
|
7025
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
7026
|
+
* @param {*} [options] Override http request option.
|
|
7027
|
+
* @throws {RequiredError}
|
|
7028
|
+
*/
|
|
7029
|
+
semanticSearchSearch: (query, user, adv, languages, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
7030
|
+
const localVarPath = `/SemanticSearch`;
|
|
7031
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7032
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
7033
|
+
let baseOptions;
|
|
7034
|
+
if (configuration) {
|
|
7035
|
+
baseOptions = configuration.baseOptions;
|
|
7036
|
+
}
|
|
7037
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
7038
|
+
const localVarHeaderParameter = {};
|
|
7039
|
+
const localVarQueryParameter = {};
|
|
7040
|
+
// authentication JWT token required
|
|
7041
|
+
yield setApiKeyToObject$3(localVarHeaderParameter, "Authorization", configuration);
|
|
7042
|
+
if (query !== undefined) {
|
|
7043
|
+
localVarQueryParameter['query'] = query;
|
|
7044
|
+
}
|
|
7045
|
+
if (user !== undefined) {
|
|
7046
|
+
localVarQueryParameter['user'] = user;
|
|
7047
|
+
}
|
|
7048
|
+
if (adv !== undefined) {
|
|
7049
|
+
localVarQueryParameter['adv'] = adv;
|
|
7050
|
+
}
|
|
7051
|
+
if (languages) {
|
|
7052
|
+
localVarQueryParameter['languages'] = languages;
|
|
7053
|
+
}
|
|
7054
|
+
setSearchParams$3(localVarUrlObj, localVarQueryParameter, options.query);
|
|
7055
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7056
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
7057
|
+
return {
|
|
7058
|
+
url: toPathString$3(localVarUrlObj),
|
|
7059
|
+
options: localVarRequestOptions,
|
|
7060
|
+
};
|
|
7061
|
+
}),
|
|
7062
|
+
};
|
|
7063
|
+
};
|
|
7064
|
+
/**
|
|
7065
|
+
* SemanticSearchApi - functional programming interface
|
|
7066
|
+
* @export
|
|
7067
|
+
*/
|
|
7068
|
+
const SemanticSearchApiFp = function (configuration) {
|
|
7069
|
+
const localVarAxiosParamCreator = SemanticSearchApiAxiosParamCreator(configuration);
|
|
7070
|
+
return {
|
|
7071
|
+
/**
|
|
7072
|
+
*
|
|
7073
|
+
* @summary Search with SemanticSearch;
|
|
7074
|
+
* @param {string} [query] Elasticsearch query
|
|
7075
|
+
* @param {boolean} [user] Specify user or only public metadata records could be found
|
|
7076
|
+
* @param {boolean} [adv] Set true for advanced Elasticsearch search syntax
|
|
7077
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
7078
|
+
* @param {*} [options] Override http request option.
|
|
7079
|
+
* @throws {RequiredError}
|
|
7080
|
+
*/
|
|
7081
|
+
semanticSearchSearch(query, user, adv, languages, options) {
|
|
7082
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
7083
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.semanticSearchSearch(query, user, adv, languages, options);
|
|
7084
|
+
return createRequestFunction$3(localVarAxiosArgs, axios, BASE_PATH$3, configuration);
|
|
7085
|
+
});
|
|
7086
|
+
},
|
|
7087
|
+
};
|
|
7088
|
+
};
|
|
7089
|
+
/**
|
|
7090
|
+
* SemanticSearchApi - factory interface
|
|
7091
|
+
* @export
|
|
7092
|
+
*/
|
|
7093
|
+
const SemanticSearchApiFactory = function (configuration, basePath, axios) {
|
|
7094
|
+
const localVarFp = SemanticSearchApiFp(configuration);
|
|
7095
|
+
return {
|
|
7096
|
+
/**
|
|
7097
|
+
*
|
|
7098
|
+
* @summary Search with SemanticSearch;
|
|
7099
|
+
* @param {string} [query] Elasticsearch query
|
|
7100
|
+
* @param {boolean} [user] Specify user or only public metadata records could be found
|
|
7101
|
+
* @param {boolean} [adv] Set true for advanced Elasticsearch search syntax
|
|
7102
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
7103
|
+
* @param {*} [options] Override http request option.
|
|
7104
|
+
* @throws {RequiredError}
|
|
7105
|
+
*/
|
|
7106
|
+
semanticSearchSearch(query, user, adv, languages, options) {
|
|
7107
|
+
return localVarFp.semanticSearchSearch(query, user, adv, languages, options).then((request) => request(axios, basePath));
|
|
7108
|
+
},
|
|
7109
|
+
};
|
|
7110
|
+
};
|
|
7111
|
+
|
|
7016
7112
|
/* tslint:disable */
|
|
7017
7113
|
const BASE_PATH$2 = "https://d-sp23.devlef.campus.rwth-aachen.de/coscine/api/Coscine.Api.Token".replace(/\/+$/, "");
|
|
7018
7114
|
/**
|
|
@@ -8381,7 +8477,14 @@ const UserApiFactory = function (configuration, basePath, axios) {
|
|
|
8381
8477
|
|
|
8382
8478
|
let accessToken = '';
|
|
8383
8479
|
if (typeof coscine !== 'undefined' && typeof coscine.authorization !== 'undefined') {
|
|
8384
|
-
accessToken = coscine.authorization.bearer;
|
|
8480
|
+
accessToken = 'Bearer ' + coscine.authorization.bearer;
|
|
8481
|
+
}
|
|
8482
|
+
if (typeof window !== 'undefined') {
|
|
8483
|
+
// LocalStorage > Global Variables
|
|
8484
|
+
const localStorageToken = localStorage.getItem('coscine.authorization.bearer');
|
|
8485
|
+
if (localStorageToken) {
|
|
8486
|
+
accessToken = 'Bearer ' + localStorageToken;
|
|
8487
|
+
}
|
|
8385
8488
|
}
|
|
8386
8489
|
const getHostName = () => {
|
|
8387
8490
|
let hostName = typeof window !== 'undefined' ? window.location.hostname : 'coscine.rwth-aachen.de';
|
|
@@ -8412,6 +8515,7 @@ function implementations(axios) {
|
|
|
8412
8515
|
ResourceTypeApi: ResourceTypeApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Resources', axios),
|
|
8413
8516
|
RoleApi: RoleApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Project', axios),
|
|
8414
8517
|
SearchApi: SearchApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Project', axios),
|
|
8518
|
+
SemanticSearchApi: SemanticSearchApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Search', axios),
|
|
8415
8519
|
SubProjectApi: SubProjectApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Project', axios),
|
|
8416
8520
|
TitleApi: TitleApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.User', axios),
|
|
8417
8521
|
TokenApi: TokenApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.Token', axios),
|
|
@@ -8435,25 +8539,53 @@ function setHeader(request) {
|
|
|
8435
8539
|
request.headers.common[clientCorrolationIdKey] = coscine.clientcorrolation.id;
|
|
8436
8540
|
}
|
|
8437
8541
|
}
|
|
8542
|
+
if (typeof window !== 'undefined') {
|
|
8543
|
+
// LocalStorage > Global Variables
|
|
8544
|
+
const localStorageToken = localStorage.getItem("coscine.authorization.bearer");
|
|
8545
|
+
if (localStorageToken) {
|
|
8546
|
+
request.headers.common[authHeaderKey] =
|
|
8547
|
+
'Bearer ' + localStorageToken;
|
|
8548
|
+
}
|
|
8549
|
+
const localStorageClientCorrelation = localStorage.getItem("coscine.clientcorrolation.id");
|
|
8550
|
+
if (localStorageClientCorrelation) {
|
|
8551
|
+
request.headers.common[clientCorrolationIdKey] = localStorageClientCorrelation;
|
|
8552
|
+
}
|
|
8553
|
+
}
|
|
8438
8554
|
}
|
|
8439
|
-
|
|
8440
|
-
setHeader(request);
|
|
8555
|
+
function increaseLoading() {
|
|
8441
8556
|
if ((typeof coscine !== "undefined") && (typeof coscine.loading !== "undefined") && (typeof coscine.loading.counter !== "undefined")) {
|
|
8442
8557
|
coscine.loading.counter++;
|
|
8443
8558
|
}
|
|
8559
|
+
if (typeof window !== 'undefined') {
|
|
8560
|
+
const localStorageLoading = localStorage.getItem("coscine.loading.counter");
|
|
8561
|
+
if (localStorageLoading) {
|
|
8562
|
+
localStorage.setItem("coscine.loading.counter", String(Number(localStorageLoading) + 1));
|
|
8563
|
+
}
|
|
8564
|
+
}
|
|
8565
|
+
}
|
|
8566
|
+
function decreaseLoading() {
|
|
8567
|
+
if ((typeof coscine !== "undefined") && (typeof coscine.loading !== "undefined") && (typeof coscine.loading.counter !== "undefined")) {
|
|
8568
|
+
coscine.loading.counter--;
|
|
8569
|
+
}
|
|
8570
|
+
if (typeof window !== 'undefined') {
|
|
8571
|
+
const localStorageLoading = localStorage.getItem("coscine.loading.counter");
|
|
8572
|
+
if (localStorageLoading) {
|
|
8573
|
+
localStorage.setItem("coscine.loading.counter", String(Number(localStorageLoading) - 1));
|
|
8574
|
+
}
|
|
8575
|
+
}
|
|
8576
|
+
}
|
|
8577
|
+
instance.interceptors.request.use((request) => {
|
|
8578
|
+
setHeader(request);
|
|
8579
|
+
increaseLoading();
|
|
8444
8580
|
return request;
|
|
8445
8581
|
}, (error) => {
|
|
8446
8582
|
return Promise.reject(error);
|
|
8447
8583
|
});
|
|
8448
8584
|
instance.interceptors.response.use((response) => {
|
|
8449
|
-
|
|
8450
|
-
coscine.loading.counter--;
|
|
8451
|
-
}
|
|
8585
|
+
decreaseLoading();
|
|
8452
8586
|
return response;
|
|
8453
8587
|
}, (error) => {
|
|
8454
|
-
|
|
8455
|
-
coscine.loading.counter--;
|
|
8456
|
-
}
|
|
8588
|
+
decreaseLoading();
|
|
8457
8589
|
return Promise.reject(error);
|
|
8458
8590
|
});
|
|
8459
8591
|
|
|
@@ -8475,6 +8607,7 @@ const ResourceApi = apis.ResourceApi;
|
|
|
8475
8607
|
const ResourceTypeApi = apis.ResourceTypeApi;
|
|
8476
8608
|
const RoleApi = apis.RoleApi;
|
|
8477
8609
|
const SearchApi = apis.SearchApi;
|
|
8610
|
+
const SemanticSearchApi = apis.SemanticSearchApi;
|
|
8478
8611
|
const SubProjectApi = apis.SubProjectApi;
|
|
8479
8612
|
const TitleApi = apis.TitleApi;
|
|
8480
8613
|
const TokenApi = apis.TokenApi;
|
|
@@ -8483,5 +8616,5 @@ const TreeApi = apis.TreeApi;
|
|
|
8483
8616
|
const UserApi = apis.UserApi;
|
|
8484
8617
|
const VisibilityApi = apis.VisibilityApi;
|
|
8485
8618
|
|
|
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 };
|
|
8619
|
+
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, implementations as apiImplementations, instance as axiosInstance, apis as default };
|
|
8487
8620
|
//# sourceMappingURL=index.js.map
|