@daghis/teamcity-mcp 0.1.2 → 0.2.1
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/.commitlintrc.mjs +25 -0
- package/.github/dependabot.yml +38 -0
- package/.github/workflows/ci.yml +26 -22
- package/.github/workflows/codeql.yml +1 -1
- package/.github/workflows/commitlint.yml +3 -3
- package/.github/workflows/publish.yml +22 -2
- package/AGENTS.md +61 -0
- package/CHANGELOG.md +14 -0
- package/README.md +8 -0
- package/THIRD_PARTY_NOTICES.md +58 -0
- package/dist/index.js +390 -322
- package/dist/index.js.map +4 -4
- package/dist/src/middleware/global-error-handler.d.ts.map +1 -1
- package/dist/src/teamcity/auth.d.ts.map +1 -1
- package/dist/src/teamcity-client/api/agent-api.d.ts +15 -15
- package/dist/src/teamcity-client/api/agent-pool-api.d.ts +14 -14
- package/dist/src/teamcity-client/api/agent-type-api.d.ts +1 -1
- package/dist/src/teamcity-client/api/audit-api.d.ts +2 -2
- package/dist/src/teamcity-client/api/avatar-api.d.ts +4 -4
- package/dist/src/teamcity-client/api/build-api.d.ts +57 -57
- package/dist/src/teamcity-client/api/build-queue-api.d.ts +14 -14
- package/dist/src/teamcity-client/api/build-type-api.d.ts +109 -109
- package/dist/src/teamcity-client/api/change-api.d.ts +10 -10
- package/dist/src/teamcity-client/api/cloud-instance-api.d.ts +10 -10
- package/dist/src/teamcity-client/api/deployment-dashboard-api.d.ts +9 -9
- package/dist/src/teamcity-client/api/global-server-settings-api.d.ts +2 -2
- package/dist/src/teamcity-client/api/group-api.d.ts +16 -16
- package/dist/src/teamcity-client/api/health-api.d.ts +4 -4
- package/dist/src/teamcity-client/api/investigation-api.d.ts +6 -6
- package/dist/src/teamcity-client/api/mute-api.d.ts +6 -6
- package/dist/src/teamcity-client/api/node-api.d.ts +6 -6
- package/dist/src/teamcity-client/api/problem-api.d.ts +2 -2
- package/dist/src/teamcity-client/api/problem-occurrence-api.d.ts +2 -2
- package/dist/src/teamcity-client/api/project-api.d.ts +48 -48
- package/dist/src/teamcity-client/api/role-api.d.ts +8 -8
- package/dist/src/teamcity-client/api/root-api.d.ts +4 -4
- package/dist/src/teamcity-client/api/server-api.d.ts +18 -18
- package/dist/src/teamcity-client/api/server-authentication-settings-api.d.ts +2 -2
- package/dist/src/teamcity-client/api/test-api.d.ts +2 -2
- package/dist/src/teamcity-client/api/test-occurrence-api.d.ts +2 -2
- package/dist/src/teamcity-client/api/user-api.d.ts +28 -28
- package/dist/src/teamcity-client/api/vcs-root-api.d.ts +14 -14
- package/dist/src/teamcity-client/api/vcs-root-instance-api.d.ts +17 -17
- package/dist/src/teamcity-client/api/versioned-settings-api.d.ts +15 -15
- package/dist/src/tools.d.ts.map +1 -1
- package/package.json +14 -13
- package/scripts/build.cjs +25 -6
- package/scripts/generate-third-party-notices.cjs +71 -0
- package/src/middleware/global-error-handler.ts +11 -0
- package/src/teamcity/auth.ts +13 -9
- package/src/tools.ts +20 -6
- package/.commitlintrc.js +0 -3
- package/TODO.md +0 -80
|
@@ -219,53 +219,53 @@ export interface ProjectApiInterface {
|
|
|
219
219
|
updateFeatures(projectLocator: string, fields?: string, body?: ProjectFeatures, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
220
220
|
}
|
|
221
221
|
export declare class ProjectApi extends BaseAPI implements ProjectApiInterface {
|
|
222
|
-
addAgentPoolsProject(projectLocator: string, body?: AgentPool, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentPool, any>>;
|
|
223
|
-
addBuildType(projectLocator: string, fields?: string, body?: NewBuildTypeDescription, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any>>;
|
|
224
|
-
addFeature(projectLocator: string, fields?: string, body?: ProjectFeature, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
225
|
-
addProject(body?: NewProjectDescription, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
|
|
226
|
-
addSecureToken(projectLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
227
|
-
addTemplate(projectLocator: string, fields?: string, body?: NewBuildTypeDescription, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any>>;
|
|
228
|
-
createBuildParameter(projectLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any>>;
|
|
229
|
-
deleteBuildParameter(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
230
|
-
deleteBuildParameters(projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
231
|
-
deleteFeature(featureLocator: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
232
|
-
deleteProject(projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
233
|
-
getAgentPoolsProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentPools, any>>;
|
|
234
|
-
getAllBranches(projectLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Branches, any>>;
|
|
235
|
-
getAllBuildTypesOrdered(projectLocator: string, field?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any>>;
|
|
236
|
-
getAllProjects(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any>>;
|
|
237
|
-
getAllSubprojectsOrdered(projectLocator: string, field?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any>>;
|
|
238
|
-
getBuildParameter(name: string, projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any>>;
|
|
239
|
-
getBuildParameterSpecification(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
240
|
-
getBuildParameterType(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Type, any>>;
|
|
241
|
-
getBuildParameterValue(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
242
|
-
getBuildParameters(projectLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
|
|
243
|
-
getDefaultTemplate(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any>>;
|
|
244
|
-
getDefaultValueSets(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TypedValueSets, any>>;
|
|
245
|
-
getDeploymentDashboardInProject(projectLocator: string, dashboardLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentDashboard, any>>;
|
|
246
|
-
getDeploymentDashboardsInProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentDashboards, any>>;
|
|
247
|
-
getFeature(featureLocator: string, projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
248
|
-
getFeatures(projectLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
249
|
-
getProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
|
|
250
|
-
getProjectField(projectLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
251
|
-
getProjectParentProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
|
|
252
|
-
getProjectSettingsFile(projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
253
|
-
getProjectTemplates(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any>>;
|
|
254
|
-
getSecureValue(projectLocator: string, token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
255
|
-
removeDefaultTemplate(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
256
|
-
removeProjectFromAgentPool(projectLocator: string, agentPoolLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
257
|
-
setAgentPoolsProject(projectLocator: string, fields?: string, body?: AgentPools, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentPools, any>>;
|
|
258
|
-
setBuildTypesOrder(projectLocator: string, field?: string, body?: BuildTypes, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any>>;
|
|
259
|
-
setDefaultTemplate(projectLocator: string, fields?: string, body?: BuildType, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any>>;
|
|
260
|
-
setParentProject(projectLocator: string, fields?: string, body?: Project, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
|
|
261
|
-
setProjectField(projectLocator: string, field: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
262
|
-
setSubprojectsOrder(projectLocator: string, field?: string, body?: Projects, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any>>;
|
|
263
|
-
updateBuildParameter(name: string, projectLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any>>;
|
|
264
|
-
updateBuildParameterSpecification(name: string, projectLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
265
|
-
updateBuildParameterType(name: string, projectLocator: string, body?: Type, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Type, any>>;
|
|
266
|
-
updateBuildParameterValue(name: string, projectLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
267
|
-
updateBuildParameters(projectLocator: string, fields?: string, body?: Properties, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
|
|
268
|
-
updateFeature(featureLocator: string, projectLocator: string, fields?: string, body?: ProjectFeature, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
269
|
-
updateFeatures(projectLocator: string, fields?: string, body?: ProjectFeatures, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
222
|
+
addAgentPoolsProject(projectLocator: string, body?: AgentPool, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentPool, any, {}>>;
|
|
223
|
+
addBuildType(projectLocator: string, fields?: string, body?: NewBuildTypeDescription, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any, {}>>;
|
|
224
|
+
addFeature(projectLocator: string, fields?: string, body?: ProjectFeature, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
225
|
+
addProject(body?: NewProjectDescription, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
|
|
226
|
+
addSecureToken(projectLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
227
|
+
addTemplate(projectLocator: string, fields?: string, body?: NewBuildTypeDescription, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any, {}>>;
|
|
228
|
+
createBuildParameter(projectLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any, {}>>;
|
|
229
|
+
deleteBuildParameter(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
230
|
+
deleteBuildParameters(projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
231
|
+
deleteFeature(featureLocator: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
232
|
+
deleteProject(projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
233
|
+
getAgentPoolsProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentPools, any, {}>>;
|
|
234
|
+
getAllBranches(projectLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Branches, any, {}>>;
|
|
235
|
+
getAllBuildTypesOrdered(projectLocator: string, field?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any, {}>>;
|
|
236
|
+
getAllProjects(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any, {}>>;
|
|
237
|
+
getAllSubprojectsOrdered(projectLocator: string, field?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any, {}>>;
|
|
238
|
+
getBuildParameter(name: string, projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any, {}>>;
|
|
239
|
+
getBuildParameterSpecification(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
240
|
+
getBuildParameterType(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Type, any, {}>>;
|
|
241
|
+
getBuildParameterValue(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
242
|
+
getBuildParameters(projectLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
|
|
243
|
+
getDefaultTemplate(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any, {}>>;
|
|
244
|
+
getDefaultValueSets(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TypedValueSets, any, {}>>;
|
|
245
|
+
getDeploymentDashboardInProject(projectLocator: string, dashboardLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentDashboard, any, {}>>;
|
|
246
|
+
getDeploymentDashboardsInProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentDashboards, any, {}>>;
|
|
247
|
+
getFeature(featureLocator: string, projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
248
|
+
getFeatures(projectLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
249
|
+
getProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
|
|
250
|
+
getProjectField(projectLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
251
|
+
getProjectParentProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
|
|
252
|
+
getProjectSettingsFile(projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
253
|
+
getProjectTemplates(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any, {}>>;
|
|
254
|
+
getSecureValue(projectLocator: string, token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
255
|
+
removeDefaultTemplate(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
256
|
+
removeProjectFromAgentPool(projectLocator: string, agentPoolLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
257
|
+
setAgentPoolsProject(projectLocator: string, fields?: string, body?: AgentPools, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentPools, any, {}>>;
|
|
258
|
+
setBuildTypesOrder(projectLocator: string, field?: string, body?: BuildTypes, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any, {}>>;
|
|
259
|
+
setDefaultTemplate(projectLocator: string, fields?: string, body?: BuildType, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any, {}>>;
|
|
260
|
+
setParentProject(projectLocator: string, fields?: string, body?: Project, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
|
|
261
|
+
setProjectField(projectLocator: string, field: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
262
|
+
setSubprojectsOrder(projectLocator: string, field?: string, body?: Projects, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any, {}>>;
|
|
263
|
+
updateBuildParameter(name: string, projectLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any, {}>>;
|
|
264
|
+
updateBuildParameterSpecification(name: string, projectLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
265
|
+
updateBuildParameterType(name: string, projectLocator: string, body?: Type, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Type, any, {}>>;
|
|
266
|
+
updateBuildParameterValue(name: string, projectLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
267
|
+
updateBuildParameters(projectLocator: string, fields?: string, body?: Properties, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
|
|
268
|
+
updateFeature(featureLocator: string, projectLocator: string, fields?: string, body?: ProjectFeature, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
269
|
+
updateFeatures(projectLocator: string, fields?: string, body?: ProjectFeatures, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
270
270
|
}
|
|
271
271
|
//# sourceMappingURL=project-api.d.ts.map
|
|
@@ -44,13 +44,13 @@ export interface RoleApiInterface {
|
|
|
44
44
|
removePermission(roleId: string, permissionId: string, fields?: string, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
|
|
45
45
|
}
|
|
46
46
|
export declare class RoleApi extends BaseAPI implements RoleApiInterface {
|
|
47
|
-
addIncludedRole(roleId: string, includedId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
|
|
48
|
-
addPermission(roleId: string, permissionId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
|
|
49
|
-
createRole(fields?: string, body?: Role, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
|
|
50
|
-
deleteRole(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
51
|
-
getRole(id: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
|
|
52
|
-
getRoles(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any>>;
|
|
53
|
-
removeIncludedRole(roleId: string, includedId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
|
|
54
|
-
removePermission(roleId: string, permissionId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
|
|
47
|
+
addIncludedRole(roleId: string, includedId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
|
|
48
|
+
addPermission(roleId: string, permissionId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
|
|
49
|
+
createRole(fields?: string, body?: Role, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
|
|
50
|
+
deleteRole(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
51
|
+
getRole(id: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
|
|
52
|
+
getRoles(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any, {}>>;
|
|
53
|
+
removeIncludedRole(roleId: string, includedId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
|
|
54
|
+
removePermission(roleId: string, permissionId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
|
|
55
55
|
}
|
|
56
56
|
//# sourceMappingURL=role-api.d.ts.map
|
|
@@ -27,9 +27,9 @@ export interface RootApiInterface {
|
|
|
27
27
|
getVersion(options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
28
28
|
}
|
|
29
29
|
export declare class RootApi extends BaseAPI implements RootApiInterface {
|
|
30
|
-
getApiVersion(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
31
|
-
getPluginInfo(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Plugin, any>>;
|
|
32
|
-
getRootEndpointsOfRoot(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
33
|
-
getVersion(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
30
|
+
getApiVersion(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
31
|
+
getPluginInfo(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Plugin, any, {}>>;
|
|
32
|
+
getRootEndpointsOfRoot(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
33
|
+
getVersion(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
34
34
|
}
|
|
35
35
|
//# sourceMappingURL=root-api.d.ts.map
|
|
@@ -90,23 +90,23 @@ export interface ServerApiInterface {
|
|
|
90
90
|
startBackup(fileName?: string, addTimestamp?: boolean, includeConfigs?: boolean, includeDatabase?: boolean, includeBuildLogs?: boolean, includePersonalChanges?: boolean, includeRunningBuilds?: boolean, includeSupplimentaryData?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
91
91
|
}
|
|
92
92
|
export declare class ServerApi extends BaseAPI implements ServerApiInterface {
|
|
93
|
-
addLicenseKeys(fields?: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicenseKeys, any>>;
|
|
94
|
-
deleteLicenseKey(licenseKey: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
95
|
-
downloadFileOfServer(path: string, areaId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
96
|
-
getAllMetrics(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Metrics, any>>;
|
|
97
|
-
getAllPlugins(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Plugins, any>>;
|
|
98
|
-
getBackupStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
99
|
-
getCleanupSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Cleanup, any>>;
|
|
100
|
-
getFileMetadataOfServer(path: string, areaId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
101
|
-
getFilesListForSubpathOfServer(path: string, areaId: string, basePath?: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any>>;
|
|
102
|
-
getFilesListOfServer(areaId: string, basePath?: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any>>;
|
|
103
|
-
getLicenseKey(licenseKey: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicenseKey, any>>;
|
|
104
|
-
getLicenseKeys(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicenseKeys, any>>;
|
|
105
|
-
getLicensingData(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicensingData, any>>;
|
|
106
|
-
getServerField(field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
107
|
-
getServerInfo(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Server, any>>;
|
|
108
|
-
getZippedFileOfServer(path: string, areaId: string, basePath?: string, locator?: string, name?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
109
|
-
setCleanupSettings(body?: Cleanup, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Cleanup, any>>;
|
|
110
|
-
startBackup(fileName?: string, addTimestamp?: boolean, includeConfigs?: boolean, includeDatabase?: boolean, includeBuildLogs?: boolean, includePersonalChanges?: boolean, includeRunningBuilds?: boolean, includeSupplimentaryData?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
93
|
+
addLicenseKeys(fields?: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicenseKeys, any, {}>>;
|
|
94
|
+
deleteLicenseKey(licenseKey: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
95
|
+
downloadFileOfServer(path: string, areaId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
96
|
+
getAllMetrics(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Metrics, any, {}>>;
|
|
97
|
+
getAllPlugins(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Plugins, any, {}>>;
|
|
98
|
+
getBackupStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
99
|
+
getCleanupSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Cleanup, any, {}>>;
|
|
100
|
+
getFileMetadataOfServer(path: string, areaId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
101
|
+
getFilesListForSubpathOfServer(path: string, areaId: string, basePath?: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any, {}>>;
|
|
102
|
+
getFilesListOfServer(areaId: string, basePath?: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any, {}>>;
|
|
103
|
+
getLicenseKey(licenseKey: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicenseKey, any, {}>>;
|
|
104
|
+
getLicenseKeys(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicenseKeys, any, {}>>;
|
|
105
|
+
getLicensingData(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicensingData, any, {}>>;
|
|
106
|
+
getServerField(field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
107
|
+
getServerInfo(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Server, any, {}>>;
|
|
108
|
+
getZippedFileOfServer(path: string, areaId: string, basePath?: string, locator?: string, name?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
109
|
+
setCleanupSettings(body?: Cleanup, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Cleanup, any, {}>>;
|
|
110
|
+
startBackup(fileName?: string, addTimestamp?: boolean, includeConfigs?: boolean, includeDatabase?: boolean, includeBuildLogs?: boolean, includePersonalChanges?: boolean, includeRunningBuilds?: boolean, includeSupplimentaryData?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
111
111
|
}
|
|
112
112
|
//# sourceMappingURL=server-api.d.ts.map
|
|
@@ -19,7 +19,7 @@ export interface ServerAuthenticationSettingsApiInterface {
|
|
|
19
19
|
setAuthSettings(body?: ServerAuthSettings, options?: RawAxiosRequestConfig): AxiosPromise<ServerAuthSettings>;
|
|
20
20
|
}
|
|
21
21
|
export declare class ServerAuthenticationSettingsApi extends BaseAPI implements ServerAuthenticationSettingsApiInterface {
|
|
22
|
-
getAuthSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerAuthSettings, any>>;
|
|
23
|
-
setAuthSettings(body?: ServerAuthSettings, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerAuthSettings, any>>;
|
|
22
|
+
getAuthSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerAuthSettings, any, {}>>;
|
|
23
|
+
setAuthSettings(body?: ServerAuthSettings, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerAuthSettings, any, {}>>;
|
|
24
24
|
}
|
|
25
25
|
//# sourceMappingURL=server-authentication-settings-api.d.ts.map
|
|
@@ -20,7 +20,7 @@ export interface TestApiInterface {
|
|
|
20
20
|
getTests(locator?: string, fields?: string, options?: RawAxiosRequestConfig): AxiosPromise<Tests>;
|
|
21
21
|
}
|
|
22
22
|
export declare class TestApi extends BaseAPI implements TestApiInterface {
|
|
23
|
-
getTest(testLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Test, any>>;
|
|
24
|
-
getTests(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tests, any>>;
|
|
23
|
+
getTest(testLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Test, any, {}>>;
|
|
24
|
+
getTests(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tests, any, {}>>;
|
|
25
25
|
}
|
|
26
26
|
//# sourceMappingURL=test-api.d.ts.map
|
|
@@ -20,7 +20,7 @@ export interface TestOccurrenceApiInterface {
|
|
|
20
20
|
getTestOccurrence(testLocator: string, fields?: string, options?: RawAxiosRequestConfig): AxiosPromise<TestOccurrence>;
|
|
21
21
|
}
|
|
22
22
|
export declare class TestOccurrenceApi extends BaseAPI implements TestOccurrenceApiInterface {
|
|
23
|
-
getAllTestOccurrences(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestOccurrences, any>>;
|
|
24
|
-
getTestOccurrence(testLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestOccurrence, any>>;
|
|
23
|
+
getAllTestOccurrences(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestOccurrences, any, {}>>;
|
|
24
|
+
getTestOccurrence(testLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestOccurrence, any, {}>>;
|
|
25
25
|
}
|
|
26
26
|
//# sourceMappingURL=test-occurrence-api.d.ts.map
|
|
@@ -132,33 +132,33 @@ export interface UserApiInterface {
|
|
|
132
132
|
setUserRoles(userLocator: string, body?: Roles, options?: RawAxiosRequestConfig): AxiosPromise<Roles>;
|
|
133
133
|
}
|
|
134
134
|
export declare class UserApi extends BaseAPI implements UserApiInterface {
|
|
135
|
-
addRoleToUser(userLocator: string, body?: Role, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
|
|
136
|
-
addRoleToUserAtScope(userLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
|
|
137
|
-
addUser(fields?: string, body?: User, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any>>;
|
|
138
|
-
addUserToken(userLocator: string, fields?: string, body?: Token, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Token, any>>;
|
|
139
|
-
deleteUser(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
140
|
-
deleteUserField(userLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
141
|
-
deleteUserToken(userLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
142
|
-
getAllUserGroups(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Groups, any>>;
|
|
143
|
-
getAllUserRoles(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any>>;
|
|
144
|
-
getAllUsers(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Users, any>>;
|
|
145
|
-
getUser(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any>>;
|
|
146
|
-
getUserField(userLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
147
|
-
getUserGroup(userLocator: string, groupLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Group, any>>;
|
|
148
|
-
getUserPermissions(userLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionAssignments, any>>;
|
|
149
|
-
getUserProperties(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
|
|
150
|
-
getUserProperty(userLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
151
|
-
getUserRolesAtScope(userLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
|
|
152
|
-
getUserTokens(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tokens, any>>;
|
|
153
|
-
logoutUser(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
154
|
-
removeUserFromGroup(userLocator: string, groupLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
155
|
-
removeUserProperty(userLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
156
|
-
removeUserRememberMe(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
157
|
-
removeUserRoleAtScope(userLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
158
|
-
replaceUser(userLocator: string, fields?: string, body?: User, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any>>;
|
|
159
|
-
setUserField(userLocator: string, field: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
160
|
-
setUserGroups(userLocator: string, fields?: string, body?: Groups, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Groups, any>>;
|
|
161
|
-
setUserProperty(userLocator: string, name: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
162
|
-
setUserRoles(userLocator: string, body?: Roles, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any>>;
|
|
135
|
+
addRoleToUser(userLocator: string, body?: Role, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
|
|
136
|
+
addRoleToUserAtScope(userLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
|
|
137
|
+
addUser(fields?: string, body?: User, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any, {}>>;
|
|
138
|
+
addUserToken(userLocator: string, fields?: string, body?: Token, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Token, any, {}>>;
|
|
139
|
+
deleteUser(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
140
|
+
deleteUserField(userLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
141
|
+
deleteUserToken(userLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
142
|
+
getAllUserGroups(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Groups, any, {}>>;
|
|
143
|
+
getAllUserRoles(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any, {}>>;
|
|
144
|
+
getAllUsers(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Users, any, {}>>;
|
|
145
|
+
getUser(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any, {}>>;
|
|
146
|
+
getUserField(userLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
147
|
+
getUserGroup(userLocator: string, groupLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Group, any, {}>>;
|
|
148
|
+
getUserPermissions(userLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionAssignments, any, {}>>;
|
|
149
|
+
getUserProperties(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
|
|
150
|
+
getUserProperty(userLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
151
|
+
getUserRolesAtScope(userLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
|
|
152
|
+
getUserTokens(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tokens, any, {}>>;
|
|
153
|
+
logoutUser(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
154
|
+
removeUserFromGroup(userLocator: string, groupLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
155
|
+
removeUserProperty(userLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
156
|
+
removeUserRememberMe(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
157
|
+
removeUserRoleAtScope(userLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
158
|
+
replaceUser(userLocator: string, fields?: string, body?: User, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any, {}>>;
|
|
159
|
+
setUserField(userLocator: string, field: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
160
|
+
setUserGroups(userLocator: string, fields?: string, body?: Groups, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Groups, any, {}>>;
|
|
161
|
+
setUserProperty(userLocator: string, name: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
162
|
+
setUserRoles(userLocator: string, body?: Roles, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any, {}>>;
|
|
163
163
|
}
|
|
164
164
|
//# sourceMappingURL=user-api.d.ts.map
|
|
@@ -70,19 +70,19 @@ export interface VcsRootApiInterface {
|
|
|
70
70
|
setVcsRootProperty(vcsRootLocator: string, name: string, body?: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
71
71
|
}
|
|
72
72
|
export declare class VcsRootApi extends BaseAPI implements VcsRootApiInterface {
|
|
73
|
-
addVcsRoot(fields?: string, body?: VcsRoot, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRoot, any>>;
|
|
74
|
-
deleteAllVcsRootProperties(vcsRootLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
75
|
-
deleteVcsRoot(vcsRootLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
76
|
-
deleteVcsRootProperty(vcsRootLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
77
|
-
getAllVcsRootProperties(vcsRootLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
|
|
78
|
-
getAllVcsRoots(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRoots, any>>;
|
|
79
|
-
getRootEndpoints(vcsRootLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRoot, any>>;
|
|
80
|
-
getVcsRootField(vcsRootLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
81
|
-
getVcsRootInstances(vcsRootLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootInstances, any>>;
|
|
82
|
-
getVcsRootProperty(vcsRootLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
83
|
-
getVcsRootSettingsFile(vcsRootLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
84
|
-
setVcsRootField(vcsRootLocator: string, field: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
85
|
-
setVcsRootProperties(vcsRootLocator: string, fields?: string, body?: Properties, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
|
|
86
|
-
setVcsRootProperty(vcsRootLocator: string, name: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
73
|
+
addVcsRoot(fields?: string, body?: VcsRoot, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRoot, any, {}>>;
|
|
74
|
+
deleteAllVcsRootProperties(vcsRootLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
75
|
+
deleteVcsRoot(vcsRootLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
76
|
+
deleteVcsRootProperty(vcsRootLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
77
|
+
getAllVcsRootProperties(vcsRootLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
|
|
78
|
+
getAllVcsRoots(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRoots, any, {}>>;
|
|
79
|
+
getRootEndpoints(vcsRootLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRoot, any, {}>>;
|
|
80
|
+
getVcsRootField(vcsRootLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
81
|
+
getVcsRootInstances(vcsRootLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootInstances, any, {}>>;
|
|
82
|
+
getVcsRootProperty(vcsRootLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
83
|
+
getVcsRootSettingsFile(vcsRootLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
84
|
+
setVcsRootField(vcsRootLocator: string, field: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
85
|
+
setVcsRootProperties(vcsRootLocator: string, fields?: string, body?: Properties, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
|
|
86
|
+
setVcsRootProperty(vcsRootLocator: string, name: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
87
87
|
}
|
|
88
88
|
//# sourceMappingURL=vcs-root-api.d.ts.map
|
|
@@ -83,22 +83,22 @@ export interface VcsRootInstanceApiInterface {
|
|
|
83
83
|
triggerCommitHookNotification(locator?: string, okOnNothingFound?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
84
84
|
}
|
|
85
85
|
export declare class VcsRootInstanceApi extends BaseAPI implements VcsRootInstanceApiInterface {
|
|
86
|
-
deleteVcsRootInstanceField(vcsRootInstanceLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
87
|
-
deleteVcsRootInstanceRepositoryState(vcsRootInstanceLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
88
|
-
downloadFile(path: string, vcsRootInstanceLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
89
|
-
getAllVcsRootInstances(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootInstances, any>>;
|
|
90
|
-
getFileMetadata(path: string, vcsRootInstanceLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
91
|
-
getFilesList(vcsRootInstanceLocator: string, basePath?: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any>>;
|
|
92
|
-
getFilesListForSubpath(path: string, vcsRootInstanceLocator: string, basePath?: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any>>;
|
|
93
|
-
getVcsRootInstance(vcsRootInstanceLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootInstance, any>>;
|
|
94
|
-
getVcsRootInstanceCreationDate(vcsRootInstanceLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
95
|
-
getVcsRootInstanceField(vcsRootInstanceLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
96
|
-
getVcsRootInstanceProperties(vcsRootInstanceLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
|
|
97
|
-
getVcsRootInstanceRepositoryState(vcsRootInstanceLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Entries, any>>;
|
|
98
|
-
getZippedFile(path: string, vcsRootInstanceLocator: string, basePath?: string, locator?: string, name?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
99
|
-
requestPendingChangesCheck(locator?: string, requestor?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootInstances, any>>;
|
|
100
|
-
setVcsRootInstanceField(vcsRootInstanceLocator: string, field: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
101
|
-
setVcsRootInstanceRepositoryState(vcsRootInstanceLocator: string, fields?: string, body?: Entries, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Entries, any>>;
|
|
102
|
-
triggerCommitHookNotification(locator?: string, okOnNothingFound?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
86
|
+
deleteVcsRootInstanceField(vcsRootInstanceLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
87
|
+
deleteVcsRootInstanceRepositoryState(vcsRootInstanceLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
88
|
+
downloadFile(path: string, vcsRootInstanceLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
89
|
+
getAllVcsRootInstances(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootInstances, any, {}>>;
|
|
90
|
+
getFileMetadata(path: string, vcsRootInstanceLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
91
|
+
getFilesList(vcsRootInstanceLocator: string, basePath?: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any, {}>>;
|
|
92
|
+
getFilesListForSubpath(path: string, vcsRootInstanceLocator: string, basePath?: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any, {}>>;
|
|
93
|
+
getVcsRootInstance(vcsRootInstanceLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootInstance, any, {}>>;
|
|
94
|
+
getVcsRootInstanceCreationDate(vcsRootInstanceLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
95
|
+
getVcsRootInstanceField(vcsRootInstanceLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
96
|
+
getVcsRootInstanceProperties(vcsRootInstanceLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
|
|
97
|
+
getVcsRootInstanceRepositoryState(vcsRootInstanceLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Entries, any, {}>>;
|
|
98
|
+
getZippedFile(path: string, vcsRootInstanceLocator: string, basePath?: string, locator?: string, name?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
99
|
+
requestPendingChangesCheck(locator?: string, requestor?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootInstances, any, {}>>;
|
|
100
|
+
setVcsRootInstanceField(vcsRootInstanceLocator: string, field: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
101
|
+
setVcsRootInstanceRepositoryState(vcsRootInstanceLocator: string, fields?: string, body?: Entries, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Entries, any, {}>>;
|
|
102
|
+
triggerCommitHookNotification(locator?: string, okOnNothingFound?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
103
103
|
}
|
|
104
104
|
//# sourceMappingURL=vcs-root-instance-api.d.ts.map
|
|
@@ -75,20 +75,20 @@ export interface VersionedSettingsApiInterface {
|
|
|
75
75
|
setVersionedSettingsContextParameters(locator: string, body?: VersionedSettingsContextParameters, options?: RawAxiosRequestConfig): AxiosPromise<VersionedSettingsContextParameters>;
|
|
76
76
|
}
|
|
77
77
|
export declare class VersionedSettingsApi extends BaseAPI implements VersionedSettingsApiInterface {
|
|
78
|
-
addVersionedSettingsTokens(locator: string, body?: VersionedSettingsTokens, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsTokens, any>>;
|
|
79
|
-
checkForVersionedSettingsChanges(locator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
80
|
-
commitCurrentSettings(locator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
81
|
-
deleteVersionedSettingsConfigParameter(locator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
82
|
-
deleteVersionedSettingsTokens(locator: string, body?: VersionedSettingsTokens, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsTokens, any>>;
|
|
83
|
-
getVersionedSettingsConfig(locator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsConfig, any>>;
|
|
84
|
-
getVersionedSettingsConfigParameter(locator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
85
|
-
getVersionedSettingsContextParameters(locator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsContextParameters, any>>;
|
|
86
|
-
getVersionedSettingsProjectsToLoad(locator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any>>;
|
|
87
|
-
getVersionedSettingsStatus(locator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsStatus, any>>;
|
|
88
|
-
getVersionedSettingsTokens(locator: string, status?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsTokens, any>>;
|
|
89
|
-
loadSettingsFromVCS(locator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any>>;
|
|
90
|
-
setVersionedSettingsConfig(locator: string, fields?: string, body?: VersionedSettingsConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsConfig, any>>;
|
|
91
|
-
setVersionedSettingsConfigParameter(locator: string, name: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
92
|
-
setVersionedSettingsContextParameters(locator: string, body?: VersionedSettingsContextParameters, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsContextParameters, any>>;
|
|
78
|
+
addVersionedSettingsTokens(locator: string, body?: VersionedSettingsTokens, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsTokens, any, {}>>;
|
|
79
|
+
checkForVersionedSettingsChanges(locator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
80
|
+
commitCurrentSettings(locator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
81
|
+
deleteVersionedSettingsConfigParameter(locator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
82
|
+
deleteVersionedSettingsTokens(locator: string, body?: VersionedSettingsTokens, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsTokens, any, {}>>;
|
|
83
|
+
getVersionedSettingsConfig(locator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsConfig, any, {}>>;
|
|
84
|
+
getVersionedSettingsConfigParameter(locator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
85
|
+
getVersionedSettingsContextParameters(locator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsContextParameters, any, {}>>;
|
|
86
|
+
getVersionedSettingsProjectsToLoad(locator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any, {}>>;
|
|
87
|
+
getVersionedSettingsStatus(locator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsStatus, any, {}>>;
|
|
88
|
+
getVersionedSettingsTokens(locator: string, status?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsTokens, any, {}>>;
|
|
89
|
+
loadSettingsFromVCS(locator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any, {}>>;
|
|
90
|
+
setVersionedSettingsConfig(locator: string, fields?: string, body?: VersionedSettingsConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsConfig, any, {}>>;
|
|
91
|
+
setVersionedSettingsConfigParameter(locator: string, name: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
92
|
+
setVersionedSettingsContextParameters(locator: string, body?: VersionedSettingsContextParameters, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VersionedSettingsContextParameters, any, {}>>;
|
|
93
93
|
}
|
|
94
94
|
//# sourceMappingURL=versioned-settings-api.d.ts.map
|
package/dist/src/tools.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../src/tools.ts"],"names":[],"mappings":"AAgBA,MAAM,WAAW,YAAY;IAC3B,OAAO,CAAC,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAChD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAGD,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,OAAO,CAAC;IACrB,OAAO,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,OAAO,CAAC,YAAY,CAAC,CAAC;IAClD,IAAI,CAAC,EAAE,KAAK,GAAG,MAAM,CAAC;CACvB;AA2ED,wBAAgB,UAAU,IAAI,KAAK,GAAG,MAAM,CAE3C;
|
|
1
|
+
{"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../src/tools.ts"],"names":[],"mappings":"AAgBA,MAAM,WAAW,YAAY;IAC3B,OAAO,CAAC,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAChD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAGD,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,OAAO,CAAC;IACrB,OAAO,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,OAAO,CAAC,YAAY,CAAC,CAAC;IAClD,IAAI,CAAC,EAAE,KAAK,GAAG,MAAM,CAAC;CACvB;AA2ED,wBAAgB,UAAU,IAAI,KAAK,GAAG,MAAM,CAE3C;AAqsFD,wBAAgB,iBAAiB,IAAI,cAAc,EAAE,CAUpD;AAKD,wBAAgB,OAAO,CAAC,IAAI,EAAE,MAAM,GAAG,cAAc,GAAG,SAAS,CAGhE;AAMD,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,cAAc,CAO5D;AAKD,wBAAgB,YAAY,IAAI,MAAM,EAAE,CAGvC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daghis/teamcity-mcp",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Model Control Protocol server for TeamCity CI/CD integration with AI coding assistants",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"dev": "node ./node_modules/tsx/dist/cli.mjs watch src/index.ts",
|
|
12
12
|
"dev:interactive": "bash scripts/interact.sh",
|
|
13
13
|
"build": "node scripts/build.cjs",
|
|
14
|
+
"build:bundle": "CODECOV_BUNDLE=true npm run build",
|
|
14
15
|
"build:tsc": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
|
|
15
16
|
"start": "node dist/index.js",
|
|
16
17
|
"test": "jest",
|
|
@@ -34,7 +35,8 @@
|
|
|
34
35
|
"e2e": "node ./node_modules/tsx/dist/cli.mjs tests/e2e/index.ts",
|
|
35
36
|
"e2e:build": "npm run build && node dist/e2e/index.js",
|
|
36
37
|
"e2e:setup": "node ./node_modules/tsx/dist/cli.mjs tests/e2e/setup-playground.ts",
|
|
37
|
-
"e2e:cleanup": "node ./node_modules/tsx/dist/cli.mjs tests/e2e/cleanup.ts"
|
|
38
|
+
"e2e:cleanup": "node ./node_modules/tsx/dist/cli.mjs tests/e2e/cleanup.ts",
|
|
39
|
+
"generate:notices": "node scripts/generate-third-party-notices.cjs"
|
|
38
40
|
},
|
|
39
41
|
"keywords": [
|
|
40
42
|
"mcp",
|
|
@@ -54,41 +56,40 @@
|
|
|
54
56
|
"url": "https://github.com/Daghis/teamcity-mcp.git"
|
|
55
57
|
},
|
|
56
58
|
"dependencies": {
|
|
57
|
-
"@modelcontextprotocol/sdk": "^
|
|
59
|
+
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
58
60
|
"ajv": "^8.17.1",
|
|
59
61
|
"ajv-formats": "^3.0.1",
|
|
60
62
|
"axios": "^1.11.0",
|
|
61
|
-
"dotenv": "^
|
|
62
|
-
"express": "^
|
|
63
|
+
"dotenv": "^17.2.2",
|
|
64
|
+
"express": "^5.1.0",
|
|
63
65
|
"inversify": "^7.9.1",
|
|
64
66
|
"morgan": "^1.10.0",
|
|
65
67
|
"reflect-metadata": "^0.2.2",
|
|
66
68
|
"tslib": "^2.8.1",
|
|
67
|
-
"uuid": "^11.1.0",
|
|
68
69
|
"winston": "^3.11.0",
|
|
69
70
|
"zod": "^3.22.4"
|
|
70
71
|
},
|
|
71
72
|
"devDependencies": {
|
|
73
|
+
"@codecov/bundler-plugin-core": "^1.9.1",
|
|
72
74
|
"@esbuild-plugins/tsconfig-paths": "^0.1.2",
|
|
73
75
|
"@openapitools/openapi-generator-cli": "^2.23.1",
|
|
74
76
|
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
75
|
-
"@types/ajv": "^
|
|
76
|
-
"@types/express": "^
|
|
77
|
-
"@types/jest": "^
|
|
77
|
+
"@types/ajv": "^1.0.4",
|
|
78
|
+
"@types/express": "^5.0.3",
|
|
79
|
+
"@types/jest": "^30.0.0",
|
|
78
80
|
"@types/js-yaml": "^4.0.9",
|
|
79
81
|
"@types/morgan": "^1.9.9",
|
|
80
|
-
"@types/node": "^
|
|
81
|
-
"@types/uuid": "^10.0.0",
|
|
82
|
+
"@types/node": "^24.3.1",
|
|
82
83
|
"@typescript-eslint/eslint-plugin": "^6.13.0",
|
|
83
84
|
"@typescript-eslint/parser": "^6.13.0",
|
|
84
85
|
"axios-retry": "^4.5.0",
|
|
85
86
|
"esbuild": "^0.25.9",
|
|
86
87
|
"eslint": "^8.54.0",
|
|
87
|
-
"eslint-config-prettier": "^
|
|
88
|
+
"eslint-config-prettier": "^10.1.8",
|
|
88
89
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
89
90
|
"eslint-plugin-import": "^2.32.0",
|
|
90
91
|
"eslint-plugin-prettier": "^5.0.1",
|
|
91
|
-
"jest": "^
|
|
92
|
+
"jest": "^30.1.3",
|
|
92
93
|
"jest-junit": "^16.0.0",
|
|
93
94
|
"js-yaml": "^4.1.0",
|
|
94
95
|
"prettier": "^3.1.0",
|
package/scripts/build.cjs
CHANGED
|
@@ -12,6 +12,29 @@ const path = require('path');
|
|
|
12
12
|
|
|
13
13
|
const isProduction = process.env.NODE_ENV === 'production';
|
|
14
14
|
|
|
15
|
+
const plugins = [
|
|
16
|
+
TsconfigPathsPlugin({
|
|
17
|
+
tsconfig: path.resolve(__dirname, '..', 'tsconfig.json')
|
|
18
|
+
})
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
if (process.env.CODECOV_BUNDLE) {
|
|
22
|
+
try {
|
|
23
|
+
// Attempt to load Codecov bundler plugin for esbuild. If unavailable,
|
|
24
|
+
// warn and continue; CI will conditionally upload only when bundles exist.
|
|
25
|
+
const { codecovEsbuildPlugin } = require('@codecov/bundler-plugin-esbuild');
|
|
26
|
+
plugins.push(
|
|
27
|
+
codecovEsbuildPlugin({
|
|
28
|
+
output: {
|
|
29
|
+
path: path.join(__dirname, '..', 'coverage', 'bundles')
|
|
30
|
+
}
|
|
31
|
+
})
|
|
32
|
+
);
|
|
33
|
+
} catch (err) {
|
|
34
|
+
console.warn('Codecov bundle plugin missing, skipping analysis');
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
15
38
|
async function build() {
|
|
16
39
|
try {
|
|
17
40
|
console.log('🔨 Building TypeScript project with esbuild...');
|
|
@@ -37,11 +60,7 @@ async function build() {
|
|
|
37
60
|
sourcemap: !isProduction,
|
|
38
61
|
minify: isProduction,
|
|
39
62
|
treeShaking: true,
|
|
40
|
-
plugins
|
|
41
|
-
TsconfigPathsPlugin({
|
|
42
|
-
tsconfig: path.resolve(__dirname, '..', 'tsconfig.json')
|
|
43
|
-
})
|
|
44
|
-
],
|
|
63
|
+
plugins,
|
|
45
64
|
external: [
|
|
46
65
|
'@modelcontextprotocol/sdk',
|
|
47
66
|
'express',
|
|
@@ -84,4 +103,4 @@ async function build() {
|
|
|
84
103
|
}
|
|
85
104
|
|
|
86
105
|
// Run build
|
|
87
|
-
build();
|
|
106
|
+
build();
|