@daghis/teamcity-mcp 1.8.0 → 1.8.2
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/CHANGELOG.md +14 -0
- package/dist/index.js +980 -573
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -926,7 +926,7 @@ var import_node_fs = require("node:fs");
|
|
|
926
926
|
var import_node_os = require("node:os");
|
|
927
927
|
var import_node_path = require("node:path");
|
|
928
928
|
var import_promises = require("node:stream/promises");
|
|
929
|
-
var
|
|
929
|
+
var import_axios36 = require("axios");
|
|
930
930
|
var import_zod4 = require("zod");
|
|
931
931
|
|
|
932
932
|
// src/teamcity-client/models/resolution.ts
|
|
@@ -936,6 +936,9 @@ var ResolutionTypeEnum = {
|
|
|
936
936
|
AtTime: "atTime"
|
|
937
937
|
};
|
|
938
938
|
|
|
939
|
+
// src/teamcity/artifact-manager.ts
|
|
940
|
+
var import_axios = require("axios");
|
|
941
|
+
|
|
939
942
|
// src/teamcity/utils/build-locator.ts
|
|
940
943
|
var toBuildLocator = (buildId) => buildId.includes(":") ? buildId : `id:${buildId}`;
|
|
941
944
|
|
|
@@ -947,6 +950,8 @@ var ArtifactManager = class _ArtifactManager {
|
|
|
947
950
|
// 1 minute
|
|
948
951
|
static defaultLimit = 100;
|
|
949
952
|
static maxLimit = 1e3;
|
|
953
|
+
static artifactRetryAttempts = 10;
|
|
954
|
+
static artifactRetryDelayMs = 1e3;
|
|
950
955
|
constructor(client) {
|
|
951
956
|
this.client = client;
|
|
952
957
|
}
|
|
@@ -1006,9 +1011,47 @@ var ArtifactManager = class _ArtifactManager {
|
|
|
1006
1011
|
* Download a specific artifact
|
|
1007
1012
|
*/
|
|
1008
1013
|
async downloadArtifact(buildId, artifactPath, options = {}) {
|
|
1009
|
-
|
|
1010
|
-
|
|
1014
|
+
let artifact;
|
|
1015
|
+
for (let attempt = 1; attempt <= _ArtifactManager.artifactRetryAttempts; attempt += 1) {
|
|
1016
|
+
const artifacts = await this.listArtifacts(buildId, { forceRefresh: attempt > 1 });
|
|
1017
|
+
const listSample = artifacts.slice(0, 5).map((entry) => entry.path);
|
|
1018
|
+
debug("artifact-manager.downloadArtifact.list", {
|
|
1019
|
+
buildId,
|
|
1020
|
+
requested: artifactPath,
|
|
1021
|
+
availableCount: artifacts.length,
|
|
1022
|
+
sample: listSample,
|
|
1023
|
+
includeNested: false,
|
|
1024
|
+
attempt
|
|
1025
|
+
});
|
|
1026
|
+
artifact = artifacts.find((a) => a.path === artifactPath || a.name === artifactPath);
|
|
1027
|
+
if (!artifact) {
|
|
1028
|
+
const nestedArtifacts = await this.listArtifacts(buildId, {
|
|
1029
|
+
includeNested: true,
|
|
1030
|
+
forceRefresh: true
|
|
1031
|
+
});
|
|
1032
|
+
const nestedSample = nestedArtifacts.slice(0, 5).map((entry) => entry.path);
|
|
1033
|
+
debug("artifact-manager.downloadArtifact.listNested", {
|
|
1034
|
+
buildId,
|
|
1035
|
+
requested: artifactPath,
|
|
1036
|
+
availableCount: nestedArtifacts.length,
|
|
1037
|
+
sample: nestedSample,
|
|
1038
|
+
attempt
|
|
1039
|
+
});
|
|
1040
|
+
artifact = nestedArtifacts.find((a) => a.path === artifactPath || a.name === artifactPath);
|
|
1041
|
+
}
|
|
1042
|
+
if (artifact) {
|
|
1043
|
+
break;
|
|
1044
|
+
}
|
|
1045
|
+
if (attempt < _ArtifactManager.artifactRetryAttempts) {
|
|
1046
|
+
await this.delay(_ArtifactManager.artifactRetryDelayMs);
|
|
1047
|
+
}
|
|
1048
|
+
}
|
|
1011
1049
|
if (!artifact) {
|
|
1050
|
+
debug("artifact-manager.downloadArtifact.miss", {
|
|
1051
|
+
buildId,
|
|
1052
|
+
requested: artifactPath,
|
|
1053
|
+
attempts: _ArtifactManager.artifactRetryAttempts
|
|
1054
|
+
});
|
|
1012
1055
|
throw new Error(`Artifact not found: ${artifactPath}`);
|
|
1013
1056
|
}
|
|
1014
1057
|
if (options.maxSize && artifact.size > options.maxSize) {
|
|
@@ -1018,17 +1061,10 @@ var ArtifactManager = class _ArtifactManager {
|
|
|
1018
1061
|
}
|
|
1019
1062
|
try {
|
|
1020
1063
|
const encoding = options.encoding ?? "buffer";
|
|
1021
|
-
const normalizedPath = artifact.path.split("/").map((segment) => encodeURIComponent(segment)).join("/");
|
|
1022
|
-
const buildLocator = toBuildLocator(buildId);
|
|
1023
|
-
const artifactRequestPath = `content/${normalizedPath}`;
|
|
1024
1064
|
if (encoding === "text") {
|
|
1025
|
-
const response2 = await this.client.
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
void 0,
|
|
1029
|
-
void 0,
|
|
1030
|
-
{ responseType: "text" }
|
|
1031
|
-
);
|
|
1065
|
+
const response2 = await this.client.downloadArtifactContent(buildId, artifact.path, {
|
|
1066
|
+
responseType: "text"
|
|
1067
|
+
});
|
|
1032
1068
|
const axiosResponse2 = response2;
|
|
1033
1069
|
const { data, headers } = axiosResponse2;
|
|
1034
1070
|
if (typeof data !== "string") {
|
|
@@ -1044,12 +1080,12 @@ var ArtifactManager = class _ArtifactManager {
|
|
|
1044
1080
|
};
|
|
1045
1081
|
}
|
|
1046
1082
|
if (encoding === "stream") {
|
|
1047
|
-
const response2 = await this.client.
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1083
|
+
const response2 = await this.client.downloadArtifactContent(
|
|
1084
|
+
buildId,
|
|
1085
|
+
artifact.path,
|
|
1086
|
+
{
|
|
1087
|
+
responseType: "stream"
|
|
1088
|
+
}
|
|
1053
1089
|
);
|
|
1054
1090
|
const axiosResponse2 = response2;
|
|
1055
1091
|
const stream = axiosResponse2.data;
|
|
@@ -1067,12 +1103,12 @@ var ArtifactManager = class _ArtifactManager {
|
|
|
1067
1103
|
mimeType
|
|
1068
1104
|
};
|
|
1069
1105
|
}
|
|
1070
|
-
const response = await this.client.
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1106
|
+
const response = await this.client.downloadArtifactContent(
|
|
1107
|
+
buildId,
|
|
1108
|
+
artifact.path,
|
|
1109
|
+
{
|
|
1110
|
+
responseType: "arraybuffer"
|
|
1111
|
+
}
|
|
1076
1112
|
);
|
|
1077
1113
|
const axiosResponse = response;
|
|
1078
1114
|
const buffer = this.ensureBinaryBuffer(axiosResponse.data);
|
|
@@ -1090,7 +1126,24 @@ var ArtifactManager = class _ArtifactManager {
|
|
|
1090
1126
|
mimeType: typeof axiosResponse.headers?.["content-type"] === "string" ? axiosResponse.headers["content-type"] : void 0
|
|
1091
1127
|
};
|
|
1092
1128
|
} catch (error2) {
|
|
1093
|
-
|
|
1129
|
+
let errMsg;
|
|
1130
|
+
if ((0, import_axios.isAxiosError)(error2)) {
|
|
1131
|
+
const status = error2.response?.status;
|
|
1132
|
+
const data = error2.response?.data;
|
|
1133
|
+
let detail;
|
|
1134
|
+
if (typeof data === "string") {
|
|
1135
|
+
detail = data;
|
|
1136
|
+
} else if (data !== void 0 && data !== null && typeof data === "object") {
|
|
1137
|
+
try {
|
|
1138
|
+
detail = JSON.stringify(data);
|
|
1139
|
+
} catch {
|
|
1140
|
+
detail = "[unserializable response body]";
|
|
1141
|
+
}
|
|
1142
|
+
}
|
|
1143
|
+
errMsg = `HTTP ${status ?? "unknown"}${detail ? `: ${detail}` : ""}`;
|
|
1144
|
+
} else {
|
|
1145
|
+
errMsg = error2 instanceof Error ? error2.message : "Unknown error";
|
|
1146
|
+
}
|
|
1094
1147
|
throw new Error(`Failed to download artifact: ${errMsg}`);
|
|
1095
1148
|
}
|
|
1096
1149
|
}
|
|
@@ -1098,26 +1151,34 @@ var ArtifactManager = class _ArtifactManager {
|
|
|
1098
1151
|
* Download multiple artifacts
|
|
1099
1152
|
*/
|
|
1100
1153
|
async downloadMultipleArtifacts(buildId, artifactPaths, options = {}) {
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
const results =
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
const
|
|
1113
|
-
|
|
1154
|
+
const downloadOptions = {
|
|
1155
|
+
encoding: options.encoding ?? "base64",
|
|
1156
|
+
maxSize: options.maxSize
|
|
1157
|
+
};
|
|
1158
|
+
const results = [];
|
|
1159
|
+
for (const path of artifactPaths) {
|
|
1160
|
+
try {
|
|
1161
|
+
const artifact = await this.downloadArtifact(buildId, path, downloadOptions);
|
|
1162
|
+
results.push(artifact);
|
|
1163
|
+
} catch (error2) {
|
|
1164
|
+
const reason = error2;
|
|
1165
|
+
const message = reason instanceof Error ? reason.message : typeof reason === "object" && reason?.message ? String(reason.message) : String(reason ?? "Unknown error");
|
|
1166
|
+
const fallbackName = path ?? "unknown";
|
|
1167
|
+
debug("artifact-manager.downloadMultipleArtifacts.error", {
|
|
1168
|
+
buildId,
|
|
1169
|
+
requested: fallbackName,
|
|
1170
|
+
encoding: downloadOptions.encoding,
|
|
1171
|
+
error: message
|
|
1172
|
+
});
|
|
1173
|
+
results.push({
|
|
1114
1174
|
name: fallbackName,
|
|
1115
1175
|
path: fallbackName,
|
|
1116
1176
|
size: 0,
|
|
1117
|
-
error:
|
|
1118
|
-
};
|
|
1177
|
+
error: message
|
|
1178
|
+
});
|
|
1119
1179
|
}
|
|
1120
|
-
}
|
|
1180
|
+
}
|
|
1181
|
+
return results;
|
|
1121
1182
|
}
|
|
1122
1183
|
/**
|
|
1123
1184
|
* Parse artifacts from API response
|
|
@@ -1246,6 +1307,9 @@ var ArtifactManager = class _ArtifactManager {
|
|
|
1246
1307
|
this.cache.delete(key);
|
|
1247
1308
|
}
|
|
1248
1309
|
}
|
|
1310
|
+
async delay(ms) {
|
|
1311
|
+
await new Promise((resolve2) => setTimeout(resolve2, ms));
|
|
1312
|
+
}
|
|
1249
1313
|
};
|
|
1250
1314
|
|
|
1251
1315
|
// src/teamcity/build-configuration-update-manager.ts
|
|
@@ -2026,7 +2090,7 @@ var BuildResultsManager = class _BuildResultsManager {
|
|
|
2026
2090
|
};
|
|
2027
2091
|
|
|
2028
2092
|
// src/teamcity/client-adapter.ts
|
|
2029
|
-
var
|
|
2093
|
+
var import_axios2 = __toESM(require("axios"));
|
|
2030
2094
|
var FALLBACK_BASE_URL = "http://not-configured";
|
|
2031
2095
|
var toRecord = (value) => {
|
|
2032
2096
|
if (typeof value === "object" && value !== null) {
|
|
@@ -2086,7 +2150,7 @@ function createAdapterFromTeamCityAPI(api, options = {}) {
|
|
|
2086
2150
|
const getBaseUrl = api.getBaseUrl;
|
|
2087
2151
|
const inferredBaseUrl = typeof getBaseUrl === "function" ? getBaseUrl.call(api) : void 0;
|
|
2088
2152
|
const fallbackBaseUrl = inferredBaseUrl ?? options.apiConfig?.baseUrl ?? api.http?.defaults?.baseURL ?? FALLBACK_BASE_URL;
|
|
2089
|
-
const httpInstance = api.http ??
|
|
2153
|
+
const httpInstance = api.http ?? import_axios2.default.create({ baseURL: fallbackBaseUrl });
|
|
2090
2154
|
const fallbackApiConfig = resolveApiClientConfigFromApi(api, httpInstance, fallbackBaseUrl);
|
|
2091
2155
|
const resolvedApiConfig = {
|
|
2092
2156
|
baseUrl: options.apiConfig?.baseUrl ?? fallbackApiConfig.baseUrl,
|
|
@@ -2372,7 +2436,7 @@ function formatError(err, context) {
|
|
|
2372
2436
|
}
|
|
2373
2437
|
|
|
2374
2438
|
// src/middleware/global-error-handler.ts
|
|
2375
|
-
var
|
|
2439
|
+
var import_axios3 = require("axios");
|
|
2376
2440
|
init_errors();
|
|
2377
2441
|
|
|
2378
2442
|
// src/utils/error-logger.ts
|
|
@@ -2528,7 +2592,7 @@ var GlobalErrorHandler = class _GlobalErrorHandler {
|
|
|
2528
2592
|
}
|
|
2529
2593
|
return error2;
|
|
2530
2594
|
}
|
|
2531
|
-
if (error2 instanceof
|
|
2595
|
+
if (error2 instanceof import_axios3.AxiosError) {
|
|
2532
2596
|
return this.transformAxiosError(error2, context);
|
|
2533
2597
|
}
|
|
2534
2598
|
if (error2 instanceof Error) {
|
|
@@ -2585,7 +2649,7 @@ var GlobalErrorHandler = class _GlobalErrorHandler {
|
|
|
2585
2649
|
if (error2 instanceof MCPTimeoutError) {
|
|
2586
2650
|
return true;
|
|
2587
2651
|
}
|
|
2588
|
-
if (error2 instanceof
|
|
2652
|
+
if (error2 instanceof import_axios3.AxiosError) {
|
|
2589
2653
|
return !error2.response || error2.response.status >= 500 && error2.response.status < 600;
|
|
2590
2654
|
}
|
|
2591
2655
|
return false;
|
|
@@ -2643,7 +2707,7 @@ async function runTool(toolName, schema, handler, rawArgs, context) {
|
|
|
2643
2707
|
}
|
|
2644
2708
|
|
|
2645
2709
|
// src/api-client.ts
|
|
2646
|
-
var
|
|
2710
|
+
var import_axios35 = __toESM(require("axios"));
|
|
2647
2711
|
|
|
2648
2712
|
// node_modules/axios-retry/dist/esm/index.js
|
|
2649
2713
|
var import_is_retry_allowed = __toESM(require_is_retry_allowed(), 1);
|
|
@@ -2772,13 +2836,13 @@ async function handleRetry(axiosInstance, currentState, error2, config2) {
|
|
|
2772
2836
|
if (config2.signal?.aborted) {
|
|
2773
2837
|
return Promise.resolve(axiosInstance(config2));
|
|
2774
2838
|
}
|
|
2775
|
-
return new Promise((
|
|
2839
|
+
return new Promise((resolve2) => {
|
|
2776
2840
|
const abortListener = () => {
|
|
2777
2841
|
clearTimeout(timeout);
|
|
2778
|
-
|
|
2842
|
+
resolve2(axiosInstance(config2));
|
|
2779
2843
|
};
|
|
2780
2844
|
const timeout = setTimeout(() => {
|
|
2781
|
-
|
|
2845
|
+
resolve2(axiosInstance(config2));
|
|
2782
2846
|
if (config2.signal?.removeEventListener) {
|
|
2783
2847
|
config2.signal.removeEventListener("abort", abortListener);
|
|
2784
2848
|
}
|
|
@@ -2931,13 +2995,13 @@ function validateConfiguration(baseUrl, token) {
|
|
|
2931
2995
|
init_errors();
|
|
2932
2996
|
|
|
2933
2997
|
// src/teamcity-client/api/agent-api.ts
|
|
2934
|
-
var
|
|
2998
|
+
var import_axios5 = __toESM(require("axios"));
|
|
2935
2999
|
|
|
2936
3000
|
// src/teamcity-client/base.ts
|
|
2937
|
-
var
|
|
3001
|
+
var import_axios4 = __toESM(require("axios"));
|
|
2938
3002
|
var BASE_PATH = "http://teamcity.bluevine.net".replace(/\/+$/, "");
|
|
2939
3003
|
var BaseAPI = class {
|
|
2940
|
-
constructor(configuration, basePath = BASE_PATH, axios3 =
|
|
3004
|
+
constructor(configuration, basePath = BASE_PATH, axios3 = import_axios4.default) {
|
|
2941
3005
|
this.basePath = basePath;
|
|
2942
3006
|
this.axios = axios3;
|
|
2943
3007
|
if (configuration) {
|
|
@@ -3610,7 +3674,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3610
3674
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.deleteAgent"]?.[localVarOperationServerIndex]?.url;
|
|
3611
3675
|
return (axios3, basePath) => createRequestFunction(
|
|
3612
3676
|
localVarAxiosArgs,
|
|
3613
|
-
|
|
3677
|
+
import_axios5.default,
|
|
3614
3678
|
BASE_PATH,
|
|
3615
3679
|
configuration
|
|
3616
3680
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -3633,7 +3697,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3633
3697
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.getAgent"]?.[localVarOperationServerIndex]?.url;
|
|
3634
3698
|
return (axios3, basePath) => createRequestFunction(
|
|
3635
3699
|
localVarAxiosArgs,
|
|
3636
|
-
|
|
3700
|
+
import_axios5.default,
|
|
3637
3701
|
BASE_PATH,
|
|
3638
3702
|
configuration
|
|
3639
3703
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -3656,7 +3720,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3656
3720
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.getAgentField"]?.[localVarOperationServerIndex]?.url;
|
|
3657
3721
|
return (axios3, basePath) => createRequestFunction(
|
|
3658
3722
|
localVarAxiosArgs,
|
|
3659
|
-
|
|
3723
|
+
import_axios5.default,
|
|
3660
3724
|
BASE_PATH,
|
|
3661
3725
|
configuration
|
|
3662
3726
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -3679,7 +3743,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3679
3743
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.getAgentPool"]?.[localVarOperationServerIndex]?.url;
|
|
3680
3744
|
return (axios3, basePath) => createRequestFunction(
|
|
3681
3745
|
localVarAxiosArgs,
|
|
3682
|
-
|
|
3746
|
+
import_axios5.default,
|
|
3683
3747
|
BASE_PATH,
|
|
3684
3748
|
configuration
|
|
3685
3749
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -3702,7 +3766,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3702
3766
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.getAllAgents"]?.[localVarOperationServerIndex]?.url;
|
|
3703
3767
|
return (axios3, basePath) => createRequestFunction(
|
|
3704
3768
|
localVarAxiosArgs,
|
|
3705
|
-
|
|
3769
|
+
import_axios5.default,
|
|
3706
3770
|
BASE_PATH,
|
|
3707
3771
|
configuration
|
|
3708
3772
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -3725,7 +3789,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3725
3789
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.getAuthorizedInfo"]?.[localVarOperationServerIndex]?.url;
|
|
3726
3790
|
return (axios3, basePath) => createRequestFunction(
|
|
3727
3791
|
localVarAxiosArgs,
|
|
3728
|
-
|
|
3792
|
+
import_axios5.default,
|
|
3729
3793
|
BASE_PATH,
|
|
3730
3794
|
configuration
|
|
3731
3795
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -3748,7 +3812,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3748
3812
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.getBuildConfigurationRunPolicy"]?.[localVarOperationServerIndex]?.url;
|
|
3749
3813
|
return (axios3, basePath) => createRequestFunction(
|
|
3750
3814
|
localVarAxiosArgs,
|
|
3751
|
-
|
|
3815
|
+
import_axios5.default,
|
|
3752
3816
|
BASE_PATH,
|
|
3753
3817
|
configuration
|
|
3754
3818
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -3771,7 +3835,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3771
3835
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.getCompatibleBuildTypes"]?.[localVarOperationServerIndex]?.url;
|
|
3772
3836
|
return (axios3, basePath) => createRequestFunction(
|
|
3773
3837
|
localVarAxiosArgs,
|
|
3774
|
-
|
|
3838
|
+
import_axios5.default,
|
|
3775
3839
|
BASE_PATH,
|
|
3776
3840
|
configuration
|
|
3777
3841
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -3794,7 +3858,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3794
3858
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.getEnabledInfo"]?.[localVarOperationServerIndex]?.url;
|
|
3795
3859
|
return (axios3, basePath) => createRequestFunction(
|
|
3796
3860
|
localVarAxiosArgs,
|
|
3797
|
-
|
|
3861
|
+
import_axios5.default,
|
|
3798
3862
|
BASE_PATH,
|
|
3799
3863
|
configuration
|
|
3800
3864
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -3817,7 +3881,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3817
3881
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.getIncompatibleBuildTypes"]?.[localVarOperationServerIndex]?.url;
|
|
3818
3882
|
return (axios3, basePath) => createRequestFunction(
|
|
3819
3883
|
localVarAxiosArgs,
|
|
3820
|
-
|
|
3884
|
+
import_axios5.default,
|
|
3821
3885
|
BASE_PATH,
|
|
3822
3886
|
configuration
|
|
3823
3887
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -3842,7 +3906,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3842
3906
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.setAgentField"]?.[localVarOperationServerIndex]?.url;
|
|
3843
3907
|
return (axios3, basePath) => createRequestFunction(
|
|
3844
3908
|
localVarAxiosArgs,
|
|
3845
|
-
|
|
3909
|
+
import_axios5.default,
|
|
3846
3910
|
BASE_PATH,
|
|
3847
3911
|
configuration
|
|
3848
3912
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -3867,7 +3931,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3867
3931
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.setAgentPool"]?.[localVarOperationServerIndex]?.url;
|
|
3868
3932
|
return (axios3, basePath) => createRequestFunction(
|
|
3869
3933
|
localVarAxiosArgs,
|
|
3870
|
-
|
|
3934
|
+
import_axios5.default,
|
|
3871
3935
|
BASE_PATH,
|
|
3872
3936
|
configuration
|
|
3873
3937
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -3892,7 +3956,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3892
3956
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.setAuthorizedInfo"]?.[localVarOperationServerIndex]?.url;
|
|
3893
3957
|
return (axios3, basePath) => createRequestFunction(
|
|
3894
3958
|
localVarAxiosArgs,
|
|
3895
|
-
|
|
3959
|
+
import_axios5.default,
|
|
3896
3960
|
BASE_PATH,
|
|
3897
3961
|
configuration
|
|
3898
3962
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -3917,7 +3981,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3917
3981
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.setBuildConfigurationRunPolicy"]?.[localVarOperationServerIndex]?.url;
|
|
3918
3982
|
return (axios3, basePath) => createRequestFunction(
|
|
3919
3983
|
localVarAxiosArgs,
|
|
3920
|
-
|
|
3984
|
+
import_axios5.default,
|
|
3921
3985
|
BASE_PATH,
|
|
3922
3986
|
configuration
|
|
3923
3987
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -3942,7 +4006,7 @@ var AgentApiFp = function(configuration) {
|
|
|
3942
4006
|
const localVarOperationServerBasePath = operationServerMap["AgentApi.setEnabledInfo"]?.[localVarOperationServerIndex]?.url;
|
|
3943
4007
|
return (axios3, basePath) => createRequestFunction(
|
|
3944
4008
|
localVarAxiosArgs,
|
|
3945
|
-
|
|
4009
|
+
import_axios5.default,
|
|
3946
4010
|
BASE_PATH,
|
|
3947
4011
|
configuration
|
|
3948
4012
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -4137,7 +4201,7 @@ var AgentApi = class extends BaseAPI {
|
|
|
4137
4201
|
};
|
|
4138
4202
|
|
|
4139
4203
|
// src/teamcity-client/api/agent-pool-api.ts
|
|
4140
|
-
var
|
|
4204
|
+
var import_axios6 = __toESM(require("axios"));
|
|
4141
4205
|
var AgentPoolApiAxiosParamCreator = function(configuration) {
|
|
4142
4206
|
return {
|
|
4143
4207
|
/**
|
|
@@ -4688,7 +4752,7 @@ var AgentPoolApiFp = function(configuration) {
|
|
|
4688
4752
|
const localVarOperationServerBasePath = operationServerMap["AgentPoolApi.addAgentToAgentPool"]?.[localVarOperationServerIndex]?.url;
|
|
4689
4753
|
return (axios3, basePath) => createRequestFunction(
|
|
4690
4754
|
localVarAxiosArgs,
|
|
4691
|
-
|
|
4755
|
+
import_axios6.default,
|
|
4692
4756
|
BASE_PATH,
|
|
4693
4757
|
configuration
|
|
4694
4758
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -4711,7 +4775,7 @@ var AgentPoolApiFp = function(configuration) {
|
|
|
4711
4775
|
const localVarOperationServerBasePath = operationServerMap["AgentPoolApi.addProjectToAgentPool"]?.[localVarOperationServerIndex]?.url;
|
|
4712
4776
|
return (axios3, basePath) => createRequestFunction(
|
|
4713
4777
|
localVarAxiosArgs,
|
|
4714
|
-
|
|
4778
|
+
import_axios6.default,
|
|
4715
4779
|
BASE_PATH,
|
|
4716
4780
|
configuration
|
|
4717
4781
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -4729,7 +4793,7 @@ var AgentPoolApiFp = function(configuration) {
|
|
|
4729
4793
|
const localVarOperationServerBasePath = operationServerMap["AgentPoolApi.createAgentPool"]?.[localVarOperationServerIndex]?.url;
|
|
4730
4794
|
return (axios3, basePath) => createRequestFunction(
|
|
4731
4795
|
localVarAxiosArgs,
|
|
4732
|
-
|
|
4796
|
+
import_axios6.default,
|
|
4733
4797
|
BASE_PATH,
|
|
4734
4798
|
configuration
|
|
4735
4799
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -4750,7 +4814,7 @@ var AgentPoolApiFp = function(configuration) {
|
|
|
4750
4814
|
const localVarOperationServerBasePath = operationServerMap["AgentPoolApi.deleteAgentPool"]?.[localVarOperationServerIndex]?.url;
|
|
4751
4815
|
return (axios3, basePath) => createRequestFunction(
|
|
4752
4816
|
localVarAxiosArgs,
|
|
4753
|
-
|
|
4817
|
+
import_axios6.default,
|
|
4754
4818
|
BASE_PATH,
|
|
4755
4819
|
configuration
|
|
4756
4820
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -4771,7 +4835,7 @@ var AgentPoolApiFp = function(configuration) {
|
|
|
4771
4835
|
const localVarOperationServerBasePath = operationServerMap["AgentPoolApi.deleteAllProjectsFromAgentPool"]?.[localVarOperationServerIndex]?.url;
|
|
4772
4836
|
return (axios3, basePath) => createRequestFunction(
|
|
4773
4837
|
localVarAxiosArgs,
|
|
4774
|
-
|
|
4838
|
+
import_axios6.default,
|
|
4775
4839
|
BASE_PATH,
|
|
4776
4840
|
configuration
|
|
4777
4841
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -4794,7 +4858,7 @@ var AgentPoolApiFp = function(configuration) {
|
|
|
4794
4858
|
const localVarOperationServerBasePath = operationServerMap["AgentPoolApi.deleteProjectFromAgentPool"]?.[localVarOperationServerIndex]?.url;
|
|
4795
4859
|
return (axios3, basePath) => createRequestFunction(
|
|
4796
4860
|
localVarAxiosArgs,
|
|
4797
|
-
|
|
4861
|
+
import_axios6.default,
|
|
4798
4862
|
BASE_PATH,
|
|
4799
4863
|
configuration
|
|
4800
4864
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -4817,7 +4881,7 @@ var AgentPoolApiFp = function(configuration) {
|
|
|
4817
4881
|
const localVarOperationServerBasePath = operationServerMap["AgentPoolApi.generateAutomaticAgentAuthorizationTokens"]?.[localVarOperationServerIndex]?.url;
|
|
4818
4882
|
return (axios3, basePath) => createRequestFunction(
|
|
4819
4883
|
localVarAxiosArgs,
|
|
4820
|
-
|
|
4884
|
+
import_axios6.default,
|
|
4821
4885
|
BASE_PATH,
|
|
4822
4886
|
configuration
|
|
4823
4887
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -4840,7 +4904,7 @@ var AgentPoolApiFp = function(configuration) {
|
|
|
4840
4904
|
const localVarOperationServerBasePath = operationServerMap["AgentPoolApi.getAgentPoolOfAgentPool"]?.[localVarOperationServerIndex]?.url;
|
|
4841
4905
|
return (axios3, basePath) => createRequestFunction(
|
|
4842
4906
|
localVarAxiosArgs,
|
|
4843
|
-
|
|
4907
|
+
import_axios6.default,
|
|
4844
4908
|
BASE_PATH,
|
|
4845
4909
|
configuration
|
|
4846
4910
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -4863,7 +4927,7 @@ var AgentPoolApiFp = function(configuration) {
|
|
|
4863
4927
|
const localVarOperationServerBasePath = operationServerMap["AgentPoolApi.getAllAgentPools"]?.[localVarOperationServerIndex]?.url;
|
|
4864
4928
|
return (axios3, basePath) => createRequestFunction(
|
|
4865
4929
|
localVarAxiosArgs,
|
|
4866
|
-
|
|
4930
|
+
import_axios6.default,
|
|
4867
4931
|
BASE_PATH,
|
|
4868
4932
|
configuration
|
|
4869
4933
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -4888,7 +4952,7 @@ var AgentPoolApiFp = function(configuration) {
|
|
|
4888
4952
|
const localVarOperationServerBasePath = operationServerMap["AgentPoolApi.getAllAgentsFromAgentPool"]?.[localVarOperationServerIndex]?.url;
|
|
4889
4953
|
return (axios3, basePath) => createRequestFunction(
|
|
4890
4954
|
localVarAxiosArgs,
|
|
4891
|
-
|
|
4955
|
+
import_axios6.default,
|
|
4892
4956
|
BASE_PATH,
|
|
4893
4957
|
configuration
|
|
4894
4958
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -4911,7 +4975,7 @@ var AgentPoolApiFp = function(configuration) {
|
|
|
4911
4975
|
const localVarOperationServerBasePath = operationServerMap["AgentPoolApi.getAllProjectsFromAgentPool"]?.[localVarOperationServerIndex]?.url;
|
|
4912
4976
|
return (axios3, basePath) => createRequestFunction(
|
|
4913
4977
|
localVarAxiosArgs,
|
|
4914
|
-
|
|
4978
|
+
import_axios6.default,
|
|
4915
4979
|
BASE_PATH,
|
|
4916
4980
|
configuration
|
|
4917
4981
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -4934,7 +4998,7 @@ var AgentPoolApiFp = function(configuration) {
|
|
|
4934
4998
|
const localVarOperationServerBasePath = operationServerMap["AgentPoolApi.getFieldFromAgentPool"]?.[localVarOperationServerIndex]?.url;
|
|
4935
4999
|
return (axios3, basePath) => createRequestFunction(
|
|
4936
5000
|
localVarAxiosArgs,
|
|
4937
|
-
|
|
5001
|
+
import_axios6.default,
|
|
4938
5002
|
BASE_PATH,
|
|
4939
5003
|
configuration
|
|
4940
5004
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -4959,7 +5023,7 @@ var AgentPoolApiFp = function(configuration) {
|
|
|
4959
5023
|
const localVarOperationServerBasePath = operationServerMap["AgentPoolApi.setAgentPoolField"]?.[localVarOperationServerIndex]?.url;
|
|
4960
5024
|
return (axios3, basePath) => createRequestFunction(
|
|
4961
5025
|
localVarAxiosArgs,
|
|
4962
|
-
|
|
5026
|
+
import_axios6.default,
|
|
4963
5027
|
BASE_PATH,
|
|
4964
5028
|
configuration
|
|
4965
5029
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -4982,7 +5046,7 @@ var AgentPoolApiFp = function(configuration) {
|
|
|
4982
5046
|
const localVarOperationServerBasePath = operationServerMap["AgentPoolApi.setAgentPoolProjects"]?.[localVarOperationServerIndex]?.url;
|
|
4983
5047
|
return (axios3, basePath) => createRequestFunction(
|
|
4984
5048
|
localVarAxiosArgs,
|
|
4985
|
-
|
|
5049
|
+
import_axios6.default,
|
|
4986
5050
|
BASE_PATH,
|
|
4987
5051
|
configuration
|
|
4988
5052
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -5161,7 +5225,7 @@ var AgentPoolApi = class extends BaseAPI {
|
|
|
5161
5225
|
};
|
|
5162
5226
|
|
|
5163
5227
|
// src/teamcity-client/api/agent-type-api.ts
|
|
5164
|
-
var
|
|
5228
|
+
var import_axios7 = __toESM(require("axios"));
|
|
5165
5229
|
var AgentTypeApiAxiosParamCreator = function(configuration) {
|
|
5166
5230
|
return {
|
|
5167
5231
|
/**
|
|
@@ -5224,7 +5288,7 @@ var AgentTypeApiFp = function(configuration) {
|
|
|
5224
5288
|
const localVarOperationServerBasePath = operationServerMap["AgentTypeApi.getAgentType"]?.[localVarOperationServerIndex]?.url;
|
|
5225
5289
|
return (axios3, basePath) => createRequestFunction(
|
|
5226
5290
|
localVarAxiosArgs,
|
|
5227
|
-
|
|
5291
|
+
import_axios7.default,
|
|
5228
5292
|
BASE_PATH,
|
|
5229
5293
|
configuration
|
|
5230
5294
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -5247,7 +5311,7 @@ var AgentTypeApi = class extends BaseAPI {
|
|
|
5247
5311
|
};
|
|
5248
5312
|
|
|
5249
5313
|
// src/teamcity-client/api/audit-api.ts
|
|
5250
|
-
var
|
|
5314
|
+
var import_axios8 = __toESM(require("axios"));
|
|
5251
5315
|
var AuditApiAxiosParamCreator = function(configuration) {
|
|
5252
5316
|
return {
|
|
5253
5317
|
/**
|
|
@@ -5346,7 +5410,7 @@ var AuditApiFp = function(configuration) {
|
|
|
5346
5410
|
const localVarOperationServerBasePath = operationServerMap["AuditApi.getAllAuditEvents"]?.[localVarOperationServerIndex]?.url;
|
|
5347
5411
|
return (axios3, basePath) => createRequestFunction(
|
|
5348
5412
|
localVarAxiosArgs,
|
|
5349
|
-
|
|
5413
|
+
import_axios8.default,
|
|
5350
5414
|
BASE_PATH,
|
|
5351
5415
|
configuration
|
|
5352
5416
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -5369,7 +5433,7 @@ var AuditApiFp = function(configuration) {
|
|
|
5369
5433
|
const localVarOperationServerBasePath = operationServerMap["AuditApi.getAuditEvent"]?.[localVarOperationServerIndex]?.url;
|
|
5370
5434
|
return (axios3, basePath) => createRequestFunction(
|
|
5371
5435
|
localVarAxiosArgs,
|
|
5372
|
-
|
|
5436
|
+
import_axios8.default,
|
|
5373
5437
|
BASE_PATH,
|
|
5374
5438
|
configuration
|
|
5375
5439
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -5404,7 +5468,7 @@ var AuditApi = class extends BaseAPI {
|
|
|
5404
5468
|
};
|
|
5405
5469
|
|
|
5406
5470
|
// src/teamcity-client/api/avatar-api.ts
|
|
5407
|
-
var
|
|
5471
|
+
var import_axios9 = __toESM(require("axios"));
|
|
5408
5472
|
var AvatarApiAxiosParamCreator = function(configuration) {
|
|
5409
5473
|
return {
|
|
5410
5474
|
/**
|
|
@@ -5564,7 +5628,7 @@ var AvatarApiFp = function(configuration) {
|
|
|
5564
5628
|
const localVarOperationServerBasePath = operationServerMap["AvatarApi.deleteAvatar"]?.[localVarOperationServerIndex]?.url;
|
|
5565
5629
|
return (axios3, basePath) => createRequestFunction(
|
|
5566
5630
|
localVarAxiosArgs,
|
|
5567
|
-
|
|
5631
|
+
import_axios9.default,
|
|
5568
5632
|
BASE_PATH,
|
|
5569
5633
|
configuration
|
|
5570
5634
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -5587,7 +5651,7 @@ var AvatarApiFp = function(configuration) {
|
|
|
5587
5651
|
const localVarOperationServerBasePath = operationServerMap["AvatarApi.getAvatar"]?.[localVarOperationServerIndex]?.url;
|
|
5588
5652
|
return (axios3, basePath) => createRequestFunction(
|
|
5589
5653
|
localVarAxiosArgs,
|
|
5590
|
-
|
|
5654
|
+
import_axios9.default,
|
|
5591
5655
|
BASE_PATH,
|
|
5592
5656
|
configuration
|
|
5593
5657
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -5612,7 +5676,7 @@ var AvatarApiFp = function(configuration) {
|
|
|
5612
5676
|
const localVarOperationServerBasePath = operationServerMap["AvatarApi.getAvatarWithHash"]?.[localVarOperationServerIndex]?.url;
|
|
5613
5677
|
return (axios3, basePath) => createRequestFunction(
|
|
5614
5678
|
localVarAxiosArgs,
|
|
5615
|
-
|
|
5679
|
+
import_axios9.default,
|
|
5616
5680
|
BASE_PATH,
|
|
5617
5681
|
configuration
|
|
5618
5682
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -5635,7 +5699,7 @@ var AvatarApiFp = function(configuration) {
|
|
|
5635
5699
|
const localVarOperationServerBasePath = operationServerMap["AvatarApi.putAvatar"]?.[localVarOperationServerIndex]?.url;
|
|
5636
5700
|
return (axios3, basePath) => createRequestFunction(
|
|
5637
5701
|
localVarAxiosArgs,
|
|
5638
|
-
|
|
5702
|
+
import_axios9.default,
|
|
5639
5703
|
BASE_PATH,
|
|
5640
5704
|
configuration
|
|
5641
5705
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -5694,7 +5758,7 @@ var AvatarApi = class extends BaseAPI {
|
|
|
5694
5758
|
};
|
|
5695
5759
|
|
|
5696
5760
|
// src/teamcity-client/api/build-api.ts
|
|
5697
|
-
var
|
|
5761
|
+
var import_axios10 = __toESM(require("axios"));
|
|
5698
5762
|
var BuildApiAxiosParamCreator = function(configuration) {
|
|
5699
5763
|
return {
|
|
5700
5764
|
/**
|
|
@@ -7930,7 +7994,7 @@ var BuildApiFp = function(configuration) {
|
|
|
7930
7994
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.addBuildVcsLabel"]?.[localVarOperationServerIndex]?.url;
|
|
7931
7995
|
return (axios3, basePath) => createRequestFunction(
|
|
7932
7996
|
localVarAxiosArgs,
|
|
7933
|
-
|
|
7997
|
+
import_axios10.default,
|
|
7934
7998
|
BASE_PATH,
|
|
7935
7999
|
configuration
|
|
7936
8000
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -7955,7 +8019,7 @@ var BuildApiFp = function(configuration) {
|
|
|
7955
8019
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.addLogMessageToBuild"]?.[localVarOperationServerIndex]?.url;
|
|
7956
8020
|
return (axios3, basePath) => createRequestFunction(
|
|
7957
8021
|
localVarAxiosArgs,
|
|
7958
|
-
|
|
8022
|
+
import_axios10.default,
|
|
7959
8023
|
BASE_PATH,
|
|
7960
8024
|
configuration
|
|
7961
8025
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -7980,7 +8044,7 @@ var BuildApiFp = function(configuration) {
|
|
|
7980
8044
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.addProblemToBuild"]?.[localVarOperationServerIndex]?.url;
|
|
7981
8045
|
return (axios3, basePath) => createRequestFunction(
|
|
7982
8046
|
localVarAxiosArgs,
|
|
7983
|
-
|
|
8047
|
+
import_axios10.default,
|
|
7984
8048
|
BASE_PATH,
|
|
7985
8049
|
configuration
|
|
7986
8050
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8005,7 +8069,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8005
8069
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.addTagsToBuild"]?.[localVarOperationServerIndex]?.url;
|
|
8006
8070
|
return (axios3, basePath) => createRequestFunction(
|
|
8007
8071
|
localVarAxiosArgs,
|
|
8008
|
-
|
|
8072
|
+
import_axios10.default,
|
|
8009
8073
|
BASE_PATH,
|
|
8010
8074
|
configuration
|
|
8011
8075
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8030,7 +8094,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8030
8094
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.addTagsToMultipleBuilds"]?.[localVarOperationServerIndex]?.url;
|
|
8031
8095
|
return (axios3, basePath) => createRequestFunction(
|
|
8032
8096
|
localVarAxiosArgs,
|
|
8033
|
-
|
|
8097
|
+
import_axios10.default,
|
|
8034
8098
|
BASE_PATH,
|
|
8035
8099
|
configuration
|
|
8036
8100
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8055,7 +8119,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8055
8119
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.cancelBuild"]?.[localVarOperationServerIndex]?.url;
|
|
8056
8120
|
return (axios3, basePath) => createRequestFunction(
|
|
8057
8121
|
localVarAxiosArgs,
|
|
8058
|
-
|
|
8122
|
+
import_axios10.default,
|
|
8059
8123
|
BASE_PATH,
|
|
8060
8124
|
configuration
|
|
8061
8125
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8080,7 +8144,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8080
8144
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.cancelMultiple"]?.[localVarOperationServerIndex]?.url;
|
|
8081
8145
|
return (axios3, basePath) => createRequestFunction(
|
|
8082
8146
|
localVarAxiosArgs,
|
|
8083
|
-
|
|
8147
|
+
import_axios10.default,
|
|
8084
8148
|
BASE_PATH,
|
|
8085
8149
|
configuration
|
|
8086
8150
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8098,7 +8162,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8098
8162
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.deleteBuild"]?.[localVarOperationServerIndex]?.url;
|
|
8099
8163
|
return (axios3, basePath) => createRequestFunction(
|
|
8100
8164
|
localVarAxiosArgs,
|
|
8101
|
-
|
|
8165
|
+
import_axios10.default,
|
|
8102
8166
|
BASE_PATH,
|
|
8103
8167
|
configuration
|
|
8104
8168
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8119,7 +8183,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8119
8183
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.deleteBuildComment"]?.[localVarOperationServerIndex]?.url;
|
|
8120
8184
|
return (axios3, basePath) => createRequestFunction(
|
|
8121
8185
|
localVarAxiosArgs,
|
|
8122
|
-
|
|
8186
|
+
import_axios10.default,
|
|
8123
8187
|
BASE_PATH,
|
|
8124
8188
|
configuration
|
|
8125
8189
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8142,7 +8206,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8142
8206
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.deleteMultipleBuildComments"]?.[localVarOperationServerIndex]?.url;
|
|
8143
8207
|
return (axios3, basePath) => createRequestFunction(
|
|
8144
8208
|
localVarAxiosArgs,
|
|
8145
|
-
|
|
8209
|
+
import_axios10.default,
|
|
8146
8210
|
BASE_PATH,
|
|
8147
8211
|
configuration
|
|
8148
8212
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8165,7 +8229,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8165
8229
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.deleteMultipleBuilds"]?.[localVarOperationServerIndex]?.url;
|
|
8166
8230
|
return (axios3, basePath) => createRequestFunction(
|
|
8167
8231
|
localVarAxiosArgs,
|
|
8168
|
-
|
|
8232
|
+
import_axios10.default,
|
|
8169
8233
|
BASE_PATH,
|
|
8170
8234
|
configuration
|
|
8171
8235
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8192,7 +8256,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8192
8256
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.downloadFileOfBuild"]?.[localVarOperationServerIndex]?.url;
|
|
8193
8257
|
return (axios3, basePath) => createRequestFunction(
|
|
8194
8258
|
localVarAxiosArgs,
|
|
8195
|
-
|
|
8259
|
+
import_axios10.default,
|
|
8196
8260
|
BASE_PATH,
|
|
8197
8261
|
configuration
|
|
8198
8262
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8213,7 +8277,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8213
8277
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getAggregatedBuildStatus"]?.[localVarOperationServerIndex]?.url;
|
|
8214
8278
|
return (axios3, basePath) => createRequestFunction(
|
|
8215
8279
|
localVarAxiosArgs,
|
|
8216
|
-
|
|
8280
|
+
import_axios10.default,
|
|
8217
8281
|
BASE_PATH,
|
|
8218
8282
|
configuration
|
|
8219
8283
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8236,7 +8300,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8236
8300
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getAggregatedBuildStatusIcon"]?.[localVarOperationServerIndex]?.url;
|
|
8237
8301
|
return (axios3, basePath) => createRequestFunction(
|
|
8238
8302
|
localVarAxiosArgs,
|
|
8239
|
-
|
|
8303
|
+
import_axios10.default,
|
|
8240
8304
|
BASE_PATH,
|
|
8241
8305
|
configuration
|
|
8242
8306
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8259,7 +8323,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8259
8323
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getAllBuilds"]?.[localVarOperationServerIndex]?.url;
|
|
8260
8324
|
return (axios3, basePath) => createRequestFunction(
|
|
8261
8325
|
localVarAxiosArgs,
|
|
8262
|
-
|
|
8326
|
+
import_axios10.default,
|
|
8263
8327
|
BASE_PATH,
|
|
8264
8328
|
configuration
|
|
8265
8329
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8282,7 +8346,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8282
8346
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getArtifactDependencyChanges"]?.[localVarOperationServerIndex]?.url;
|
|
8283
8347
|
return (axios3, basePath) => createRequestFunction(
|
|
8284
8348
|
localVarAxiosArgs,
|
|
8285
|
-
|
|
8349
|
+
import_axios10.default,
|
|
8286
8350
|
BASE_PATH,
|
|
8287
8351
|
configuration
|
|
8288
8352
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8303,7 +8367,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8303
8367
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getArtifactsDirectory"]?.[localVarOperationServerIndex]?.url;
|
|
8304
8368
|
return (axios3, basePath) => createRequestFunction(
|
|
8305
8369
|
localVarAxiosArgs,
|
|
8306
|
-
|
|
8370
|
+
import_axios10.default,
|
|
8307
8371
|
BASE_PATH,
|
|
8308
8372
|
configuration
|
|
8309
8373
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8326,7 +8390,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8326
8390
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuild"]?.[localVarOperationServerIndex]?.url;
|
|
8327
8391
|
return (axios3, basePath) => createRequestFunction(
|
|
8328
8392
|
localVarAxiosArgs,
|
|
8329
|
-
|
|
8393
|
+
import_axios10.default,
|
|
8330
8394
|
BASE_PATH,
|
|
8331
8395
|
configuration
|
|
8332
8396
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8349,7 +8413,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8349
8413
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildActualParameters"]?.[localVarOperationServerIndex]?.url;
|
|
8350
8414
|
return (axios3, basePath) => createRequestFunction(
|
|
8351
8415
|
localVarAxiosArgs,
|
|
8352
|
-
|
|
8416
|
+
import_axios10.default,
|
|
8353
8417
|
BASE_PATH,
|
|
8354
8418
|
configuration
|
|
8355
8419
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8372,7 +8436,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8372
8436
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildField"]?.[localVarOperationServerIndex]?.url;
|
|
8373
8437
|
return (axios3, basePath) => createRequestFunction(
|
|
8374
8438
|
localVarAxiosArgs,
|
|
8375
|
-
|
|
8439
|
+
import_axios10.default,
|
|
8376
8440
|
BASE_PATH,
|
|
8377
8441
|
configuration
|
|
8378
8442
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8393,7 +8457,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8393
8457
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildFinishDate"]?.[localVarOperationServerIndex]?.url;
|
|
8394
8458
|
return (axios3, basePath) => createRequestFunction(
|
|
8395
8459
|
localVarAxiosArgs,
|
|
8396
|
-
|
|
8460
|
+
import_axios10.default,
|
|
8397
8461
|
BASE_PATH,
|
|
8398
8462
|
configuration
|
|
8399
8463
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8414,7 +8478,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8414
8478
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildNumber"]?.[localVarOperationServerIndex]?.url;
|
|
8415
8479
|
return (axios3, basePath) => createRequestFunction(
|
|
8416
8480
|
localVarAxiosArgs,
|
|
8417
|
-
|
|
8481
|
+
import_axios10.default,
|
|
8418
8482
|
BASE_PATH,
|
|
8419
8483
|
configuration
|
|
8420
8484
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8437,7 +8501,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8437
8501
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildOutputParameters"]?.[localVarOperationServerIndex]?.url;
|
|
8438
8502
|
return (axios3, basePath) => createRequestFunction(
|
|
8439
8503
|
localVarAxiosArgs,
|
|
8440
|
-
|
|
8504
|
+
import_axios10.default,
|
|
8441
8505
|
BASE_PATH,
|
|
8442
8506
|
configuration
|
|
8443
8507
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8460,7 +8524,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8460
8524
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildOutputParametersOfBuild"]?.[localVarOperationServerIndex]?.url;
|
|
8461
8525
|
return (axios3, basePath) => createRequestFunction(
|
|
8462
8526
|
localVarAxiosArgs,
|
|
8463
|
-
|
|
8527
|
+
import_axios10.default,
|
|
8464
8528
|
BASE_PATH,
|
|
8465
8529
|
configuration
|
|
8466
8530
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8483,7 +8547,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8483
8547
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildPinInfo"]?.[localVarOperationServerIndex]?.url;
|
|
8484
8548
|
return (axios3, basePath) => createRequestFunction(
|
|
8485
8549
|
localVarAxiosArgs,
|
|
8486
|
-
|
|
8550
|
+
import_axios10.default,
|
|
8487
8551
|
BASE_PATH,
|
|
8488
8552
|
configuration
|
|
8489
8553
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8506,7 +8570,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8506
8570
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildProblems"]?.[localVarOperationServerIndex]?.url;
|
|
8507
8571
|
return (axios3, basePath) => createRequestFunction(
|
|
8508
8572
|
localVarAxiosArgs,
|
|
8509
|
-
|
|
8573
|
+
import_axios10.default,
|
|
8510
8574
|
BASE_PATH,
|
|
8511
8575
|
configuration
|
|
8512
8576
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8529,7 +8593,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8529
8593
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildRelatedIssues"]?.[localVarOperationServerIndex]?.url;
|
|
8530
8594
|
return (axios3, basePath) => createRequestFunction(
|
|
8531
8595
|
localVarAxiosArgs,
|
|
8532
|
-
|
|
8596
|
+
import_axios10.default,
|
|
8533
8597
|
BASE_PATH,
|
|
8534
8598
|
configuration
|
|
8535
8599
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8552,7 +8616,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8552
8616
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildResolved"]?.[localVarOperationServerIndex]?.url;
|
|
8553
8617
|
return (axios3, basePath) => createRequestFunction(
|
|
8554
8618
|
localVarAxiosArgs,
|
|
8555
|
-
|
|
8619
|
+
import_axios10.default,
|
|
8556
8620
|
BASE_PATH,
|
|
8557
8621
|
configuration
|
|
8558
8622
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8575,7 +8639,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8575
8639
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildResultingProperties"]?.[localVarOperationServerIndex]?.url;
|
|
8576
8640
|
return (axios3, basePath) => createRequestFunction(
|
|
8577
8641
|
localVarAxiosArgs,
|
|
8578
|
-
|
|
8642
|
+
import_axios10.default,
|
|
8579
8643
|
BASE_PATH,
|
|
8580
8644
|
configuration
|
|
8581
8645
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8598,7 +8662,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8598
8662
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildSourceFile"]?.[localVarOperationServerIndex]?.url;
|
|
8599
8663
|
return (axios3, basePath) => createRequestFunction(
|
|
8600
8664
|
localVarAxiosArgs,
|
|
8601
|
-
|
|
8665
|
+
import_axios10.default,
|
|
8602
8666
|
BASE_PATH,
|
|
8603
8667
|
configuration
|
|
8604
8668
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8621,7 +8685,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8621
8685
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildStatisticValue"]?.[localVarOperationServerIndex]?.url;
|
|
8622
8686
|
return (axios3, basePath) => createRequestFunction(
|
|
8623
8687
|
localVarAxiosArgs,
|
|
8624
|
-
|
|
8688
|
+
import_axios10.default,
|
|
8625
8689
|
BASE_PATH,
|
|
8626
8690
|
configuration
|
|
8627
8691
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8644,7 +8708,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8644
8708
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildStatisticValues"]?.[localVarOperationServerIndex]?.url;
|
|
8645
8709
|
return (axios3, basePath) => createRequestFunction(
|
|
8646
8710
|
localVarAxiosArgs,
|
|
8647
|
-
|
|
8711
|
+
import_axios10.default,
|
|
8648
8712
|
BASE_PATH,
|
|
8649
8713
|
configuration
|
|
8650
8714
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8665,7 +8729,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8665
8729
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildStatus"]?.[localVarOperationServerIndex]?.url;
|
|
8666
8730
|
return (axios3, basePath) => createRequestFunction(
|
|
8667
8731
|
localVarAxiosArgs,
|
|
8668
|
-
|
|
8732
|
+
import_axios10.default,
|
|
8669
8733
|
BASE_PATH,
|
|
8670
8734
|
configuration
|
|
8671
8735
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8688,7 +8752,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8688
8752
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildStatusIcon"]?.[localVarOperationServerIndex]?.url;
|
|
8689
8753
|
return (axios3, basePath) => createRequestFunction(
|
|
8690
8754
|
localVarAxiosArgs,
|
|
8691
|
-
|
|
8755
|
+
import_axios10.default,
|
|
8692
8756
|
BASE_PATH,
|
|
8693
8757
|
configuration
|
|
8694
8758
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8709,7 +8773,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8709
8773
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildStatusText"]?.[localVarOperationServerIndex]?.url;
|
|
8710
8774
|
return (axios3, basePath) => createRequestFunction(
|
|
8711
8775
|
localVarAxiosArgs,
|
|
8712
|
-
|
|
8776
|
+
import_axios10.default,
|
|
8713
8777
|
BASE_PATH,
|
|
8714
8778
|
configuration
|
|
8715
8779
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8734,7 +8798,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8734
8798
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildTags"]?.[localVarOperationServerIndex]?.url;
|
|
8735
8799
|
return (axios3, basePath) => createRequestFunction(
|
|
8736
8800
|
localVarAxiosArgs,
|
|
8737
|
-
|
|
8801
|
+
import_axios10.default,
|
|
8738
8802
|
BASE_PATH,
|
|
8739
8803
|
configuration
|
|
8740
8804
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8757,7 +8821,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8757
8821
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildTestOccurrences"]?.[localVarOperationServerIndex]?.url;
|
|
8758
8822
|
return (axios3, basePath) => createRequestFunction(
|
|
8759
8823
|
localVarAxiosArgs,
|
|
8760
|
-
|
|
8824
|
+
import_axios10.default,
|
|
8761
8825
|
BASE_PATH,
|
|
8762
8826
|
configuration
|
|
8763
8827
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8780,7 +8844,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8780
8844
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getBuildVcsLabels"]?.[localVarOperationServerIndex]?.url;
|
|
8781
8845
|
return (axios3, basePath) => createRequestFunction(
|
|
8782
8846
|
localVarAxiosArgs,
|
|
8783
|
-
|
|
8847
|
+
import_axios10.default,
|
|
8784
8848
|
BASE_PATH,
|
|
8785
8849
|
configuration
|
|
8786
8850
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8803,7 +8867,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8803
8867
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getCanceledInfo"]?.[localVarOperationServerIndex]?.url;
|
|
8804
8868
|
return (axios3, basePath) => createRequestFunction(
|
|
8805
8869
|
localVarAxiosArgs,
|
|
8806
|
-
|
|
8870
|
+
import_axios10.default,
|
|
8807
8871
|
BASE_PATH,
|
|
8808
8872
|
configuration
|
|
8809
8873
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8832,7 +8896,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8832
8896
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getFileMetadataOfBuild"]?.[localVarOperationServerIndex]?.url;
|
|
8833
8897
|
return (axios3, basePath) => createRequestFunction(
|
|
8834
8898
|
localVarAxiosArgs,
|
|
8835
|
-
|
|
8899
|
+
import_axios10.default,
|
|
8836
8900
|
BASE_PATH,
|
|
8837
8901
|
configuration
|
|
8838
8902
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8865,7 +8929,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8865
8929
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getFilesListForSubpathOfBuild"]?.[localVarOperationServerIndex]?.url;
|
|
8866
8930
|
return (axios3, basePath2) => createRequestFunction(
|
|
8867
8931
|
localVarAxiosArgs,
|
|
8868
|
-
|
|
8932
|
+
import_axios10.default,
|
|
8869
8933
|
BASE_PATH,
|
|
8870
8934
|
configuration
|
|
8871
8935
|
)(axios3, localVarOperationServerBasePath || basePath2);
|
|
@@ -8896,7 +8960,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8896
8960
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getFilesListOfBuild"]?.[localVarOperationServerIndex]?.url;
|
|
8897
8961
|
return (axios3, basePath2) => createRequestFunction(
|
|
8898
8962
|
localVarAxiosArgs,
|
|
8899
|
-
|
|
8963
|
+
import_axios10.default,
|
|
8900
8964
|
BASE_PATH,
|
|
8901
8965
|
configuration
|
|
8902
8966
|
)(axios3, localVarOperationServerBasePath || basePath2);
|
|
@@ -8919,7 +8983,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8919
8983
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getMultipleBuilds"]?.[localVarOperationServerIndex]?.url;
|
|
8920
8984
|
return (axios3, basePath) => createRequestFunction(
|
|
8921
8985
|
localVarAxiosArgs,
|
|
8922
|
-
|
|
8986
|
+
import_axios10.default,
|
|
8923
8987
|
BASE_PATH,
|
|
8924
8988
|
configuration
|
|
8925
8989
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -8952,7 +9016,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8952
9016
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.getZippedFileOfBuild"]?.[localVarOperationServerIndex]?.url;
|
|
8953
9017
|
return (axios3, basePath2) => createRequestFunction(
|
|
8954
9018
|
localVarAxiosArgs,
|
|
8955
|
-
|
|
9019
|
+
import_axios10.default,
|
|
8956
9020
|
BASE_PATH,
|
|
8957
9021
|
configuration
|
|
8958
9022
|
)(axios3, localVarOperationServerBasePath || basePath2);
|
|
@@ -8977,7 +9041,7 @@ var BuildApiFp = function(configuration) {
|
|
|
8977
9041
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.markBuildAsRunning"]?.[localVarOperationServerIndex]?.url;
|
|
8978
9042
|
return (axios3, basePath) => createRequestFunction(
|
|
8979
9043
|
localVarAxiosArgs,
|
|
8980
|
-
|
|
9044
|
+
import_axios10.default,
|
|
8981
9045
|
BASE_PATH,
|
|
8982
9046
|
configuration
|
|
8983
9047
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -9002,7 +9066,7 @@ var BuildApiFp = function(configuration) {
|
|
|
9002
9066
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.pinMultipleBuilds"]?.[localVarOperationServerIndex]?.url;
|
|
9003
9067
|
return (axios3, basePath) => createRequestFunction(
|
|
9004
9068
|
localVarAxiosArgs,
|
|
9005
|
-
|
|
9069
|
+
import_axios10.default,
|
|
9006
9070
|
BASE_PATH,
|
|
9007
9071
|
configuration
|
|
9008
9072
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -9027,7 +9091,7 @@ var BuildApiFp = function(configuration) {
|
|
|
9027
9091
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.removeMultipleBuildTags"]?.[localVarOperationServerIndex]?.url;
|
|
9028
9092
|
return (axios3, basePath) => createRequestFunction(
|
|
9029
9093
|
localVarAxiosArgs,
|
|
9030
|
-
|
|
9094
|
+
import_axios10.default,
|
|
9031
9095
|
BASE_PATH,
|
|
9032
9096
|
configuration
|
|
9033
9097
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -9048,7 +9112,7 @@ var BuildApiFp = function(configuration) {
|
|
|
9048
9112
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.resetBuildFinishProperties"]?.[localVarOperationServerIndex]?.url;
|
|
9049
9113
|
return (axios3, basePath) => createRequestFunction(
|
|
9050
9114
|
localVarAxiosArgs,
|
|
9051
|
-
|
|
9115
|
+
import_axios10.default,
|
|
9052
9116
|
BASE_PATH,
|
|
9053
9117
|
configuration
|
|
9054
9118
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -9071,7 +9135,7 @@ var BuildApiFp = function(configuration) {
|
|
|
9071
9135
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.setBuildComment"]?.[localVarOperationServerIndex]?.url;
|
|
9072
9136
|
return (axios3, basePath) => createRequestFunction(
|
|
9073
9137
|
localVarAxiosArgs,
|
|
9074
|
-
|
|
9138
|
+
import_axios10.default,
|
|
9075
9139
|
BASE_PATH,
|
|
9076
9140
|
configuration
|
|
9077
9141
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -9094,7 +9158,7 @@ var BuildApiFp = function(configuration) {
|
|
|
9094
9158
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.setBuildFinishDate"]?.[localVarOperationServerIndex]?.url;
|
|
9095
9159
|
return (axios3, basePath) => createRequestFunction(
|
|
9096
9160
|
localVarAxiosArgs,
|
|
9097
|
-
|
|
9161
|
+
import_axios10.default,
|
|
9098
9162
|
BASE_PATH,
|
|
9099
9163
|
configuration
|
|
9100
9164
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -9117,7 +9181,7 @@ var BuildApiFp = function(configuration) {
|
|
|
9117
9181
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.setBuildNumber"]?.[localVarOperationServerIndex]?.url;
|
|
9118
9182
|
return (axios3, basePath) => createRequestFunction(
|
|
9119
9183
|
localVarAxiosArgs,
|
|
9120
|
-
|
|
9184
|
+
import_axios10.default,
|
|
9121
9185
|
BASE_PATH,
|
|
9122
9186
|
configuration
|
|
9123
9187
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -9142,7 +9206,7 @@ var BuildApiFp = function(configuration) {
|
|
|
9142
9206
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.setBuildPinInfo"]?.[localVarOperationServerIndex]?.url;
|
|
9143
9207
|
return (axios3, basePath) => createRequestFunction(
|
|
9144
9208
|
localVarAxiosArgs,
|
|
9145
|
-
|
|
9209
|
+
import_axios10.default,
|
|
9146
9210
|
BASE_PATH,
|
|
9147
9211
|
configuration
|
|
9148
9212
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -9167,7 +9231,7 @@ var BuildApiFp = function(configuration) {
|
|
|
9167
9231
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.setBuildStatus"]?.[localVarOperationServerIndex]?.url;
|
|
9168
9232
|
return (axios3, basePath) => createRequestFunction(
|
|
9169
9233
|
localVarAxiosArgs,
|
|
9170
|
-
|
|
9234
|
+
import_axios10.default,
|
|
9171
9235
|
BASE_PATH,
|
|
9172
9236
|
configuration
|
|
9173
9237
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -9190,7 +9254,7 @@ var BuildApiFp = function(configuration) {
|
|
|
9190
9254
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.setBuildStatusText"]?.[localVarOperationServerIndex]?.url;
|
|
9191
9255
|
return (axios3, basePath) => createRequestFunction(
|
|
9192
9256
|
localVarAxiosArgs,
|
|
9193
|
-
|
|
9257
|
+
import_axios10.default,
|
|
9194
9258
|
BASE_PATH,
|
|
9195
9259
|
configuration
|
|
9196
9260
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -9217,7 +9281,7 @@ var BuildApiFp = function(configuration) {
|
|
|
9217
9281
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.setBuildTags"]?.[localVarOperationServerIndex]?.url;
|
|
9218
9282
|
return (axios3, basePath) => createRequestFunction(
|
|
9219
9283
|
localVarAxiosArgs,
|
|
9220
|
-
|
|
9284
|
+
import_axios10.default,
|
|
9221
9285
|
BASE_PATH,
|
|
9222
9286
|
configuration
|
|
9223
9287
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -9238,7 +9302,7 @@ var BuildApiFp = function(configuration) {
|
|
|
9238
9302
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.setFinishedTime"]?.[localVarOperationServerIndex]?.url;
|
|
9239
9303
|
return (axios3, basePath) => createRequestFunction(
|
|
9240
9304
|
localVarAxiosArgs,
|
|
9241
|
-
|
|
9305
|
+
import_axios10.default,
|
|
9242
9306
|
BASE_PATH,
|
|
9243
9307
|
configuration
|
|
9244
9308
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -9263,7 +9327,7 @@ var BuildApiFp = function(configuration) {
|
|
|
9263
9327
|
const localVarOperationServerBasePath = operationServerMap["BuildApi.setMultipleBuildComments"]?.[localVarOperationServerIndex]?.url;
|
|
9264
9328
|
return (axios3, basePath) => createRequestFunction(
|
|
9265
9329
|
localVarAxiosArgs,
|
|
9266
|
-
|
|
9330
|
+
import_axios10.default,
|
|
9267
9331
|
BASE_PATH,
|
|
9268
9332
|
configuration
|
|
9269
9333
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -10010,7 +10074,7 @@ var BuildApi = class extends BaseAPI {
|
|
|
10010
10074
|
};
|
|
10011
10075
|
|
|
10012
10076
|
// src/teamcity-client/api/build-queue-api.ts
|
|
10013
|
-
var
|
|
10077
|
+
var import_axios11 = __toESM(require("axios"));
|
|
10014
10078
|
var BuildQueueApiAxiosParamCreator = function(configuration) {
|
|
10015
10079
|
return {
|
|
10016
10080
|
/**
|
|
@@ -10580,7 +10644,7 @@ var BuildQueueApiFp = function(configuration) {
|
|
|
10580
10644
|
const localVarOperationServerBasePath = operationServerMap["BuildQueueApi.addBuildToQueue"]?.[localVarOperationServerIndex]?.url;
|
|
10581
10645
|
return (axios3, basePath) => createRequestFunction(
|
|
10582
10646
|
localVarAxiosArgs,
|
|
10583
|
-
|
|
10647
|
+
import_axios11.default,
|
|
10584
10648
|
BASE_PATH,
|
|
10585
10649
|
configuration
|
|
10586
10650
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -10603,7 +10667,7 @@ var BuildQueueApiFp = function(configuration) {
|
|
|
10603
10667
|
const localVarOperationServerBasePath = operationServerMap["BuildQueueApi.addTagsToBuildOfBuildQueue"]?.[localVarOperationServerIndex]?.url;
|
|
10604
10668
|
return (axios3, basePath) => createRequestFunction(
|
|
10605
10669
|
localVarAxiosArgs,
|
|
10606
|
-
|
|
10670
|
+
import_axios11.default,
|
|
10607
10671
|
BASE_PATH,
|
|
10608
10672
|
configuration
|
|
10609
10673
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -10630,7 +10694,7 @@ var BuildQueueApiFp = function(configuration) {
|
|
|
10630
10694
|
const localVarOperationServerBasePath = operationServerMap["BuildQueueApi.approveQueuedBuild"]?.[localVarOperationServerIndex]?.url;
|
|
10631
10695
|
return (axios3, basePath) => createRequestFunction(
|
|
10632
10696
|
localVarAxiosArgs,
|
|
10633
|
-
|
|
10697
|
+
import_axios11.default,
|
|
10634
10698
|
BASE_PATH,
|
|
10635
10699
|
configuration
|
|
10636
10700
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -10653,7 +10717,7 @@ var BuildQueueApiFp = function(configuration) {
|
|
|
10653
10717
|
const localVarOperationServerBasePath = operationServerMap["BuildQueueApi.cancelQueuedBuild"]?.[localVarOperationServerIndex]?.url;
|
|
10654
10718
|
return (axios3, basePath) => createRequestFunction(
|
|
10655
10719
|
localVarAxiosArgs,
|
|
10656
|
-
|
|
10720
|
+
import_axios11.default,
|
|
10657
10721
|
BASE_PATH,
|
|
10658
10722
|
configuration
|
|
10659
10723
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -10676,7 +10740,7 @@ var BuildQueueApiFp = function(configuration) {
|
|
|
10676
10740
|
const localVarOperationServerBasePath = operationServerMap["BuildQueueApi.deleteAllQueuedBuilds"]?.[localVarOperationServerIndex]?.url;
|
|
10677
10741
|
return (axios3, basePath) => createRequestFunction(
|
|
10678
10742
|
localVarAxiosArgs,
|
|
10679
|
-
|
|
10743
|
+
import_axios11.default,
|
|
10680
10744
|
BASE_PATH,
|
|
10681
10745
|
configuration
|
|
10682
10746
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -10697,7 +10761,7 @@ var BuildQueueApiFp = function(configuration) {
|
|
|
10697
10761
|
const localVarOperationServerBasePath = operationServerMap["BuildQueueApi.deleteQueuedBuild"]?.[localVarOperationServerIndex]?.url;
|
|
10698
10762
|
return (axios3, basePath) => createRequestFunction(
|
|
10699
10763
|
localVarAxiosArgs,
|
|
10700
|
-
|
|
10764
|
+
import_axios11.default,
|
|
10701
10765
|
BASE_PATH,
|
|
10702
10766
|
configuration
|
|
10703
10767
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -10720,7 +10784,7 @@ var BuildQueueApiFp = function(configuration) {
|
|
|
10720
10784
|
const localVarOperationServerBasePath = operationServerMap["BuildQueueApi.getAllQueuedBuilds"]?.[localVarOperationServerIndex]?.url;
|
|
10721
10785
|
return (axios3, basePath) => createRequestFunction(
|
|
10722
10786
|
localVarAxiosArgs,
|
|
10723
|
-
|
|
10787
|
+
import_axios11.default,
|
|
10724
10788
|
BASE_PATH,
|
|
10725
10789
|
configuration
|
|
10726
10790
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -10743,7 +10807,7 @@ var BuildQueueApiFp = function(configuration) {
|
|
|
10743
10807
|
const localVarOperationServerBasePath = operationServerMap["BuildQueueApi.getApprovalInfo"]?.[localVarOperationServerIndex]?.url;
|
|
10744
10808
|
return (axios3, basePath) => createRequestFunction(
|
|
10745
10809
|
localVarAxiosArgs,
|
|
10746
|
-
|
|
10810
|
+
import_axios11.default,
|
|
10747
10811
|
BASE_PATH,
|
|
10748
10812
|
configuration
|
|
10749
10813
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -10766,7 +10830,7 @@ var BuildQueueApiFp = function(configuration) {
|
|
|
10766
10830
|
const localVarOperationServerBasePath = operationServerMap["BuildQueueApi.getCompatibleAgentsForBuild"]?.[localVarOperationServerIndex]?.url;
|
|
10767
10831
|
return (axios3, basePath) => createRequestFunction(
|
|
10768
10832
|
localVarAxiosArgs,
|
|
10769
|
-
|
|
10833
|
+
import_axios11.default,
|
|
10770
10834
|
BASE_PATH,
|
|
10771
10835
|
configuration
|
|
10772
10836
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -10789,7 +10853,7 @@ var BuildQueueApiFp = function(configuration) {
|
|
|
10789
10853
|
const localVarOperationServerBasePath = operationServerMap["BuildQueueApi.getQueuedBuild"]?.[localVarOperationServerIndex]?.url;
|
|
10790
10854
|
return (axios3, basePath) => createRequestFunction(
|
|
10791
10855
|
localVarAxiosArgs,
|
|
10792
|
-
|
|
10856
|
+
import_axios11.default,
|
|
10793
10857
|
BASE_PATH,
|
|
10794
10858
|
configuration
|
|
10795
10859
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -10812,7 +10876,7 @@ var BuildQueueApiFp = function(configuration) {
|
|
|
10812
10876
|
const localVarOperationServerBasePath = operationServerMap["BuildQueueApi.getQueuedBuildPosition"]?.[localVarOperationServerIndex]?.url;
|
|
10813
10877
|
return (axios3, basePath) => createRequestFunction(
|
|
10814
10878
|
localVarAxiosArgs,
|
|
10815
|
-
|
|
10879
|
+
import_axios11.default,
|
|
10816
10880
|
BASE_PATH,
|
|
10817
10881
|
configuration
|
|
10818
10882
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -10837,7 +10901,7 @@ var BuildQueueApiFp = function(configuration) {
|
|
|
10837
10901
|
const localVarOperationServerBasePath = operationServerMap["BuildQueueApi.getQueuedBuildTags"]?.[localVarOperationServerIndex]?.url;
|
|
10838
10902
|
return (axios3, basePath) => createRequestFunction(
|
|
10839
10903
|
localVarAxiosArgs,
|
|
10840
|
-
|
|
10904
|
+
import_axios11.default,
|
|
10841
10905
|
BASE_PATH,
|
|
10842
10906
|
configuration
|
|
10843
10907
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -10862,7 +10926,7 @@ var BuildQueueApiFp = function(configuration) {
|
|
|
10862
10926
|
const localVarOperationServerBasePath = operationServerMap["BuildQueueApi.setQueuedBuildPosition"]?.[localVarOperationServerIndex]?.url;
|
|
10863
10927
|
return (axios3, basePath) => createRequestFunction(
|
|
10864
10928
|
localVarAxiosArgs,
|
|
10865
|
-
|
|
10929
|
+
import_axios11.default,
|
|
10866
10930
|
BASE_PATH,
|
|
10867
10931
|
configuration
|
|
10868
10932
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -10885,7 +10949,7 @@ var BuildQueueApiFp = function(configuration) {
|
|
|
10885
10949
|
const localVarOperationServerBasePath = operationServerMap["BuildQueueApi.setQueuedBuildsOrder"]?.[localVarOperationServerIndex]?.url;
|
|
10886
10950
|
return (axios3, basePath) => createRequestFunction(
|
|
10887
10951
|
localVarAxiosArgs,
|
|
10888
|
-
|
|
10952
|
+
import_axios11.default,
|
|
10889
10953
|
BASE_PATH,
|
|
10890
10954
|
configuration
|
|
10891
10955
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -11067,7 +11131,7 @@ var BuildQueueApi = class extends BaseAPI {
|
|
|
11067
11131
|
};
|
|
11068
11132
|
|
|
11069
11133
|
// src/teamcity-client/api/build-type-api.ts
|
|
11070
|
-
var
|
|
11134
|
+
var import_axios12 = __toESM(require("axios"));
|
|
11071
11135
|
var BuildTypeApiAxiosParamCreator = function(configuration) {
|
|
11072
11136
|
return {
|
|
11073
11137
|
/**
|
|
@@ -15337,7 +15401,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15337
15401
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.addAgentRequirementToBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15338
15402
|
return (axios3, basePath) => createRequestFunction(
|
|
15339
15403
|
localVarAxiosArgs,
|
|
15340
|
-
|
|
15404
|
+
import_axios12.default,
|
|
15341
15405
|
BASE_PATH,
|
|
15342
15406
|
configuration
|
|
15343
15407
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15362,7 +15426,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15362
15426
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.addArtifactDependencyToBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15363
15427
|
return (axios3, basePath) => createRequestFunction(
|
|
15364
15428
|
localVarAxiosArgs,
|
|
15365
|
-
|
|
15429
|
+
import_axios12.default,
|
|
15366
15430
|
BASE_PATH,
|
|
15367
15431
|
configuration
|
|
15368
15432
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15387,7 +15451,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15387
15451
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.addBuildFeatureToBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15388
15452
|
return (axios3, basePath) => createRequestFunction(
|
|
15389
15453
|
localVarAxiosArgs,
|
|
15390
|
-
|
|
15454
|
+
import_axios12.default,
|
|
15391
15455
|
BASE_PATH,
|
|
15392
15456
|
configuration
|
|
15393
15457
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15412,7 +15476,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15412
15476
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.addBuildStepToBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15413
15477
|
return (axios3, basePath) => createRequestFunction(
|
|
15414
15478
|
localVarAxiosArgs,
|
|
15415
|
-
|
|
15479
|
+
import_axios12.default,
|
|
15416
15480
|
BASE_PATH,
|
|
15417
15481
|
configuration
|
|
15418
15482
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15439,7 +15503,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15439
15503
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.addBuildTemplate"]?.[localVarOperationServerIndex]?.url;
|
|
15440
15504
|
return (axios3, basePath) => createRequestFunction(
|
|
15441
15505
|
localVarAxiosArgs,
|
|
15442
|
-
|
|
15506
|
+
import_axios12.default,
|
|
15443
15507
|
BASE_PATH,
|
|
15444
15508
|
configuration
|
|
15445
15509
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15466,7 +15530,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15466
15530
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.addParameterToBuildFeature"]?.[localVarOperationServerIndex]?.url;
|
|
15467
15531
|
return (axios3, basePath) => createRequestFunction(
|
|
15468
15532
|
localVarAxiosArgs,
|
|
15469
|
-
|
|
15533
|
+
import_axios12.default,
|
|
15470
15534
|
BASE_PATH,
|
|
15471
15535
|
configuration
|
|
15472
15536
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15493,7 +15557,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15493
15557
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.addParameterToBuildStep"]?.[localVarOperationServerIndex]?.url;
|
|
15494
15558
|
return (axios3, basePath) => createRequestFunction(
|
|
15495
15559
|
localVarAxiosArgs,
|
|
15496
|
-
|
|
15560
|
+
import_axios12.default,
|
|
15497
15561
|
BASE_PATH,
|
|
15498
15562
|
configuration
|
|
15499
15563
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15518,7 +15582,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15518
15582
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.addSnapshotDependencyToBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15519
15583
|
return (axios3, basePath) => createRequestFunction(
|
|
15520
15584
|
localVarAxiosArgs,
|
|
15521
|
-
|
|
15585
|
+
import_axios12.default,
|
|
15522
15586
|
BASE_PATH,
|
|
15523
15587
|
configuration
|
|
15524
15588
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15543,7 +15607,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15543
15607
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.addTriggerToBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15544
15608
|
return (axios3, basePath) => createRequestFunction(
|
|
15545
15609
|
localVarAxiosArgs,
|
|
15546
|
-
|
|
15610
|
+
import_axios12.default,
|
|
15547
15611
|
BASE_PATH,
|
|
15548
15612
|
configuration
|
|
15549
15613
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15568,7 +15632,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15568
15632
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.addVcsRootToBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15569
15633
|
return (axios3, basePath) => createRequestFunction(
|
|
15570
15634
|
localVarAxiosArgs,
|
|
15571
|
-
|
|
15635
|
+
import_axios12.default,
|
|
15572
15636
|
BASE_PATH,
|
|
15573
15637
|
configuration
|
|
15574
15638
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15593,7 +15657,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15593
15657
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.createBuildParameterOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15594
15658
|
return (axios3, basePath) => createRequestFunction(
|
|
15595
15659
|
localVarAxiosArgs,
|
|
15596
|
-
|
|
15660
|
+
import_axios12.default,
|
|
15597
15661
|
BASE_PATH,
|
|
15598
15662
|
configuration
|
|
15599
15663
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15618,7 +15682,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15618
15682
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.createBuildParameterOfBuildType_1"]?.[localVarOperationServerIndex]?.url;
|
|
15619
15683
|
return (axios3, basePath) => createRequestFunction(
|
|
15620
15684
|
localVarAxiosArgs,
|
|
15621
|
-
|
|
15685
|
+
import_axios12.default,
|
|
15622
15686
|
BASE_PATH,
|
|
15623
15687
|
configuration
|
|
15624
15688
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15641,7 +15705,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15641
15705
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.createBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15642
15706
|
return (axios3, basePath) => createRequestFunction(
|
|
15643
15707
|
localVarAxiosArgs,
|
|
15644
|
-
|
|
15708
|
+
import_axios12.default,
|
|
15645
15709
|
BASE_PATH,
|
|
15646
15710
|
configuration
|
|
15647
15711
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15664,7 +15728,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15664
15728
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.deleteAgentRequirement"]?.[localVarOperationServerIndex]?.url;
|
|
15665
15729
|
return (axios3, basePath) => createRequestFunction(
|
|
15666
15730
|
localVarAxiosArgs,
|
|
15667
|
-
|
|
15731
|
+
import_axios12.default,
|
|
15668
15732
|
BASE_PATH,
|
|
15669
15733
|
configuration
|
|
15670
15734
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15687,7 +15751,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15687
15751
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.deleteArtifactDependency"]?.[localVarOperationServerIndex]?.url;
|
|
15688
15752
|
return (axios3, basePath) => createRequestFunction(
|
|
15689
15753
|
localVarAxiosArgs,
|
|
15690
|
-
|
|
15754
|
+
import_axios12.default,
|
|
15691
15755
|
BASE_PATH,
|
|
15692
15756
|
configuration
|
|
15693
15757
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15710,7 +15774,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15710
15774
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.deleteBuildParameterOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15711
15775
|
return (axios3, basePath) => createRequestFunction(
|
|
15712
15776
|
localVarAxiosArgs,
|
|
15713
|
-
|
|
15777
|
+
import_axios12.default,
|
|
15714
15778
|
BASE_PATH,
|
|
15715
15779
|
configuration
|
|
15716
15780
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15733,7 +15797,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15733
15797
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.deleteBuildParameterOfBuildType_2"]?.[localVarOperationServerIndex]?.url;
|
|
15734
15798
|
return (axios3, basePath) => createRequestFunction(
|
|
15735
15799
|
localVarAxiosArgs,
|
|
15736
|
-
|
|
15800
|
+
import_axios12.default,
|
|
15737
15801
|
BASE_PATH,
|
|
15738
15802
|
configuration
|
|
15739
15803
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15754,7 +15818,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15754
15818
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.deleteBuildParametersOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15755
15819
|
return (axios3, basePath) => createRequestFunction(
|
|
15756
15820
|
localVarAxiosArgs,
|
|
15757
|
-
|
|
15821
|
+
import_axios12.default,
|
|
15758
15822
|
BASE_PATH,
|
|
15759
15823
|
configuration
|
|
15760
15824
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15775,7 +15839,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15775
15839
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.deleteBuildParametersOfBuildType_3"]?.[localVarOperationServerIndex]?.url;
|
|
15776
15840
|
return (axios3, basePath) => createRequestFunction(
|
|
15777
15841
|
localVarAxiosArgs,
|
|
15778
|
-
|
|
15842
|
+
import_axios12.default,
|
|
15779
15843
|
BASE_PATH,
|
|
15780
15844
|
configuration
|
|
15781
15845
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15798,7 +15862,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15798
15862
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.deleteBuildStep"]?.[localVarOperationServerIndex]?.url;
|
|
15799
15863
|
return (axios3, basePath) => createRequestFunction(
|
|
15800
15864
|
localVarAxiosArgs,
|
|
15801
|
-
|
|
15865
|
+
import_axios12.default,
|
|
15802
15866
|
BASE_PATH,
|
|
15803
15867
|
configuration
|
|
15804
15868
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15825,7 +15889,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15825
15889
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.deleteBuildStepParameters"]?.[localVarOperationServerIndex]?.url;
|
|
15826
15890
|
return (axios3, basePath) => createRequestFunction(
|
|
15827
15891
|
localVarAxiosArgs,
|
|
15828
|
-
|
|
15892
|
+
import_axios12.default,
|
|
15829
15893
|
BASE_PATH,
|
|
15830
15894
|
configuration
|
|
15831
15895
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15843,7 +15907,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15843
15907
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.deleteBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15844
15908
|
return (axios3, basePath) => createRequestFunction(
|
|
15845
15909
|
localVarAxiosArgs,
|
|
15846
|
-
|
|
15910
|
+
import_axios12.default,
|
|
15847
15911
|
BASE_PATH,
|
|
15848
15912
|
configuration
|
|
15849
15913
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15866,7 +15930,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15866
15930
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.deleteFeatureOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15867
15931
|
return (axios3, basePath) => createRequestFunction(
|
|
15868
15932
|
localVarAxiosArgs,
|
|
15869
|
-
|
|
15933
|
+
import_axios12.default,
|
|
15870
15934
|
BASE_PATH,
|
|
15871
15935
|
configuration
|
|
15872
15936
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15889,7 +15953,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15889
15953
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.deleteSnapshotDependency"]?.[localVarOperationServerIndex]?.url;
|
|
15890
15954
|
return (axios3, basePath) => createRequestFunction(
|
|
15891
15955
|
localVarAxiosArgs,
|
|
15892
|
-
|
|
15956
|
+
import_axios12.default,
|
|
15893
15957
|
BASE_PATH,
|
|
15894
15958
|
configuration
|
|
15895
15959
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15912,7 +15976,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15912
15976
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.deleteTrigger"]?.[localVarOperationServerIndex]?.url;
|
|
15913
15977
|
return (axios3, basePath) => createRequestFunction(
|
|
15914
15978
|
localVarAxiosArgs,
|
|
15915
|
-
|
|
15979
|
+
import_axios12.default,
|
|
15916
15980
|
BASE_PATH,
|
|
15917
15981
|
configuration
|
|
15918
15982
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15935,7 +15999,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15935
15999
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.deleteVcsRootOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15936
16000
|
return (axios3, basePath) => createRequestFunction(
|
|
15937
16001
|
localVarAxiosArgs,
|
|
15938
|
-
|
|
16002
|
+
import_axios12.default,
|
|
15939
16003
|
BASE_PATH,
|
|
15940
16004
|
configuration
|
|
15941
16005
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15960,7 +16024,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15960
16024
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.downloadFileOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
15961
16025
|
return (axios3, basePath) => createRequestFunction(
|
|
15962
16026
|
localVarAxiosArgs,
|
|
15963
|
-
|
|
16027
|
+
import_axios12.default,
|
|
15964
16028
|
BASE_PATH,
|
|
15965
16029
|
configuration
|
|
15966
16030
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -15985,7 +16049,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
15985
16049
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAgentRequirement"]?.[localVarOperationServerIndex]?.url;
|
|
15986
16050
|
return (axios3, basePath) => createRequestFunction(
|
|
15987
16051
|
localVarAxiosArgs,
|
|
15988
|
-
|
|
16052
|
+
import_axios12.default,
|
|
15989
16053
|
BASE_PATH,
|
|
15990
16054
|
configuration
|
|
15991
16055
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16010,7 +16074,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16010
16074
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAgentRequirementParameter"]?.[localVarOperationServerIndex]?.url;
|
|
16011
16075
|
return (axios3, basePath) => createRequestFunction(
|
|
16012
16076
|
localVarAxiosArgs,
|
|
16013
|
-
|
|
16077
|
+
import_axios12.default,
|
|
16014
16078
|
BASE_PATH,
|
|
16015
16079
|
configuration
|
|
16016
16080
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16033,7 +16097,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16033
16097
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAliases"]?.[localVarOperationServerIndex]?.url;
|
|
16034
16098
|
return (axios3, basePath) => createRequestFunction(
|
|
16035
16099
|
localVarAxiosArgs,
|
|
16036
|
-
|
|
16100
|
+
import_axios12.default,
|
|
16037
16101
|
BASE_PATH,
|
|
16038
16102
|
configuration
|
|
16039
16103
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16056,7 +16120,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16056
16120
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAllAgentRequirements"]?.[localVarOperationServerIndex]?.url;
|
|
16057
16121
|
return (axios3, basePath) => createRequestFunction(
|
|
16058
16122
|
localVarAxiosArgs,
|
|
16059
|
-
|
|
16123
|
+
import_axios12.default,
|
|
16060
16124
|
BASE_PATH,
|
|
16061
16125
|
configuration
|
|
16062
16126
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16079,7 +16143,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16079
16143
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAllArtifactDependencies"]?.[localVarOperationServerIndex]?.url;
|
|
16080
16144
|
return (axios3, basePath) => createRequestFunction(
|
|
16081
16145
|
localVarAxiosArgs,
|
|
16082
|
-
|
|
16146
|
+
import_axios12.default,
|
|
16083
16147
|
BASE_PATH,
|
|
16084
16148
|
configuration
|
|
16085
16149
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16104,7 +16168,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16104
16168
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAllBranchesOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
16105
16169
|
return (axios3, basePath) => createRequestFunction(
|
|
16106
16170
|
localVarAxiosArgs,
|
|
16107
|
-
|
|
16171
|
+
import_axios12.default,
|
|
16108
16172
|
BASE_PATH,
|
|
16109
16173
|
configuration
|
|
16110
16174
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16129,7 +16193,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16129
16193
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAllBuildFeatureParameters"]?.[localVarOperationServerIndex]?.url;
|
|
16130
16194
|
return (axios3, basePath) => createRequestFunction(
|
|
16131
16195
|
localVarAxiosArgs,
|
|
16132
|
-
|
|
16196
|
+
import_axios12.default,
|
|
16133
16197
|
BASE_PATH,
|
|
16134
16198
|
configuration
|
|
16135
16199
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16152,7 +16216,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16152
16216
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAllBuildFeatures"]?.[localVarOperationServerIndex]?.url;
|
|
16153
16217
|
return (axios3, basePath) => createRequestFunction(
|
|
16154
16218
|
localVarAxiosArgs,
|
|
16155
|
-
|
|
16219
|
+
import_axios12.default,
|
|
16156
16220
|
BASE_PATH,
|
|
16157
16221
|
configuration
|
|
16158
16222
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16177,7 +16241,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16177
16241
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAllBuildStepParameters"]?.[localVarOperationServerIndex]?.url;
|
|
16178
16242
|
return (axios3, basePath) => createRequestFunction(
|
|
16179
16243
|
localVarAxiosArgs,
|
|
16180
|
-
|
|
16244
|
+
import_axios12.default,
|
|
16181
16245
|
BASE_PATH,
|
|
16182
16246
|
configuration
|
|
16183
16247
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16200,7 +16264,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16200
16264
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAllBuildSteps"]?.[localVarOperationServerIndex]?.url;
|
|
16201
16265
|
return (axios3, basePath) => createRequestFunction(
|
|
16202
16266
|
localVarAxiosArgs,
|
|
16203
|
-
|
|
16267
|
+
import_axios12.default,
|
|
16204
16268
|
BASE_PATH,
|
|
16205
16269
|
configuration
|
|
16206
16270
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16223,7 +16287,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16223
16287
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAllBuildTemplates"]?.[localVarOperationServerIndex]?.url;
|
|
16224
16288
|
return (axios3, basePath) => createRequestFunction(
|
|
16225
16289
|
localVarAxiosArgs,
|
|
16226
|
-
|
|
16290
|
+
import_axios12.default,
|
|
16227
16291
|
BASE_PATH,
|
|
16228
16292
|
configuration
|
|
16229
16293
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16246,7 +16310,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16246
16310
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAllBuildTypes"]?.[localVarOperationServerIndex]?.url;
|
|
16247
16311
|
return (axios3, basePath) => createRequestFunction(
|
|
16248
16312
|
localVarAxiosArgs,
|
|
16249
|
-
|
|
16313
|
+
import_axios12.default,
|
|
16250
16314
|
BASE_PATH,
|
|
16251
16315
|
configuration
|
|
16252
16316
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16269,7 +16333,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16269
16333
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAllInvestigationsOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
16270
16334
|
return (axios3, basePath) => createRequestFunction(
|
|
16271
16335
|
localVarAxiosArgs,
|
|
16272
|
-
|
|
16336
|
+
import_axios12.default,
|
|
16273
16337
|
BASE_PATH,
|
|
16274
16338
|
configuration
|
|
16275
16339
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16292,7 +16356,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16292
16356
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAllSnapshotDependencies"]?.[localVarOperationServerIndex]?.url;
|
|
16293
16357
|
return (axios3, basePath) => createRequestFunction(
|
|
16294
16358
|
localVarAxiosArgs,
|
|
16295
|
-
|
|
16359
|
+
import_axios12.default,
|
|
16296
16360
|
BASE_PATH,
|
|
16297
16361
|
configuration
|
|
16298
16362
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16315,7 +16379,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16315
16379
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAllTriggers"]?.[localVarOperationServerIndex]?.url;
|
|
16316
16380
|
return (axios3, basePath) => createRequestFunction(
|
|
16317
16381
|
localVarAxiosArgs,
|
|
16318
|
-
|
|
16382
|
+
import_axios12.default,
|
|
16319
16383
|
BASE_PATH,
|
|
16320
16384
|
configuration
|
|
16321
16385
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16338,7 +16402,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16338
16402
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getAllVcsRootsOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
16339
16403
|
return (axios3, basePath) => createRequestFunction(
|
|
16340
16404
|
localVarAxiosArgs,
|
|
16341
|
-
|
|
16405
|
+
import_axios12.default,
|
|
16342
16406
|
BASE_PATH,
|
|
16343
16407
|
configuration
|
|
16344
16408
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16363,7 +16427,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16363
16427
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getArtifactDependency"]?.[localVarOperationServerIndex]?.url;
|
|
16364
16428
|
return (axios3, basePath) => createRequestFunction(
|
|
16365
16429
|
localVarAxiosArgs,
|
|
16366
|
-
|
|
16430
|
+
import_axios12.default,
|
|
16367
16431
|
BASE_PATH,
|
|
16368
16432
|
configuration
|
|
16369
16433
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16388,7 +16452,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16388
16452
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getArtifactDependencyParameter"]?.[localVarOperationServerIndex]?.url;
|
|
16389
16453
|
return (axios3, basePath) => createRequestFunction(
|
|
16390
16454
|
localVarAxiosArgs,
|
|
16391
|
-
|
|
16455
|
+
import_axios12.default,
|
|
16392
16456
|
BASE_PATH,
|
|
16393
16457
|
configuration
|
|
16394
16458
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16413,7 +16477,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16413
16477
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildFeature"]?.[localVarOperationServerIndex]?.url;
|
|
16414
16478
|
return (axios3, basePath) => createRequestFunction(
|
|
16415
16479
|
localVarAxiosArgs,
|
|
16416
|
-
|
|
16480
|
+
import_axios12.default,
|
|
16417
16481
|
BASE_PATH,
|
|
16418
16482
|
configuration
|
|
16419
16483
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16438,7 +16502,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16438
16502
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildFeatureParameter"]?.[localVarOperationServerIndex]?.url;
|
|
16439
16503
|
return (axios3, basePath) => createRequestFunction(
|
|
16440
16504
|
localVarAxiosArgs,
|
|
16441
|
-
|
|
16505
|
+
import_axios12.default,
|
|
16442
16506
|
BASE_PATH,
|
|
16443
16507
|
configuration
|
|
16444
16508
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16463,7 +16527,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16463
16527
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildFeatureSetting"]?.[localVarOperationServerIndex]?.url;
|
|
16464
16528
|
return (axios3, basePath) => createRequestFunction(
|
|
16465
16529
|
localVarAxiosArgs,
|
|
16466
|
-
|
|
16530
|
+
import_axios12.default,
|
|
16467
16531
|
BASE_PATH,
|
|
16468
16532
|
configuration
|
|
16469
16533
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16488,7 +16552,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16488
16552
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildParameterOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
16489
16553
|
return (axios3, basePath) => createRequestFunction(
|
|
16490
16554
|
localVarAxiosArgs,
|
|
16491
|
-
|
|
16555
|
+
import_axios12.default,
|
|
16492
16556
|
BASE_PATH,
|
|
16493
16557
|
configuration
|
|
16494
16558
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16513,7 +16577,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16513
16577
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildParameterOfBuildType_4"]?.[localVarOperationServerIndex]?.url;
|
|
16514
16578
|
return (axios3, basePath) => createRequestFunction(
|
|
16515
16579
|
localVarAxiosArgs,
|
|
16516
|
-
|
|
16580
|
+
import_axios12.default,
|
|
16517
16581
|
BASE_PATH,
|
|
16518
16582
|
configuration
|
|
16519
16583
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16536,7 +16600,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16536
16600
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildParameterSpecificationOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
16537
16601
|
return (axios3, basePath) => createRequestFunction(
|
|
16538
16602
|
localVarAxiosArgs,
|
|
16539
|
-
|
|
16603
|
+
import_axios12.default,
|
|
16540
16604
|
BASE_PATH,
|
|
16541
16605
|
configuration
|
|
16542
16606
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16559,7 +16623,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16559
16623
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildParameterTypeOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
16560
16624
|
return (axios3, basePath) => createRequestFunction(
|
|
16561
16625
|
localVarAxiosArgs,
|
|
16562
|
-
|
|
16626
|
+
import_axios12.default,
|
|
16563
16627
|
BASE_PATH,
|
|
16564
16628
|
configuration
|
|
16565
16629
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16582,7 +16646,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16582
16646
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildParameterValueOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
16583
16647
|
return (axios3, basePath) => createRequestFunction(
|
|
16584
16648
|
localVarAxiosArgs,
|
|
16585
|
-
|
|
16649
|
+
import_axios12.default,
|
|
16586
16650
|
BASE_PATH,
|
|
16587
16651
|
configuration
|
|
16588
16652
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16605,7 +16669,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16605
16669
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildParameterValueOfBuildType_5"]?.[localVarOperationServerIndex]?.url;
|
|
16606
16670
|
return (axios3, basePath) => createRequestFunction(
|
|
16607
16671
|
localVarAxiosArgs,
|
|
16608
|
-
|
|
16672
|
+
import_axios12.default,
|
|
16609
16673
|
BASE_PATH,
|
|
16610
16674
|
configuration
|
|
16611
16675
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16630,7 +16694,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16630
16694
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildParametersOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
16631
16695
|
return (axios3, basePath) => createRequestFunction(
|
|
16632
16696
|
localVarAxiosArgs,
|
|
16633
|
-
|
|
16697
|
+
import_axios12.default,
|
|
16634
16698
|
BASE_PATH,
|
|
16635
16699
|
configuration
|
|
16636
16700
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16655,7 +16719,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16655
16719
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildParametersOfBuildType_6"]?.[localVarOperationServerIndex]?.url;
|
|
16656
16720
|
return (axios3, basePath) => createRequestFunction(
|
|
16657
16721
|
localVarAxiosArgs,
|
|
16658
|
-
|
|
16722
|
+
import_axios12.default,
|
|
16659
16723
|
BASE_PATH,
|
|
16660
16724
|
configuration
|
|
16661
16725
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16680,7 +16744,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16680
16744
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildStep"]?.[localVarOperationServerIndex]?.url;
|
|
16681
16745
|
return (axios3, basePath) => createRequestFunction(
|
|
16682
16746
|
localVarAxiosArgs,
|
|
16683
|
-
|
|
16747
|
+
import_axios12.default,
|
|
16684
16748
|
BASE_PATH,
|
|
16685
16749
|
configuration
|
|
16686
16750
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16705,7 +16769,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16705
16769
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildStepParameter"]?.[localVarOperationServerIndex]?.url;
|
|
16706
16770
|
return (axios3, basePath) => createRequestFunction(
|
|
16707
16771
|
localVarAxiosArgs,
|
|
16708
|
-
|
|
16772
|
+
import_axios12.default,
|
|
16709
16773
|
BASE_PATH,
|
|
16710
16774
|
configuration
|
|
16711
16775
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16730,7 +16794,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16730
16794
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildStepSetting"]?.[localVarOperationServerIndex]?.url;
|
|
16731
16795
|
return (axios3, basePath) => createRequestFunction(
|
|
16732
16796
|
localVarAxiosArgs,
|
|
16733
|
-
|
|
16797
|
+
import_axios12.default,
|
|
16734
16798
|
BASE_PATH,
|
|
16735
16799
|
configuration
|
|
16736
16800
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16755,7 +16819,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16755
16819
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildTemplate"]?.[localVarOperationServerIndex]?.url;
|
|
16756
16820
|
return (axios3, basePath) => createRequestFunction(
|
|
16757
16821
|
localVarAxiosArgs,
|
|
16758
|
-
|
|
16822
|
+
import_axios12.default,
|
|
16759
16823
|
BASE_PATH,
|
|
16760
16824
|
configuration
|
|
16761
16825
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16778,7 +16842,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16778
16842
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
16779
16843
|
return (axios3, basePath) => createRequestFunction(
|
|
16780
16844
|
localVarAxiosArgs,
|
|
16781
|
-
|
|
16845
|
+
import_axios12.default,
|
|
16782
16846
|
BASE_PATH,
|
|
16783
16847
|
configuration
|
|
16784
16848
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16801,7 +16865,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16801
16865
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildTypeBuildTags"]?.[localVarOperationServerIndex]?.url;
|
|
16802
16866
|
return (axios3, basePath) => createRequestFunction(
|
|
16803
16867
|
localVarAxiosArgs,
|
|
16804
|
-
|
|
16868
|
+
import_axios12.default,
|
|
16805
16869
|
BASE_PATH,
|
|
16806
16870
|
configuration
|
|
16807
16871
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16824,7 +16888,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16824
16888
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildTypeBuilds"]?.[localVarOperationServerIndex]?.url;
|
|
16825
16889
|
return (axios3, basePath) => createRequestFunction(
|
|
16826
16890
|
localVarAxiosArgs,
|
|
16827
|
-
|
|
16891
|
+
import_axios12.default,
|
|
16828
16892
|
BASE_PATH,
|
|
16829
16893
|
configuration
|
|
16830
16894
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16847,7 +16911,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16847
16911
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildTypeField"]?.[localVarOperationServerIndex]?.url;
|
|
16848
16912
|
return (axios3, basePath) => createRequestFunction(
|
|
16849
16913
|
localVarAxiosArgs,
|
|
16850
|
-
|
|
16914
|
+
import_axios12.default,
|
|
16851
16915
|
BASE_PATH,
|
|
16852
16916
|
configuration
|
|
16853
16917
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16868,7 +16932,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16868
16932
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getBuildTypeSettingsFile"]?.[localVarOperationServerIndex]?.url;
|
|
16869
16933
|
return (axios3, basePath) => createRequestFunction(
|
|
16870
16934
|
localVarAxiosArgs,
|
|
16871
|
-
|
|
16935
|
+
import_axios12.default,
|
|
16872
16936
|
BASE_PATH,
|
|
16873
16937
|
configuration
|
|
16874
16938
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16895,7 +16959,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16895
16959
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getFileMetadataOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
16896
16960
|
return (axios3, basePath) => createRequestFunction(
|
|
16897
16961
|
localVarAxiosArgs,
|
|
16898
|
-
|
|
16962
|
+
import_axios12.default,
|
|
16899
16963
|
BASE_PATH,
|
|
16900
16964
|
configuration
|
|
16901
16965
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -16926,7 +16990,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16926
16990
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getFilesListForSubpathOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
16927
16991
|
return (axios3, basePath2) => createRequestFunction(
|
|
16928
16992
|
localVarAxiosArgs,
|
|
16929
|
-
|
|
16993
|
+
import_axios12.default,
|
|
16930
16994
|
BASE_PATH,
|
|
16931
16995
|
configuration
|
|
16932
16996
|
)(axios3, localVarOperationServerBasePath || basePath2);
|
|
@@ -16955,7 +17019,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16955
17019
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getFilesListOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
16956
17020
|
return (axios3, basePath2) => createRequestFunction(
|
|
16957
17021
|
localVarAxiosArgs,
|
|
16958
|
-
|
|
17022
|
+
import_axios12.default,
|
|
16959
17023
|
BASE_PATH,
|
|
16960
17024
|
configuration
|
|
16961
17025
|
)(axios3, localVarOperationServerBasePath || basePath2);
|
|
@@ -16980,7 +17044,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
16980
17044
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getSnapshotDependency"]?.[localVarOperationServerIndex]?.url;
|
|
16981
17045
|
return (axios3, basePath) => createRequestFunction(
|
|
16982
17046
|
localVarAxiosArgs,
|
|
16983
|
-
|
|
17047
|
+
import_axios12.default,
|
|
16984
17048
|
BASE_PATH,
|
|
16985
17049
|
configuration
|
|
16986
17050
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17005,7 +17069,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17005
17069
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getTrigger"]?.[localVarOperationServerIndex]?.url;
|
|
17006
17070
|
return (axios3, basePath) => createRequestFunction(
|
|
17007
17071
|
localVarAxiosArgs,
|
|
17008
|
-
|
|
17072
|
+
import_axios12.default,
|
|
17009
17073
|
BASE_PATH,
|
|
17010
17074
|
configuration
|
|
17011
17075
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17030,7 +17094,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17030
17094
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getTriggerParameter"]?.[localVarOperationServerIndex]?.url;
|
|
17031
17095
|
return (axios3, basePath) => createRequestFunction(
|
|
17032
17096
|
localVarAxiosArgs,
|
|
17033
|
-
|
|
17097
|
+
import_axios12.default,
|
|
17034
17098
|
BASE_PATH,
|
|
17035
17099
|
configuration
|
|
17036
17100
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17055,7 +17119,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17055
17119
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getVcsRoot"]?.[localVarOperationServerIndex]?.url;
|
|
17056
17120
|
return (axios3, basePath) => createRequestFunction(
|
|
17057
17121
|
localVarAxiosArgs,
|
|
17058
|
-
|
|
17122
|
+
import_axios12.default,
|
|
17059
17123
|
BASE_PATH,
|
|
17060
17124
|
configuration
|
|
17061
17125
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17078,7 +17142,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17078
17142
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getVcsRootCheckoutRules"]?.[localVarOperationServerIndex]?.url;
|
|
17079
17143
|
return (axios3, basePath) => createRequestFunction(
|
|
17080
17144
|
localVarAxiosArgs,
|
|
17081
|
-
|
|
17145
|
+
import_axios12.default,
|
|
17082
17146
|
BASE_PATH,
|
|
17083
17147
|
configuration
|
|
17084
17148
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17101,7 +17165,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17101
17165
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getVcsRootInstancesOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
17102
17166
|
return (axios3, basePath) => createRequestFunction(
|
|
17103
17167
|
localVarAxiosArgs,
|
|
17104
|
-
|
|
17168
|
+
import_axios12.default,
|
|
17105
17169
|
BASE_PATH,
|
|
17106
17170
|
configuration
|
|
17107
17171
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17132,7 +17196,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17132
17196
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.getZippedFileOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
17133
17197
|
return (axios3, basePath2) => createRequestFunction(
|
|
17134
17198
|
localVarAxiosArgs,
|
|
17135
|
-
|
|
17199
|
+
import_axios12.default,
|
|
17136
17200
|
BASE_PATH,
|
|
17137
17201
|
configuration
|
|
17138
17202
|
)(axios3, localVarOperationServerBasePath || basePath2);
|
|
@@ -17155,7 +17219,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17155
17219
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.moveBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
17156
17220
|
return (axios3, basePath) => createRequestFunction(
|
|
17157
17221
|
localVarAxiosArgs,
|
|
17158
|
-
|
|
17222
|
+
import_axios12.default,
|
|
17159
17223
|
BASE_PATH,
|
|
17160
17224
|
configuration
|
|
17161
17225
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17178,7 +17242,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17178
17242
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.removeAllTemplates"]?.[localVarOperationServerIndex]?.url;
|
|
17179
17243
|
return (axios3, basePath) => createRequestFunction(
|
|
17180
17244
|
localVarAxiosArgs,
|
|
17181
|
-
|
|
17245
|
+
import_axios12.default,
|
|
17182
17246
|
BASE_PATH,
|
|
17183
17247
|
configuration
|
|
17184
17248
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17203,7 +17267,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17203
17267
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.removeTemplate"]?.[localVarOperationServerIndex]?.url;
|
|
17204
17268
|
return (axios3, basePath) => createRequestFunction(
|
|
17205
17269
|
localVarAxiosArgs,
|
|
17206
|
-
|
|
17270
|
+
import_axios12.default,
|
|
17207
17271
|
BASE_PATH,
|
|
17208
17272
|
configuration
|
|
17209
17273
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17230,7 +17294,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17230
17294
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.replaceAgentRequirement"]?.[localVarOperationServerIndex]?.url;
|
|
17231
17295
|
return (axios3, basePath) => createRequestFunction(
|
|
17232
17296
|
localVarAxiosArgs,
|
|
17233
|
-
|
|
17297
|
+
import_axios12.default,
|
|
17234
17298
|
BASE_PATH,
|
|
17235
17299
|
configuration
|
|
17236
17300
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17255,7 +17319,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17255
17319
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.replaceAllAgentRequirements"]?.[localVarOperationServerIndex]?.url;
|
|
17256
17320
|
return (axios3, basePath) => createRequestFunction(
|
|
17257
17321
|
localVarAxiosArgs,
|
|
17258
|
-
|
|
17322
|
+
import_axios12.default,
|
|
17259
17323
|
BASE_PATH,
|
|
17260
17324
|
configuration
|
|
17261
17325
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17280,7 +17344,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17280
17344
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.replaceAllArtifactDependencies"]?.[localVarOperationServerIndex]?.url;
|
|
17281
17345
|
return (axios3, basePath) => createRequestFunction(
|
|
17282
17346
|
localVarAxiosArgs,
|
|
17283
|
-
|
|
17347
|
+
import_axios12.default,
|
|
17284
17348
|
BASE_PATH,
|
|
17285
17349
|
configuration
|
|
17286
17350
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17305,7 +17369,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17305
17369
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.replaceAllBuildFeatures"]?.[localVarOperationServerIndex]?.url;
|
|
17306
17370
|
return (axios3, basePath) => createRequestFunction(
|
|
17307
17371
|
localVarAxiosArgs,
|
|
17308
|
-
|
|
17372
|
+
import_axios12.default,
|
|
17309
17373
|
BASE_PATH,
|
|
17310
17374
|
configuration
|
|
17311
17375
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17330,7 +17394,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17330
17394
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.replaceAllBuildSteps"]?.[localVarOperationServerIndex]?.url;
|
|
17331
17395
|
return (axios3, basePath) => createRequestFunction(
|
|
17332
17396
|
localVarAxiosArgs,
|
|
17333
|
-
|
|
17397
|
+
import_axios12.default,
|
|
17334
17398
|
BASE_PATH,
|
|
17335
17399
|
configuration
|
|
17336
17400
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17355,7 +17419,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17355
17419
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.replaceAllSnapshotDependencies"]?.[localVarOperationServerIndex]?.url;
|
|
17356
17420
|
return (axios3, basePath) => createRequestFunction(
|
|
17357
17421
|
localVarAxiosArgs,
|
|
17358
|
-
|
|
17422
|
+
import_axios12.default,
|
|
17359
17423
|
BASE_PATH,
|
|
17360
17424
|
configuration
|
|
17361
17425
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17380,7 +17444,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17380
17444
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.replaceAllTriggers"]?.[localVarOperationServerIndex]?.url;
|
|
17381
17445
|
return (axios3, basePath) => createRequestFunction(
|
|
17382
17446
|
localVarAxiosArgs,
|
|
17383
|
-
|
|
17447
|
+
import_axios12.default,
|
|
17384
17448
|
BASE_PATH,
|
|
17385
17449
|
configuration
|
|
17386
17450
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17405,7 +17469,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17405
17469
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.replaceAllVcsRoots"]?.[localVarOperationServerIndex]?.url;
|
|
17406
17470
|
return (axios3, basePath) => createRequestFunction(
|
|
17407
17471
|
localVarAxiosArgs,
|
|
17408
|
-
|
|
17472
|
+
import_axios12.default,
|
|
17409
17473
|
BASE_PATH,
|
|
17410
17474
|
configuration
|
|
17411
17475
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17432,7 +17496,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17432
17496
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.replaceArtifactDependency"]?.[localVarOperationServerIndex]?.url;
|
|
17433
17497
|
return (axios3, basePath) => createRequestFunction(
|
|
17434
17498
|
localVarAxiosArgs,
|
|
17435
|
-
|
|
17499
|
+
import_axios12.default,
|
|
17436
17500
|
BASE_PATH,
|
|
17437
17501
|
configuration
|
|
17438
17502
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17459,7 +17523,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17459
17523
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.replaceBuildFeature"]?.[localVarOperationServerIndex]?.url;
|
|
17460
17524
|
return (axios3, basePath) => createRequestFunction(
|
|
17461
17525
|
localVarAxiosArgs,
|
|
17462
|
-
|
|
17526
|
+
import_axios12.default,
|
|
17463
17527
|
BASE_PATH,
|
|
17464
17528
|
configuration
|
|
17465
17529
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17486,7 +17550,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17486
17550
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.replaceBuildFeatureParameters"]?.[localVarOperationServerIndex]?.url;
|
|
17487
17551
|
return (axios3, basePath) => createRequestFunction(
|
|
17488
17552
|
localVarAxiosArgs,
|
|
17489
|
-
|
|
17553
|
+
import_axios12.default,
|
|
17490
17554
|
BASE_PATH,
|
|
17491
17555
|
configuration
|
|
17492
17556
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17513,7 +17577,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17513
17577
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.replaceBuildStep"]?.[localVarOperationServerIndex]?.url;
|
|
17514
17578
|
return (axios3, basePath) => createRequestFunction(
|
|
17515
17579
|
localVarAxiosArgs,
|
|
17516
|
-
|
|
17580
|
+
import_axios12.default,
|
|
17517
17581
|
BASE_PATH,
|
|
17518
17582
|
configuration
|
|
17519
17583
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17540,7 +17604,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17540
17604
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.replaceSnapshotDependency"]?.[localVarOperationServerIndex]?.url;
|
|
17541
17605
|
return (axios3, basePath) => createRequestFunction(
|
|
17542
17606
|
localVarAxiosArgs,
|
|
17543
|
-
|
|
17607
|
+
import_axios12.default,
|
|
17544
17608
|
BASE_PATH,
|
|
17545
17609
|
configuration
|
|
17546
17610
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17567,7 +17631,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17567
17631
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.replaceTrigger"]?.[localVarOperationServerIndex]?.url;
|
|
17568
17632
|
return (axios3, basePath) => createRequestFunction(
|
|
17569
17633
|
localVarAxiosArgs,
|
|
17570
|
-
|
|
17634
|
+
import_axios12.default,
|
|
17571
17635
|
BASE_PATH,
|
|
17572
17636
|
configuration
|
|
17573
17637
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17594,7 +17658,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17594
17658
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.setAgentRequirementParameter"]?.[localVarOperationServerIndex]?.url;
|
|
17595
17659
|
return (axios3, basePath) => createRequestFunction(
|
|
17596
17660
|
localVarAxiosArgs,
|
|
17597
|
-
|
|
17661
|
+
import_axios12.default,
|
|
17598
17662
|
BASE_PATH,
|
|
17599
17663
|
configuration
|
|
17600
17664
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17621,7 +17685,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17621
17685
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.setArtifactDependencyParameter"]?.[localVarOperationServerIndex]?.url;
|
|
17622
17686
|
return (axios3, basePath) => createRequestFunction(
|
|
17623
17687
|
localVarAxiosArgs,
|
|
17624
|
-
|
|
17688
|
+
import_axios12.default,
|
|
17625
17689
|
BASE_PATH,
|
|
17626
17690
|
configuration
|
|
17627
17691
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17648,7 +17712,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17648
17712
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.setBuildFeatureParameter"]?.[localVarOperationServerIndex]?.url;
|
|
17649
17713
|
return (axios3, basePath) => createRequestFunction(
|
|
17650
17714
|
localVarAxiosArgs,
|
|
17651
|
-
|
|
17715
|
+
import_axios12.default,
|
|
17652
17716
|
BASE_PATH,
|
|
17653
17717
|
configuration
|
|
17654
17718
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17675,7 +17739,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17675
17739
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.setBuildStepParameter"]?.[localVarOperationServerIndex]?.url;
|
|
17676
17740
|
return (axios3, basePath) => createRequestFunction(
|
|
17677
17741
|
localVarAxiosArgs,
|
|
17678
|
-
|
|
17742
|
+
import_axios12.default,
|
|
17679
17743
|
BASE_PATH,
|
|
17680
17744
|
configuration
|
|
17681
17745
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17700,7 +17764,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17700
17764
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.setBuildTypeField"]?.[localVarOperationServerIndex]?.url;
|
|
17701
17765
|
return (axios3, basePath) => createRequestFunction(
|
|
17702
17766
|
localVarAxiosArgs,
|
|
17703
|
-
|
|
17767
|
+
import_axios12.default,
|
|
17704
17768
|
BASE_PATH,
|
|
17705
17769
|
configuration
|
|
17706
17770
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17727,7 +17791,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17727
17791
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.setBuildTypeTemplates"]?.[localVarOperationServerIndex]?.url;
|
|
17728
17792
|
return (axios3, basePath) => createRequestFunction(
|
|
17729
17793
|
localVarAxiosArgs,
|
|
17730
|
-
|
|
17794
|
+
import_axios12.default,
|
|
17731
17795
|
BASE_PATH,
|
|
17732
17796
|
configuration
|
|
17733
17797
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17754,7 +17818,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17754
17818
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.setTriggerParameter"]?.[localVarOperationServerIndex]?.url;
|
|
17755
17819
|
return (axios3, basePath) => createRequestFunction(
|
|
17756
17820
|
localVarAxiosArgs,
|
|
17757
|
-
|
|
17821
|
+
import_axios12.default,
|
|
17758
17822
|
BASE_PATH,
|
|
17759
17823
|
configuration
|
|
17760
17824
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17781,7 +17845,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17781
17845
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.updateBuildParameterOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
17782
17846
|
return (axios3, basePath) => createRequestFunction(
|
|
17783
17847
|
localVarAxiosArgs,
|
|
17784
|
-
|
|
17848
|
+
import_axios12.default,
|
|
17785
17849
|
BASE_PATH,
|
|
17786
17850
|
configuration
|
|
17787
17851
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17808,7 +17872,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17808
17872
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.updateBuildParameterOfBuildType_7"]?.[localVarOperationServerIndex]?.url;
|
|
17809
17873
|
return (axios3, basePath) => createRequestFunction(
|
|
17810
17874
|
localVarAxiosArgs,
|
|
17811
|
-
|
|
17875
|
+
import_axios12.default,
|
|
17812
17876
|
BASE_PATH,
|
|
17813
17877
|
configuration
|
|
17814
17878
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17833,7 +17897,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17833
17897
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.updateBuildParameterSpecificationOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
17834
17898
|
return (axios3, basePath) => createRequestFunction(
|
|
17835
17899
|
localVarAxiosArgs,
|
|
17836
|
-
|
|
17900
|
+
import_axios12.default,
|
|
17837
17901
|
BASE_PATH,
|
|
17838
17902
|
configuration
|
|
17839
17903
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17858,7 +17922,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17858
17922
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.updateBuildParameterTypeOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
17859
17923
|
return (axios3, basePath) => createRequestFunction(
|
|
17860
17924
|
localVarAxiosArgs,
|
|
17861
|
-
|
|
17925
|
+
import_axios12.default,
|
|
17862
17926
|
BASE_PATH,
|
|
17863
17927
|
configuration
|
|
17864
17928
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17883,7 +17947,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17883
17947
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.updateBuildParameterValueOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
17884
17948
|
return (axios3, basePath) => createRequestFunction(
|
|
17885
17949
|
localVarAxiosArgs,
|
|
17886
|
-
|
|
17950
|
+
import_axios12.default,
|
|
17887
17951
|
BASE_PATH,
|
|
17888
17952
|
configuration
|
|
17889
17953
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17908,7 +17972,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17908
17972
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.updateBuildParameterValueOfBuildType_8"]?.[localVarOperationServerIndex]?.url;
|
|
17909
17973
|
return (axios3, basePath) => createRequestFunction(
|
|
17910
17974
|
localVarAxiosArgs,
|
|
17911
|
-
|
|
17975
|
+
import_axios12.default,
|
|
17912
17976
|
BASE_PATH,
|
|
17913
17977
|
configuration
|
|
17914
17978
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17933,7 +17997,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17933
17997
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.updateBuildParametersOfBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
17934
17998
|
return (axios3, basePath) => createRequestFunction(
|
|
17935
17999
|
localVarAxiosArgs,
|
|
17936
|
-
|
|
18000
|
+
import_axios12.default,
|
|
17937
18001
|
BASE_PATH,
|
|
17938
18002
|
configuration
|
|
17939
18003
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17958,7 +18022,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17958
18022
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.updateBuildParametersOfBuildType_9"]?.[localVarOperationServerIndex]?.url;
|
|
17959
18023
|
return (axios3, basePath) => createRequestFunction(
|
|
17960
18024
|
localVarAxiosArgs,
|
|
17961
|
-
|
|
18025
|
+
import_axios12.default,
|
|
17962
18026
|
BASE_PATH,
|
|
17963
18027
|
configuration
|
|
17964
18028
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -17985,7 +18049,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
17985
18049
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.updateBuildTypeVcsRoot"]?.[localVarOperationServerIndex]?.url;
|
|
17986
18050
|
return (axios3, basePath) => createRequestFunction(
|
|
17987
18051
|
localVarAxiosArgs,
|
|
17988
|
-
|
|
18052
|
+
import_axios12.default,
|
|
17989
18053
|
BASE_PATH,
|
|
17990
18054
|
configuration
|
|
17991
18055
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -18010,7 +18074,7 @@ var BuildTypeApiFp = function(configuration) {
|
|
|
18010
18074
|
const localVarOperationServerBasePath = operationServerMap["BuildTypeApi.updateBuildTypeVcsRootCheckoutRules"]?.[localVarOperationServerIndex]?.url;
|
|
18011
18075
|
return (axios3, basePath) => createRequestFunction(
|
|
18012
18076
|
localVarAxiosArgs,
|
|
18013
|
-
|
|
18077
|
+
import_axios12.default,
|
|
18014
18078
|
BASE_PATH,
|
|
18015
18079
|
configuration
|
|
18016
18080
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -19442,7 +19506,7 @@ var BuildTypeApi = class extends BaseAPI {
|
|
|
19442
19506
|
};
|
|
19443
19507
|
|
|
19444
19508
|
// src/teamcity-client/api/change-api.ts
|
|
19445
|
-
var
|
|
19509
|
+
var import_axios13 = __toESM(require("axios"));
|
|
19446
19510
|
var ChangeApiAxiosParamCreator = function(configuration) {
|
|
19447
19511
|
return {
|
|
19448
19512
|
/**
|
|
@@ -19824,7 +19888,7 @@ var ChangeApiFp = function(configuration) {
|
|
|
19824
19888
|
const localVarOperationServerBasePath = operationServerMap["ChangeApi.getAllChanges"]?.[localVarOperationServerIndex]?.url;
|
|
19825
19889
|
return (axios3, basePath) => createRequestFunction(
|
|
19826
19890
|
localVarAxiosArgs,
|
|
19827
|
-
|
|
19891
|
+
import_axios13.default,
|
|
19828
19892
|
BASE_PATH,
|
|
19829
19893
|
configuration
|
|
19830
19894
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -19847,7 +19911,7 @@ var ChangeApiFp = function(configuration) {
|
|
|
19847
19911
|
const localVarOperationServerBasePath = operationServerMap["ChangeApi.getChange"]?.[localVarOperationServerIndex]?.url;
|
|
19848
19912
|
return (axios3, basePath) => createRequestFunction(
|
|
19849
19913
|
localVarAxiosArgs,
|
|
19850
|
-
|
|
19914
|
+
import_axios13.default,
|
|
19851
19915
|
BASE_PATH,
|
|
19852
19916
|
configuration
|
|
19853
19917
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -19870,7 +19934,7 @@ var ChangeApiFp = function(configuration) {
|
|
|
19870
19934
|
const localVarOperationServerBasePath = operationServerMap["ChangeApi.getChangeAttributes"]?.[localVarOperationServerIndex]?.url;
|
|
19871
19935
|
return (axios3, basePath) => createRequestFunction(
|
|
19872
19936
|
localVarAxiosArgs,
|
|
19873
|
-
|
|
19937
|
+
import_axios13.default,
|
|
19874
19938
|
BASE_PATH,
|
|
19875
19939
|
configuration
|
|
19876
19940
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -19893,7 +19957,7 @@ var ChangeApiFp = function(configuration) {
|
|
|
19893
19957
|
const localVarOperationServerBasePath = operationServerMap["ChangeApi.getChangeDuplicates"]?.[localVarOperationServerIndex]?.url;
|
|
19894
19958
|
return (axios3, basePath) => createRequestFunction(
|
|
19895
19959
|
localVarAxiosArgs,
|
|
19896
|
-
|
|
19960
|
+
import_axios13.default,
|
|
19897
19961
|
BASE_PATH,
|
|
19898
19962
|
configuration
|
|
19899
19963
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -19916,7 +19980,7 @@ var ChangeApiFp = function(configuration) {
|
|
|
19916
19980
|
const localVarOperationServerBasePath = operationServerMap["ChangeApi.getChangeField"]?.[localVarOperationServerIndex]?.url;
|
|
19917
19981
|
return (axios3, basePath) => createRequestFunction(
|
|
19918
19982
|
localVarAxiosArgs,
|
|
19919
|
-
|
|
19983
|
+
import_axios13.default,
|
|
19920
19984
|
BASE_PATH,
|
|
19921
19985
|
configuration
|
|
19922
19986
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -19939,7 +20003,7 @@ var ChangeApiFp = function(configuration) {
|
|
|
19939
20003
|
const localVarOperationServerBasePath = operationServerMap["ChangeApi.getChangeFirstBuilds"]?.[localVarOperationServerIndex]?.url;
|
|
19940
20004
|
return (axios3, basePath) => createRequestFunction(
|
|
19941
20005
|
localVarAxiosArgs,
|
|
19942
|
-
|
|
20006
|
+
import_axios13.default,
|
|
19943
20007
|
BASE_PATH,
|
|
19944
20008
|
configuration
|
|
19945
20009
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -19960,7 +20024,7 @@ var ChangeApiFp = function(configuration) {
|
|
|
19960
20024
|
const localVarOperationServerBasePath = operationServerMap["ChangeApi.getChangeIssue"]?.[localVarOperationServerIndex]?.url;
|
|
19961
20025
|
return (axios3, basePath) => createRequestFunction(
|
|
19962
20026
|
localVarAxiosArgs,
|
|
19963
|
-
|
|
20027
|
+
import_axios13.default,
|
|
19964
20028
|
BASE_PATH,
|
|
19965
20029
|
configuration
|
|
19966
20030
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -19983,7 +20047,7 @@ var ChangeApiFp = function(configuration) {
|
|
|
19983
20047
|
const localVarOperationServerBasePath = operationServerMap["ChangeApi.getChangeParentChanges"]?.[localVarOperationServerIndex]?.url;
|
|
19984
20048
|
return (axios3, basePath) => createRequestFunction(
|
|
19985
20049
|
localVarAxiosArgs,
|
|
19986
|
-
|
|
20050
|
+
import_axios13.default,
|
|
19987
20051
|
BASE_PATH,
|
|
19988
20052
|
configuration
|
|
19989
20053
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -20004,7 +20068,7 @@ var ChangeApiFp = function(configuration) {
|
|
|
20004
20068
|
const localVarOperationServerBasePath = operationServerMap["ChangeApi.getChangeParentRevisions"]?.[localVarOperationServerIndex]?.url;
|
|
20005
20069
|
return (axios3, basePath) => createRequestFunction(
|
|
20006
20070
|
localVarAxiosArgs,
|
|
20007
|
-
|
|
20071
|
+
import_axios13.default,
|
|
20008
20072
|
BASE_PATH,
|
|
20009
20073
|
configuration
|
|
20010
20074
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -20027,7 +20091,7 @@ var ChangeApiFp = function(configuration) {
|
|
|
20027
20091
|
const localVarOperationServerBasePath = operationServerMap["ChangeApi.getChangeVcsRoot"]?.[localVarOperationServerIndex]?.url;
|
|
20028
20092
|
return (axios3, basePath) => createRequestFunction(
|
|
20029
20093
|
localVarAxiosArgs,
|
|
20030
|
-
|
|
20094
|
+
import_axios13.default,
|
|
20031
20095
|
BASE_PATH,
|
|
20032
20096
|
configuration
|
|
20033
20097
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -20156,7 +20220,7 @@ var ChangeApi = class extends BaseAPI {
|
|
|
20156
20220
|
};
|
|
20157
20221
|
|
|
20158
20222
|
// src/teamcity-client/api/cloud-instance-api.ts
|
|
20159
|
-
var
|
|
20223
|
+
var import_axios14 = __toESM(require("axios"));
|
|
20160
20224
|
var CloudInstanceApiAxiosParamCreator = function(configuration) {
|
|
20161
20225
|
return {
|
|
20162
20226
|
/**
|
|
@@ -20537,7 +20601,7 @@ var CloudInstanceApiFp = function(configuration) {
|
|
|
20537
20601
|
const localVarOperationServerBasePath = operationServerMap["CloudInstanceApi.forseTerminateInstance"]?.[localVarOperationServerIndex]?.url;
|
|
20538
20602
|
return (axios3, basePath) => createRequestFunction(
|
|
20539
20603
|
localVarAxiosArgs,
|
|
20540
|
-
|
|
20604
|
+
import_axios14.default,
|
|
20541
20605
|
BASE_PATH,
|
|
20542
20606
|
configuration
|
|
20543
20607
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -20560,7 +20624,7 @@ var CloudInstanceApiFp = function(configuration) {
|
|
|
20560
20624
|
const localVarOperationServerBasePath = operationServerMap["CloudInstanceApi.getAllCloudImages"]?.[localVarOperationServerIndex]?.url;
|
|
20561
20625
|
return (axios3, basePath) => createRequestFunction(
|
|
20562
20626
|
localVarAxiosArgs,
|
|
20563
|
-
|
|
20627
|
+
import_axios14.default,
|
|
20564
20628
|
BASE_PATH,
|
|
20565
20629
|
configuration
|
|
20566
20630
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -20583,7 +20647,7 @@ var CloudInstanceApiFp = function(configuration) {
|
|
|
20583
20647
|
const localVarOperationServerBasePath = operationServerMap["CloudInstanceApi.getAllCloudInstances"]?.[localVarOperationServerIndex]?.url;
|
|
20584
20648
|
return (axios3, basePath) => createRequestFunction(
|
|
20585
20649
|
localVarAxiosArgs,
|
|
20586
|
-
|
|
20650
|
+
import_axios14.default,
|
|
20587
20651
|
BASE_PATH,
|
|
20588
20652
|
configuration
|
|
20589
20653
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -20606,7 +20670,7 @@ var CloudInstanceApiFp = function(configuration) {
|
|
|
20606
20670
|
const localVarOperationServerBasePath = operationServerMap["CloudInstanceApi.getAllCloudProfiles"]?.[localVarOperationServerIndex]?.url;
|
|
20607
20671
|
return (axios3, basePath) => createRequestFunction(
|
|
20608
20672
|
localVarAxiosArgs,
|
|
20609
|
-
|
|
20673
|
+
import_axios14.default,
|
|
20610
20674
|
BASE_PATH,
|
|
20611
20675
|
configuration
|
|
20612
20676
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -20629,7 +20693,7 @@ var CloudInstanceApiFp = function(configuration) {
|
|
|
20629
20693
|
const localVarOperationServerBasePath = operationServerMap["CloudInstanceApi.getCloudImage"]?.[localVarOperationServerIndex]?.url;
|
|
20630
20694
|
return (axios3, basePath) => createRequestFunction(
|
|
20631
20695
|
localVarAxiosArgs,
|
|
20632
|
-
|
|
20696
|
+
import_axios14.default,
|
|
20633
20697
|
BASE_PATH,
|
|
20634
20698
|
configuration
|
|
20635
20699
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -20652,7 +20716,7 @@ var CloudInstanceApiFp = function(configuration) {
|
|
|
20652
20716
|
const localVarOperationServerBasePath = operationServerMap["CloudInstanceApi.getCloudInstance"]?.[localVarOperationServerIndex]?.url;
|
|
20653
20717
|
return (axios3, basePath) => createRequestFunction(
|
|
20654
20718
|
localVarAxiosArgs,
|
|
20655
|
-
|
|
20719
|
+
import_axios14.default,
|
|
20656
20720
|
BASE_PATH,
|
|
20657
20721
|
configuration
|
|
20658
20722
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -20675,7 +20739,7 @@ var CloudInstanceApiFp = function(configuration) {
|
|
|
20675
20739
|
const localVarOperationServerBasePath = operationServerMap["CloudInstanceApi.getCloudProfile"]?.[localVarOperationServerIndex]?.url;
|
|
20676
20740
|
return (axios3, basePath) => createRequestFunction(
|
|
20677
20741
|
localVarAxiosArgs,
|
|
20678
|
-
|
|
20742
|
+
import_axios14.default,
|
|
20679
20743
|
BASE_PATH,
|
|
20680
20744
|
configuration
|
|
20681
20745
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -20698,7 +20762,7 @@ var CloudInstanceApiFp = function(configuration) {
|
|
|
20698
20762
|
const localVarOperationServerBasePath = operationServerMap["CloudInstanceApi.startInstance"]?.[localVarOperationServerIndex]?.url;
|
|
20699
20763
|
return (axios3, basePath) => createRequestFunction(
|
|
20700
20764
|
localVarAxiosArgs,
|
|
20701
|
-
|
|
20765
|
+
import_axios14.default,
|
|
20702
20766
|
BASE_PATH,
|
|
20703
20767
|
configuration
|
|
20704
20768
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -20719,7 +20783,7 @@ var CloudInstanceApiFp = function(configuration) {
|
|
|
20719
20783
|
const localVarOperationServerBasePath = operationServerMap["CloudInstanceApi.stopInstance"]?.[localVarOperationServerIndex]?.url;
|
|
20720
20784
|
return (axios3, basePath) => createRequestFunction(
|
|
20721
20785
|
localVarAxiosArgs,
|
|
20722
|
-
|
|
20786
|
+
import_axios14.default,
|
|
20723
20787
|
BASE_PATH,
|
|
20724
20788
|
configuration
|
|
20725
20789
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -20740,7 +20804,7 @@ var CloudInstanceApiFp = function(configuration) {
|
|
|
20740
20804
|
const localVarOperationServerBasePath = operationServerMap["CloudInstanceApi.terminateInstance"]?.[localVarOperationServerIndex]?.url;
|
|
20741
20805
|
return (axios3, basePath) => createRequestFunction(
|
|
20742
20806
|
localVarAxiosArgs,
|
|
20743
|
-
|
|
20807
|
+
import_axios14.default,
|
|
20744
20808
|
BASE_PATH,
|
|
20745
20809
|
configuration
|
|
20746
20810
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -20868,7 +20932,7 @@ var CloudInstanceApi = class extends BaseAPI {
|
|
|
20868
20932
|
};
|
|
20869
20933
|
|
|
20870
20934
|
// src/teamcity-client/api/deployment-dashboard-api.ts
|
|
20871
|
-
var
|
|
20935
|
+
var import_axios15 = __toESM(require("axios"));
|
|
20872
20936
|
var DeploymentDashboardApiAxiosParamCreator = function(configuration) {
|
|
20873
20937
|
return {
|
|
20874
20938
|
/**
|
|
@@ -21248,7 +21312,7 @@ var DeploymentDashboardApiFp = function(configuration) {
|
|
|
21248
21312
|
const localVarOperationServerBasePath = operationServerMap["DeploymentDashboardApi.createDashboard"]?.[localVarOperationServerIndex]?.url;
|
|
21249
21313
|
return (axios3, basePath) => createRequestFunction(
|
|
21250
21314
|
localVarAxiosArgs,
|
|
21251
|
-
|
|
21315
|
+
import_axios15.default,
|
|
21252
21316
|
BASE_PATH,
|
|
21253
21317
|
configuration
|
|
21254
21318
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -21271,7 +21335,7 @@ var DeploymentDashboardApiFp = function(configuration) {
|
|
|
21271
21335
|
const localVarOperationServerBasePath = operationServerMap["DeploymentDashboardApi.createInstance"]?.[localVarOperationServerIndex]?.url;
|
|
21272
21336
|
return (axios3, basePath) => createRequestFunction(
|
|
21273
21337
|
localVarAxiosArgs,
|
|
21274
|
-
|
|
21338
|
+
import_axios15.default,
|
|
21275
21339
|
BASE_PATH,
|
|
21276
21340
|
configuration
|
|
21277
21341
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -21292,7 +21356,7 @@ var DeploymentDashboardApiFp = function(configuration) {
|
|
|
21292
21356
|
const localVarOperationServerBasePath = operationServerMap["DeploymentDashboardApi.deleteDashboard"]?.[localVarOperationServerIndex]?.url;
|
|
21293
21357
|
return (axios3, basePath) => createRequestFunction(
|
|
21294
21358
|
localVarAxiosArgs,
|
|
21295
|
-
|
|
21359
|
+
import_axios15.default,
|
|
21296
21360
|
BASE_PATH,
|
|
21297
21361
|
configuration
|
|
21298
21362
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -21315,7 +21379,7 @@ var DeploymentDashboardApiFp = function(configuration) {
|
|
|
21315
21379
|
const localVarOperationServerBasePath = operationServerMap["DeploymentDashboardApi.deleteInstance"]?.[localVarOperationServerIndex]?.url;
|
|
21316
21380
|
return (axios3, basePath) => createRequestFunction(
|
|
21317
21381
|
localVarAxiosArgs,
|
|
21318
|
-
|
|
21382
|
+
import_axios15.default,
|
|
21319
21383
|
BASE_PATH,
|
|
21320
21384
|
configuration
|
|
21321
21385
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -21338,7 +21402,7 @@ var DeploymentDashboardApiFp = function(configuration) {
|
|
|
21338
21402
|
const localVarOperationServerBasePath = operationServerMap["DeploymentDashboardApi.getAllDashboards"]?.[localVarOperationServerIndex]?.url;
|
|
21339
21403
|
return (axios3, basePath) => createRequestFunction(
|
|
21340
21404
|
localVarAxiosArgs,
|
|
21341
|
-
|
|
21405
|
+
import_axios15.default,
|
|
21342
21406
|
BASE_PATH,
|
|
21343
21407
|
configuration
|
|
21344
21408
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -21361,7 +21425,7 @@ var DeploymentDashboardApiFp = function(configuration) {
|
|
|
21361
21425
|
const localVarOperationServerBasePath = operationServerMap["DeploymentDashboardApi.getDashboard"]?.[localVarOperationServerIndex]?.url;
|
|
21362
21426
|
return (axios3, basePath) => createRequestFunction(
|
|
21363
21427
|
localVarAxiosArgs,
|
|
21364
|
-
|
|
21428
|
+
import_axios15.default,
|
|
21365
21429
|
BASE_PATH,
|
|
21366
21430
|
configuration
|
|
21367
21431
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -21386,7 +21450,7 @@ var DeploymentDashboardApiFp = function(configuration) {
|
|
|
21386
21450
|
const localVarOperationServerBasePath = operationServerMap["DeploymentDashboardApi.getInstance"]?.[localVarOperationServerIndex]?.url;
|
|
21387
21451
|
return (axios3, basePath) => createRequestFunction(
|
|
21388
21452
|
localVarAxiosArgs,
|
|
21389
|
-
|
|
21453
|
+
import_axios15.default,
|
|
21390
21454
|
BASE_PATH,
|
|
21391
21455
|
configuration
|
|
21392
21456
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -21411,7 +21475,7 @@ var DeploymentDashboardApiFp = function(configuration) {
|
|
|
21411
21475
|
const localVarOperationServerBasePath = operationServerMap["DeploymentDashboardApi.getInstances"]?.[localVarOperationServerIndex]?.url;
|
|
21412
21476
|
return (axios3, basePath) => createRequestFunction(
|
|
21413
21477
|
localVarAxiosArgs,
|
|
21414
|
-
|
|
21478
|
+
import_axios15.default,
|
|
21415
21479
|
BASE_PATH,
|
|
21416
21480
|
configuration
|
|
21417
21481
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -21436,7 +21500,7 @@ var DeploymentDashboardApiFp = function(configuration) {
|
|
|
21436
21500
|
const localVarOperationServerBasePath = operationServerMap["DeploymentDashboardApi.reportNewDeploymentForInstance"]?.[localVarOperationServerIndex]?.url;
|
|
21437
21501
|
return (axios3, basePath) => createRequestFunction(
|
|
21438
21502
|
localVarAxiosArgs,
|
|
21439
|
-
|
|
21503
|
+
import_axios15.default,
|
|
21440
21504
|
BASE_PATH,
|
|
21441
21505
|
configuration
|
|
21442
21506
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -21561,7 +21625,7 @@ var DeploymentDashboardApi = class extends BaseAPI {
|
|
|
21561
21625
|
};
|
|
21562
21626
|
|
|
21563
21627
|
// src/teamcity-client/api/global-server-settings-api.ts
|
|
21564
|
-
var
|
|
21628
|
+
var import_axios16 = __toESM(require("axios"));
|
|
21565
21629
|
var GlobalServerSettingsApiAxiosParamCreator = function(configuration) {
|
|
21566
21630
|
return {
|
|
21567
21631
|
/**
|
|
@@ -21644,7 +21708,7 @@ var GlobalServerSettingsApiFp = function(configuration) {
|
|
|
21644
21708
|
const localVarOperationServerBasePath = operationServerMap["GlobalServerSettingsApi.getGlobalSettings"]?.[localVarOperationServerIndex]?.url;
|
|
21645
21709
|
return (axios3, basePath) => createRequestFunction(
|
|
21646
21710
|
localVarAxiosArgs,
|
|
21647
|
-
|
|
21711
|
+
import_axios16.default,
|
|
21648
21712
|
BASE_PATH,
|
|
21649
21713
|
configuration
|
|
21650
21714
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -21662,7 +21726,7 @@ var GlobalServerSettingsApiFp = function(configuration) {
|
|
|
21662
21726
|
const localVarOperationServerBasePath = operationServerMap["GlobalServerSettingsApi.setGlobalSettings"]?.[localVarOperationServerIndex]?.url;
|
|
21663
21727
|
return (axios3, basePath) => createRequestFunction(
|
|
21664
21728
|
localVarAxiosArgs,
|
|
21665
|
-
|
|
21729
|
+
import_axios16.default,
|
|
21666
21730
|
BASE_PATH,
|
|
21667
21731
|
configuration
|
|
21668
21732
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -21694,7 +21758,7 @@ var GlobalServerSettingsApi = class extends BaseAPI {
|
|
|
21694
21758
|
};
|
|
21695
21759
|
|
|
21696
21760
|
// src/teamcity-client/api/group-api.ts
|
|
21697
|
-
var
|
|
21761
|
+
var import_axios17 = __toESM(require("axios"));
|
|
21698
21762
|
var GroupApiAxiosParamCreator = function(configuration) {
|
|
21699
21763
|
return {
|
|
21700
21764
|
/**
|
|
@@ -22293,7 +22357,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22293
22357
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.addGroup"]?.[localVarOperationServerIndex]?.url;
|
|
22294
22358
|
return (axios3, basePath) => createRequestFunction(
|
|
22295
22359
|
localVarAxiosArgs,
|
|
22296
|
-
|
|
22360
|
+
import_axios17.default,
|
|
22297
22361
|
BASE_PATH,
|
|
22298
22362
|
configuration
|
|
22299
22363
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22318,7 +22382,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22318
22382
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.addRoleAtScopeToGroup"]?.[localVarOperationServerIndex]?.url;
|
|
22319
22383
|
return (axios3, basePath) => createRequestFunction(
|
|
22320
22384
|
localVarAxiosArgs,
|
|
22321
|
-
|
|
22385
|
+
import_axios17.default,
|
|
22322
22386
|
BASE_PATH,
|
|
22323
22387
|
configuration
|
|
22324
22388
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22341,7 +22405,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22341
22405
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.addRoleToGroup"]?.[localVarOperationServerIndex]?.url;
|
|
22342
22406
|
return (axios3, basePath) => createRequestFunction(
|
|
22343
22407
|
localVarAxiosArgs,
|
|
22344
|
-
|
|
22408
|
+
import_axios17.default,
|
|
22345
22409
|
BASE_PATH,
|
|
22346
22410
|
configuration
|
|
22347
22411
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22359,7 +22423,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22359
22423
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.deleteGroup"]?.[localVarOperationServerIndex]?.url;
|
|
22360
22424
|
return (axios3, basePath) => createRequestFunction(
|
|
22361
22425
|
localVarAxiosArgs,
|
|
22362
|
-
|
|
22426
|
+
import_axios17.default,
|
|
22363
22427
|
BASE_PATH,
|
|
22364
22428
|
configuration
|
|
22365
22429
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22377,7 +22441,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22377
22441
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.getAllGroups"]?.[localVarOperationServerIndex]?.url;
|
|
22378
22442
|
return (axios3, basePath) => createRequestFunction(
|
|
22379
22443
|
localVarAxiosArgs,
|
|
22380
|
-
|
|
22444
|
+
import_axios17.default,
|
|
22381
22445
|
BASE_PATH,
|
|
22382
22446
|
configuration
|
|
22383
22447
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22400,7 +22464,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22400
22464
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.getGroupParentGroups"]?.[localVarOperationServerIndex]?.url;
|
|
22401
22465
|
return (axios3, basePath) => createRequestFunction(
|
|
22402
22466
|
localVarAxiosArgs,
|
|
22403
|
-
|
|
22467
|
+
import_axios17.default,
|
|
22404
22468
|
BASE_PATH,
|
|
22405
22469
|
configuration
|
|
22406
22470
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22423,7 +22487,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22423
22487
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.getGroupProperties"]?.[localVarOperationServerIndex]?.url;
|
|
22424
22488
|
return (axios3, basePath) => createRequestFunction(
|
|
22425
22489
|
localVarAxiosArgs,
|
|
22426
|
-
|
|
22490
|
+
import_axios17.default,
|
|
22427
22491
|
BASE_PATH,
|
|
22428
22492
|
configuration
|
|
22429
22493
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22446,7 +22510,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22446
22510
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.getGroupProperty"]?.[localVarOperationServerIndex]?.url;
|
|
22447
22511
|
return (axios3, basePath) => createRequestFunction(
|
|
22448
22512
|
localVarAxiosArgs,
|
|
22449
|
-
|
|
22513
|
+
import_axios17.default,
|
|
22450
22514
|
BASE_PATH,
|
|
22451
22515
|
configuration
|
|
22452
22516
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22471,7 +22535,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22471
22535
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.getGroupRoleAtScope"]?.[localVarOperationServerIndex]?.url;
|
|
22472
22536
|
return (axios3, basePath) => createRequestFunction(
|
|
22473
22537
|
localVarAxiosArgs,
|
|
22474
|
-
|
|
22538
|
+
import_axios17.default,
|
|
22475
22539
|
BASE_PATH,
|
|
22476
22540
|
configuration
|
|
22477
22541
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22492,7 +22556,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22492
22556
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.getGroupRoles"]?.[localVarOperationServerIndex]?.url;
|
|
22493
22557
|
return (axios3, basePath) => createRequestFunction(
|
|
22494
22558
|
localVarAxiosArgs,
|
|
22495
|
-
|
|
22559
|
+
import_axios17.default,
|
|
22496
22560
|
BASE_PATH,
|
|
22497
22561
|
configuration
|
|
22498
22562
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22515,7 +22579,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22515
22579
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.getUserGroupOfGroup"]?.[localVarOperationServerIndex]?.url;
|
|
22516
22580
|
return (axios3, basePath) => createRequestFunction(
|
|
22517
22581
|
localVarAxiosArgs,
|
|
22518
|
-
|
|
22582
|
+
import_axios17.default,
|
|
22519
22583
|
BASE_PATH,
|
|
22520
22584
|
configuration
|
|
22521
22585
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22538,7 +22602,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22538
22602
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.removeGroupProperty"]?.[localVarOperationServerIndex]?.url;
|
|
22539
22603
|
return (axios3, basePath) => createRequestFunction(
|
|
22540
22604
|
localVarAxiosArgs,
|
|
22541
|
-
|
|
22605
|
+
import_axios17.default,
|
|
22542
22606
|
BASE_PATH,
|
|
22543
22607
|
configuration
|
|
22544
22608
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22563,7 +22627,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22563
22627
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.removeRoleAtScopeFromGroup"]?.[localVarOperationServerIndex]?.url;
|
|
22564
22628
|
return (axios3, basePath) => createRequestFunction(
|
|
22565
22629
|
localVarAxiosArgs,
|
|
22566
|
-
|
|
22630
|
+
import_axios17.default,
|
|
22567
22631
|
BASE_PATH,
|
|
22568
22632
|
configuration
|
|
22569
22633
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22588,7 +22652,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22588
22652
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.setGroupParentGroups"]?.[localVarOperationServerIndex]?.url;
|
|
22589
22653
|
return (axios3, basePath) => createRequestFunction(
|
|
22590
22654
|
localVarAxiosArgs,
|
|
22591
|
-
|
|
22655
|
+
import_axios17.default,
|
|
22592
22656
|
BASE_PATH,
|
|
22593
22657
|
configuration
|
|
22594
22658
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22613,7 +22677,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22613
22677
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.setGroupProperty"]?.[localVarOperationServerIndex]?.url;
|
|
22614
22678
|
return (axios3, basePath) => createRequestFunction(
|
|
22615
22679
|
localVarAxiosArgs,
|
|
22616
|
-
|
|
22680
|
+
import_axios17.default,
|
|
22617
22681
|
BASE_PATH,
|
|
22618
22682
|
configuration
|
|
22619
22683
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22636,7 +22700,7 @@ var GroupApiFp = function(configuration) {
|
|
|
22636
22700
|
const localVarOperationServerBasePath = operationServerMap["GroupApi.setGroupRoles"]?.[localVarOperationServerIndex]?.url;
|
|
22637
22701
|
return (axios3, basePath) => createRequestFunction(
|
|
22638
22702
|
localVarAxiosArgs,
|
|
22639
|
-
|
|
22703
|
+
import_axios17.default,
|
|
22640
22704
|
BASE_PATH,
|
|
22641
22705
|
configuration
|
|
22642
22706
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -22841,7 +22905,7 @@ var GroupApi = class extends BaseAPI {
|
|
|
22841
22905
|
};
|
|
22842
22906
|
|
|
22843
22907
|
// src/teamcity-client/api/health-api.ts
|
|
22844
|
-
var
|
|
22908
|
+
var import_axios18 = __toESM(require("axios"));
|
|
22845
22909
|
var HealthApiAxiosParamCreator = function(configuration) {
|
|
22846
22910
|
return {
|
|
22847
22911
|
/**
|
|
@@ -23008,7 +23072,7 @@ var HealthApiFp = function(configuration) {
|
|
|
23008
23072
|
const localVarOperationServerBasePath = operationServerMap["HealthApi.getCategories"]?.[localVarOperationServerIndex]?.url;
|
|
23009
23073
|
return (axios3, basePath) => createRequestFunction(
|
|
23010
23074
|
localVarAxiosArgs,
|
|
23011
|
-
|
|
23075
|
+
import_axios18.default,
|
|
23012
23076
|
BASE_PATH,
|
|
23013
23077
|
configuration
|
|
23014
23078
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23030,7 +23094,7 @@ var HealthApiFp = function(configuration) {
|
|
|
23030
23094
|
const localVarOperationServerBasePath = operationServerMap["HealthApi.getHealthItems"]?.[localVarOperationServerIndex]?.url;
|
|
23031
23095
|
return (axios3, basePath) => createRequestFunction(
|
|
23032
23096
|
localVarAxiosArgs,
|
|
23033
|
-
|
|
23097
|
+
import_axios18.default,
|
|
23034
23098
|
BASE_PATH,
|
|
23035
23099
|
configuration
|
|
23036
23100
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23052,7 +23116,7 @@ var HealthApiFp = function(configuration) {
|
|
|
23052
23116
|
const localVarOperationServerBasePath = operationServerMap["HealthApi.getSingleCategory"]?.[localVarOperationServerIndex]?.url;
|
|
23053
23117
|
return (axios3, basePath) => createRequestFunction(
|
|
23054
23118
|
localVarAxiosArgs,
|
|
23055
|
-
|
|
23119
|
+
import_axios18.default,
|
|
23056
23120
|
BASE_PATH,
|
|
23057
23121
|
configuration
|
|
23058
23122
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23074,7 +23138,7 @@ var HealthApiFp = function(configuration) {
|
|
|
23074
23138
|
const localVarOperationServerBasePath = operationServerMap["HealthApi.getSingleHealthItem"]?.[localVarOperationServerIndex]?.url;
|
|
23075
23139
|
return (axios3, basePath) => createRequestFunction(
|
|
23076
23140
|
localVarAxiosArgs,
|
|
23077
|
-
|
|
23141
|
+
import_axios18.default,
|
|
23078
23142
|
BASE_PATH,
|
|
23079
23143
|
configuration
|
|
23080
23144
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23129,7 +23193,7 @@ var HealthApi = class extends BaseAPI {
|
|
|
23129
23193
|
};
|
|
23130
23194
|
|
|
23131
23195
|
// src/teamcity-client/api/investigation-api.ts
|
|
23132
|
-
var
|
|
23196
|
+
var import_axios19 = __toESM(require("axios"));
|
|
23133
23197
|
var InvestigationApiAxiosParamCreator = function(configuration) {
|
|
23134
23198
|
return {
|
|
23135
23199
|
/**
|
|
@@ -23383,7 +23447,7 @@ var InvestigationApiFp = function(configuration) {
|
|
|
23383
23447
|
const localVarOperationServerBasePath = operationServerMap["InvestigationApi.addInvestigation"]?.[localVarOperationServerIndex]?.url;
|
|
23384
23448
|
return (axios3, basePath) => createRequestFunction(
|
|
23385
23449
|
localVarAxiosArgs,
|
|
23386
|
-
|
|
23450
|
+
import_axios19.default,
|
|
23387
23451
|
BASE_PATH,
|
|
23388
23452
|
configuration
|
|
23389
23453
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23406,7 +23470,7 @@ var InvestigationApiFp = function(configuration) {
|
|
|
23406
23470
|
const localVarOperationServerBasePath = operationServerMap["InvestigationApi.addMultipleInvestigations"]?.[localVarOperationServerIndex]?.url;
|
|
23407
23471
|
return (axios3, basePath) => createRequestFunction(
|
|
23408
23472
|
localVarAxiosArgs,
|
|
23409
|
-
|
|
23473
|
+
import_axios19.default,
|
|
23410
23474
|
BASE_PATH,
|
|
23411
23475
|
configuration
|
|
23412
23476
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23427,7 +23491,7 @@ var InvestigationApiFp = function(configuration) {
|
|
|
23427
23491
|
const localVarOperationServerBasePath = operationServerMap["InvestigationApi.deleteInvestigation"]?.[localVarOperationServerIndex]?.url;
|
|
23428
23492
|
return (axios3, basePath) => createRequestFunction(
|
|
23429
23493
|
localVarAxiosArgs,
|
|
23430
|
-
|
|
23494
|
+
import_axios19.default,
|
|
23431
23495
|
BASE_PATH,
|
|
23432
23496
|
configuration
|
|
23433
23497
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23450,7 +23514,7 @@ var InvestigationApiFp = function(configuration) {
|
|
|
23450
23514
|
const localVarOperationServerBasePath = operationServerMap["InvestigationApi.getAllInvestigations"]?.[localVarOperationServerIndex]?.url;
|
|
23451
23515
|
return (axios3, basePath) => createRequestFunction(
|
|
23452
23516
|
localVarAxiosArgs,
|
|
23453
|
-
|
|
23517
|
+
import_axios19.default,
|
|
23454
23518
|
BASE_PATH,
|
|
23455
23519
|
configuration
|
|
23456
23520
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23473,7 +23537,7 @@ var InvestigationApiFp = function(configuration) {
|
|
|
23473
23537
|
const localVarOperationServerBasePath = operationServerMap["InvestigationApi.getInvestigation"]?.[localVarOperationServerIndex]?.url;
|
|
23474
23538
|
return (axios3, basePath) => createRequestFunction(
|
|
23475
23539
|
localVarAxiosArgs,
|
|
23476
|
-
|
|
23540
|
+
import_axios19.default,
|
|
23477
23541
|
BASE_PATH,
|
|
23478
23542
|
configuration
|
|
23479
23543
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23498,7 +23562,7 @@ var InvestigationApiFp = function(configuration) {
|
|
|
23498
23562
|
const localVarOperationServerBasePath = operationServerMap["InvestigationApi.replaceInvestigation"]?.[localVarOperationServerIndex]?.url;
|
|
23499
23563
|
return (axios3, basePath) => createRequestFunction(
|
|
23500
23564
|
localVarAxiosArgs,
|
|
23501
|
-
|
|
23565
|
+
import_axios19.default,
|
|
23502
23566
|
BASE_PATH,
|
|
23503
23567
|
configuration
|
|
23504
23568
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23581,7 +23645,7 @@ var InvestigationApi = class extends BaseAPI {
|
|
|
23581
23645
|
};
|
|
23582
23646
|
|
|
23583
23647
|
// src/teamcity-client/api/mute-api.ts
|
|
23584
|
-
var
|
|
23648
|
+
var import_axios20 = __toESM(require("axios"));
|
|
23585
23649
|
var MuteApiAxiosParamCreator = function(configuration) {
|
|
23586
23650
|
return {
|
|
23587
23651
|
/**
|
|
@@ -23837,7 +23901,7 @@ var MuteApiFp = function(configuration) {
|
|
|
23837
23901
|
const localVarOperationServerBasePath = operationServerMap["MuteApi.getAllMutedTests"]?.[localVarOperationServerIndex]?.url;
|
|
23838
23902
|
return (axios3, basePath) => createRequestFunction(
|
|
23839
23903
|
localVarAxiosArgs,
|
|
23840
|
-
|
|
23904
|
+
import_axios20.default,
|
|
23841
23905
|
BASE_PATH,
|
|
23842
23906
|
configuration
|
|
23843
23907
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23860,7 +23924,7 @@ var MuteApiFp = function(configuration) {
|
|
|
23860
23924
|
const localVarOperationServerBasePath = operationServerMap["MuteApi.getMutedTest"]?.[localVarOperationServerIndex]?.url;
|
|
23861
23925
|
return (axios3, basePath) => createRequestFunction(
|
|
23862
23926
|
localVarAxiosArgs,
|
|
23863
|
-
|
|
23927
|
+
import_axios20.default,
|
|
23864
23928
|
BASE_PATH,
|
|
23865
23929
|
configuration
|
|
23866
23930
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23883,7 +23947,7 @@ var MuteApiFp = function(configuration) {
|
|
|
23883
23947
|
const localVarOperationServerBasePath = operationServerMap["MuteApi.muteMultipleTests"]?.[localVarOperationServerIndex]?.url;
|
|
23884
23948
|
return (axios3, basePath) => createRequestFunction(
|
|
23885
23949
|
localVarAxiosArgs,
|
|
23886
|
-
|
|
23950
|
+
import_axios20.default,
|
|
23887
23951
|
BASE_PATH,
|
|
23888
23952
|
configuration
|
|
23889
23953
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23902,7 +23966,7 @@ var MuteApiFp = function(configuration) {
|
|
|
23902
23966
|
const localVarOperationServerBasePath = operationServerMap["MuteApi.muteTest"]?.[localVarOperationServerIndex]?.url;
|
|
23903
23967
|
return (axios3, basePath) => createRequestFunction(
|
|
23904
23968
|
localVarAxiosArgs,
|
|
23905
|
-
|
|
23969
|
+
import_axios20.default,
|
|
23906
23970
|
BASE_PATH,
|
|
23907
23971
|
configuration
|
|
23908
23972
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23925,7 +23989,7 @@ var MuteApiFp = function(configuration) {
|
|
|
23925
23989
|
const localVarOperationServerBasePath = operationServerMap["MuteApi.unmuteMultipleTests"]?.[localVarOperationServerIndex]?.url;
|
|
23926
23990
|
return (axios3, basePath) => createRequestFunction(
|
|
23927
23991
|
localVarAxiosArgs,
|
|
23928
|
-
|
|
23992
|
+
import_axios20.default,
|
|
23929
23993
|
BASE_PATH,
|
|
23930
23994
|
configuration
|
|
23931
23995
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -23948,7 +24012,7 @@ var MuteApiFp = function(configuration) {
|
|
|
23948
24012
|
const localVarOperationServerBasePath = operationServerMap["MuteApi.unmuteTest"]?.[localVarOperationServerIndex]?.url;
|
|
23949
24013
|
return (axios3, basePath) => createRequestFunction(
|
|
23950
24014
|
localVarAxiosArgs,
|
|
23951
|
-
|
|
24015
|
+
import_axios20.default,
|
|
23952
24016
|
BASE_PATH,
|
|
23953
24017
|
configuration
|
|
23954
24018
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -24031,7 +24095,7 @@ var MuteApi = class extends BaseAPI {
|
|
|
24031
24095
|
};
|
|
24032
24096
|
|
|
24033
24097
|
// src/teamcity-client/api/node-api.ts
|
|
24034
|
-
var
|
|
24098
|
+
var import_axios21 = __toESM(require("axios"));
|
|
24035
24099
|
var NodeApiAxiosParamCreator = function(configuration) {
|
|
24036
24100
|
return {
|
|
24037
24101
|
/**
|
|
@@ -24282,7 +24346,7 @@ var NodeApiFp = function(configuration) {
|
|
|
24282
24346
|
const localVarOperationServerBasePath = operationServerMap["NodeApi.changeNodeResponsibility"]?.[localVarOperationServerIndex]?.url;
|
|
24283
24347
|
return (axios3, basePath) => createRequestFunction(
|
|
24284
24348
|
localVarAxiosArgs,
|
|
24285
|
-
|
|
24349
|
+
import_axios21.default,
|
|
24286
24350
|
BASE_PATH,
|
|
24287
24351
|
configuration
|
|
24288
24352
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -24305,7 +24369,7 @@ var NodeApiFp = function(configuration) {
|
|
|
24305
24369
|
const localVarOperationServerBasePath = operationServerMap["NodeApi.getAllNodes"]?.[localVarOperationServerIndex]?.url;
|
|
24306
24370
|
return (axios3, basePath) => createRequestFunction(
|
|
24307
24371
|
localVarAxiosArgs,
|
|
24308
|
-
|
|
24372
|
+
import_axios21.default,
|
|
24309
24373
|
BASE_PATH,
|
|
24310
24374
|
configuration
|
|
24311
24375
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -24328,7 +24392,7 @@ var NodeApiFp = function(configuration) {
|
|
|
24328
24392
|
const localVarOperationServerBasePath = operationServerMap["NodeApi.getDisabledResponsibilities"]?.[localVarOperationServerIndex]?.url;
|
|
24329
24393
|
return (axios3, basePath) => createRequestFunction(
|
|
24330
24394
|
localVarAxiosArgs,
|
|
24331
|
-
|
|
24395
|
+
import_axios21.default,
|
|
24332
24396
|
BASE_PATH,
|
|
24333
24397
|
configuration
|
|
24334
24398
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -24351,7 +24415,7 @@ var NodeApiFp = function(configuration) {
|
|
|
24351
24415
|
const localVarOperationServerBasePath = operationServerMap["NodeApi.getEffectiveResponsibilities"]?.[localVarOperationServerIndex]?.url;
|
|
24352
24416
|
return (axios3, basePath) => createRequestFunction(
|
|
24353
24417
|
localVarAxiosArgs,
|
|
24354
|
-
|
|
24418
|
+
import_axios21.default,
|
|
24355
24419
|
BASE_PATH,
|
|
24356
24420
|
configuration
|
|
24357
24421
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -24374,7 +24438,7 @@ var NodeApiFp = function(configuration) {
|
|
|
24374
24438
|
const localVarOperationServerBasePath = operationServerMap["NodeApi.getEnabledResponsibilities"]?.[localVarOperationServerIndex]?.url;
|
|
24375
24439
|
return (axios3, basePath) => createRequestFunction(
|
|
24376
24440
|
localVarAxiosArgs,
|
|
24377
|
-
|
|
24441
|
+
import_axios21.default,
|
|
24378
24442
|
BASE_PATH,
|
|
24379
24443
|
configuration
|
|
24380
24444
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -24397,7 +24461,7 @@ var NodeApiFp = function(configuration) {
|
|
|
24397
24461
|
const localVarOperationServerBasePath = operationServerMap["NodeApi.getNode"]?.[localVarOperationServerIndex]?.url;
|
|
24398
24462
|
return (axios3, basePath) => createRequestFunction(
|
|
24399
24463
|
localVarAxiosArgs,
|
|
24400
|
-
|
|
24464
|
+
import_axios21.default,
|
|
24401
24465
|
BASE_PATH,
|
|
24402
24466
|
configuration
|
|
24403
24467
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -24481,7 +24545,7 @@ var NodeApi = class extends BaseAPI {
|
|
|
24481
24545
|
};
|
|
24482
24546
|
|
|
24483
24547
|
// src/teamcity-client/api/problem-api.ts
|
|
24484
|
-
var
|
|
24548
|
+
var import_axios22 = __toESM(require("axios"));
|
|
24485
24549
|
var ProblemApiAxiosParamCreator = function(configuration) {
|
|
24486
24550
|
return {
|
|
24487
24551
|
/**
|
|
@@ -24580,7 +24644,7 @@ var ProblemApiFp = function(configuration) {
|
|
|
24580
24644
|
const localVarOperationServerBasePath = operationServerMap["ProblemApi.getAllBuildProblems"]?.[localVarOperationServerIndex]?.url;
|
|
24581
24645
|
return (axios3, basePath) => createRequestFunction(
|
|
24582
24646
|
localVarAxiosArgs,
|
|
24583
|
-
|
|
24647
|
+
import_axios22.default,
|
|
24584
24648
|
BASE_PATH,
|
|
24585
24649
|
configuration
|
|
24586
24650
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -24603,7 +24667,7 @@ var ProblemApiFp = function(configuration) {
|
|
|
24603
24667
|
const localVarOperationServerBasePath = operationServerMap["ProblemApi.getBuildProblem"]?.[localVarOperationServerIndex]?.url;
|
|
24604
24668
|
return (axios3, basePath) => createRequestFunction(
|
|
24605
24669
|
localVarAxiosArgs,
|
|
24606
|
-
|
|
24670
|
+
import_axios22.default,
|
|
24607
24671
|
BASE_PATH,
|
|
24608
24672
|
configuration
|
|
24609
24673
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -24638,7 +24702,7 @@ var ProblemApi = class extends BaseAPI {
|
|
|
24638
24702
|
};
|
|
24639
24703
|
|
|
24640
24704
|
// src/teamcity-client/api/problem-occurrence-api.ts
|
|
24641
|
-
var
|
|
24705
|
+
var import_axios23 = __toESM(require("axios"));
|
|
24642
24706
|
var ProblemOccurrenceApiAxiosParamCreator = function(configuration) {
|
|
24643
24707
|
return {
|
|
24644
24708
|
/**
|
|
@@ -24737,7 +24801,7 @@ var ProblemOccurrenceApiFp = function(configuration) {
|
|
|
24737
24801
|
const localVarOperationServerBasePath = operationServerMap["ProblemOccurrenceApi.getAllBuildProblemOccurrences"]?.[localVarOperationServerIndex]?.url;
|
|
24738
24802
|
return (axios3, basePath) => createRequestFunction(
|
|
24739
24803
|
localVarAxiosArgs,
|
|
24740
|
-
|
|
24804
|
+
import_axios23.default,
|
|
24741
24805
|
BASE_PATH,
|
|
24742
24806
|
configuration
|
|
24743
24807
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -24760,7 +24824,7 @@ var ProblemOccurrenceApiFp = function(configuration) {
|
|
|
24760
24824
|
const localVarOperationServerBasePath = operationServerMap["ProblemOccurrenceApi.getBuildProblemOccurrence"]?.[localVarOperationServerIndex]?.url;
|
|
24761
24825
|
return (axios3, basePath) => createRequestFunction(
|
|
24762
24826
|
localVarAxiosArgs,
|
|
24763
|
-
|
|
24827
|
+
import_axios23.default,
|
|
24764
24828
|
BASE_PATH,
|
|
24765
24829
|
configuration
|
|
24766
24830
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -24795,7 +24859,7 @@ var ProblemOccurrenceApi = class extends BaseAPI {
|
|
|
24795
24859
|
};
|
|
24796
24860
|
|
|
24797
24861
|
// src/teamcity-client/api/project-api.ts
|
|
24798
|
-
var
|
|
24862
|
+
var import_axios24 = __toESM(require("axios"));
|
|
24799
24863
|
var ProjectApiAxiosParamCreator = function(configuration) {
|
|
24800
24864
|
return {
|
|
24801
24865
|
/**
|
|
@@ -26654,7 +26718,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26654
26718
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.addAgentPoolsProject"]?.[localVarOperationServerIndex]?.url;
|
|
26655
26719
|
return (axios3, basePath) => createRequestFunction(
|
|
26656
26720
|
localVarAxiosArgs,
|
|
26657
|
-
|
|
26721
|
+
import_axios24.default,
|
|
26658
26722
|
BASE_PATH,
|
|
26659
26723
|
configuration
|
|
26660
26724
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -26679,7 +26743,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26679
26743
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.addBuildType"]?.[localVarOperationServerIndex]?.url;
|
|
26680
26744
|
return (axios3, basePath) => createRequestFunction(
|
|
26681
26745
|
localVarAxiosArgs,
|
|
26682
|
-
|
|
26746
|
+
import_axios24.default,
|
|
26683
26747
|
BASE_PATH,
|
|
26684
26748
|
configuration
|
|
26685
26749
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -26704,7 +26768,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26704
26768
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.addFeature"]?.[localVarOperationServerIndex]?.url;
|
|
26705
26769
|
return (axios3, basePath) => createRequestFunction(
|
|
26706
26770
|
localVarAxiosArgs,
|
|
26707
|
-
|
|
26771
|
+
import_axios24.default,
|
|
26708
26772
|
BASE_PATH,
|
|
26709
26773
|
configuration
|
|
26710
26774
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -26722,7 +26786,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26722
26786
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.addProject"]?.[localVarOperationServerIndex]?.url;
|
|
26723
26787
|
return (axios3, basePath) => createRequestFunction(
|
|
26724
26788
|
localVarAxiosArgs,
|
|
26725
|
-
|
|
26789
|
+
import_axios24.default,
|
|
26726
26790
|
BASE_PATH,
|
|
26727
26791
|
configuration
|
|
26728
26792
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -26745,7 +26809,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26745
26809
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.addSecureToken"]?.[localVarOperationServerIndex]?.url;
|
|
26746
26810
|
return (axios3, basePath) => createRequestFunction(
|
|
26747
26811
|
localVarAxiosArgs,
|
|
26748
|
-
|
|
26812
|
+
import_axios24.default,
|
|
26749
26813
|
BASE_PATH,
|
|
26750
26814
|
configuration
|
|
26751
26815
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -26770,7 +26834,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26770
26834
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.addTemplate"]?.[localVarOperationServerIndex]?.url;
|
|
26771
26835
|
return (axios3, basePath) => createRequestFunction(
|
|
26772
26836
|
localVarAxiosArgs,
|
|
26773
|
-
|
|
26837
|
+
import_axios24.default,
|
|
26774
26838
|
BASE_PATH,
|
|
26775
26839
|
configuration
|
|
26776
26840
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -26795,7 +26859,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26795
26859
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.createBuildParameter"]?.[localVarOperationServerIndex]?.url;
|
|
26796
26860
|
return (axios3, basePath) => createRequestFunction(
|
|
26797
26861
|
localVarAxiosArgs,
|
|
26798
|
-
|
|
26862
|
+
import_axios24.default,
|
|
26799
26863
|
BASE_PATH,
|
|
26800
26864
|
configuration
|
|
26801
26865
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -26818,7 +26882,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26818
26882
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.deleteBuildParameter"]?.[localVarOperationServerIndex]?.url;
|
|
26819
26883
|
return (axios3, basePath) => createRequestFunction(
|
|
26820
26884
|
localVarAxiosArgs,
|
|
26821
|
-
|
|
26885
|
+
import_axios24.default,
|
|
26822
26886
|
BASE_PATH,
|
|
26823
26887
|
configuration
|
|
26824
26888
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -26839,7 +26903,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26839
26903
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.deleteBuildParameters"]?.[localVarOperationServerIndex]?.url;
|
|
26840
26904
|
return (axios3, basePath) => createRequestFunction(
|
|
26841
26905
|
localVarAxiosArgs,
|
|
26842
|
-
|
|
26906
|
+
import_axios24.default,
|
|
26843
26907
|
BASE_PATH,
|
|
26844
26908
|
configuration
|
|
26845
26909
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -26862,7 +26926,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26862
26926
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.deleteFeature"]?.[localVarOperationServerIndex]?.url;
|
|
26863
26927
|
return (axios3, basePath) => createRequestFunction(
|
|
26864
26928
|
localVarAxiosArgs,
|
|
26865
|
-
|
|
26929
|
+
import_axios24.default,
|
|
26866
26930
|
BASE_PATH,
|
|
26867
26931
|
configuration
|
|
26868
26932
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -26883,7 +26947,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26883
26947
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.deleteProject"]?.[localVarOperationServerIndex]?.url;
|
|
26884
26948
|
return (axios3, basePath) => createRequestFunction(
|
|
26885
26949
|
localVarAxiosArgs,
|
|
26886
|
-
|
|
26950
|
+
import_axios24.default,
|
|
26887
26951
|
BASE_PATH,
|
|
26888
26952
|
configuration
|
|
26889
26953
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -26906,7 +26970,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26906
26970
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getAgentPoolsProject"]?.[localVarOperationServerIndex]?.url;
|
|
26907
26971
|
return (axios3, basePath) => createRequestFunction(
|
|
26908
26972
|
localVarAxiosArgs,
|
|
26909
|
-
|
|
26973
|
+
import_axios24.default,
|
|
26910
26974
|
BASE_PATH,
|
|
26911
26975
|
configuration
|
|
26912
26976
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -26931,7 +26995,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26931
26995
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getAllBranches"]?.[localVarOperationServerIndex]?.url;
|
|
26932
26996
|
return (axios3, basePath) => createRequestFunction(
|
|
26933
26997
|
localVarAxiosArgs,
|
|
26934
|
-
|
|
26998
|
+
import_axios24.default,
|
|
26935
26999
|
BASE_PATH,
|
|
26936
27000
|
configuration
|
|
26937
27001
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -26954,7 +27018,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26954
27018
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getAllBuildTypesOrdered"]?.[localVarOperationServerIndex]?.url;
|
|
26955
27019
|
return (axios3, basePath) => createRequestFunction(
|
|
26956
27020
|
localVarAxiosArgs,
|
|
26957
|
-
|
|
27021
|
+
import_axios24.default,
|
|
26958
27022
|
BASE_PATH,
|
|
26959
27023
|
configuration
|
|
26960
27024
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -26977,7 +27041,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
26977
27041
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getAllProjects"]?.[localVarOperationServerIndex]?.url;
|
|
26978
27042
|
return (axios3, basePath) => createRequestFunction(
|
|
26979
27043
|
localVarAxiosArgs,
|
|
26980
|
-
|
|
27044
|
+
import_axios24.default,
|
|
26981
27045
|
BASE_PATH,
|
|
26982
27046
|
configuration
|
|
26983
27047
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27000,7 +27064,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27000
27064
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getAllSubprojectsOrdered"]?.[localVarOperationServerIndex]?.url;
|
|
27001
27065
|
return (axios3, basePath) => createRequestFunction(
|
|
27002
27066
|
localVarAxiosArgs,
|
|
27003
|
-
|
|
27067
|
+
import_axios24.default,
|
|
27004
27068
|
BASE_PATH,
|
|
27005
27069
|
configuration
|
|
27006
27070
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27025,7 +27089,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27025
27089
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getBuildParameter"]?.[localVarOperationServerIndex]?.url;
|
|
27026
27090
|
return (axios3, basePath) => createRequestFunction(
|
|
27027
27091
|
localVarAxiosArgs,
|
|
27028
|
-
|
|
27092
|
+
import_axios24.default,
|
|
27029
27093
|
BASE_PATH,
|
|
27030
27094
|
configuration
|
|
27031
27095
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27048,7 +27112,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27048
27112
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getBuildParameterSpecification"]?.[localVarOperationServerIndex]?.url;
|
|
27049
27113
|
return (axios3, basePath) => createRequestFunction(
|
|
27050
27114
|
localVarAxiosArgs,
|
|
27051
|
-
|
|
27115
|
+
import_axios24.default,
|
|
27052
27116
|
BASE_PATH,
|
|
27053
27117
|
configuration
|
|
27054
27118
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27071,7 +27135,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27071
27135
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getBuildParameterType"]?.[localVarOperationServerIndex]?.url;
|
|
27072
27136
|
return (axios3, basePath) => createRequestFunction(
|
|
27073
27137
|
localVarAxiosArgs,
|
|
27074
|
-
|
|
27138
|
+
import_axios24.default,
|
|
27075
27139
|
BASE_PATH,
|
|
27076
27140
|
configuration
|
|
27077
27141
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27094,7 +27158,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27094
27158
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getBuildParameterValue"]?.[localVarOperationServerIndex]?.url;
|
|
27095
27159
|
return (axios3, basePath) => createRequestFunction(
|
|
27096
27160
|
localVarAxiosArgs,
|
|
27097
|
-
|
|
27161
|
+
import_axios24.default,
|
|
27098
27162
|
BASE_PATH,
|
|
27099
27163
|
configuration
|
|
27100
27164
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27119,7 +27183,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27119
27183
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getBuildParameters"]?.[localVarOperationServerIndex]?.url;
|
|
27120
27184
|
return (axios3, basePath) => createRequestFunction(
|
|
27121
27185
|
localVarAxiosArgs,
|
|
27122
|
-
|
|
27186
|
+
import_axios24.default,
|
|
27123
27187
|
BASE_PATH,
|
|
27124
27188
|
configuration
|
|
27125
27189
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27142,7 +27206,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27142
27206
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getDefaultTemplate"]?.[localVarOperationServerIndex]?.url;
|
|
27143
27207
|
return (axios3, basePath) => createRequestFunction(
|
|
27144
27208
|
localVarAxiosArgs,
|
|
27145
|
-
|
|
27209
|
+
import_axios24.default,
|
|
27146
27210
|
BASE_PATH,
|
|
27147
27211
|
configuration
|
|
27148
27212
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27165,7 +27229,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27165
27229
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getDefaultValueSets"]?.[localVarOperationServerIndex]?.url;
|
|
27166
27230
|
return (axios3, basePath) => createRequestFunction(
|
|
27167
27231
|
localVarAxiosArgs,
|
|
27168
|
-
|
|
27232
|
+
import_axios24.default,
|
|
27169
27233
|
BASE_PATH,
|
|
27170
27234
|
configuration
|
|
27171
27235
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27190,7 +27254,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27190
27254
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getDeploymentDashboardInProject"]?.[localVarOperationServerIndex]?.url;
|
|
27191
27255
|
return (axios3, basePath) => createRequestFunction(
|
|
27192
27256
|
localVarAxiosArgs,
|
|
27193
|
-
|
|
27257
|
+
import_axios24.default,
|
|
27194
27258
|
BASE_PATH,
|
|
27195
27259
|
configuration
|
|
27196
27260
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27213,7 +27277,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27213
27277
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getDeploymentDashboardsInProject"]?.[localVarOperationServerIndex]?.url;
|
|
27214
27278
|
return (axios3, basePath) => createRequestFunction(
|
|
27215
27279
|
localVarAxiosArgs,
|
|
27216
|
-
|
|
27280
|
+
import_axios24.default,
|
|
27217
27281
|
BASE_PATH,
|
|
27218
27282
|
configuration
|
|
27219
27283
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27238,7 +27302,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27238
27302
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getFeature"]?.[localVarOperationServerIndex]?.url;
|
|
27239
27303
|
return (axios3, basePath) => createRequestFunction(
|
|
27240
27304
|
localVarAxiosArgs,
|
|
27241
|
-
|
|
27305
|
+
import_axios24.default,
|
|
27242
27306
|
BASE_PATH,
|
|
27243
27307
|
configuration
|
|
27244
27308
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27263,7 +27327,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27263
27327
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getFeatures"]?.[localVarOperationServerIndex]?.url;
|
|
27264
27328
|
return (axios3, basePath) => createRequestFunction(
|
|
27265
27329
|
localVarAxiosArgs,
|
|
27266
|
-
|
|
27330
|
+
import_axios24.default,
|
|
27267
27331
|
BASE_PATH,
|
|
27268
27332
|
configuration
|
|
27269
27333
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27286,7 +27350,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27286
27350
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getProject"]?.[localVarOperationServerIndex]?.url;
|
|
27287
27351
|
return (axios3, basePath) => createRequestFunction(
|
|
27288
27352
|
localVarAxiosArgs,
|
|
27289
|
-
|
|
27353
|
+
import_axios24.default,
|
|
27290
27354
|
BASE_PATH,
|
|
27291
27355
|
configuration
|
|
27292
27356
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27309,7 +27373,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27309
27373
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getProjectField"]?.[localVarOperationServerIndex]?.url;
|
|
27310
27374
|
return (axios3, basePath) => createRequestFunction(
|
|
27311
27375
|
localVarAxiosArgs,
|
|
27312
|
-
|
|
27376
|
+
import_axios24.default,
|
|
27313
27377
|
BASE_PATH,
|
|
27314
27378
|
configuration
|
|
27315
27379
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27332,7 +27396,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27332
27396
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getProjectParentProject"]?.[localVarOperationServerIndex]?.url;
|
|
27333
27397
|
return (axios3, basePath) => createRequestFunction(
|
|
27334
27398
|
localVarAxiosArgs,
|
|
27335
|
-
|
|
27399
|
+
import_axios24.default,
|
|
27336
27400
|
BASE_PATH,
|
|
27337
27401
|
configuration
|
|
27338
27402
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27353,7 +27417,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27353
27417
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getProjectSettingsFile"]?.[localVarOperationServerIndex]?.url;
|
|
27354
27418
|
return (axios3, basePath) => createRequestFunction(
|
|
27355
27419
|
localVarAxiosArgs,
|
|
27356
|
-
|
|
27420
|
+
import_axios24.default,
|
|
27357
27421
|
BASE_PATH,
|
|
27358
27422
|
configuration
|
|
27359
27423
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27376,7 +27440,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27376
27440
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getProjectTemplates"]?.[localVarOperationServerIndex]?.url;
|
|
27377
27441
|
return (axios3, basePath) => createRequestFunction(
|
|
27378
27442
|
localVarAxiosArgs,
|
|
27379
|
-
|
|
27443
|
+
import_axios24.default,
|
|
27380
27444
|
BASE_PATH,
|
|
27381
27445
|
configuration
|
|
27382
27446
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27399,7 +27463,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27399
27463
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.getSecureValue"]?.[localVarOperationServerIndex]?.url;
|
|
27400
27464
|
return (axios3, basePath) => createRequestFunction(
|
|
27401
27465
|
localVarAxiosArgs,
|
|
27402
|
-
|
|
27466
|
+
import_axios24.default,
|
|
27403
27467
|
BASE_PATH,
|
|
27404
27468
|
configuration
|
|
27405
27469
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27422,7 +27486,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27422
27486
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.removeDefaultTemplate"]?.[localVarOperationServerIndex]?.url;
|
|
27423
27487
|
return (axios3, basePath) => createRequestFunction(
|
|
27424
27488
|
localVarAxiosArgs,
|
|
27425
|
-
|
|
27489
|
+
import_axios24.default,
|
|
27426
27490
|
BASE_PATH,
|
|
27427
27491
|
configuration
|
|
27428
27492
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27445,7 +27509,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27445
27509
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.removeProjectFromAgentPool"]?.[localVarOperationServerIndex]?.url;
|
|
27446
27510
|
return (axios3, basePath) => createRequestFunction(
|
|
27447
27511
|
localVarAxiosArgs,
|
|
27448
|
-
|
|
27512
|
+
import_axios24.default,
|
|
27449
27513
|
BASE_PATH,
|
|
27450
27514
|
configuration
|
|
27451
27515
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27470,7 +27534,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27470
27534
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.setAgentPoolsProject"]?.[localVarOperationServerIndex]?.url;
|
|
27471
27535
|
return (axios3, basePath) => createRequestFunction(
|
|
27472
27536
|
localVarAxiosArgs,
|
|
27473
|
-
|
|
27537
|
+
import_axios24.default,
|
|
27474
27538
|
BASE_PATH,
|
|
27475
27539
|
configuration
|
|
27476
27540
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27495,7 +27559,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27495
27559
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.setBuildTypesOrder"]?.[localVarOperationServerIndex]?.url;
|
|
27496
27560
|
return (axios3, basePath) => createRequestFunction(
|
|
27497
27561
|
localVarAxiosArgs,
|
|
27498
|
-
|
|
27562
|
+
import_axios24.default,
|
|
27499
27563
|
BASE_PATH,
|
|
27500
27564
|
configuration
|
|
27501
27565
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27520,7 +27584,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27520
27584
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.setDefaultTemplate"]?.[localVarOperationServerIndex]?.url;
|
|
27521
27585
|
return (axios3, basePath) => createRequestFunction(
|
|
27522
27586
|
localVarAxiosArgs,
|
|
27523
|
-
|
|
27587
|
+
import_axios24.default,
|
|
27524
27588
|
BASE_PATH,
|
|
27525
27589
|
configuration
|
|
27526
27590
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27545,7 +27609,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27545
27609
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.setParentProject"]?.[localVarOperationServerIndex]?.url;
|
|
27546
27610
|
return (axios3, basePath) => createRequestFunction(
|
|
27547
27611
|
localVarAxiosArgs,
|
|
27548
|
-
|
|
27612
|
+
import_axios24.default,
|
|
27549
27613
|
BASE_PATH,
|
|
27550
27614
|
configuration
|
|
27551
27615
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27570,7 +27634,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27570
27634
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.setProjectField"]?.[localVarOperationServerIndex]?.url;
|
|
27571
27635
|
return (axios3, basePath) => createRequestFunction(
|
|
27572
27636
|
localVarAxiosArgs,
|
|
27573
|
-
|
|
27637
|
+
import_axios24.default,
|
|
27574
27638
|
BASE_PATH,
|
|
27575
27639
|
configuration
|
|
27576
27640
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27595,7 +27659,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27595
27659
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.setSubprojectsOrder"]?.[localVarOperationServerIndex]?.url;
|
|
27596
27660
|
return (axios3, basePath) => createRequestFunction(
|
|
27597
27661
|
localVarAxiosArgs,
|
|
27598
|
-
|
|
27662
|
+
import_axios24.default,
|
|
27599
27663
|
BASE_PATH,
|
|
27600
27664
|
configuration
|
|
27601
27665
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27622,7 +27686,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27622
27686
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.updateBuildParameter"]?.[localVarOperationServerIndex]?.url;
|
|
27623
27687
|
return (axios3, basePath) => createRequestFunction(
|
|
27624
27688
|
localVarAxiosArgs,
|
|
27625
|
-
|
|
27689
|
+
import_axios24.default,
|
|
27626
27690
|
BASE_PATH,
|
|
27627
27691
|
configuration
|
|
27628
27692
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27647,7 +27711,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27647
27711
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.updateBuildParameterSpecification"]?.[localVarOperationServerIndex]?.url;
|
|
27648
27712
|
return (axios3, basePath) => createRequestFunction(
|
|
27649
27713
|
localVarAxiosArgs,
|
|
27650
|
-
|
|
27714
|
+
import_axios24.default,
|
|
27651
27715
|
BASE_PATH,
|
|
27652
27716
|
configuration
|
|
27653
27717
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27672,7 +27736,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27672
27736
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.updateBuildParameterType"]?.[localVarOperationServerIndex]?.url;
|
|
27673
27737
|
return (axios3, basePath) => createRequestFunction(
|
|
27674
27738
|
localVarAxiosArgs,
|
|
27675
|
-
|
|
27739
|
+
import_axios24.default,
|
|
27676
27740
|
BASE_PATH,
|
|
27677
27741
|
configuration
|
|
27678
27742
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27697,7 +27761,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27697
27761
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.updateBuildParameterValue"]?.[localVarOperationServerIndex]?.url;
|
|
27698
27762
|
return (axios3, basePath) => createRequestFunction(
|
|
27699
27763
|
localVarAxiosArgs,
|
|
27700
|
-
|
|
27764
|
+
import_axios24.default,
|
|
27701
27765
|
BASE_PATH,
|
|
27702
27766
|
configuration
|
|
27703
27767
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27722,7 +27786,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27722
27786
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.updateBuildParameters"]?.[localVarOperationServerIndex]?.url;
|
|
27723
27787
|
return (axios3, basePath) => createRequestFunction(
|
|
27724
27788
|
localVarAxiosArgs,
|
|
27725
|
-
|
|
27789
|
+
import_axios24.default,
|
|
27726
27790
|
BASE_PATH,
|
|
27727
27791
|
configuration
|
|
27728
27792
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27749,7 +27813,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27749
27813
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.updateFeature"]?.[localVarOperationServerIndex]?.url;
|
|
27750
27814
|
return (axios3, basePath) => createRequestFunction(
|
|
27751
27815
|
localVarAxiosArgs,
|
|
27752
|
-
|
|
27816
|
+
import_axios24.default,
|
|
27753
27817
|
BASE_PATH,
|
|
27754
27818
|
configuration
|
|
27755
27819
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -27774,7 +27838,7 @@ var ProjectApiFp = function(configuration) {
|
|
|
27774
27838
|
const localVarOperationServerBasePath = operationServerMap["ProjectApi.updateFeatures"]?.[localVarOperationServerIndex]?.url;
|
|
27775
27839
|
return (axios3, basePath) => createRequestFunction(
|
|
27776
27840
|
localVarAxiosArgs,
|
|
27777
|
-
|
|
27841
|
+
import_axios24.default,
|
|
27778
27842
|
BASE_PATH,
|
|
27779
27843
|
configuration
|
|
27780
27844
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -28382,7 +28446,7 @@ var ProjectApi = class extends BaseAPI {
|
|
|
28382
28446
|
};
|
|
28383
28447
|
|
|
28384
28448
|
// src/teamcity-client/api/role-api.ts
|
|
28385
|
-
var
|
|
28449
|
+
var import_axios25 = __toESM(require("axios"));
|
|
28386
28450
|
var RoleApiAxiosParamCreator = function(configuration) {
|
|
28387
28451
|
return {
|
|
28388
28452
|
/**
|
|
@@ -28695,7 +28759,7 @@ var RoleApiFp = function(configuration) {
|
|
|
28695
28759
|
const localVarOperationServerBasePath = operationServerMap["RoleApi.addIncludedRole"]?.[localVarOperationServerIndex]?.url;
|
|
28696
28760
|
return (axios3, basePath) => createRequestFunction(
|
|
28697
28761
|
localVarAxiosArgs,
|
|
28698
|
-
|
|
28762
|
+
import_axios25.default,
|
|
28699
28763
|
BASE_PATH,
|
|
28700
28764
|
configuration
|
|
28701
28765
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -28720,7 +28784,7 @@ var RoleApiFp = function(configuration) {
|
|
|
28720
28784
|
const localVarOperationServerBasePath = operationServerMap["RoleApi.addPermission"]?.[localVarOperationServerIndex]?.url;
|
|
28721
28785
|
return (axios3, basePath) => createRequestFunction(
|
|
28722
28786
|
localVarAxiosArgs,
|
|
28723
|
-
|
|
28787
|
+
import_axios25.default,
|
|
28724
28788
|
BASE_PATH,
|
|
28725
28789
|
configuration
|
|
28726
28790
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -28739,7 +28803,7 @@ var RoleApiFp = function(configuration) {
|
|
|
28739
28803
|
const localVarOperationServerBasePath = operationServerMap["RoleApi.createRole"]?.[localVarOperationServerIndex]?.url;
|
|
28740
28804
|
return (axios3, basePath) => createRequestFunction(
|
|
28741
28805
|
localVarAxiosArgs,
|
|
28742
|
-
|
|
28806
|
+
import_axios25.default,
|
|
28743
28807
|
BASE_PATH,
|
|
28744
28808
|
configuration
|
|
28745
28809
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -28757,7 +28821,7 @@ var RoleApiFp = function(configuration) {
|
|
|
28757
28821
|
const localVarOperationServerBasePath = operationServerMap["RoleApi.deleteRole"]?.[localVarOperationServerIndex]?.url;
|
|
28758
28822
|
return (axios3, basePath) => createRequestFunction(
|
|
28759
28823
|
localVarAxiosArgs,
|
|
28760
|
-
|
|
28824
|
+
import_axios25.default,
|
|
28761
28825
|
BASE_PATH,
|
|
28762
28826
|
configuration
|
|
28763
28827
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -28776,7 +28840,7 @@ var RoleApiFp = function(configuration) {
|
|
|
28776
28840
|
const localVarOperationServerBasePath = operationServerMap["RoleApi.getRole"]?.[localVarOperationServerIndex]?.url;
|
|
28777
28841
|
return (axios3, basePath) => createRequestFunction(
|
|
28778
28842
|
localVarAxiosArgs,
|
|
28779
|
-
|
|
28843
|
+
import_axios25.default,
|
|
28780
28844
|
BASE_PATH,
|
|
28781
28845
|
configuration
|
|
28782
28846
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -28794,7 +28858,7 @@ var RoleApiFp = function(configuration) {
|
|
|
28794
28858
|
const localVarOperationServerBasePath = operationServerMap["RoleApi.getRoles"]?.[localVarOperationServerIndex]?.url;
|
|
28795
28859
|
return (axios3, basePath) => createRequestFunction(
|
|
28796
28860
|
localVarAxiosArgs,
|
|
28797
|
-
|
|
28861
|
+
import_axios25.default,
|
|
28798
28862
|
BASE_PATH,
|
|
28799
28863
|
configuration
|
|
28800
28864
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -28819,7 +28883,7 @@ var RoleApiFp = function(configuration) {
|
|
|
28819
28883
|
const localVarOperationServerBasePath = operationServerMap["RoleApi.removeIncludedRole"]?.[localVarOperationServerIndex]?.url;
|
|
28820
28884
|
return (axios3, basePath) => createRequestFunction(
|
|
28821
28885
|
localVarAxiosArgs,
|
|
28822
|
-
|
|
28886
|
+
import_axios25.default,
|
|
28823
28887
|
BASE_PATH,
|
|
28824
28888
|
configuration
|
|
28825
28889
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -28844,7 +28908,7 @@ var RoleApiFp = function(configuration) {
|
|
|
28844
28908
|
const localVarOperationServerBasePath = operationServerMap["RoleApi.removePermission"]?.[localVarOperationServerIndex]?.url;
|
|
28845
28909
|
return (axios3, basePath) => createRequestFunction(
|
|
28846
28910
|
localVarAxiosArgs,
|
|
28847
|
-
|
|
28911
|
+
import_axios25.default,
|
|
28848
28912
|
BASE_PATH,
|
|
28849
28913
|
configuration
|
|
28850
28914
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -28953,7 +29017,7 @@ var RoleApi = class extends BaseAPI {
|
|
|
28953
29017
|
};
|
|
28954
29018
|
|
|
28955
29019
|
// src/teamcity-client/api/root-api.ts
|
|
28956
|
-
var
|
|
29020
|
+
var import_axios26 = __toESM(require("axios"));
|
|
28957
29021
|
var RootApiAxiosParamCreator = function(configuration) {
|
|
28958
29022
|
return {
|
|
28959
29023
|
/**
|
|
@@ -29089,7 +29153,7 @@ var RootApiFp = function(configuration) {
|
|
|
29089
29153
|
const localVarOperationServerBasePath = operationServerMap["RootApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
29090
29154
|
return (axios3, basePath) => createRequestFunction(
|
|
29091
29155
|
localVarAxiosArgs,
|
|
29092
|
-
|
|
29156
|
+
import_axios26.default,
|
|
29093
29157
|
BASE_PATH,
|
|
29094
29158
|
configuration
|
|
29095
29159
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -29107,7 +29171,7 @@ var RootApiFp = function(configuration) {
|
|
|
29107
29171
|
const localVarOperationServerBasePath = operationServerMap["RootApi.getPluginInfo"]?.[localVarOperationServerIndex]?.url;
|
|
29108
29172
|
return (axios3, basePath) => createRequestFunction(
|
|
29109
29173
|
localVarAxiosArgs,
|
|
29110
|
-
|
|
29174
|
+
import_axios26.default,
|
|
29111
29175
|
BASE_PATH,
|
|
29112
29176
|
configuration
|
|
29113
29177
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -29124,7 +29188,7 @@ var RootApiFp = function(configuration) {
|
|
|
29124
29188
|
const localVarOperationServerBasePath = operationServerMap["RootApi.getRootEndpointsOfRoot"]?.[localVarOperationServerIndex]?.url;
|
|
29125
29189
|
return (axios3, basePath) => createRequestFunction(
|
|
29126
29190
|
localVarAxiosArgs,
|
|
29127
|
-
|
|
29191
|
+
import_axios26.default,
|
|
29128
29192
|
BASE_PATH,
|
|
29129
29193
|
configuration
|
|
29130
29194
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -29141,7 +29205,7 @@ var RootApiFp = function(configuration) {
|
|
|
29141
29205
|
const localVarOperationServerBasePath = operationServerMap["RootApi.getVersion"]?.[localVarOperationServerIndex]?.url;
|
|
29142
29206
|
return (axios3, basePath) => createRequestFunction(
|
|
29143
29207
|
localVarAxiosArgs,
|
|
29144
|
-
|
|
29208
|
+
import_axios26.default,
|
|
29145
29209
|
BASE_PATH,
|
|
29146
29210
|
configuration
|
|
29147
29211
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -29193,7 +29257,7 @@ var RootApi = class extends BaseAPI {
|
|
|
29193
29257
|
};
|
|
29194
29258
|
|
|
29195
29259
|
// src/teamcity-client/api/server-api.ts
|
|
29196
|
-
var
|
|
29260
|
+
var import_axios27 = __toESM(require("axios"));
|
|
29197
29261
|
var ServerApiAxiosParamCreator = function(configuration) {
|
|
29198
29262
|
return {
|
|
29199
29263
|
/**
|
|
@@ -29873,7 +29937,7 @@ var ServerApiFp = function(configuration) {
|
|
|
29873
29937
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.addLicenseKeys"]?.[localVarOperationServerIndex]?.url;
|
|
29874
29938
|
return (axios3, basePath) => createRequestFunction(
|
|
29875
29939
|
localVarAxiosArgs,
|
|
29876
|
-
|
|
29940
|
+
import_axios27.default,
|
|
29877
29941
|
BASE_PATH,
|
|
29878
29942
|
configuration
|
|
29879
29943
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -29894,7 +29958,7 @@ var ServerApiFp = function(configuration) {
|
|
|
29894
29958
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.deleteLicenseKey"]?.[localVarOperationServerIndex]?.url;
|
|
29895
29959
|
return (axios3, basePath) => createRequestFunction(
|
|
29896
29960
|
localVarAxiosArgs,
|
|
29897
|
-
|
|
29961
|
+
import_axios27.default,
|
|
29898
29962
|
BASE_PATH,
|
|
29899
29963
|
configuration
|
|
29900
29964
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -29917,7 +29981,7 @@ var ServerApiFp = function(configuration) {
|
|
|
29917
29981
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.downloadFileOfServer"]?.[localVarOperationServerIndex]?.url;
|
|
29918
29982
|
return (axios3, basePath) => createRequestFunction(
|
|
29919
29983
|
localVarAxiosArgs,
|
|
29920
|
-
|
|
29984
|
+
import_axios27.default,
|
|
29921
29985
|
BASE_PATH,
|
|
29922
29986
|
configuration
|
|
29923
29987
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -29935,7 +29999,7 @@ var ServerApiFp = function(configuration) {
|
|
|
29935
29999
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.getAllMetrics"]?.[localVarOperationServerIndex]?.url;
|
|
29936
30000
|
return (axios3, basePath) => createRequestFunction(
|
|
29937
30001
|
localVarAxiosArgs,
|
|
29938
|
-
|
|
30002
|
+
import_axios27.default,
|
|
29939
30003
|
BASE_PATH,
|
|
29940
30004
|
configuration
|
|
29941
30005
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -29953,7 +30017,7 @@ var ServerApiFp = function(configuration) {
|
|
|
29953
30017
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.getAllPlugins"]?.[localVarOperationServerIndex]?.url;
|
|
29954
30018
|
return (axios3, basePath) => createRequestFunction(
|
|
29955
30019
|
localVarAxiosArgs,
|
|
29956
|
-
|
|
30020
|
+
import_axios27.default,
|
|
29957
30021
|
BASE_PATH,
|
|
29958
30022
|
configuration
|
|
29959
30023
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -29970,7 +30034,7 @@ var ServerApiFp = function(configuration) {
|
|
|
29970
30034
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.getBackupStatus"]?.[localVarOperationServerIndex]?.url;
|
|
29971
30035
|
return (axios3, basePath) => createRequestFunction(
|
|
29972
30036
|
localVarAxiosArgs,
|
|
29973
|
-
|
|
30037
|
+
import_axios27.default,
|
|
29974
30038
|
BASE_PATH,
|
|
29975
30039
|
configuration
|
|
29976
30040
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -29987,7 +30051,7 @@ var ServerApiFp = function(configuration) {
|
|
|
29987
30051
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.getCleanupSettings"]?.[localVarOperationServerIndex]?.url;
|
|
29988
30052
|
return (axios3, basePath) => createRequestFunction(
|
|
29989
30053
|
localVarAxiosArgs,
|
|
29990
|
-
|
|
30054
|
+
import_axios27.default,
|
|
29991
30055
|
BASE_PATH,
|
|
29992
30056
|
configuration
|
|
29993
30057
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30012,7 +30076,7 @@ var ServerApiFp = function(configuration) {
|
|
|
30012
30076
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.getFileMetadataOfServer"]?.[localVarOperationServerIndex]?.url;
|
|
30013
30077
|
return (axios3, basePath) => createRequestFunction(
|
|
30014
30078
|
localVarAxiosArgs,
|
|
30015
|
-
|
|
30079
|
+
import_axios27.default,
|
|
30016
30080
|
BASE_PATH,
|
|
30017
30081
|
configuration
|
|
30018
30082
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30041,7 +30105,7 @@ var ServerApiFp = function(configuration) {
|
|
|
30041
30105
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.getFilesListForSubpathOfServer"]?.[localVarOperationServerIndex]?.url;
|
|
30042
30106
|
return (axios3, basePath2) => createRequestFunction(
|
|
30043
30107
|
localVarAxiosArgs,
|
|
30044
|
-
|
|
30108
|
+
import_axios27.default,
|
|
30045
30109
|
BASE_PATH,
|
|
30046
30110
|
configuration
|
|
30047
30111
|
)(axios3, localVarOperationServerBasePath || basePath2);
|
|
@@ -30068,7 +30132,7 @@ var ServerApiFp = function(configuration) {
|
|
|
30068
30132
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.getFilesListOfServer"]?.[localVarOperationServerIndex]?.url;
|
|
30069
30133
|
return (axios3, basePath2) => createRequestFunction(
|
|
30070
30134
|
localVarAxiosArgs,
|
|
30071
|
-
|
|
30135
|
+
import_axios27.default,
|
|
30072
30136
|
BASE_PATH,
|
|
30073
30137
|
configuration
|
|
30074
30138
|
)(axios3, localVarOperationServerBasePath || basePath2);
|
|
@@ -30091,7 +30155,7 @@ var ServerApiFp = function(configuration) {
|
|
|
30091
30155
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.getLicenseKey"]?.[localVarOperationServerIndex]?.url;
|
|
30092
30156
|
return (axios3, basePath) => createRequestFunction(
|
|
30093
30157
|
localVarAxiosArgs,
|
|
30094
|
-
|
|
30158
|
+
import_axios27.default,
|
|
30095
30159
|
BASE_PATH,
|
|
30096
30160
|
configuration
|
|
30097
30161
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30109,7 +30173,7 @@ var ServerApiFp = function(configuration) {
|
|
|
30109
30173
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.getLicenseKeys"]?.[localVarOperationServerIndex]?.url;
|
|
30110
30174
|
return (axios3, basePath) => createRequestFunction(
|
|
30111
30175
|
localVarAxiosArgs,
|
|
30112
|
-
|
|
30176
|
+
import_axios27.default,
|
|
30113
30177
|
BASE_PATH,
|
|
30114
30178
|
configuration
|
|
30115
30179
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30127,7 +30191,7 @@ var ServerApiFp = function(configuration) {
|
|
|
30127
30191
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.getLicensingData"]?.[localVarOperationServerIndex]?.url;
|
|
30128
30192
|
return (axios3, basePath) => createRequestFunction(
|
|
30129
30193
|
localVarAxiosArgs,
|
|
30130
|
-
|
|
30194
|
+
import_axios27.default,
|
|
30131
30195
|
BASE_PATH,
|
|
30132
30196
|
configuration
|
|
30133
30197
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30145,7 +30209,7 @@ var ServerApiFp = function(configuration) {
|
|
|
30145
30209
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.getServerField"]?.[localVarOperationServerIndex]?.url;
|
|
30146
30210
|
return (axios3, basePath) => createRequestFunction(
|
|
30147
30211
|
localVarAxiosArgs,
|
|
30148
|
-
|
|
30212
|
+
import_axios27.default,
|
|
30149
30213
|
BASE_PATH,
|
|
30150
30214
|
configuration
|
|
30151
30215
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30163,7 +30227,7 @@ var ServerApiFp = function(configuration) {
|
|
|
30163
30227
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.getServerInfo"]?.[localVarOperationServerIndex]?.url;
|
|
30164
30228
|
return (axios3, basePath) => createRequestFunction(
|
|
30165
30229
|
localVarAxiosArgs,
|
|
30166
|
-
|
|
30230
|
+
import_axios27.default,
|
|
30167
30231
|
BASE_PATH,
|
|
30168
30232
|
configuration
|
|
30169
30233
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30192,7 +30256,7 @@ var ServerApiFp = function(configuration) {
|
|
|
30192
30256
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.getZippedFileOfServer"]?.[localVarOperationServerIndex]?.url;
|
|
30193
30257
|
return (axios3, basePath2) => createRequestFunction(
|
|
30194
30258
|
localVarAxiosArgs,
|
|
30195
|
-
|
|
30259
|
+
import_axios27.default,
|
|
30196
30260
|
BASE_PATH,
|
|
30197
30261
|
configuration
|
|
30198
30262
|
)(axios3, localVarOperationServerBasePath || basePath2);
|
|
@@ -30210,7 +30274,7 @@ var ServerApiFp = function(configuration) {
|
|
|
30210
30274
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.setCleanupSettings"]?.[localVarOperationServerIndex]?.url;
|
|
30211
30275
|
return (axios3, basePath) => createRequestFunction(
|
|
30212
30276
|
localVarAxiosArgs,
|
|
30213
|
-
|
|
30277
|
+
import_axios27.default,
|
|
30214
30278
|
BASE_PATH,
|
|
30215
30279
|
configuration
|
|
30216
30280
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30245,7 +30309,7 @@ var ServerApiFp = function(configuration) {
|
|
|
30245
30309
|
const localVarOperationServerBasePath = operationServerMap["ServerApi.startBackup"]?.[localVarOperationServerIndex]?.url;
|
|
30246
30310
|
return (axios3, basePath) => createRequestFunction(
|
|
30247
30311
|
localVarAxiosArgs,
|
|
30248
|
-
|
|
30312
|
+
import_axios27.default,
|
|
30249
30313
|
BASE_PATH,
|
|
30250
30314
|
configuration
|
|
30251
30315
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30485,7 +30549,7 @@ var ServerApi = class extends BaseAPI {
|
|
|
30485
30549
|
};
|
|
30486
30550
|
|
|
30487
30551
|
// src/teamcity-client/api/server-authentication-settings-api.ts
|
|
30488
|
-
var
|
|
30552
|
+
var import_axios28 = __toESM(require("axios"));
|
|
30489
30553
|
var ServerAuthenticationSettingsApiAxiosParamCreator = function(configuration) {
|
|
30490
30554
|
return {
|
|
30491
30555
|
/**
|
|
@@ -30568,7 +30632,7 @@ var ServerAuthenticationSettingsApiFp = function(configuration) {
|
|
|
30568
30632
|
const localVarOperationServerBasePath = operationServerMap["ServerAuthenticationSettingsApi.getAuthSettings"]?.[localVarOperationServerIndex]?.url;
|
|
30569
30633
|
return (axios3, basePath) => createRequestFunction(
|
|
30570
30634
|
localVarAxiosArgs,
|
|
30571
|
-
|
|
30635
|
+
import_axios28.default,
|
|
30572
30636
|
BASE_PATH,
|
|
30573
30637
|
configuration
|
|
30574
30638
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30586,7 +30650,7 @@ var ServerAuthenticationSettingsApiFp = function(configuration) {
|
|
|
30586
30650
|
const localVarOperationServerBasePath = operationServerMap["ServerAuthenticationSettingsApi.setAuthSettings"]?.[localVarOperationServerIndex]?.url;
|
|
30587
30651
|
return (axios3, basePath) => createRequestFunction(
|
|
30588
30652
|
localVarAxiosArgs,
|
|
30589
|
-
|
|
30653
|
+
import_axios28.default,
|
|
30590
30654
|
BASE_PATH,
|
|
30591
30655
|
configuration
|
|
30592
30656
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30618,7 +30682,7 @@ var ServerAuthenticationSettingsApi = class extends BaseAPI {
|
|
|
30618
30682
|
};
|
|
30619
30683
|
|
|
30620
30684
|
// src/teamcity-client/api/test-api.ts
|
|
30621
|
-
var
|
|
30685
|
+
var import_axios29 = __toESM(require("axios"));
|
|
30622
30686
|
var TestApiAxiosParamCreator = function(configuration) {
|
|
30623
30687
|
return {
|
|
30624
30688
|
/**
|
|
@@ -30717,7 +30781,7 @@ var TestApiFp = function(configuration) {
|
|
|
30717
30781
|
const localVarOperationServerBasePath = operationServerMap["TestApi.getTest"]?.[localVarOperationServerIndex]?.url;
|
|
30718
30782
|
return (axios3, basePath) => createRequestFunction(
|
|
30719
30783
|
localVarAxiosArgs,
|
|
30720
|
-
|
|
30784
|
+
import_axios29.default,
|
|
30721
30785
|
BASE_PATH,
|
|
30722
30786
|
configuration
|
|
30723
30787
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30736,7 +30800,7 @@ var TestApiFp = function(configuration) {
|
|
|
30736
30800
|
const localVarOperationServerBasePath = operationServerMap["TestApi.getTests"]?.[localVarOperationServerIndex]?.url;
|
|
30737
30801
|
return (axios3, basePath) => createRequestFunction(
|
|
30738
30802
|
localVarAxiosArgs,
|
|
30739
|
-
|
|
30803
|
+
import_axios29.default,
|
|
30740
30804
|
BASE_PATH,
|
|
30741
30805
|
configuration
|
|
30742
30806
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30771,7 +30835,7 @@ var TestApi = class extends BaseAPI {
|
|
|
30771
30835
|
};
|
|
30772
30836
|
|
|
30773
30837
|
// src/teamcity-client/api/test-occurrence-api.ts
|
|
30774
|
-
var
|
|
30838
|
+
var import_axios30 = __toESM(require("axios"));
|
|
30775
30839
|
var TestOccurrenceApiAxiosParamCreator = function(configuration) {
|
|
30776
30840
|
return {
|
|
30777
30841
|
/**
|
|
@@ -30870,7 +30934,7 @@ var TestOccurrenceApiFp = function(configuration) {
|
|
|
30870
30934
|
const localVarOperationServerBasePath = operationServerMap["TestOccurrenceApi.getAllTestOccurrences"]?.[localVarOperationServerIndex]?.url;
|
|
30871
30935
|
return (axios3, basePath) => createRequestFunction(
|
|
30872
30936
|
localVarAxiosArgs,
|
|
30873
|
-
|
|
30937
|
+
import_axios30.default,
|
|
30874
30938
|
BASE_PATH,
|
|
30875
30939
|
configuration
|
|
30876
30940
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30893,7 +30957,7 @@ var TestOccurrenceApiFp = function(configuration) {
|
|
|
30893
30957
|
const localVarOperationServerBasePath = operationServerMap["TestOccurrenceApi.getTestOccurrence"]?.[localVarOperationServerIndex]?.url;
|
|
30894
30958
|
return (axios3, basePath) => createRequestFunction(
|
|
30895
30959
|
localVarAxiosArgs,
|
|
30896
|
-
|
|
30960
|
+
import_axios30.default,
|
|
30897
30961
|
BASE_PATH,
|
|
30898
30962
|
configuration
|
|
30899
30963
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -30928,7 +30992,7 @@ var TestOccurrenceApi = class extends BaseAPI {
|
|
|
30928
30992
|
};
|
|
30929
30993
|
|
|
30930
30994
|
// src/teamcity-client/api/user-api.ts
|
|
30931
|
-
var
|
|
30995
|
+
var import_axios31 = __toESM(require("axios"));
|
|
30932
30996
|
var UserApiAxiosParamCreator = function(configuration) {
|
|
30933
30997
|
return {
|
|
30934
30998
|
/**
|
|
@@ -31974,7 +32038,7 @@ var UserApiFp = function(configuration) {
|
|
|
31974
32038
|
const localVarOperationServerBasePath = operationServerMap["UserApi.addRoleToUser"]?.[localVarOperationServerIndex]?.url;
|
|
31975
32039
|
return (axios3, basePath) => createRequestFunction(
|
|
31976
32040
|
localVarAxiosArgs,
|
|
31977
|
-
|
|
32041
|
+
import_axios31.default,
|
|
31978
32042
|
BASE_PATH,
|
|
31979
32043
|
configuration
|
|
31980
32044
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -31999,7 +32063,7 @@ var UserApiFp = function(configuration) {
|
|
|
31999
32063
|
const localVarOperationServerBasePath = operationServerMap["UserApi.addRoleToUserAtScope"]?.[localVarOperationServerIndex]?.url;
|
|
32000
32064
|
return (axios3, basePath) => createRequestFunction(
|
|
32001
32065
|
localVarAxiosArgs,
|
|
32002
|
-
|
|
32066
|
+
import_axios31.default,
|
|
32003
32067
|
BASE_PATH,
|
|
32004
32068
|
configuration
|
|
32005
32069
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32018,7 +32082,7 @@ var UserApiFp = function(configuration) {
|
|
|
32018
32082
|
const localVarOperationServerBasePath = operationServerMap["UserApi.addUser"]?.[localVarOperationServerIndex]?.url;
|
|
32019
32083
|
return (axios3, basePath) => createRequestFunction(
|
|
32020
32084
|
localVarAxiosArgs,
|
|
32021
|
-
|
|
32085
|
+
import_axios31.default,
|
|
32022
32086
|
BASE_PATH,
|
|
32023
32087
|
configuration
|
|
32024
32088
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32043,7 +32107,7 @@ var UserApiFp = function(configuration) {
|
|
|
32043
32107
|
const localVarOperationServerBasePath = operationServerMap["UserApi.addUserToken"]?.[localVarOperationServerIndex]?.url;
|
|
32044
32108
|
return (axios3, basePath) => createRequestFunction(
|
|
32045
32109
|
localVarAxiosArgs,
|
|
32046
|
-
|
|
32110
|
+
import_axios31.default,
|
|
32047
32111
|
BASE_PATH,
|
|
32048
32112
|
configuration
|
|
32049
32113
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32061,7 +32125,7 @@ var UserApiFp = function(configuration) {
|
|
|
32061
32125
|
const localVarOperationServerBasePath = operationServerMap["UserApi.deleteUser"]?.[localVarOperationServerIndex]?.url;
|
|
32062
32126
|
return (axios3, basePath) => createRequestFunction(
|
|
32063
32127
|
localVarAxiosArgs,
|
|
32064
|
-
|
|
32128
|
+
import_axios31.default,
|
|
32065
32129
|
BASE_PATH,
|
|
32066
32130
|
configuration
|
|
32067
32131
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32084,7 +32148,7 @@ var UserApiFp = function(configuration) {
|
|
|
32084
32148
|
const localVarOperationServerBasePath = operationServerMap["UserApi.deleteUserField"]?.[localVarOperationServerIndex]?.url;
|
|
32085
32149
|
return (axios3, basePath) => createRequestFunction(
|
|
32086
32150
|
localVarAxiosArgs,
|
|
32087
|
-
|
|
32151
|
+
import_axios31.default,
|
|
32088
32152
|
BASE_PATH,
|
|
32089
32153
|
configuration
|
|
32090
32154
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32107,7 +32171,7 @@ var UserApiFp = function(configuration) {
|
|
|
32107
32171
|
const localVarOperationServerBasePath = operationServerMap["UserApi.deleteUserToken"]?.[localVarOperationServerIndex]?.url;
|
|
32108
32172
|
return (axios3, basePath) => createRequestFunction(
|
|
32109
32173
|
localVarAxiosArgs,
|
|
32110
|
-
|
|
32174
|
+
import_axios31.default,
|
|
32111
32175
|
BASE_PATH,
|
|
32112
32176
|
configuration
|
|
32113
32177
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32130,7 +32194,7 @@ var UserApiFp = function(configuration) {
|
|
|
32130
32194
|
const localVarOperationServerBasePath = operationServerMap["UserApi.getAllUserGroups"]?.[localVarOperationServerIndex]?.url;
|
|
32131
32195
|
return (axios3, basePath) => createRequestFunction(
|
|
32132
32196
|
localVarAxiosArgs,
|
|
32133
|
-
|
|
32197
|
+
import_axios31.default,
|
|
32134
32198
|
BASE_PATH,
|
|
32135
32199
|
configuration
|
|
32136
32200
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32151,7 +32215,7 @@ var UserApiFp = function(configuration) {
|
|
|
32151
32215
|
const localVarOperationServerBasePath = operationServerMap["UserApi.getAllUserRoles"]?.[localVarOperationServerIndex]?.url;
|
|
32152
32216
|
return (axios3, basePath) => createRequestFunction(
|
|
32153
32217
|
localVarAxiosArgs,
|
|
32154
|
-
|
|
32218
|
+
import_axios31.default,
|
|
32155
32219
|
BASE_PATH,
|
|
32156
32220
|
configuration
|
|
32157
32221
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32174,7 +32238,7 @@ var UserApiFp = function(configuration) {
|
|
|
32174
32238
|
const localVarOperationServerBasePath = operationServerMap["UserApi.getAllUsers"]?.[localVarOperationServerIndex]?.url;
|
|
32175
32239
|
return (axios3, basePath) => createRequestFunction(
|
|
32176
32240
|
localVarAxiosArgs,
|
|
32177
|
-
|
|
32241
|
+
import_axios31.default,
|
|
32178
32242
|
BASE_PATH,
|
|
32179
32243
|
configuration
|
|
32180
32244
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32197,7 +32261,7 @@ var UserApiFp = function(configuration) {
|
|
|
32197
32261
|
const localVarOperationServerBasePath = operationServerMap["UserApi.getUser"]?.[localVarOperationServerIndex]?.url;
|
|
32198
32262
|
return (axios3, basePath) => createRequestFunction(
|
|
32199
32263
|
localVarAxiosArgs,
|
|
32200
|
-
|
|
32264
|
+
import_axios31.default,
|
|
32201
32265
|
BASE_PATH,
|
|
32202
32266
|
configuration
|
|
32203
32267
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32220,7 +32284,7 @@ var UserApiFp = function(configuration) {
|
|
|
32220
32284
|
const localVarOperationServerBasePath = operationServerMap["UserApi.getUserField"]?.[localVarOperationServerIndex]?.url;
|
|
32221
32285
|
return (axios3, basePath) => createRequestFunction(
|
|
32222
32286
|
localVarAxiosArgs,
|
|
32223
|
-
|
|
32287
|
+
import_axios31.default,
|
|
32224
32288
|
BASE_PATH,
|
|
32225
32289
|
configuration
|
|
32226
32290
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32245,7 +32309,7 @@ var UserApiFp = function(configuration) {
|
|
|
32245
32309
|
const localVarOperationServerBasePath = operationServerMap["UserApi.getUserGroup"]?.[localVarOperationServerIndex]?.url;
|
|
32246
32310
|
return (axios3, basePath) => createRequestFunction(
|
|
32247
32311
|
localVarAxiosArgs,
|
|
32248
|
-
|
|
32312
|
+
import_axios31.default,
|
|
32249
32313
|
BASE_PATH,
|
|
32250
32314
|
configuration
|
|
32251
32315
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32270,7 +32334,7 @@ var UserApiFp = function(configuration) {
|
|
|
32270
32334
|
const localVarOperationServerBasePath = operationServerMap["UserApi.getUserPermissions"]?.[localVarOperationServerIndex]?.url;
|
|
32271
32335
|
return (axios3, basePath) => createRequestFunction(
|
|
32272
32336
|
localVarAxiosArgs,
|
|
32273
|
-
|
|
32337
|
+
import_axios31.default,
|
|
32274
32338
|
BASE_PATH,
|
|
32275
32339
|
configuration
|
|
32276
32340
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32293,7 +32357,7 @@ var UserApiFp = function(configuration) {
|
|
|
32293
32357
|
const localVarOperationServerBasePath = operationServerMap["UserApi.getUserProperties"]?.[localVarOperationServerIndex]?.url;
|
|
32294
32358
|
return (axios3, basePath) => createRequestFunction(
|
|
32295
32359
|
localVarAxiosArgs,
|
|
32296
|
-
|
|
32360
|
+
import_axios31.default,
|
|
32297
32361
|
BASE_PATH,
|
|
32298
32362
|
configuration
|
|
32299
32363
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32316,7 +32380,7 @@ var UserApiFp = function(configuration) {
|
|
|
32316
32380
|
const localVarOperationServerBasePath = operationServerMap["UserApi.getUserProperty"]?.[localVarOperationServerIndex]?.url;
|
|
32317
32381
|
return (axios3, basePath) => createRequestFunction(
|
|
32318
32382
|
localVarAxiosArgs,
|
|
32319
|
-
|
|
32383
|
+
import_axios31.default,
|
|
32320
32384
|
BASE_PATH,
|
|
32321
32385
|
configuration
|
|
32322
32386
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32341,7 +32405,7 @@ var UserApiFp = function(configuration) {
|
|
|
32341
32405
|
const localVarOperationServerBasePath = operationServerMap["UserApi.getUserRolesAtScope"]?.[localVarOperationServerIndex]?.url;
|
|
32342
32406
|
return (axios3, basePath) => createRequestFunction(
|
|
32343
32407
|
localVarAxiosArgs,
|
|
32344
|
-
|
|
32408
|
+
import_axios31.default,
|
|
32345
32409
|
BASE_PATH,
|
|
32346
32410
|
configuration
|
|
32347
32411
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32364,7 +32428,7 @@ var UserApiFp = function(configuration) {
|
|
|
32364
32428
|
const localVarOperationServerBasePath = operationServerMap["UserApi.getUserTokens"]?.[localVarOperationServerIndex]?.url;
|
|
32365
32429
|
return (axios3, basePath) => createRequestFunction(
|
|
32366
32430
|
localVarAxiosArgs,
|
|
32367
|
-
|
|
32431
|
+
import_axios31.default,
|
|
32368
32432
|
BASE_PATH,
|
|
32369
32433
|
configuration
|
|
32370
32434
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32382,7 +32446,7 @@ var UserApiFp = function(configuration) {
|
|
|
32382
32446
|
const localVarOperationServerBasePath = operationServerMap["UserApi.logoutUser"]?.[localVarOperationServerIndex]?.url;
|
|
32383
32447
|
return (axios3, basePath) => createRequestFunction(
|
|
32384
32448
|
localVarAxiosArgs,
|
|
32385
|
-
|
|
32449
|
+
import_axios31.default,
|
|
32386
32450
|
BASE_PATH,
|
|
32387
32451
|
configuration
|
|
32388
32452
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32407,7 +32471,7 @@ var UserApiFp = function(configuration) {
|
|
|
32407
32471
|
const localVarOperationServerBasePath = operationServerMap["UserApi.removeUserFromGroup"]?.[localVarOperationServerIndex]?.url;
|
|
32408
32472
|
return (axios3, basePath) => createRequestFunction(
|
|
32409
32473
|
localVarAxiosArgs,
|
|
32410
|
-
|
|
32474
|
+
import_axios31.default,
|
|
32411
32475
|
BASE_PATH,
|
|
32412
32476
|
configuration
|
|
32413
32477
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32430,7 +32494,7 @@ var UserApiFp = function(configuration) {
|
|
|
32430
32494
|
const localVarOperationServerBasePath = operationServerMap["UserApi.removeUserProperty"]?.[localVarOperationServerIndex]?.url;
|
|
32431
32495
|
return (axios3, basePath) => createRequestFunction(
|
|
32432
32496
|
localVarAxiosArgs,
|
|
32433
|
-
|
|
32497
|
+
import_axios31.default,
|
|
32434
32498
|
BASE_PATH,
|
|
32435
32499
|
configuration
|
|
32436
32500
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32451,7 +32515,7 @@ var UserApiFp = function(configuration) {
|
|
|
32451
32515
|
const localVarOperationServerBasePath = operationServerMap["UserApi.removeUserRememberMe"]?.[localVarOperationServerIndex]?.url;
|
|
32452
32516
|
return (axios3, basePath) => createRequestFunction(
|
|
32453
32517
|
localVarAxiosArgs,
|
|
32454
|
-
|
|
32518
|
+
import_axios31.default,
|
|
32455
32519
|
BASE_PATH,
|
|
32456
32520
|
configuration
|
|
32457
32521
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32476,7 +32540,7 @@ var UserApiFp = function(configuration) {
|
|
|
32476
32540
|
const localVarOperationServerBasePath = operationServerMap["UserApi.removeUserRoleAtScope"]?.[localVarOperationServerIndex]?.url;
|
|
32477
32541
|
return (axios3, basePath) => createRequestFunction(
|
|
32478
32542
|
localVarAxiosArgs,
|
|
32479
|
-
|
|
32543
|
+
import_axios31.default,
|
|
32480
32544
|
BASE_PATH,
|
|
32481
32545
|
configuration
|
|
32482
32546
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32501,7 +32565,7 @@ var UserApiFp = function(configuration) {
|
|
|
32501
32565
|
const localVarOperationServerBasePath = operationServerMap["UserApi.replaceUser"]?.[localVarOperationServerIndex]?.url;
|
|
32502
32566
|
return (axios3, basePath) => createRequestFunction(
|
|
32503
32567
|
localVarAxiosArgs,
|
|
32504
|
-
|
|
32568
|
+
import_axios31.default,
|
|
32505
32569
|
BASE_PATH,
|
|
32506
32570
|
configuration
|
|
32507
32571
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32526,7 +32590,7 @@ var UserApiFp = function(configuration) {
|
|
|
32526
32590
|
const localVarOperationServerBasePath = operationServerMap["UserApi.setUserField"]?.[localVarOperationServerIndex]?.url;
|
|
32527
32591
|
return (axios3, basePath) => createRequestFunction(
|
|
32528
32592
|
localVarAxiosArgs,
|
|
32529
|
-
|
|
32593
|
+
import_axios31.default,
|
|
32530
32594
|
BASE_PATH,
|
|
32531
32595
|
configuration
|
|
32532
32596
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32551,7 +32615,7 @@ var UserApiFp = function(configuration) {
|
|
|
32551
32615
|
const localVarOperationServerBasePath = operationServerMap["UserApi.setUserGroups"]?.[localVarOperationServerIndex]?.url;
|
|
32552
32616
|
return (axios3, basePath) => createRequestFunction(
|
|
32553
32617
|
localVarAxiosArgs,
|
|
32554
|
-
|
|
32618
|
+
import_axios31.default,
|
|
32555
32619
|
BASE_PATH,
|
|
32556
32620
|
configuration
|
|
32557
32621
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32576,7 +32640,7 @@ var UserApiFp = function(configuration) {
|
|
|
32576
32640
|
const localVarOperationServerBasePath = operationServerMap["UserApi.setUserProperty"]?.[localVarOperationServerIndex]?.url;
|
|
32577
32641
|
return (axios3, basePath) => createRequestFunction(
|
|
32578
32642
|
localVarAxiosArgs,
|
|
32579
|
-
|
|
32643
|
+
import_axios31.default,
|
|
32580
32644
|
BASE_PATH,
|
|
32581
32645
|
configuration
|
|
32582
32646
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32599,7 +32663,7 @@ var UserApiFp = function(configuration) {
|
|
|
32599
32663
|
const localVarOperationServerBasePath = operationServerMap["UserApi.setUserRoles"]?.[localVarOperationServerIndex]?.url;
|
|
32600
32664
|
return (axios3, basePath) => createRequestFunction(
|
|
32601
32665
|
localVarAxiosArgs,
|
|
32602
|
-
|
|
32666
|
+
import_axios31.default,
|
|
32603
32667
|
BASE_PATH,
|
|
32604
32668
|
configuration
|
|
32605
32669
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -32953,7 +33017,7 @@ var UserApi = class extends BaseAPI {
|
|
|
32953
33017
|
};
|
|
32954
33018
|
|
|
32955
33019
|
// src/teamcity-client/api/vcs-root-api.ts
|
|
32956
|
-
var
|
|
33020
|
+
var import_axios32 = __toESM(require("axios"));
|
|
32957
33021
|
var VcsRootApiAxiosParamCreator = function(configuration) {
|
|
32958
33022
|
return {
|
|
32959
33023
|
/**
|
|
@@ -33478,7 +33542,7 @@ var VcsRootApiFp = function(configuration) {
|
|
|
33478
33542
|
const localVarOperationServerBasePath = operationServerMap["VcsRootApi.addVcsRoot"]?.[localVarOperationServerIndex]?.url;
|
|
33479
33543
|
return (axios3, basePath) => createRequestFunction(
|
|
33480
33544
|
localVarAxiosArgs,
|
|
33481
|
-
|
|
33545
|
+
import_axios32.default,
|
|
33482
33546
|
BASE_PATH,
|
|
33483
33547
|
configuration
|
|
33484
33548
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -33499,7 +33563,7 @@ var VcsRootApiFp = function(configuration) {
|
|
|
33499
33563
|
const localVarOperationServerBasePath = operationServerMap["VcsRootApi.deleteAllVcsRootProperties"]?.[localVarOperationServerIndex]?.url;
|
|
33500
33564
|
return (axios3, basePath) => createRequestFunction(
|
|
33501
33565
|
localVarAxiosArgs,
|
|
33502
|
-
|
|
33566
|
+
import_axios32.default,
|
|
33503
33567
|
BASE_PATH,
|
|
33504
33568
|
configuration
|
|
33505
33569
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -33520,7 +33584,7 @@ var VcsRootApiFp = function(configuration) {
|
|
|
33520
33584
|
const localVarOperationServerBasePath = operationServerMap["VcsRootApi.deleteVcsRoot"]?.[localVarOperationServerIndex]?.url;
|
|
33521
33585
|
return (axios3, basePath) => createRequestFunction(
|
|
33522
33586
|
localVarAxiosArgs,
|
|
33523
|
-
|
|
33587
|
+
import_axios32.default,
|
|
33524
33588
|
BASE_PATH,
|
|
33525
33589
|
configuration
|
|
33526
33590
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -33543,7 +33607,7 @@ var VcsRootApiFp = function(configuration) {
|
|
|
33543
33607
|
const localVarOperationServerBasePath = operationServerMap["VcsRootApi.deleteVcsRootProperty"]?.[localVarOperationServerIndex]?.url;
|
|
33544
33608
|
return (axios3, basePath) => createRequestFunction(
|
|
33545
33609
|
localVarAxiosArgs,
|
|
33546
|
-
|
|
33610
|
+
import_axios32.default,
|
|
33547
33611
|
BASE_PATH,
|
|
33548
33612
|
configuration
|
|
33549
33613
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -33566,7 +33630,7 @@ var VcsRootApiFp = function(configuration) {
|
|
|
33566
33630
|
const localVarOperationServerBasePath = operationServerMap["VcsRootApi.getAllVcsRootProperties"]?.[localVarOperationServerIndex]?.url;
|
|
33567
33631
|
return (axios3, basePath) => createRequestFunction(
|
|
33568
33632
|
localVarAxiosArgs,
|
|
33569
|
-
|
|
33633
|
+
import_axios32.default,
|
|
33570
33634
|
BASE_PATH,
|
|
33571
33635
|
configuration
|
|
33572
33636
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -33589,7 +33653,7 @@ var VcsRootApiFp = function(configuration) {
|
|
|
33589
33653
|
const localVarOperationServerBasePath = operationServerMap["VcsRootApi.getAllVcsRoots"]?.[localVarOperationServerIndex]?.url;
|
|
33590
33654
|
return (axios3, basePath) => createRequestFunction(
|
|
33591
33655
|
localVarAxiosArgs,
|
|
33592
|
-
|
|
33656
|
+
import_axios32.default,
|
|
33593
33657
|
BASE_PATH,
|
|
33594
33658
|
configuration
|
|
33595
33659
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -33612,7 +33676,7 @@ var VcsRootApiFp = function(configuration) {
|
|
|
33612
33676
|
const localVarOperationServerBasePath = operationServerMap["VcsRootApi.getRootEndpoints"]?.[localVarOperationServerIndex]?.url;
|
|
33613
33677
|
return (axios3, basePath) => createRequestFunction(
|
|
33614
33678
|
localVarAxiosArgs,
|
|
33615
|
-
|
|
33679
|
+
import_axios32.default,
|
|
33616
33680
|
BASE_PATH,
|
|
33617
33681
|
configuration
|
|
33618
33682
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -33635,7 +33699,7 @@ var VcsRootApiFp = function(configuration) {
|
|
|
33635
33699
|
const localVarOperationServerBasePath = operationServerMap["VcsRootApi.getVcsRootField"]?.[localVarOperationServerIndex]?.url;
|
|
33636
33700
|
return (axios3, basePath) => createRequestFunction(
|
|
33637
33701
|
localVarAxiosArgs,
|
|
33638
|
-
|
|
33702
|
+
import_axios32.default,
|
|
33639
33703
|
BASE_PATH,
|
|
33640
33704
|
configuration
|
|
33641
33705
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -33658,7 +33722,7 @@ var VcsRootApiFp = function(configuration) {
|
|
|
33658
33722
|
const localVarOperationServerBasePath = operationServerMap["VcsRootApi.getVcsRootInstances"]?.[localVarOperationServerIndex]?.url;
|
|
33659
33723
|
return (axios3, basePath) => createRequestFunction(
|
|
33660
33724
|
localVarAxiosArgs,
|
|
33661
|
-
|
|
33725
|
+
import_axios32.default,
|
|
33662
33726
|
BASE_PATH,
|
|
33663
33727
|
configuration
|
|
33664
33728
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -33681,7 +33745,7 @@ var VcsRootApiFp = function(configuration) {
|
|
|
33681
33745
|
const localVarOperationServerBasePath = operationServerMap["VcsRootApi.getVcsRootProperty"]?.[localVarOperationServerIndex]?.url;
|
|
33682
33746
|
return (axios3, basePath) => createRequestFunction(
|
|
33683
33747
|
localVarAxiosArgs,
|
|
33684
|
-
|
|
33748
|
+
import_axios32.default,
|
|
33685
33749
|
BASE_PATH,
|
|
33686
33750
|
configuration
|
|
33687
33751
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -33702,7 +33766,7 @@ var VcsRootApiFp = function(configuration) {
|
|
|
33702
33766
|
const localVarOperationServerBasePath = operationServerMap["VcsRootApi.getVcsRootSettingsFile"]?.[localVarOperationServerIndex]?.url;
|
|
33703
33767
|
return (axios3, basePath) => createRequestFunction(
|
|
33704
33768
|
localVarAxiosArgs,
|
|
33705
|
-
|
|
33769
|
+
import_axios32.default,
|
|
33706
33770
|
BASE_PATH,
|
|
33707
33771
|
configuration
|
|
33708
33772
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -33727,7 +33791,7 @@ var VcsRootApiFp = function(configuration) {
|
|
|
33727
33791
|
const localVarOperationServerBasePath = operationServerMap["VcsRootApi.setVcsRootField"]?.[localVarOperationServerIndex]?.url;
|
|
33728
33792
|
return (axios3, basePath) => createRequestFunction(
|
|
33729
33793
|
localVarAxiosArgs,
|
|
33730
|
-
|
|
33794
|
+
import_axios32.default,
|
|
33731
33795
|
BASE_PATH,
|
|
33732
33796
|
configuration
|
|
33733
33797
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -33752,7 +33816,7 @@ var VcsRootApiFp = function(configuration) {
|
|
|
33752
33816
|
const localVarOperationServerBasePath = operationServerMap["VcsRootApi.setVcsRootProperties"]?.[localVarOperationServerIndex]?.url;
|
|
33753
33817
|
return (axios3, basePath) => createRequestFunction(
|
|
33754
33818
|
localVarAxiosArgs,
|
|
33755
|
-
|
|
33819
|
+
import_axios32.default,
|
|
33756
33820
|
BASE_PATH,
|
|
33757
33821
|
configuration
|
|
33758
33822
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -33777,7 +33841,7 @@ var VcsRootApiFp = function(configuration) {
|
|
|
33777
33841
|
const localVarOperationServerBasePath = operationServerMap["VcsRootApi.setVcsRootProperty"]?.[localVarOperationServerIndex]?.url;
|
|
33778
33842
|
return (axios3, basePath) => createRequestFunction(
|
|
33779
33843
|
localVarAxiosArgs,
|
|
33780
|
-
|
|
33844
|
+
import_axios32.default,
|
|
33781
33845
|
BASE_PATH,
|
|
33782
33846
|
configuration
|
|
33783
33847
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -33956,7 +34020,7 @@ var VcsRootApi = class extends BaseAPI {
|
|
|
33956
34020
|
};
|
|
33957
34021
|
|
|
33958
34022
|
// src/teamcity-client/api/vcs-root-instance-api.ts
|
|
33959
|
-
var
|
|
34023
|
+
var import_axios33 = __toESM(require("axios"));
|
|
33960
34024
|
var VcsRootInstanceApiAxiosParamCreator = function(configuration) {
|
|
33961
34025
|
return {
|
|
33962
34026
|
/**
|
|
@@ -34672,7 +34736,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
34672
34736
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.deleteVcsRootInstanceField"]?.[localVarOperationServerIndex]?.url;
|
|
34673
34737
|
return (axios3, basePath) => createRequestFunction(
|
|
34674
34738
|
localVarAxiosArgs,
|
|
34675
|
-
|
|
34739
|
+
import_axios33.default,
|
|
34676
34740
|
BASE_PATH,
|
|
34677
34741
|
configuration
|
|
34678
34742
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -34693,7 +34757,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
34693
34757
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.deleteVcsRootInstanceRepositoryState"]?.[localVarOperationServerIndex]?.url;
|
|
34694
34758
|
return (axios3, basePath) => createRequestFunction(
|
|
34695
34759
|
localVarAxiosArgs,
|
|
34696
|
-
|
|
34760
|
+
import_axios33.default,
|
|
34697
34761
|
BASE_PATH,
|
|
34698
34762
|
configuration
|
|
34699
34763
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -34716,7 +34780,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
34716
34780
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.downloadFile"]?.[localVarOperationServerIndex]?.url;
|
|
34717
34781
|
return (axios3, basePath) => createRequestFunction(
|
|
34718
34782
|
localVarAxiosArgs,
|
|
34719
|
-
|
|
34783
|
+
import_axios33.default,
|
|
34720
34784
|
BASE_PATH,
|
|
34721
34785
|
configuration
|
|
34722
34786
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -34739,7 +34803,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
34739
34803
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.getAllVcsRootInstances"]?.[localVarOperationServerIndex]?.url;
|
|
34740
34804
|
return (axios3, basePath) => createRequestFunction(
|
|
34741
34805
|
localVarAxiosArgs,
|
|
34742
|
-
|
|
34806
|
+
import_axios33.default,
|
|
34743
34807
|
BASE_PATH,
|
|
34744
34808
|
configuration
|
|
34745
34809
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -34764,7 +34828,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
34764
34828
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.getFileMetadata"]?.[localVarOperationServerIndex]?.url;
|
|
34765
34829
|
return (axios3, basePath) => createRequestFunction(
|
|
34766
34830
|
localVarAxiosArgs,
|
|
34767
|
-
|
|
34831
|
+
import_axios33.default,
|
|
34768
34832
|
BASE_PATH,
|
|
34769
34833
|
configuration
|
|
34770
34834
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -34791,7 +34855,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
34791
34855
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.getFilesList"]?.[localVarOperationServerIndex]?.url;
|
|
34792
34856
|
return (axios3, basePath2) => createRequestFunction(
|
|
34793
34857
|
localVarAxiosArgs,
|
|
34794
|
-
|
|
34858
|
+
import_axios33.default,
|
|
34795
34859
|
BASE_PATH,
|
|
34796
34860
|
configuration
|
|
34797
34861
|
)(axios3, localVarOperationServerBasePath || basePath2);
|
|
@@ -34820,7 +34884,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
34820
34884
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.getFilesListForSubpath"]?.[localVarOperationServerIndex]?.url;
|
|
34821
34885
|
return (axios3, basePath2) => createRequestFunction(
|
|
34822
34886
|
localVarAxiosArgs,
|
|
34823
|
-
|
|
34887
|
+
import_axios33.default,
|
|
34824
34888
|
BASE_PATH,
|
|
34825
34889
|
configuration
|
|
34826
34890
|
)(axios3, localVarOperationServerBasePath || basePath2);
|
|
@@ -34843,7 +34907,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
34843
34907
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.getVcsRootInstance"]?.[localVarOperationServerIndex]?.url;
|
|
34844
34908
|
return (axios3, basePath) => createRequestFunction(
|
|
34845
34909
|
localVarAxiosArgs,
|
|
34846
|
-
|
|
34910
|
+
import_axios33.default,
|
|
34847
34911
|
BASE_PATH,
|
|
34848
34912
|
configuration
|
|
34849
34913
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -34864,7 +34928,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
34864
34928
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.getVcsRootInstanceCreationDate"]?.[localVarOperationServerIndex]?.url;
|
|
34865
34929
|
return (axios3, basePath) => createRequestFunction(
|
|
34866
34930
|
localVarAxiosArgs,
|
|
34867
|
-
|
|
34931
|
+
import_axios33.default,
|
|
34868
34932
|
BASE_PATH,
|
|
34869
34933
|
configuration
|
|
34870
34934
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -34887,7 +34951,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
34887
34951
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.getVcsRootInstanceField"]?.[localVarOperationServerIndex]?.url;
|
|
34888
34952
|
return (axios3, basePath) => createRequestFunction(
|
|
34889
34953
|
localVarAxiosArgs,
|
|
34890
|
-
|
|
34954
|
+
import_axios33.default,
|
|
34891
34955
|
BASE_PATH,
|
|
34892
34956
|
configuration
|
|
34893
34957
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -34910,7 +34974,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
34910
34974
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.getVcsRootInstanceProperties"]?.[localVarOperationServerIndex]?.url;
|
|
34911
34975
|
return (axios3, basePath) => createRequestFunction(
|
|
34912
34976
|
localVarAxiosArgs,
|
|
34913
|
-
|
|
34977
|
+
import_axios33.default,
|
|
34914
34978
|
BASE_PATH,
|
|
34915
34979
|
configuration
|
|
34916
34980
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -34933,7 +34997,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
34933
34997
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.getVcsRootInstanceRepositoryState"]?.[localVarOperationServerIndex]?.url;
|
|
34934
34998
|
return (axios3, basePath) => createRequestFunction(
|
|
34935
34999
|
localVarAxiosArgs,
|
|
34936
|
-
|
|
35000
|
+
import_axios33.default,
|
|
34937
35001
|
BASE_PATH,
|
|
34938
35002
|
configuration
|
|
34939
35003
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -34962,7 +35026,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
34962
35026
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.getZippedFile"]?.[localVarOperationServerIndex]?.url;
|
|
34963
35027
|
return (axios3, basePath2) => createRequestFunction(
|
|
34964
35028
|
localVarAxiosArgs,
|
|
34965
|
-
|
|
35029
|
+
import_axios33.default,
|
|
34966
35030
|
BASE_PATH,
|
|
34967
35031
|
configuration
|
|
34968
35032
|
)(axios3, localVarOperationServerBasePath || basePath2);
|
|
@@ -34987,7 +35051,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
34987
35051
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.requestPendingChangesCheck"]?.[localVarOperationServerIndex]?.url;
|
|
34988
35052
|
return (axios3, basePath) => createRequestFunction(
|
|
34989
35053
|
localVarAxiosArgs,
|
|
34990
|
-
|
|
35054
|
+
import_axios33.default,
|
|
34991
35055
|
BASE_PATH,
|
|
34992
35056
|
configuration
|
|
34993
35057
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -35012,7 +35076,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
35012
35076
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.setVcsRootInstanceField"]?.[localVarOperationServerIndex]?.url;
|
|
35013
35077
|
return (axios3, basePath) => createRequestFunction(
|
|
35014
35078
|
localVarAxiosArgs,
|
|
35015
|
-
|
|
35079
|
+
import_axios33.default,
|
|
35016
35080
|
BASE_PATH,
|
|
35017
35081
|
configuration
|
|
35018
35082
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -35037,7 +35101,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
35037
35101
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.setVcsRootInstanceRepositoryState"]?.[localVarOperationServerIndex]?.url;
|
|
35038
35102
|
return (axios3, basePath) => createRequestFunction(
|
|
35039
35103
|
localVarAxiosArgs,
|
|
35040
|
-
|
|
35104
|
+
import_axios33.default,
|
|
35041
35105
|
BASE_PATH,
|
|
35042
35106
|
configuration
|
|
35043
35107
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -35060,7 +35124,7 @@ var VcsRootInstanceApiFp = function(configuration) {
|
|
|
35060
35124
|
const localVarOperationServerBasePath = operationServerMap["VcsRootInstanceApi.triggerCommitHookNotification"]?.[localVarOperationServerIndex]?.url;
|
|
35061
35125
|
return (axios3, basePath) => createRequestFunction(
|
|
35062
35126
|
localVarAxiosArgs,
|
|
35063
|
-
|
|
35127
|
+
import_axios33.default,
|
|
35064
35128
|
BASE_PATH,
|
|
35065
35129
|
configuration
|
|
35066
35130
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -35285,7 +35349,7 @@ var VcsRootInstanceApi = class extends BaseAPI {
|
|
|
35285
35349
|
};
|
|
35286
35350
|
|
|
35287
35351
|
// src/teamcity-client/api/versioned-settings-api.ts
|
|
35288
|
-
var
|
|
35352
|
+
var import_axios34 = __toESM(require("axios"));
|
|
35289
35353
|
var VersionedSettingsApiAxiosParamCreator = function(configuration) {
|
|
35290
35354
|
return {
|
|
35291
35355
|
/**
|
|
@@ -35862,7 +35926,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
35862
35926
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.addVersionedSettingsTokens"]?.[localVarOperationServerIndex]?.url;
|
|
35863
35927
|
return (axios3, basePath) => createRequestFunction(
|
|
35864
35928
|
localVarAxiosArgs,
|
|
35865
|
-
|
|
35929
|
+
import_axios34.default,
|
|
35866
35930
|
BASE_PATH,
|
|
35867
35931
|
configuration
|
|
35868
35932
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -35883,7 +35947,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
35883
35947
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.checkForVersionedSettingsChanges"]?.[localVarOperationServerIndex]?.url;
|
|
35884
35948
|
return (axios3, basePath) => createRequestFunction(
|
|
35885
35949
|
localVarAxiosArgs,
|
|
35886
|
-
|
|
35950
|
+
import_axios34.default,
|
|
35887
35951
|
BASE_PATH,
|
|
35888
35952
|
configuration
|
|
35889
35953
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -35904,7 +35968,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
35904
35968
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.commitCurrentSettings"]?.[localVarOperationServerIndex]?.url;
|
|
35905
35969
|
return (axios3, basePath) => createRequestFunction(
|
|
35906
35970
|
localVarAxiosArgs,
|
|
35907
|
-
|
|
35971
|
+
import_axios34.default,
|
|
35908
35972
|
BASE_PATH,
|
|
35909
35973
|
configuration
|
|
35910
35974
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -35927,7 +35991,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
35927
35991
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.deleteVersionedSettingsConfigParameter"]?.[localVarOperationServerIndex]?.url;
|
|
35928
35992
|
return (axios3, basePath) => createRequestFunction(
|
|
35929
35993
|
localVarAxiosArgs,
|
|
35930
|
-
|
|
35994
|
+
import_axios34.default,
|
|
35931
35995
|
BASE_PATH,
|
|
35932
35996
|
configuration
|
|
35933
35997
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -35950,7 +36014,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
35950
36014
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.deleteVersionedSettingsTokens"]?.[localVarOperationServerIndex]?.url;
|
|
35951
36015
|
return (axios3, basePath) => createRequestFunction(
|
|
35952
36016
|
localVarAxiosArgs,
|
|
35953
|
-
|
|
36017
|
+
import_axios34.default,
|
|
35954
36018
|
BASE_PATH,
|
|
35955
36019
|
configuration
|
|
35956
36020
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -35973,7 +36037,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
35973
36037
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.getVersionedSettingsConfig"]?.[localVarOperationServerIndex]?.url;
|
|
35974
36038
|
return (axios3, basePath) => createRequestFunction(
|
|
35975
36039
|
localVarAxiosArgs,
|
|
35976
|
-
|
|
36040
|
+
import_axios34.default,
|
|
35977
36041
|
BASE_PATH,
|
|
35978
36042
|
configuration
|
|
35979
36043
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -35996,7 +36060,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
35996
36060
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.getVersionedSettingsConfigParameter"]?.[localVarOperationServerIndex]?.url;
|
|
35997
36061
|
return (axios3, basePath) => createRequestFunction(
|
|
35998
36062
|
localVarAxiosArgs,
|
|
35999
|
-
|
|
36063
|
+
import_axios34.default,
|
|
36000
36064
|
BASE_PATH,
|
|
36001
36065
|
configuration
|
|
36002
36066
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -36014,7 +36078,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
36014
36078
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.getVersionedSettingsContextParameters"]?.[localVarOperationServerIndex]?.url;
|
|
36015
36079
|
return (axios3, basePath) => createRequestFunction(
|
|
36016
36080
|
localVarAxiosArgs,
|
|
36017
|
-
|
|
36081
|
+
import_axios34.default,
|
|
36018
36082
|
BASE_PATH,
|
|
36019
36083
|
configuration
|
|
36020
36084
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -36037,7 +36101,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
36037
36101
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.getVersionedSettingsProjectsToLoad"]?.[localVarOperationServerIndex]?.url;
|
|
36038
36102
|
return (axios3, basePath) => createRequestFunction(
|
|
36039
36103
|
localVarAxiosArgs,
|
|
36040
|
-
|
|
36104
|
+
import_axios34.default,
|
|
36041
36105
|
BASE_PATH,
|
|
36042
36106
|
configuration
|
|
36043
36107
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -36060,7 +36124,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
36060
36124
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.getVersionedSettingsStatus"]?.[localVarOperationServerIndex]?.url;
|
|
36061
36125
|
return (axios3, basePath) => createRequestFunction(
|
|
36062
36126
|
localVarAxiosArgs,
|
|
36063
|
-
|
|
36127
|
+
import_axios34.default,
|
|
36064
36128
|
BASE_PATH,
|
|
36065
36129
|
configuration
|
|
36066
36130
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -36083,7 +36147,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
36083
36147
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.getVersionedSettingsTokens"]?.[localVarOperationServerIndex]?.url;
|
|
36084
36148
|
return (axios3, basePath) => createRequestFunction(
|
|
36085
36149
|
localVarAxiosArgs,
|
|
36086
|
-
|
|
36150
|
+
import_axios34.default,
|
|
36087
36151
|
BASE_PATH,
|
|
36088
36152
|
configuration
|
|
36089
36153
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -36106,7 +36170,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
36106
36170
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.loadSettingsFromVCS"]?.[localVarOperationServerIndex]?.url;
|
|
36107
36171
|
return (axios3, basePath) => createRequestFunction(
|
|
36108
36172
|
localVarAxiosArgs,
|
|
36109
|
-
|
|
36173
|
+
import_axios34.default,
|
|
36110
36174
|
BASE_PATH,
|
|
36111
36175
|
configuration
|
|
36112
36176
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -36131,7 +36195,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
36131
36195
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.setVersionedSettingsConfig"]?.[localVarOperationServerIndex]?.url;
|
|
36132
36196
|
return (axios3, basePath) => createRequestFunction(
|
|
36133
36197
|
localVarAxiosArgs,
|
|
36134
|
-
|
|
36198
|
+
import_axios34.default,
|
|
36135
36199
|
BASE_PATH,
|
|
36136
36200
|
configuration
|
|
36137
36201
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -36156,7 +36220,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
36156
36220
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.setVersionedSettingsConfigParameter"]?.[localVarOperationServerIndex]?.url;
|
|
36157
36221
|
return (axios3, basePath) => createRequestFunction(
|
|
36158
36222
|
localVarAxiosArgs,
|
|
36159
|
-
|
|
36223
|
+
import_axios34.default,
|
|
36160
36224
|
BASE_PATH,
|
|
36161
36225
|
configuration
|
|
36162
36226
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -36179,7 +36243,7 @@ var VersionedSettingsApiFp = function(configuration) {
|
|
|
36179
36243
|
const localVarOperationServerBasePath = operationServerMap["VersionedSettingsApi.setVersionedSettingsContextParameters"]?.[localVarOperationServerIndex]?.url;
|
|
36180
36244
|
return (axios3, basePath) => createRequestFunction(
|
|
36181
36245
|
localVarAxiosArgs,
|
|
36182
|
-
|
|
36246
|
+
import_axios34.default,
|
|
36183
36247
|
BASE_PATH,
|
|
36184
36248
|
configuration
|
|
36185
36249
|
)(axios3, localVarOperationServerBasePath || basePath);
|
|
@@ -36451,7 +36515,7 @@ var TeamCityAPI = class _TeamCityAPI {
|
|
|
36451
36515
|
throw new Error(`Invalid TeamCity configuration: ${validation.errors.join(", ")}`);
|
|
36452
36516
|
}
|
|
36453
36517
|
this.baseUrl = basePath;
|
|
36454
|
-
this.axiosInstance =
|
|
36518
|
+
this.axiosInstance = import_axios35.default.create({
|
|
36455
36519
|
baseURL: basePath,
|
|
36456
36520
|
timeout,
|
|
36457
36521
|
headers: {
|
|
@@ -36798,6 +36862,219 @@ var TeamCityAPI = class _TeamCityAPI {
|
|
|
36798
36862
|
|
|
36799
36863
|
// src/tools.ts
|
|
36800
36864
|
var isReadableStream = (value) => typeof value === "object" && value !== null && typeof value.pipe === "function";
|
|
36865
|
+
var sanitizeFileName = (artifactName) => {
|
|
36866
|
+
const base = (0, import_node_path.basename)(artifactName || "artifact");
|
|
36867
|
+
const safeBase = base.replace(/[^a-zA-Z0-9._-]/g, "_") || "artifact";
|
|
36868
|
+
const ext = (0, import_node_path.extname)(safeBase);
|
|
36869
|
+
const stemCandidate = ext ? safeBase.slice(0, -ext.length) : safeBase;
|
|
36870
|
+
const stem = stemCandidate || "artifact";
|
|
36871
|
+
const sanitizedBase = ext ? `${stem}${ext}` : stem;
|
|
36872
|
+
return { sanitizedBase, stem, ext };
|
|
36873
|
+
};
|
|
36874
|
+
var buildRandomFileName = (artifactName) => {
|
|
36875
|
+
const { stem, ext } = sanitizeFileName(artifactName);
|
|
36876
|
+
return `${stem}-${(0, import_node_crypto.randomUUID)()}${ext}`;
|
|
36877
|
+
};
|
|
36878
|
+
var sanitizePathSegments = (artifactPath, fallbackName) => {
|
|
36879
|
+
const rawSegments = artifactPath?.split("/") ?? [];
|
|
36880
|
+
const sanitizedSegments = rawSegments.map((segment) => segment.trim()).filter((segment) => segment && segment !== "." && segment !== "..").map((segment) => segment.replace(/[^a-zA-Z0-9._-]/g, "_"));
|
|
36881
|
+
if (sanitizedSegments.length === 0) {
|
|
36882
|
+
const { sanitizedBase } = sanitizeFileName(fallbackName);
|
|
36883
|
+
sanitizedSegments.push(sanitizedBase);
|
|
36884
|
+
}
|
|
36885
|
+
return sanitizedSegments;
|
|
36886
|
+
};
|
|
36887
|
+
var ensureUniquePath = async (candidate) => {
|
|
36888
|
+
const ext = (0, import_node_path.extname)(candidate);
|
|
36889
|
+
const stem = ext ? candidate.slice(0, -ext.length) : candidate;
|
|
36890
|
+
const probe = async (attempt) => {
|
|
36891
|
+
const next = attempt === 0 ? candidate : `${stem}-${attempt}${ext}`;
|
|
36892
|
+
try {
|
|
36893
|
+
const handle = await import_node_fs.promises.open(next, "wx");
|
|
36894
|
+
await handle.close();
|
|
36895
|
+
return next;
|
|
36896
|
+
} catch (error2) {
|
|
36897
|
+
const err = error2;
|
|
36898
|
+
if (err?.code === "EEXIST") {
|
|
36899
|
+
return probe(attempt + 1);
|
|
36900
|
+
}
|
|
36901
|
+
throw error2;
|
|
36902
|
+
}
|
|
36903
|
+
};
|
|
36904
|
+
return probe(0);
|
|
36905
|
+
};
|
|
36906
|
+
var resolveStreamOutputPath = async (artifact, options) => {
|
|
36907
|
+
if (options.explicitOutputPath) {
|
|
36908
|
+
const target = options.explicitOutputPath;
|
|
36909
|
+
await import_node_fs.promises.mkdir((0, import_node_path.dirname)(target), { recursive: true });
|
|
36910
|
+
return target;
|
|
36911
|
+
}
|
|
36912
|
+
if (options.outputDir) {
|
|
36913
|
+
const segments = sanitizePathSegments(artifact.path, artifact.name);
|
|
36914
|
+
const parts = segments.slice(0, -1);
|
|
36915
|
+
const fileName = segments[segments.length - 1] ?? sanitizeFileName(artifact.name).sanitizedBase;
|
|
36916
|
+
const baseDir = (0, import_node_path.resolve)(options.outputDir);
|
|
36917
|
+
const candidate = (0, import_node_path.resolve)(baseDir, ...parts, fileName);
|
|
36918
|
+
const relativePath = (0, import_node_path.relative)(baseDir, candidate);
|
|
36919
|
+
if (relativePath.startsWith("..") || (0, import_node_path.isAbsolute)(relativePath)) {
|
|
36920
|
+
throw new Error("Resolved artifact path escapes the configured output directory");
|
|
36921
|
+
}
|
|
36922
|
+
await import_node_fs.promises.mkdir((0, import_node_path.dirname)(candidate), { recursive: true });
|
|
36923
|
+
return ensureUniquePath(candidate);
|
|
36924
|
+
}
|
|
36925
|
+
const tempFilePath = (0, import_node_path.join)((0, import_node_os.tmpdir)(), buildRandomFileName(artifact.name));
|
|
36926
|
+
await import_node_fs.promises.mkdir((0, import_node_path.dirname)(tempFilePath), { recursive: true });
|
|
36927
|
+
return tempFilePath;
|
|
36928
|
+
};
|
|
36929
|
+
var writeArtifactStreamToDisk = async (artifact, stream, options) => {
|
|
36930
|
+
const targetPath = await resolveStreamOutputPath(artifact, options);
|
|
36931
|
+
await (0, import_promises.pipeline)(stream, (0, import_node_fs.createWriteStream)(targetPath));
|
|
36932
|
+
const stats = await import_node_fs.promises.stat(targetPath);
|
|
36933
|
+
return { outputPath: targetPath, bytesWritten: stats.size };
|
|
36934
|
+
};
|
|
36935
|
+
var buildArtifactPayload = async (artifact, encoding, options) => {
|
|
36936
|
+
if (encoding === "stream") {
|
|
36937
|
+
const contentStream = artifact.content;
|
|
36938
|
+
if (!isReadableStream(contentStream)) {
|
|
36939
|
+
throw new Error("Streaming download did not return a readable stream");
|
|
36940
|
+
}
|
|
36941
|
+
const { outputPath, bytesWritten } = await writeArtifactStreamToDisk(
|
|
36942
|
+
artifact,
|
|
36943
|
+
contentStream,
|
|
36944
|
+
options
|
|
36945
|
+
);
|
|
36946
|
+
return {
|
|
36947
|
+
name: artifact.name,
|
|
36948
|
+
path: artifact.path,
|
|
36949
|
+
size: artifact.size,
|
|
36950
|
+
mimeType: artifact.mimeType,
|
|
36951
|
+
encoding: "stream",
|
|
36952
|
+
outputPath,
|
|
36953
|
+
bytesWritten
|
|
36954
|
+
};
|
|
36955
|
+
}
|
|
36956
|
+
const payloadContent = artifact.content;
|
|
36957
|
+
if (typeof payloadContent !== "string") {
|
|
36958
|
+
throw new Error(`Expected ${encoding} artifact content as string`);
|
|
36959
|
+
}
|
|
36960
|
+
return {
|
|
36961
|
+
name: artifact.name,
|
|
36962
|
+
path: artifact.path,
|
|
36963
|
+
size: artifact.size,
|
|
36964
|
+
mimeType: artifact.mimeType,
|
|
36965
|
+
encoding,
|
|
36966
|
+
content: payloadContent
|
|
36967
|
+
};
|
|
36968
|
+
};
|
|
36969
|
+
var toNormalizedArtifactRequests = (inputs, defaultBuildId) => inputs.map((entry) => {
|
|
36970
|
+
if (typeof entry === "string") {
|
|
36971
|
+
return { path: entry, buildId: defaultBuildId };
|
|
36972
|
+
}
|
|
36973
|
+
const path = entry.path.trim();
|
|
36974
|
+
const buildId = (entry.buildId ?? defaultBuildId).trim();
|
|
36975
|
+
if (!buildId) {
|
|
36976
|
+
throw new Error(`Artifact request for path "${path}" is missing a buildId`);
|
|
36977
|
+
}
|
|
36978
|
+
return {
|
|
36979
|
+
path,
|
|
36980
|
+
buildId,
|
|
36981
|
+
downloadUrl: entry.downloadUrl?.trim()
|
|
36982
|
+
};
|
|
36983
|
+
});
|
|
36984
|
+
var getErrorMessage = (error2) => {
|
|
36985
|
+
if ((0, import_axios36.isAxiosError)(error2)) {
|
|
36986
|
+
const status = error2.response?.status;
|
|
36987
|
+
const data = error2.response?.data;
|
|
36988
|
+
let detail;
|
|
36989
|
+
if (typeof data === "string") {
|
|
36990
|
+
detail = data;
|
|
36991
|
+
} else if (data !== void 0 && data !== null && typeof data === "object") {
|
|
36992
|
+
try {
|
|
36993
|
+
detail = JSON.stringify(data);
|
|
36994
|
+
} catch {
|
|
36995
|
+
detail = "[unserializable response body]";
|
|
36996
|
+
}
|
|
36997
|
+
}
|
|
36998
|
+
return `HTTP ${status ?? "unknown"}${detail ? `: ${detail}` : ""}`;
|
|
36999
|
+
}
|
|
37000
|
+
if (error2 instanceof Error) {
|
|
37001
|
+
return error2.message;
|
|
37002
|
+
}
|
|
37003
|
+
if (typeof error2 === "object" && error2 !== null && "message" in error2) {
|
|
37004
|
+
return String(error2.message);
|
|
37005
|
+
}
|
|
37006
|
+
return String(error2 ?? "Unknown error");
|
|
37007
|
+
};
|
|
37008
|
+
var downloadArtifactByUrl = async (adapter, request, encoding, options) => {
|
|
37009
|
+
const axios3 = adapter.getAxios();
|
|
37010
|
+
const responseType = encoding === "stream" ? "stream" : encoding === "text" ? "text" : "arraybuffer";
|
|
37011
|
+
const response = await axios3.get(request.downloadUrl, { responseType });
|
|
37012
|
+
const mimeType = typeof response.headers?.["content-type"] === "string" ? response.headers["content-type"] : void 0;
|
|
37013
|
+
const contentLengthHeader = response.headers?.["content-length"];
|
|
37014
|
+
const contentLength = typeof contentLengthHeader === "string" ? Number.parseInt(contentLengthHeader, 10) : void 0;
|
|
37015
|
+
if (options.maxSize && typeof contentLength === "number" && contentLength > options.maxSize) {
|
|
37016
|
+
throw new Error(
|
|
37017
|
+
`Artifact size exceeds maximum allowed size: ${contentLength} > ${options.maxSize}`
|
|
37018
|
+
);
|
|
37019
|
+
}
|
|
37020
|
+
if (encoding === "stream") {
|
|
37021
|
+
const stream = response.data;
|
|
37022
|
+
if (!isReadableStream(stream)) {
|
|
37023
|
+
throw new Error("Streaming download did not return a readable stream");
|
|
37024
|
+
}
|
|
37025
|
+
const artifact2 = {
|
|
37026
|
+
name: request.path.split("/").pop() ?? request.path,
|
|
37027
|
+
path: request.path,
|
|
37028
|
+
size: contentLength ?? 0,
|
|
37029
|
+
content: stream,
|
|
37030
|
+
mimeType
|
|
37031
|
+
};
|
|
37032
|
+
return buildArtifactPayload(artifact2, "stream", options);
|
|
37033
|
+
}
|
|
37034
|
+
const rawPayload = response.data;
|
|
37035
|
+
if (encoding === "text") {
|
|
37036
|
+
if (typeof rawPayload !== "string") {
|
|
37037
|
+
throw new Error("Artifact download returned a non-text payload when text was expected");
|
|
37038
|
+
}
|
|
37039
|
+
const textSize = Buffer.byteLength(rawPayload, "utf8");
|
|
37040
|
+
if (options.maxSize && textSize > options.maxSize) {
|
|
37041
|
+
throw new Error(
|
|
37042
|
+
`Artifact size exceeds maximum allowed size: ${textSize} > ${options.maxSize}`
|
|
37043
|
+
);
|
|
37044
|
+
}
|
|
37045
|
+
const artifact2 = {
|
|
37046
|
+
name: request.path.split("/").pop() ?? request.path,
|
|
37047
|
+
path: request.path,
|
|
37048
|
+
size: textSize,
|
|
37049
|
+
content: rawPayload,
|
|
37050
|
+
mimeType
|
|
37051
|
+
};
|
|
37052
|
+
return buildArtifactPayload(artifact2, "text", options);
|
|
37053
|
+
}
|
|
37054
|
+
let buffer;
|
|
37055
|
+
if (Buffer.isBuffer(rawPayload)) {
|
|
37056
|
+
buffer = rawPayload;
|
|
37057
|
+
} else if (rawPayload instanceof ArrayBuffer) {
|
|
37058
|
+
buffer = Buffer.from(rawPayload);
|
|
37059
|
+
} else if (ArrayBuffer.isView(rawPayload)) {
|
|
37060
|
+
buffer = Buffer.from(rawPayload.buffer);
|
|
37061
|
+
} else {
|
|
37062
|
+
throw new Error("Artifact download returned unexpected binary payload type");
|
|
37063
|
+
}
|
|
37064
|
+
if (options.maxSize && buffer.byteLength > options.maxSize) {
|
|
37065
|
+
throw new Error(
|
|
37066
|
+
`Artifact size exceeds maximum allowed size: ${buffer.byteLength} > ${options.maxSize}`
|
|
37067
|
+
);
|
|
37068
|
+
}
|
|
37069
|
+
const artifact = {
|
|
37070
|
+
name: request.path.split("/").pop() ?? request.path,
|
|
37071
|
+
path: request.path,
|
|
37072
|
+
size: buffer.byteLength,
|
|
37073
|
+
content: buffer.toString("base64"),
|
|
37074
|
+
mimeType
|
|
37075
|
+
};
|
|
37076
|
+
return buildArtifactPayload(artifact, "base64", options);
|
|
37077
|
+
};
|
|
36801
37078
|
function getMCPMode2() {
|
|
36802
37079
|
return getMCPMode();
|
|
36803
37080
|
}
|
|
@@ -37297,7 +37574,7 @@ var DEV_TOOLS = [
|
|
|
37297
37574
|
}
|
|
37298
37575
|
return isRetryableError(error2);
|
|
37299
37576
|
}
|
|
37300
|
-
if ((0,
|
|
37577
|
+
if ((0, import_axios36.isAxiosError)(error2)) {
|
|
37301
37578
|
const status = error2.response?.status;
|
|
37302
37579
|
if (status === 404) {
|
|
37303
37580
|
return true;
|
|
@@ -37312,7 +37589,7 @@ var DEV_TOOLS = [
|
|
|
37312
37589
|
return false;
|
|
37313
37590
|
};
|
|
37314
37591
|
const normalizeError = (error2) => {
|
|
37315
|
-
if ((0,
|
|
37592
|
+
if ((0, import_axios36.isAxiosError)(error2)) {
|
|
37316
37593
|
const status = error2.response?.status;
|
|
37317
37594
|
const statusText = (error2.response?.statusText ?? "").trim();
|
|
37318
37595
|
const base = status ? `${status}${statusText ? ` ${statusText}` : ""}` : error2.message;
|
|
@@ -37323,8 +37600,8 @@ var DEV_TOOLS = [
|
|
|
37323
37600
|
}
|
|
37324
37601
|
return new Error(String(error2));
|
|
37325
37602
|
};
|
|
37326
|
-
const wait = (ms) => new Promise((
|
|
37327
|
-
setTimeout(
|
|
37603
|
+
const wait = (ms) => new Promise((resolve2) => {
|
|
37604
|
+
setTimeout(resolve2, ms);
|
|
37328
37605
|
});
|
|
37329
37606
|
const attemptBuffered = async () => {
|
|
37330
37607
|
if (typed.tail) {
|
|
@@ -38436,56 +38713,186 @@ var DEV_TOOLS = [
|
|
|
38436
38713
|
maxSize: import_zod4.z.number().int().positive().optional(),
|
|
38437
38714
|
outputPath: import_zod4.z.string().min(1).optional()
|
|
38438
38715
|
});
|
|
38439
|
-
const toTempFilePath = (artifactName) => {
|
|
38440
|
-
const base = (0, import_node_path.basename)(artifactName || "artifact");
|
|
38441
|
-
const safeStem = base.replace(/[^a-zA-Z0-9._-]/g, "_") || "artifact";
|
|
38442
|
-
const ext = (0, import_node_path.extname)(safeStem);
|
|
38443
|
-
const stemWithoutExt = ext ? safeStem.slice(0, -ext.length) : safeStem;
|
|
38444
|
-
const finalStem = stemWithoutExt || "artifact";
|
|
38445
|
-
const fileName = `${finalStem}-${(0, import_node_crypto.randomUUID)()}${ext}`;
|
|
38446
|
-
return (0, import_node_path.join)((0, import_node_os.tmpdir)(), fileName);
|
|
38447
|
-
};
|
|
38448
38716
|
return runTool(
|
|
38449
38717
|
"download_build_artifact",
|
|
38450
38718
|
schema,
|
|
38451
38719
|
async (typed) => {
|
|
38720
|
+
const encoding = typed.encoding ?? "base64";
|
|
38452
38721
|
const adapter = createAdapterFromTeamCityAPI(TeamCityAPI.getInstance());
|
|
38722
|
+
debug("tools.download_build_artifact.start", {
|
|
38723
|
+
buildId: typed.buildId,
|
|
38724
|
+
encoding,
|
|
38725
|
+
artifactPath: typed.artifactPath,
|
|
38726
|
+
maxSize: typed.maxSize,
|
|
38727
|
+
outputPath: typed.outputPath
|
|
38728
|
+
});
|
|
38453
38729
|
const manager = new ArtifactManager(adapter);
|
|
38454
38730
|
const artifact = await manager.downloadArtifact(typed.buildId, typed.artifactPath, {
|
|
38455
|
-
encoding
|
|
38731
|
+
encoding,
|
|
38456
38732
|
maxSize: typed.maxSize
|
|
38457
38733
|
});
|
|
38458
|
-
|
|
38459
|
-
|
|
38460
|
-
|
|
38461
|
-
|
|
38462
|
-
|
|
38463
|
-
|
|
38464
|
-
|
|
38465
|
-
|
|
38466
|
-
|
|
38467
|
-
|
|
38468
|
-
|
|
38469
|
-
|
|
38470
|
-
|
|
38471
|
-
|
|
38472
|
-
|
|
38473
|
-
|
|
38474
|
-
|
|
38475
|
-
|
|
38734
|
+
const payload = await buildArtifactPayload(artifact, encoding, {
|
|
38735
|
+
explicitOutputPath: typed.outputPath
|
|
38736
|
+
});
|
|
38737
|
+
return json(payload);
|
|
38738
|
+
},
|
|
38739
|
+
args
|
|
38740
|
+
);
|
|
38741
|
+
}
|
|
38742
|
+
},
|
|
38743
|
+
{
|
|
38744
|
+
name: "download_build_artifacts",
|
|
38745
|
+
description: "Download multiple artifacts with optional streaming output",
|
|
38746
|
+
inputSchema: {
|
|
38747
|
+
type: "object",
|
|
38748
|
+
properties: {
|
|
38749
|
+
buildId: { type: "string", description: "Build ID" },
|
|
38750
|
+
artifactPaths: {
|
|
38751
|
+
type: "array",
|
|
38752
|
+
description: "Artifact paths or names to download",
|
|
38753
|
+
items: {
|
|
38754
|
+
anyOf: [
|
|
38755
|
+
{ type: "string" },
|
|
38756
|
+
{
|
|
38757
|
+
type: "object",
|
|
38758
|
+
properties: {
|
|
38759
|
+
path: { type: "string" },
|
|
38760
|
+
buildId: { type: "string" },
|
|
38761
|
+
downloadUrl: { type: "string" }
|
|
38762
|
+
},
|
|
38763
|
+
required: ["path"]
|
|
38764
|
+
}
|
|
38765
|
+
]
|
|
38476
38766
|
}
|
|
38477
|
-
|
|
38478
|
-
|
|
38479
|
-
|
|
38767
|
+
},
|
|
38768
|
+
encoding: {
|
|
38769
|
+
type: "string",
|
|
38770
|
+
description: "Response encoding: 'base64' (default), 'text', or 'stream'",
|
|
38771
|
+
enum: ["base64", "text", "stream"],
|
|
38772
|
+
default: "base64"
|
|
38773
|
+
},
|
|
38774
|
+
maxSize: {
|
|
38775
|
+
type: "number",
|
|
38776
|
+
description: "Maximum artifact size (bytes) allowed before aborting"
|
|
38777
|
+
},
|
|
38778
|
+
outputDir: {
|
|
38779
|
+
type: "string",
|
|
38780
|
+
description: "Optional absolute directory to write streamed artifacts; defaults to temp files when streaming"
|
|
38781
|
+
}
|
|
38782
|
+
},
|
|
38783
|
+
required: ["buildId", "artifactPaths"]
|
|
38784
|
+
},
|
|
38785
|
+
handler: async (args) => {
|
|
38786
|
+
const artifactInputSchema = import_zod4.z.union([
|
|
38787
|
+
import_zod4.z.string().min(1),
|
|
38788
|
+
import_zod4.z.object({
|
|
38789
|
+
path: import_zod4.z.string().min(1),
|
|
38790
|
+
buildId: import_zod4.z.string().min(1).optional(),
|
|
38791
|
+
downloadUrl: import_zod4.z.string().url().optional()
|
|
38792
|
+
})
|
|
38793
|
+
]);
|
|
38794
|
+
const schema = import_zod4.z.object({
|
|
38795
|
+
buildId: import_zod4.z.string().min(1),
|
|
38796
|
+
artifactPaths: import_zod4.z.array(artifactInputSchema).min(1),
|
|
38797
|
+
encoding: import_zod4.z.enum(["base64", "text", "stream"]).default("base64"),
|
|
38798
|
+
maxSize: import_zod4.z.number().int().positive().optional(),
|
|
38799
|
+
outputDir: import_zod4.z.string().min(1).optional().refine((value) => value == null || (0, import_node_path.isAbsolute)(value), {
|
|
38800
|
+
message: "outputDir must be an absolute path"
|
|
38801
|
+
})
|
|
38802
|
+
}).superRefine((value, ctx) => {
|
|
38803
|
+
if (value.encoding !== "stream" && value.outputDir) {
|
|
38804
|
+
ctx.addIssue({
|
|
38805
|
+
code: import_zod4.z.ZodIssueCode.custom,
|
|
38806
|
+
message: 'outputDir can only be provided when encoding is set to "stream"',
|
|
38807
|
+
path: ["outputDir"]
|
|
38808
|
+
});
|
|
38809
|
+
}
|
|
38810
|
+
});
|
|
38811
|
+
return runTool(
|
|
38812
|
+
"download_build_artifacts",
|
|
38813
|
+
schema,
|
|
38814
|
+
async (typed) => {
|
|
38815
|
+
const encoding = typed.encoding ?? "base64";
|
|
38816
|
+
const adapter = createAdapterFromTeamCityAPI(TeamCityAPI.getInstance());
|
|
38817
|
+
const manager = new ArtifactManager(adapter);
|
|
38818
|
+
const requests = toNormalizedArtifactRequests(typed.artifactPaths, typed.buildId);
|
|
38819
|
+
const results = [];
|
|
38820
|
+
for (const request of requests) {
|
|
38821
|
+
try {
|
|
38822
|
+
let payload;
|
|
38823
|
+
if (request.downloadUrl) {
|
|
38824
|
+
payload = await downloadArtifactByUrl(
|
|
38825
|
+
adapter,
|
|
38826
|
+
{ ...request, downloadUrl: request.downloadUrl },
|
|
38827
|
+
encoding,
|
|
38828
|
+
{
|
|
38829
|
+
outputDir: encoding === "stream" ? typed.outputDir : void 0,
|
|
38830
|
+
maxSize: typed.maxSize
|
|
38831
|
+
}
|
|
38832
|
+
);
|
|
38833
|
+
} else {
|
|
38834
|
+
const artifact = await manager.downloadArtifact(request.buildId, request.path, {
|
|
38835
|
+
encoding,
|
|
38836
|
+
maxSize: typed.maxSize
|
|
38837
|
+
});
|
|
38838
|
+
payload = await buildArtifactPayload(artifact, encoding, {
|
|
38839
|
+
outputDir: encoding === "stream" ? typed.outputDir : void 0
|
|
38840
|
+
});
|
|
38841
|
+
}
|
|
38842
|
+
results.push({ ...payload, success: true });
|
|
38843
|
+
debug("tools.download_build_artifacts.success", {
|
|
38844
|
+
path: request.path,
|
|
38845
|
+
encoding: payload.encoding,
|
|
38846
|
+
outputPath: payload.encoding === "stream" ? payload.outputPath : void 0
|
|
38847
|
+
});
|
|
38848
|
+
if (payload.encoding === "stream") {
|
|
38849
|
+
const streamPayload = payload;
|
|
38850
|
+
debug("tools.download_build_artifacts.stream", {
|
|
38851
|
+
path: request.path,
|
|
38852
|
+
outputPath: streamPayload.outputPath,
|
|
38853
|
+
bytesWritten: streamPayload.bytesWritten
|
|
38854
|
+
});
|
|
38855
|
+
} else {
|
|
38856
|
+
debug("tools.download_build_artifacts.buffered", {
|
|
38857
|
+
path: request.path,
|
|
38858
|
+
encoding: payload.encoding,
|
|
38859
|
+
size: payload.size
|
|
38860
|
+
});
|
|
38861
|
+
}
|
|
38862
|
+
} catch (error2) {
|
|
38863
|
+
results.push({
|
|
38864
|
+
name: request.path,
|
|
38865
|
+
path: request.path,
|
|
38866
|
+
size: 0,
|
|
38867
|
+
encoding,
|
|
38868
|
+
success: false,
|
|
38869
|
+
error: getErrorMessage(error2)
|
|
38870
|
+
});
|
|
38871
|
+
debug("tools.download_build_artifacts.failure", {
|
|
38872
|
+
path: request.path,
|
|
38873
|
+
encoding,
|
|
38874
|
+
error: getErrorMessage(error2),
|
|
38875
|
+
downloadUrl: request.downloadUrl,
|
|
38876
|
+
buildId: request.buildId
|
|
38877
|
+
});
|
|
38878
|
+
}
|
|
38480
38879
|
}
|
|
38481
|
-
|
|
38482
|
-
|
|
38483
|
-
|
|
38484
|
-
|
|
38485
|
-
|
|
38486
|
-
|
|
38487
|
-
|
|
38880
|
+
debug("tools.download_build_artifacts.complete", {
|
|
38881
|
+
buildId: typed.buildId,
|
|
38882
|
+
successCount: results.filter((item) => item.success).length,
|
|
38883
|
+
failureCount: results.filter((item) => !item.success).length
|
|
38884
|
+
});
|
|
38885
|
+
debug("tools.download_build_artifacts.complete", {
|
|
38886
|
+
buildId: typed.buildId,
|
|
38887
|
+
successCount: results.filter((item) => item.success).length,
|
|
38888
|
+
failureCount: results.filter((item) => !item.success).length
|
|
38488
38889
|
});
|
|
38890
|
+
const failures = results.filter((item) => !item.success);
|
|
38891
|
+
if (results.length > 0 && failures.length === results.length) {
|
|
38892
|
+
const reason = failures.map((item) => `${item.path}: ${item.error ?? "unknown error"}`).join("; ");
|
|
38893
|
+
throw new Error(`All artifact downloads failed: ${reason}`);
|
|
38894
|
+
}
|
|
38895
|
+
return json({ artifacts: results });
|
|
38489
38896
|
},
|
|
38490
38897
|
args
|
|
38491
38898
|
);
|