@daghis/teamcity-mcp 0.1.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/.commitlintrc.js +3 -0
- package/.eslintignore +16 -0
- package/.eslintrc.js +166 -0
- package/.github/settings.yml +7 -0
- package/.github/workflows/ci.yml +111 -0
- package/.github/workflows/codeql.yml +35 -0
- package/.github/workflows/commitlint.yml +20 -0
- package/.github/workflows/publish.yml +47 -0
- package/.github/workflows/release-please.yml +21 -0
- package/.nvmrc +1 -0
- package/.prettierignore +22 -0
- package/.prettierrc +28 -0
- package/AGENTS.md +68 -0
- package/ARCHITECTURE.md +66 -0
- package/CHANGELOG.md +8 -0
- package/CONTRIBUTING.md +68 -0
- package/LICENSE +22 -0
- package/README.md +256 -0
- package/TODO.md +80 -0
- package/dist/index.js +42216 -0
- package/dist/index.js.map +7 -0
- package/dist/src/api-client.d.ts +51 -0
- package/dist/src/api-client.d.ts.map +1 -0
- package/dist/src/config/index.d.ts +41 -0
- package/dist/src/config/index.d.ts.map +1 -0
- package/dist/src/errors/index.d.ts +2 -0
- package/dist/src/errors/index.d.ts.map +1 -0
- package/dist/src/formatters/build-step-formatter.d.ts +5 -0
- package/dist/src/formatters/build-step-formatter.d.ts.map +1 -0
- package/dist/src/formatters/trigger-formatter.d.ts +4 -0
- package/dist/src/formatters/trigger-formatter.d.ts.map +1 -0
- package/dist/src/index.d.ts +3 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/middleware/error.d.ts +56 -0
- package/dist/src/middleware/error.d.ts.map +1 -0
- package/dist/src/middleware/global-error-handler.d.ts +22 -0
- package/dist/src/middleware/global-error-handler.d.ts.map +1 -0
- package/dist/src/middleware/index.d.ts +2 -0
- package/dist/src/middleware/index.d.ts.map +1 -0
- package/dist/src/server.d.ts +4 -0
- package/dist/src/server.d.ts.map +1 -0
- package/dist/src/swagger/index.d.ts +43 -0
- package/dist/src/swagger/index.d.ts.map +1 -0
- package/dist/src/swagger/swagger-cache.d.ts +23 -0
- package/dist/src/swagger/swagger-cache.d.ts.map +1 -0
- package/dist/src/swagger/swagger-fetcher.d.ts +24 -0
- package/dist/src/swagger/swagger-fetcher.d.ts.map +1 -0
- package/dist/src/swagger/swagger-validator.d.ts +17 -0
- package/dist/src/swagger/swagger-validator.d.ts.map +1 -0
- package/dist/src/teamcity/api-types.d.ts +224 -0
- package/dist/src/teamcity/api-types.d.ts.map +1 -0
- package/dist/src/teamcity/artifact-manager.d.ts +52 -0
- package/dist/src/teamcity/artifact-manager.d.ts.map +1 -0
- package/dist/src/teamcity/auth.d.ts +22 -0
- package/dist/src/teamcity/auth.d.ts.map +1 -0
- package/dist/src/teamcity/branch-discovery-manager.d.ts +39 -0
- package/dist/src/teamcity/branch-discovery-manager.d.ts.map +1 -0
- package/dist/src/teamcity/branch-filtering-service.d.ts +62 -0
- package/dist/src/teamcity/branch-filtering-service.d.ts.map +1 -0
- package/dist/src/teamcity/branch-specification-parser.d.ts +33 -0
- package/dist/src/teamcity/branch-specification-parser.d.ts.map +1 -0
- package/dist/src/teamcity/build-config-manager.d.ts +75 -0
- package/dist/src/teamcity/build-config-manager.d.ts.map +1 -0
- package/dist/src/teamcity/build-config-navigator.d.ts +89 -0
- package/dist/src/teamcity/build-config-navigator.d.ts.map +1 -0
- package/dist/src/teamcity/build-configuration-clone-manager.d.ts +49 -0
- package/dist/src/teamcity/build-configuration-clone-manager.d.ts.map +1 -0
- package/dist/src/teamcity/build-configuration-manager.d.ts +82 -0
- package/dist/src/teamcity/build-configuration-manager.d.ts.map +1 -0
- package/dist/src/teamcity/build-configuration-resolver.d.ts +95 -0
- package/dist/src/teamcity/build-configuration-resolver.d.ts.map +1 -0
- package/dist/src/teamcity/build-configuration-update-manager.d.ts +76 -0
- package/dist/src/teamcity/build-configuration-update-manager.d.ts.map +1 -0
- package/dist/src/teamcity/build-list-manager.d.ts +62 -0
- package/dist/src/teamcity/build-list-manager.d.ts.map +1 -0
- package/dist/src/teamcity/build-parameters-manager.d.ts +143 -0
- package/dist/src/teamcity/build-parameters-manager.d.ts.map +1 -0
- package/dist/src/teamcity/build-progress-tracker.d.ts +49 -0
- package/dist/src/teamcity/build-progress-tracker.d.ts.map +1 -0
- package/dist/src/teamcity/build-query-builder.d.ts +27 -0
- package/dist/src/teamcity/build-query-builder.d.ts.map +1 -0
- package/dist/src/teamcity/build-queue-manager.d.ts +102 -0
- package/dist/src/teamcity/build-queue-manager.d.ts.map +1 -0
- package/dist/src/teamcity/build-results-manager.d.ts +87 -0
- package/dist/src/teamcity/build-results-manager.d.ts.map +1 -0
- package/dist/src/teamcity/build-status-manager.d.ts +65 -0
- package/dist/src/teamcity/build-status-manager.d.ts.map +1 -0
- package/dist/src/teamcity/build-step-manager.d.ts +65 -0
- package/dist/src/teamcity/build-step-manager.d.ts.map +1 -0
- package/dist/src/teamcity/build-trigger-manager.d.ts +108 -0
- package/dist/src/teamcity/build-trigger-manager.d.ts.map +1 -0
- package/dist/src/teamcity/circuit-breaker.d.ts +47 -0
- package/dist/src/teamcity/circuit-breaker.d.ts.map +1 -0
- package/dist/src/teamcity/client-adapter.d.ts +12 -0
- package/dist/src/teamcity/client-adapter.d.ts.map +1 -0
- package/dist/src/teamcity/client.d.ts +49 -0
- package/dist/src/teamcity/client.d.ts.map +1 -0
- package/dist/src/teamcity/config.d.ts +41 -0
- package/dist/src/teamcity/config.d.ts.map +1 -0
- package/dist/src/teamcity/configuration-branch-matcher.d.ts +37 -0
- package/dist/src/teamcity/configuration-branch-matcher.d.ts.map +1 -0
- package/dist/src/teamcity/errors.d.ts +79 -0
- package/dist/src/teamcity/errors.d.ts.map +1 -0
- package/dist/src/teamcity/index.d.ts +48 -0
- package/dist/src/teamcity/index.d.ts.map +1 -0
- package/dist/src/teamcity/pagination.d.ts +32 -0
- package/dist/src/teamcity/pagination.d.ts.map +1 -0
- package/dist/src/teamcity/project-list-manager.d.ts +19 -0
- package/dist/src/teamcity/project-list-manager.d.ts.map +1 -0
- package/dist/src/teamcity/project-manager.d.ts +73 -0
- package/dist/src/teamcity/project-manager.d.ts.map +1 -0
- package/dist/src/teamcity/project-navigator.d.ts +100 -0
- package/dist/src/teamcity/project-navigator.d.ts.map +1 -0
- package/dist/src/teamcity/test-problem-reporter.d.ts +60 -0
- package/dist/src/teamcity/test-problem-reporter.d.ts.map +1 -0
- package/dist/src/teamcity/types/api-responses.d.ts +235 -0
- package/dist/src/teamcity/types/api-responses.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/agent-api.d.ts +97 -0
- package/dist/src/teamcity-client/api/agent-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/agent-pool-api.d.ts +92 -0
- package/dist/src/teamcity-client/api/agent-pool-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/agent-type-api.d.ts +20 -0
- package/dist/src/teamcity-client/api/agent-type-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/audit-api.d.ts +26 -0
- package/dist/src/teamcity-client/api/audit-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/avatar-api.d.ts +34 -0
- package/dist/src/teamcity-client/api/avatar-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/build-api.d.ts +315 -0
- package/dist/src/teamcity-client/api/build-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/build-queue-api.d.ts +90 -0
- package/dist/src/teamcity-client/api/build-queue-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/build-type-api.d.ts +585 -0
- package/dist/src/teamcity-client/api/build-type-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/change-api.d.ts +71 -0
- package/dist/src/teamcity-client/api/change-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/cloud-instance-api.d.ts +70 -0
- package/dist/src/teamcity-client/api/cloud-instance-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/deployment-dashboard-api.d.ts +64 -0
- package/dist/src/teamcity-client/api/deployment-dashboard-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/global-server-settings-api.d.ts +25 -0
- package/dist/src/teamcity-client/api/global-server-settings-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/group-api.d.ts +99 -0
- package/dist/src/teamcity-client/api/group-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/health-api.d.ts +38 -0
- package/dist/src/teamcity-client/api/health-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/investigation-api.d.ts +46 -0
- package/dist/src/teamcity-client/api/investigation-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/mute-api.d.ts +46 -0
- package/dist/src/teamcity-client/api/mute-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/node-api.d.ts +49 -0
- package/dist/src/teamcity-client/api/node-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/problem-api.d.ts +26 -0
- package/dist/src/teamcity-client/api/problem-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/problem-occurrence-api.d.ts +26 -0
- package/dist/src/teamcity-client/api/problem-occurrence-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/project-api.d.ts +271 -0
- package/dist/src/teamcity-client/api/project-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/role-api.d.ts +56 -0
- package/dist/src/teamcity-client/api/role-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/root-api.d.ts +35 -0
- package/dist/src/teamcity-client/api/root-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/server-api.d.ts +112 -0
- package/dist/src/teamcity-client/api/server-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/server-authentication-settings-api.d.ts +25 -0
- package/dist/src/teamcity-client/api/server-authentication-settings-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/test-api.d.ts +26 -0
- package/dist/src/teamcity-client/api/test-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/test-occurrence-api.d.ts +26 -0
- package/dist/src/teamcity-client/api/test-occurrence-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/user-api.d.ts +164 -0
- package/dist/src/teamcity-client/api/user-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/vcs-root-api.d.ts +88 -0
- package/dist/src/teamcity-client/api/vcs-root-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/vcs-root-instance-api.d.ts +104 -0
- package/dist/src/teamcity-client/api/vcs-root-instance-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api/versioned-settings-api.d.ts +94 -0
- package/dist/src/teamcity-client/api/versioned-settings-api.d.ts.map +1 -0
- package/dist/src/teamcity-client/api.d.ts +31 -0
- package/dist/src/teamcity-client/api.d.ts.map +1 -0
- package/dist/src/teamcity-client/base.d.ts +32 -0
- package/dist/src/teamcity-client/base.d.ts.map +1 -0
- package/dist/src/teamcity-client/common.d.ts +14 -0
- package/dist/src/teamcity-client/common.d.ts.map +1 -0
- package/dist/src/teamcity-client/configuration.d.ts +23 -0
- package/dist/src/teamcity-client/configuration.d.ts.map +1 -0
- package/dist/src/teamcity-client/index.d.ts +4 -0
- package/dist/src/teamcity-client/index.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/agent-locator.d.ts +34 -0
- package/dist/src/teamcity-client/models/agent-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/agent-pool-locator.d.ts +10 -0
- package/dist/src/teamcity-client/models/agent-pool-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/agent-pool.d.ts +16 -0
- package/dist/src/teamcity-client/models/agent-pool.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/agent-pools.d.ts +9 -0
- package/dist/src/teamcity-client/models/agent-pools.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/agent-requirement.d.ts +11 -0
- package/dist/src/teamcity-client/models/agent-requirement.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/agent-requirements.d.ts +6 -0
- package/dist/src/teamcity-client/models/agent-requirements.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/agent-type-locator.d.ts +8 -0
- package/dist/src/teamcity-client/models/agent-type-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/agent-type.d.ts +14 -0
- package/dist/src/teamcity-client/models/agent-type.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/agent-types.d.ts +9 -0
- package/dist/src/teamcity-client/models/agent-types.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/agent.d.ts +59 -0
- package/dist/src/teamcity-client/models/agent.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/agents.d.ts +9 -0
- package/dist/src/teamcity-client/models/agents.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/approvable-build.d.ts +6 -0
- package/dist/src/teamcity-client/models/approvable-build.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/approval-info.d.ts +24 -0
- package/dist/src/teamcity-client/models/approval-info.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/artifact-dependencies.d.ts +7 -0
- package/dist/src/teamcity-client/models/artifact-dependencies.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/artifact-dependency.d.ts +13 -0
- package/dist/src/teamcity-client/models/artifact-dependency.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/artifact-download-info.d.ts +5 -0
- package/dist/src/teamcity-client/models/artifact-download-info.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/audit-action.d.ts +6 -0
- package/dist/src/teamcity-client/models/audit-action.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/audit-event.d.ts +12 -0
- package/dist/src/teamcity-client/models/audit-event.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/audit-events.d.ts +9 -0
- package/dist/src/teamcity-client/models/audit-events.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/audit-locator.d.ts +245 -0
- package/dist/src/teamcity-client/models/audit-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/auth-module.d.ts +6 -0
- package/dist/src/teamcity-client/models/auth-module.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/auth-modules.d.ts +5 -0
- package/dist/src/teamcity-client/models/auth-modules.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/authorization-tokens-requirements.d.ts +5 -0
- package/dist/src/teamcity-client/models/authorization-tokens-requirements.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/authorized-info.d.ts +6 -0
- package/dist/src/teamcity-client/models/authorized-info.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/branch-locator.d.ts +40 -0
- package/dist/src/teamcity-client/models/branch-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/branch-version.d.ts +13 -0
- package/dist/src/teamcity-client/models/branch-version.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/branch.d.ts +12 -0
- package/dist/src/teamcity-client/models/branch.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/branches.d.ts +7 -0
- package/dist/src/teamcity-client/models/branches.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/build-cancel-request.d.ts +5 -0
- package/dist/src/teamcity-client/models/build-cancel-request.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/build-change.d.ts +6 -0
- package/dist/src/teamcity-client/models/build-change.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/build-changes.d.ts +6 -0
- package/dist/src/teamcity-client/models/build-changes.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/build-executor.d.ts +4 -0
- package/dist/src/teamcity-client/models/build-executor.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/build-locator.d.ts +69 -0
- package/dist/src/teamcity-client/models/build-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/build-queue-locator.d.ts +14 -0
- package/dist/src/teamcity-client/models/build-queue-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/build-status-update.d.ts +5 -0
- package/dist/src/teamcity-client/models/build-status-update.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/build-trigger-customization.d.ts +7 -0
- package/dist/src/teamcity-client/models/build-trigger-customization.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/build-triggering-options.d.ts +12 -0
- package/dist/src/teamcity-client/models/build-triggering-options.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/build-type-locator.d.ts +18 -0
- package/dist/src/teamcity-client/models/build-type-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/build-type.d.ts +64 -0
- package/dist/src/teamcity-client/models/build-type.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/build-types.d.ts +9 -0
- package/dist/src/teamcity-client/models/build-types.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/build.d.ts +127 -0
- package/dist/src/teamcity-client/models/build.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/builds-with-reason.d.ts +6 -0
- package/dist/src/teamcity-client/models/builds-with-reason.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/builds.d.ts +9 -0
- package/dist/src/teamcity-client/models/builds.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/change-locator.d.ts +21 -0
- package/dist/src/teamcity-client/models/change-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/change-status.d.ts +19 -0
- package/dist/src/teamcity-client/models/change-status.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/change.d.ts +35 -0
- package/dist/src/teamcity-client/models/change.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/changes.d.ts +9 -0
- package/dist/src/teamcity-client/models/changes.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/cleanup.d.ts +9 -0
- package/dist/src/teamcity-client/models/cleanup.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/cloud-error.d.ts +5 -0
- package/dist/src/teamcity-client/models/cloud-error.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/cloud-image-locator.d.ts +17 -0
- package/dist/src/teamcity-client/models/cloud-image-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/cloud-image.d.ts +18 -0
- package/dist/src/teamcity-client/models/cloud-image.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/cloud-images.d.ts +9 -0
- package/dist/src/teamcity-client/models/cloud-images.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/cloud-instance-locator.d.ts +13 -0
- package/dist/src/teamcity-client/models/cloud-instance-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/cloud-instance.d.ts +16 -0
- package/dist/src/teamcity-client/models/cloud-instance.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/cloud-instances.d.ts +9 -0
- package/dist/src/teamcity-client/models/cloud-instances.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/cloud-profile-locator.d.ts +13 -0
- package/dist/src/teamcity-client/models/cloud-profile-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/cloud-profile.d.ts +13 -0
- package/dist/src/teamcity-client/models/cloud-profile.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/cloud-profiles.d.ts +9 -0
- package/dist/src/teamcity-client/models/cloud-profiles.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/comment.d.ts +7 -0
- package/dist/src/teamcity-client/models/comment.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/commiter.d.ts +6 -0
- package/dist/src/teamcity-client/models/commiter.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/compatibilities.d.ts +6 -0
- package/dist/src/teamcity-client/models/compatibilities.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/compatibility-policy.d.ts +6 -0
- package/dist/src/teamcity-client/models/compatibility-policy.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/compatibility.d.ts +10 -0
- package/dist/src/teamcity-client/models/compatibility.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/composite-approval-rule.d.ts +10 -0
- package/dist/src/teamcity-client/models/composite-approval-rule.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/composite-approvals.d.ts +6 -0
- package/dist/src/teamcity-client/models/composite-approvals.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/cron.d.ts +8 -0
- package/dist/src/teamcity-client/models/cron.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/customizations.d.ts +15 -0
- package/dist/src/teamcity-client/models/customizations.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/daily.d.ts +5 -0
- package/dist/src/teamcity-client/models/daily.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/datas.d.ts +6 -0
- package/dist/src/teamcity-client/models/datas.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/deployment-dashboard-locator.d.ts +9 -0
- package/dist/src/teamcity-client/models/deployment-dashboard-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/deployment-dashboard.d.ts +9 -0
- package/dist/src/teamcity-client/models/deployment-dashboard.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/deployment-dashboards.d.ts +9 -0
- package/dist/src/teamcity-client/models/deployment-dashboards.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/deployment-history.d.ts +6 -0
- package/dist/src/teamcity-client/models/deployment-history.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/deployment-instance-locator.d.ts +16 -0
- package/dist/src/teamcity-client/models/deployment-instance-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/deployment-instance.d.ts +20 -0
- package/dist/src/teamcity-client/models/deployment-instance.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/deployment-instances.d.ts +9 -0
- package/dist/src/teamcity-client/models/deployment-instances.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/deployment-state-entries.d.ts +8 -0
- package/dist/src/teamcity-client/models/deployment-state-entries.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/deployment-state-entry.d.ts +16 -0
- package/dist/src/teamcity-client/models/deployment-state-entry.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/disabled-responsibilities.d.ts +6 -0
- package/dist/src/teamcity-client/models/disabled-responsibilities.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/download-info.d.ts +8 -0
- package/dist/src/teamcity-client/models/download-info.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/downloaded-artifacts.d.ts +7 -0
- package/dist/src/teamcity-client/models/downloaded-artifacts.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/effective-responsibilities.d.ts +6 -0
- package/dist/src/teamcity-client/models/effective-responsibilities.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/enabled-info.d.ts +7 -0
- package/dist/src/teamcity-client/models/enabled-info.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/enabled-responsibilities.d.ts +6 -0
- package/dist/src/teamcity-client/models/enabled-responsibilities.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/entries.d.ts +6 -0
- package/dist/src/teamcity-client/models/entries.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/entry.d.ts +5 -0
- package/dist/src/teamcity-client/models/entry.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/environment.d.ts +5 -0
- package/dist/src/teamcity-client/models/environment.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/feature.d.ts +11 -0
- package/dist/src/teamcity-client/models/feature.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/features.d.ts +6 -0
- package/dist/src/teamcity-client/models/features.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/file-change.d.ts +10 -0
- package/dist/src/teamcity-client/models/file-change.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/file-changes.d.ts +6 -0
- package/dist/src/teamcity-client/models/file-changes.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/files.d.ts +6 -0
- package/dist/src/teamcity-client/models/files.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/group-approval-rule.d.ts +8 -0
- package/dist/src/teamcity-client/models/group-approval-rule.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/group-approvals.d.ts +6 -0
- package/dist/src/teamcity-client/models/group-approvals.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/group.d.ts +16 -0
- package/dist/src/teamcity-client/models/group.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/groups.d.ts +6 -0
- package/dist/src/teamcity-client/models/groups.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/health-categories.d.ts +9 -0
- package/dist/src/teamcity-client/models/health-categories.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/health-category.d.ts +7 -0
- package/dist/src/teamcity-client/models/health-category.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/health-item.d.ts +13 -0
- package/dist/src/teamcity-client/models/health-item.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/health-status-items.d.ts +9 -0
- package/dist/src/teamcity-client/models/health-status-items.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/href.d.ts +4 -0
- package/dist/src/teamcity-client/models/href.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/index.d.ts +230 -0
- package/dist/src/teamcity-client/models/index.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/investigation-locator.d.ts +35 -0
- package/dist/src/teamcity-client/models/investigation-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/investigation.d.ts +24 -0
- package/dist/src/teamcity-client/models/investigation.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/investigations.d.ts +9 -0
- package/dist/src/teamcity-client/models/investigations.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/issue-usage.d.ts +7 -0
- package/dist/src/teamcity-client/models/issue-usage.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/issue.d.ts +5 -0
- package/dist/src/teamcity-client/models/issue.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/issues-usages.d.ts +7 -0
- package/dist/src/teamcity-client/models/issues-usages.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/issues.d.ts +5 -0
- package/dist/src/teamcity-client/models/issues.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/items.d.ts +4 -0
- package/dist/src/teamcity-client/models/items.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/labeled-value.d.ts +5 -0
- package/dist/src/teamcity-client/models/labeled-value.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/license-key.d.ts +29 -0
- package/dist/src/teamcity-client/models/license-key.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/license-keys.d.ts +7 -0
- package/dist/src/teamcity-client/models/license-keys.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/licensing-data.d.ts +26 -0
- package/dist/src/teamcity-client/models/licensing-data.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/link.d.ts +6 -0
- package/dist/src/teamcity-client/models/link.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/links.d.ts +6 -0
- package/dist/src/teamcity-client/models/links.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/matrix-build-feature-descriptor.d.ts +8 -0
- package/dist/src/teamcity-client/models/matrix-build-feature-descriptor.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/matrix-configuration.d.ts +9 -0
- package/dist/src/teamcity-client/models/matrix-configuration.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/matrix-dependencies.d.ts +6 -0
- package/dist/src/teamcity-client/models/matrix-dependencies.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/matrix-dependency.d.ts +7 -0
- package/dist/src/teamcity-client/models/matrix-dependency.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/matrix-parameter-descriptor.d.ts +7 -0
- package/dist/src/teamcity-client/models/matrix-parameter-descriptor.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/meta-data.d.ts +6 -0
- package/dist/src/teamcity-client/models/meta-data.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/metric-tag.d.ts +5 -0
- package/dist/src/teamcity-client/models/metric-tag.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/metric-tags.d.ts +6 -0
- package/dist/src/teamcity-client/models/metric-tags.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/metric-value.d.ts +7 -0
- package/dist/src/teamcity-client/models/metric-value.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/metric-values.d.ts +6 -0
- package/dist/src/teamcity-client/models/metric-values.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/metric.d.ts +10 -0
- package/dist/src/teamcity-client/models/metric.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/metrics.d.ts +6 -0
- package/dist/src/teamcity-client/models/metrics.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/model-file.d.ts +13 -0
- package/dist/src/teamcity-client/models/model-file.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/multiple-operation-result.d.ts +7 -0
- package/dist/src/teamcity-client/models/multiple-operation-result.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/mute-locator.d.ts +26 -0
- package/dist/src/teamcity-client/models/mute-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/mute.d.ts +13 -0
- package/dist/src/teamcity-client/models/mute.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/mutes.d.ts +9 -0
- package/dist/src/teamcity-client/models/mutes.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/new-build-type-description.d.ts +13 -0
- package/dist/src/teamcity-client/models/new-build-type-description.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/new-project-description.d.ts +15 -0
- package/dist/src/teamcity-client/models/new-project-description.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/node.d.ts +21 -0
- package/dist/src/teamcity-client/models/node.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/nodes.d.ts +6 -0
- package/dist/src/teamcity-client/models/nodes.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/operation-result.d.ts +6 -0
- package/dist/src/teamcity-client/models/operation-result.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/parsed-test-name.d.ts +10 -0
- package/dist/src/teamcity-client/models/parsed-test-name.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/permission-assignment.d.ts +8 -0
- package/dist/src/teamcity-client/models/permission-assignment.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/permission-assignments.d.ts +6 -0
- package/dist/src/teamcity-client/models/permission-assignments.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/permission-restriction.d.ts +8 -0
- package/dist/src/teamcity-client/models/permission-restriction.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/permission-restrictions.d.ts +6 -0
- package/dist/src/teamcity-client/models/permission-restrictions.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/permission.d.ts +6 -0
- package/dist/src/teamcity-client/models/permission.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/permissions.d.ts +6 -0
- package/dist/src/teamcity-client/models/permissions.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/pin-info.d.ts +6 -0
- package/dist/src/teamcity-client/models/pin-info.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/plugin.d.ts +9 -0
- package/dist/src/teamcity-client/models/plugin.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/plugins.d.ts +6 -0
- package/dist/src/teamcity-client/models/plugins.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/problem-locator.d.ts +15 -0
- package/dist/src/teamcity-client/models/problem-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/problem-occurrence-locator.d.ts +16 -0
- package/dist/src/teamcity-client/models/problem-occurrence-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/problem-occurrence.d.ts +20 -0
- package/dist/src/teamcity-client/models/problem-occurrence.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/problem-occurrences.d.ts +14 -0
- package/dist/src/teamcity-client/models/problem-occurrences.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/problem-scope.d.ts +9 -0
- package/dist/src/teamcity-client/models/problem-scope.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/problem-target.d.ts +8 -0
- package/dist/src/teamcity-client/models/problem-target.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/problem.d.ts +15 -0
- package/dist/src/teamcity-client/models/problem.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/problems.d.ts +8 -0
- package/dist/src/teamcity-client/models/problems.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/progress-info.d.ts +13 -0
- package/dist/src/teamcity-client/models/progress-info.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/project-feature.d.ts +11 -0
- package/dist/src/teamcity-client/models/project-feature.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/project-features.d.ts +7 -0
- package/dist/src/teamcity-client/models/project-features.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/project-locator.d.ts +20 -0
- package/dist/src/teamcity-client/models/project-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/project.d.ts +39 -0
- package/dist/src/teamcity-client/models/project.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/projects.d.ts +9 -0
- package/dist/src/teamcity-client/models/projects.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/properties.d.ts +7 -0
- package/dist/src/teamcity-client/models/properties.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/property.d.ts +8 -0
- package/dist/src/teamcity-client/models/property.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/related-entities.d.ts +6 -0
- package/dist/src/teamcity-client/models/related-entities.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/related-entity.d.ts +29 -0
- package/dist/src/teamcity-client/models/related-entity.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/related.d.ts +5 -0
- package/dist/src/teamcity-client/models/related.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/repository-state.d.ts +7 -0
- package/dist/src/teamcity-client/models/repository-state.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/requirements.d.ts +4 -0
- package/dist/src/teamcity-client/models/requirements.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/resolution.d.ts +11 -0
- package/dist/src/teamcity-client/models/resolution.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/responsibility.d.ts +5 -0
- package/dist/src/teamcity-client/models/responsibility.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/revision.d.ts +9 -0
- package/dist/src/teamcity-client/models/revision.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/revisions.d.ts +7 -0
- package/dist/src/teamcity-client/models/revisions.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/role.d.ts +6 -0
- package/dist/src/teamcity-client/models/role.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/roles.d.ts +5 -0
- package/dist/src/teamcity-client/models/roles.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/server-auth-settings.d.ts +12 -0
- package/dist/src/teamcity-client/models/server-auth-settings.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/server-global-settings.d.ts +15 -0
- package/dist/src/teamcity-client/models/server-global-settings.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/server.d.ts +26 -0
- package/dist/src/teamcity-client/models/server.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/snapshot-dependencies.d.ts +6 -0
- package/dist/src/teamcity-client/models/snapshot-dependencies.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/snapshot-dependency-link.d.ts +8 -0
- package/dist/src/teamcity-client/models/snapshot-dependency-link.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/snapshot-dependency.d.ts +13 -0
- package/dist/src/teamcity-client/models/snapshot-dependency.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/state-field.d.ts +5 -0
- package/dist/src/teamcity-client/models/state-field.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/step.d.ts +12 -0
- package/dist/src/teamcity-client/models/step.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/steps.d.ts +6 -0
- package/dist/src/teamcity-client/models/steps.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/tag-locator.d.ts +6 -0
- package/dist/src/teamcity-client/models/tag-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/tag.d.ts +7 -0
- package/dist/src/teamcity-client/models/tag.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/tags.d.ts +6 -0
- package/dist/src/teamcity-client/models/tags.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/team-city-node-locator.d.ts +6 -0
- package/dist/src/teamcity-client/models/team-city-node-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/test-counters.d.ts +10 -0
- package/dist/src/teamcity-client/models/test-counters.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/test-locator.d.ts +14 -0
- package/dist/src/teamcity-client/models/test-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/test-occurrence-locator.d.ts +31 -0
- package/dist/src/teamcity-client/models/test-occurrence-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/test-occurrence.d.ts +37 -0
- package/dist/src/teamcity-client/models/test-occurrence.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/test-occurrences.d.ts +16 -0
- package/dist/src/teamcity-client/models/test-occurrences.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/test-run-metadata.d.ts +6 -0
- package/dist/src/teamcity-client/models/test-run-metadata.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/tests.d.ts +10 -0
- package/dist/src/teamcity-client/models/tests.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/token.d.ts +9 -0
- package/dist/src/teamcity-client/models/token.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/tokens.d.ts +6 -0
- package/dist/src/teamcity-client/models/tokens.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/trigger.d.ts +13 -0
- package/dist/src/teamcity-client/models/trigger.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/triggered-by.d.ts +16 -0
- package/dist/src/teamcity-client/models/triggered-by.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/triggers.d.ts +6 -0
- package/dist/src/teamcity-client/models/triggers.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/type.d.ts +4 -0
- package/dist/src/teamcity-client/models/type.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/typed-value-set.d.ts +10 -0
- package/dist/src/teamcity-client/models/typed-value-set.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/typed-value-sets.d.ts +6 -0
- package/dist/src/teamcity-client/models/typed-value-sets.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/typed-value.d.ts +6 -0
- package/dist/src/teamcity-client/models/typed-value.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/user-approval-rule.d.ts +6 -0
- package/dist/src/teamcity-client/models/user-approval-rule.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/user-approvals.d.ts +6 -0
- package/dist/src/teamcity-client/models/user-approvals.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/user-avatars.d.ts +10 -0
- package/dist/src/teamcity-client/models/user-avatars.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/user-group-locator.d.ts +6 -0
- package/dist/src/teamcity-client/models/user-group-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/user-locator.d.ts +15 -0
- package/dist/src/teamcity-client/models/user-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/user.d.ts +22 -0
- package/dist/src/teamcity-client/models/user.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/users.d.ts +6 -0
- package/dist/src/teamcity-client/models/users.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/vcs-check-status.d.ts +6 -0
- package/dist/src/teamcity-client/models/vcs-check-status.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/vcs-label.d.ts +18 -0
- package/dist/src/teamcity-client/models/vcs-label.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/vcs-labels.d.ts +6 -0
- package/dist/src/teamcity-client/models/vcs-labels.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/vcs-root-entries.d.ts +6 -0
- package/dist/src/teamcity-client/models/vcs-root-entries.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/vcs-root-entry.d.ts +8 -0
- package/dist/src/teamcity-client/models/vcs-root-entry.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/vcs-root-instance-locator.d.ts +38 -0
- package/dist/src/teamcity-client/models/vcs-root-instance-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/vcs-root-instance.d.ts +24 -0
- package/dist/src/teamcity-client/models/vcs-root-instance.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/vcs-root-instances.d.ts +9 -0
- package/dist/src/teamcity-client/models/vcs-root-instances.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/vcs-root-locator.d.ts +37 -0
- package/dist/src/teamcity-client/models/vcs-root-locator.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/vcs-root.d.ts +20 -0
- package/dist/src/teamcity-client/models/vcs-root.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/vcs-roots.d.ts +9 -0
- package/dist/src/teamcity-client/models/vcs-roots.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/vcs-status.d.ts +6 -0
- package/dist/src/teamcity-client/models/vcs-status.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/versioned-settings-config.d.ts +31 -0
- package/dist/src/teamcity-client/models/versioned-settings-config.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/versioned-settings-context-parameter.d.ts +5 -0
- package/dist/src/teamcity-client/models/versioned-settings-context-parameter.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/versioned-settings-context-parameters.d.ts +5 -0
- package/dist/src/teamcity-client/models/versioned-settings-context-parameters.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/versioned-settings-error.d.ts +7 -0
- package/dist/src/teamcity-client/models/versioned-settings-error.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/versioned-settings-status.d.ts +15 -0
- package/dist/src/teamcity-client/models/versioned-settings-status.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/versioned-settings-token.d.ts +6 -0
- package/dist/src/teamcity-client/models/versioned-settings-token.d.ts.map +1 -0
- package/dist/src/teamcity-client/models/versioned-settings-tokens.d.ts +5 -0
- package/dist/src/teamcity-client/models/versioned-settings-tokens.d.ts.map +1 -0
- package/dist/src/tools/index.d.ts +2 -0
- package/dist/src/tools/index.d.ts.map +1 -0
- package/dist/src/tools.d.ts +22 -0
- package/dist/src/tools.d.ts.map +1 -0
- package/dist/src/types/config.d.ts +129 -0
- package/dist/src/types/config.d.ts.map +1 -0
- package/dist/src/types/index.d.ts +116 -0
- package/dist/src/types/index.d.ts.map +1 -0
- package/dist/src/types/mcp.d.ts +68 -0
- package/dist/src/types/mcp.d.ts.map +1 -0
- package/dist/src/types/project.d.ts +56 -0
- package/dist/src/types/project.d.ts.map +1 -0
- package/dist/src/types/teamcity.d.ts +258 -0
- package/dist/src/types/teamcity.d.ts.map +1 -0
- package/dist/src/utils/async/index.d.ts +90 -0
- package/dist/src/utils/async/index.d.ts.map +1 -0
- package/dist/src/utils/error-logger.d.ts +34 -0
- package/dist/src/utils/error-logger.d.ts.map +1 -0
- package/dist/src/utils/index.d.ts +23 -0
- package/dist/src/utils/index.d.ts.map +1 -0
- package/dist/src/utils/logger/index.d.ts +73 -0
- package/dist/src/utils/logger/index.d.ts.map +1 -0
- package/dist/src/utils/logger.d.ts +11 -0
- package/dist/src/utils/logger.d.ts.map +1 -0
- package/dist/src/utils/lru-cache.d.ts +20 -0
- package/dist/src/utils/lru-cache.d.ts.map +1 -0
- package/dist/src/utils/mcp.d.ts +18 -0
- package/dist/src/utils/mcp.d.ts.map +1 -0
- package/dist/src/utils/validation.d.ts +61 -0
- package/dist/src/utils/validation.d.ts.map +1 -0
- package/docs/TEAMCITY_MCP_TOOLS_GUIDE.md +1076 -0
- package/docs/mcp-tools-mode-matrix.md +68 -0
- package/docs/mcp-tools-reference.md +203 -0
- package/examples/list-build-configs-usage.ts +276 -0
- package/jest.ci.config.js +14 -0
- package/jest.config.js +108 -0
- package/jest.setup.js +24 -0
- package/openapi-generator-config.json +27 -0
- package/openapitools.json +7 -0
- package/package.json +101 -0
- package/scripts/build.cjs +87 -0
- package/scripts/debug-fetch-log.ts +52 -0
- package/scripts/emit-coverage-stats.js +42 -0
- package/scripts/fetch-swagger-spec.ts +140 -0
- package/scripts/interact.sh +23 -0
- package/scripts/print-builds.ts +21 -0
- package/scripts/verify-integration-env.cjs +29 -0
- package/src/api-client.ts +307 -0
- package/src/config/index.ts +286 -0
- package/src/errors/index.ts +25 -0
- package/src/formatters/build-step-formatter.ts +178 -0
- package/src/formatters/trigger-formatter.ts +207 -0
- package/src/index.ts +61 -0
- package/src/middleware/error.test.ts +274 -0
- package/src/middleware/error.ts +314 -0
- package/src/middleware/global-error-handler.test.ts +239 -0
- package/src/middleware/global-error-handler.ts +203 -0
- package/src/middleware/index.ts +5 -0
- package/src/server.ts +126 -0
- package/src/swagger/index.ts +220 -0
- package/src/swagger/swagger-cache.ts +220 -0
- package/src/swagger/swagger-fetcher.ts +126 -0
- package/src/swagger/swagger-validator.ts +212 -0
- package/src/teamcity/api-types.ts +387 -0
- package/src/teamcity/artifact-manager.ts +362 -0
- package/src/teamcity/auth.ts +215 -0
- package/src/teamcity/branch-discovery-manager.ts +311 -0
- package/src/teamcity/branch-filtering-service.ts +369 -0
- package/src/teamcity/branch-specification-parser.ts +238 -0
- package/src/teamcity/build-config-manager.ts +458 -0
- package/src/teamcity/build-config-navigator.ts +589 -0
- package/src/teamcity/build-configuration-clone-manager.ts +501 -0
- package/src/teamcity/build-configuration-manager.ts +447 -0
- package/src/teamcity/build-configuration-resolver.ts +725 -0
- package/src/teamcity/build-configuration-update-manager.ts +610 -0
- package/src/teamcity/build-list-manager.ts +313 -0
- package/src/teamcity/build-parameters-manager.ts +875 -0
- package/src/teamcity/build-progress-tracker.ts +514 -0
- package/src/teamcity/build-query-builder.ts +325 -0
- package/src/teamcity/build-queue-manager.ts +622 -0
- package/src/teamcity/build-results-manager.ts +589 -0
- package/src/teamcity/build-status-manager.ts +564 -0
- package/src/teamcity/build-step-manager.ts +508 -0
- package/src/teamcity/build-trigger-manager.ts +1083 -0
- package/src/teamcity/circuit-breaker.ts +219 -0
- package/src/teamcity/client-adapter.ts +35 -0
- package/src/teamcity/client.ts +269 -0
- package/src/teamcity/config.ts +188 -0
- package/src/teamcity/configuration-branch-matcher.ts +327 -0
- package/src/teamcity/errors.ts +351 -0
- package/src/teamcity/index.ts +266 -0
- package/src/teamcity/pagination.ts +209 -0
- package/src/teamcity/project-list-manager.ts +267 -0
- package/src/teamcity/project-manager.ts +493 -0
- package/src/teamcity/project-navigator.ts +664 -0
- package/src/teamcity/test-problem-reporter.ts +423 -0
- package/src/teamcity/types/api-responses.ts +314 -0
- package/src/teamcity-client/.openapi-generator/FILES +274 -0
- package/src/teamcity-client/.openapi-generator/VERSION +1 -0
- package/src/teamcity-client/.openapi-generator-ignore +23 -0
- package/src/teamcity-client/README.md +50 -0
- package/src/teamcity-client/api/agent-api.ts +2046 -0
- package/src/teamcity-client/api/agent-pool-api.ts +1877 -0
- package/src/teamcity-client/api/agent-type-api.ts +213 -0
- package/src/teamcity-client/api/audit-api.ts +341 -0
- package/src/teamcity-client/api/avatar-api.ts +569 -0
- package/src/teamcity-client/api/build-api.ts +7726 -0
- package/src/teamcity-client/api/build-queue-api.ts +1922 -0
- package/src/teamcity-client/api/build-type-api.ts +15502 -0
- package/src/teamcity-client/api/change-api.ts +1311 -0
- package/src/teamcity-client/api/cloud-instance-api.ts +1289 -0
- package/src/teamcity-client/api/deployment-dashboard-api.ts +1295 -0
- package/src/teamcity-client/api/global-server-settings-api.ts +286 -0
- package/src/teamcity-client/api/group-api.ts +2084 -0
- package/src/teamcity-client/api/health-api.ts +566 -0
- package/src/teamcity-client/api/investigation-api.ts +856 -0
- package/src/teamcity-client/api/mute-api.ts +824 -0
- package/src/teamcity-client/api/node-api.ts +877 -0
- package/src/teamcity-client/api/problem-api.ts +337 -0
- package/src/teamcity-client/api/problem-occurrence-api.ts +349 -0
- package/src/teamcity-client/api/project-api.ts +6511 -0
- package/src/teamcity-client/api/role-api.ts +1062 -0
- package/src/teamcity-client/api/root-api.ts +439 -0
- package/src/teamcity-client/api/server-api.ts +2306 -0
- package/src/teamcity-client/api/server-authentication-settings-api.ts +289 -0
- package/src/teamcity-client/api/test-api.ts +329 -0
- package/src/teamcity-client/api/test-occurrence-api.ts +340 -0
- package/src/teamcity-client/api/user-api.ts +3644 -0
- package/src/teamcity-client/api/vcs-root-api.ts +1837 -0
- package/src/teamcity-client/api/vcs-root-instance-api.ts +2479 -0
- package/src/teamcity-client/api/versioned-settings-api.ts +2025 -0
- package/src/teamcity-client/api.ts +44 -0
- package/src/teamcity-client/base.ts +91 -0
- package/src/teamcity-client/common.ts +197 -0
- package/src/teamcity-client/configuration.ts +130 -0
- package/src/teamcity-client/git_push.sh +57 -0
- package/src/teamcity-client/index.ts +17 -0
- package/src/teamcity-client/models/agent-locator.ts +124 -0
- package/src/teamcity-client/models/agent-pool-locator.ts +63 -0
- package/src/teamcity-client/models/agent-pool.ts +87 -0
- package/src/teamcity-client/models/agent-pools.ts +54 -0
- package/src/teamcity-client/models/agent-requirement.ts +66 -0
- package/src/teamcity-client/models/agent-requirements.ts +36 -0
- package/src/teamcity-client/models/agent-type-locator.ts +51 -0
- package/src/teamcity-client/models/agent-type.ts +81 -0
- package/src/teamcity-client/models/agent-types.ts +54 -0
- package/src/teamcity-client/models/agent.ts +295 -0
- package/src/teamcity-client/models/agents.ts +54 -0
- package/src/teamcity-client/models/approvable-build.ts +39 -0
- package/src/teamcity-client/models/approval-info.ts +100 -0
- package/src/teamcity-client/models/artifact-dependencies.ts +42 -0
- package/src/teamcity-client/models/artifact-dependency.ts +75 -0
- package/src/teamcity-client/models/artifact-download-info.ts +33 -0
- package/src/teamcity-client/models/audit-action.ts +39 -0
- package/src/teamcity-client/models/audit-event.ts +66 -0
- package/src/teamcity-client/models/audit-events.ts +54 -0
- package/src/teamcity-client/models/audit-locator.ts +315 -0
- package/src/teamcity-client/models/auth-module.ts +36 -0
- package/src/teamcity-client/models/auth-modules.ts +30 -0
- package/src/teamcity-client/models/authorization-tokens-requirements.ts +33 -0
- package/src/teamcity-client/models/authorized-info.ts +36 -0
- package/src/teamcity-client/models/branch-locator.ts +117 -0
- package/src/teamcity-client/models/branch-version.ts +78 -0
- package/src/teamcity-client/models/branch.ts +72 -0
- package/src/teamcity-client/models/branches.ts +42 -0
- package/src/teamcity-client/models/build-cancel-request.ts +33 -0
- package/src/teamcity-client/models/build-change.ts +36 -0
- package/src/teamcity-client/models/build-changes.ts +36 -0
- package/src/teamcity-client/models/build-executor.ts +27 -0
- package/src/teamcity-client/models/build-locator.ts +277 -0
- package/src/teamcity-client/models/build-queue-locator.ts +87 -0
- package/src/teamcity-client/models/build-status-update.ts +33 -0
- package/src/teamcity-client/models/build-trigger-customization.ts +42 -0
- package/src/teamcity-client/models/build-triggering-options.ts +72 -0
- package/src/teamcity-client/models/build-type-locator.ts +111 -0
- package/src/teamcity-client/models/build-type.ts +305 -0
- package/src/teamcity-client/models/build-types.ts +54 -0
- package/src/teamcity-client/models/build.ts +631 -0
- package/src/teamcity-client/models/builds-with-reason.ts +36 -0
- package/src/teamcity-client/models/builds.ts +54 -0
- package/src/teamcity-client/models/change-locator.ts +129 -0
- package/src/teamcity-client/models/change-status.ts +114 -0
- package/src/teamcity-client/models/change.ts +186 -0
- package/src/teamcity-client/models/changes.ts +54 -0
- package/src/teamcity-client/models/cleanup.ts +51 -0
- package/src/teamcity-client/models/cloud-error.ts +33 -0
- package/src/teamcity-client/models/cloud-image-locator.ts +105 -0
- package/src/teamcity-client/models/cloud-image.ts +102 -0
- package/src/teamcity-client/models/cloud-images.ts +54 -0
- package/src/teamcity-client/models/cloud-instance-locator.ts +81 -0
- package/src/teamcity-client/models/cloud-instance.ts +90 -0
- package/src/teamcity-client/models/cloud-instances.ts +54 -0
- package/src/teamcity-client/models/cloud-profile-locator.ts +81 -0
- package/src/teamcity-client/models/cloud-profile.ts +72 -0
- package/src/teamcity-client/models/cloud-profiles.ts +54 -0
- package/src/teamcity-client/models/comment.ts +42 -0
- package/src/teamcity-client/models/commiter.ts +36 -0
- package/src/teamcity-client/models/compatibilities.ts +36 -0
- package/src/teamcity-client/models/compatibility-policy.ts +36 -0
- package/src/teamcity-client/models/compatibility.ts +54 -0
- package/src/teamcity-client/models/composite-approval-rule.ts +54 -0
- package/src/teamcity-client/models/composite-approvals.ts +36 -0
- package/src/teamcity-client/models/cron.ts +51 -0
- package/src/teamcity-client/models/customizations.ts +45 -0
- package/src/teamcity-client/models/daily.ts +33 -0
- package/src/teamcity-client/models/datas.ts +36 -0
- package/src/teamcity-client/models/deployment-dashboard-locator.ts +57 -0
- package/src/teamcity-client/models/deployment-dashboard.ts +51 -0
- package/src/teamcity-client/models/deployment-dashboards.ts +54 -0
- package/src/teamcity-client/models/deployment-history.ts +36 -0
- package/src/teamcity-client/models/deployment-instance-locator.ts +62 -0
- package/src/teamcity-client/models/deployment-instance.ts +68 -0
- package/src/teamcity-client/models/deployment-instances.ts +54 -0
- package/src/teamcity-client/models/deployment-state-entries.ts +45 -0
- package/src/teamcity-client/models/deployment-state-entry.ts +59 -0
- package/src/teamcity-client/models/disabled-responsibilities.ts +36 -0
- package/src/teamcity-client/models/download-info.ts +45 -0
- package/src/teamcity-client/models/downloaded-artifacts.ts +42 -0
- package/src/teamcity-client/models/effective-responsibilities.ts +36 -0
- package/src/teamcity-client/models/enabled-info.ts +42 -0
- package/src/teamcity-client/models/enabled-responsibilities.ts +36 -0
- package/src/teamcity-client/models/entries.ts +36 -0
- package/src/teamcity-client/models/entry.ts +33 -0
- package/src/teamcity-client/models/environment.ts +33 -0
- package/src/teamcity-client/models/feature.ts +66 -0
- package/src/teamcity-client/models/features.ts +36 -0
- package/src/teamcity-client/models/file-change.ts +63 -0
- package/src/teamcity-client/models/file-changes.ts +36 -0
- package/src/teamcity-client/models/files.ts +39 -0
- package/src/teamcity-client/models/group-approval-rule.ts +45 -0
- package/src/teamcity-client/models/group-approvals.ts +36 -0
- package/src/teamcity-client/models/group.ts +87 -0
- package/src/teamcity-client/models/groups.ts +36 -0
- package/src/teamcity-client/models/health-categories.ts +54 -0
- package/src/teamcity-client/models/health-category.ts +45 -0
- package/src/teamcity-client/models/health-item.ts +51 -0
- package/src/teamcity-client/models/health-status-items.ts +54 -0
- package/src/teamcity-client/models/href.ts +27 -0
- package/src/teamcity-client/models/index.ts +229 -0
- package/src/teamcity-client/models/investigation-locator.ts +125 -0
- package/src/teamcity-client/models/investigation.ts +100 -0
- package/src/teamcity-client/models/investigations.ts +54 -0
- package/src/teamcity-client/models/issue-usage.ts +39 -0
- package/src/teamcity-client/models/issue.ts +33 -0
- package/src/teamcity-client/models/issues-usages.ts +42 -0
- package/src/teamcity-client/models/issues.ts +30 -0
- package/src/teamcity-client/models/items.ts +27 -0
- package/src/teamcity-client/models/labeled-value.ts +33 -0
- package/src/teamcity-client/models/license-key.ts +134 -0
- package/src/teamcity-client/models/license-keys.ts +42 -0
- package/src/teamcity-client/models/licensing-data.ts +114 -0
- package/src/teamcity-client/models/link.ts +39 -0
- package/src/teamcity-client/models/links.ts +36 -0
- package/src/teamcity-client/models/matrix-build-feature-descriptor.ts +48 -0
- package/src/teamcity-client/models/matrix-configuration.ts +51 -0
- package/src/teamcity-client/models/matrix-dependencies.ts +36 -0
- package/src/teamcity-client/models/matrix-dependency.ts +39 -0
- package/src/teamcity-client/models/matrix-parameter-descriptor.ts +42 -0
- package/src/teamcity-client/models/meta-data.ts +36 -0
- package/src/teamcity-client/models/metric-tag.ts +33 -0
- package/src/teamcity-client/models/metric-tags.ts +36 -0
- package/src/teamcity-client/models/metric-value.ts +42 -0
- package/src/teamcity-client/models/metric-values.ts +36 -0
- package/src/teamcity-client/models/metric.ts +57 -0
- package/src/teamcity-client/models/metrics.ts +36 -0
- package/src/teamcity-client/models/model-file.ts +75 -0
- package/src/teamcity-client/models/multiple-operation-result.ts +42 -0
- package/src/teamcity-client/models/mute-locator.ts +108 -0
- package/src/teamcity-client/models/mute.ts +69 -0
- package/src/teamcity-client/models/mutes.ts +54 -0
- package/src/teamcity-client/models/new-build-type-description.ts +75 -0
- package/src/teamcity-client/models/new-project-description.ts +87 -0
- package/src/teamcity-client/models/node.ts +87 -0
- package/src/teamcity-client/models/nodes.ts +36 -0
- package/src/teamcity-client/models/operation-result.ts +36 -0
- package/src/teamcity-client/models/parsed-test-name.ts +63 -0
- package/src/teamcity-client/models/permission-assignment.ts +45 -0
- package/src/teamcity-client/models/permission-assignments.ts +36 -0
- package/src/teamcity-client/models/permission-restriction.ts +45 -0
- package/src/teamcity-client/models/permission-restrictions.ts +36 -0
- package/src/teamcity-client/models/permission.ts +39 -0
- package/src/teamcity-client/models/permissions.ts +36 -0
- package/src/teamcity-client/models/pin-info.ts +36 -0
- package/src/teamcity-client/models/plugin.ts +54 -0
- package/src/teamcity-client/models/plugins.ts +36 -0
- package/src/teamcity-client/models/problem-locator.ts +93 -0
- package/src/teamcity-client/models/problem-occurrence-locator.ts +99 -0
- package/src/teamcity-client/models/problem-occurrence.ts +114 -0
- package/src/teamcity-client/models/problem-occurrences.ts +84 -0
- package/src/teamcity-client/models/problem-scope.ts +48 -0
- package/src/teamcity-client/models/problem-target.ts +45 -0
- package/src/teamcity-client/models/problem.ts +84 -0
- package/src/teamcity-client/models/problems.ts +48 -0
- package/src/teamcity-client/models/progress-info.ts +78 -0
- package/src/teamcity-client/models/project-feature.ts +66 -0
- package/src/teamcity-client/models/project-features.ts +42 -0
- package/src/teamcity-client/models/project-locator.ts +123 -0
- package/src/teamcity-client/models/project.ts +207 -0
- package/src/teamcity-client/models/projects.ts +54 -0
- package/src/teamcity-client/models/properties.ts +42 -0
- package/src/teamcity-client/models/property.ts +48 -0
- package/src/teamcity-client/models/related-entities.ts +36 -0
- package/src/teamcity-client/models/related-entity.ts +144 -0
- package/src/teamcity-client/models/related.ts +30 -0
- package/src/teamcity-client/models/repository-state.ts +42 -0
- package/src/teamcity-client/models/requirements.ts +27 -0
- package/src/teamcity-client/models/resolution.ts +41 -0
- package/src/teamcity-client/models/responsibility.ts +33 -0
- package/src/teamcity-client/models/revision.ts +54 -0
- package/src/teamcity-client/models/revisions.ts +42 -0
- package/src/teamcity-client/models/role.ts +39 -0
- package/src/teamcity-client/models/roles.ts +30 -0
- package/src/teamcity-client/models/server-auth-settings.ts +72 -0
- package/src/teamcity-client/models/server-global-settings.ts +93 -0
- package/src/teamcity-client/models/server.ts +156 -0
- package/src/teamcity-client/models/snapshot-dependencies.ts +36 -0
- package/src/teamcity-client/models/snapshot-dependency-link.ts +45 -0
- package/src/teamcity-client/models/snapshot-dependency.ts +75 -0
- package/src/teamcity-client/models/state-field.ts +33 -0
- package/src/teamcity-client/models/step.ts +72 -0
- package/src/teamcity-client/models/steps.ts +36 -0
- package/src/teamcity-client/models/tag-locator.ts +39 -0
- package/src/teamcity-client/models/tag.ts +42 -0
- package/src/teamcity-client/models/tags.ts +36 -0
- package/src/teamcity-client/models/team-city-node-locator.ts +39 -0
- package/src/teamcity-client/models/test-counters.ts +63 -0
- package/src/teamcity-client/models/test-locator.ts +87 -0
- package/src/teamcity-client/models/test-occurrence-locator.ts +147 -0
- package/src/teamcity-client/models/test-occurrence.ts +173 -0
- package/src/teamcity-client/models/test-occurrences.ts +93 -0
- package/src/teamcity-client/models/test-run-metadata.ts +36 -0
- package/src/teamcity-client/models/tests.ts +57 -0
- package/src/teamcity-client/models/token.ts +54 -0
- package/src/teamcity-client/models/tokens.ts +36 -0
- package/src/teamcity-client/models/trigger.ts +75 -0
- package/src/teamcity-client/models/triggered-by.ts +87 -0
- package/src/teamcity-client/models/triggers.ts +36 -0
- package/src/teamcity-client/models/type.ts +27 -0
- package/src/teamcity-client/models/typed-value-set.ts +60 -0
- package/src/teamcity-client/models/typed-value-sets.ts +36 -0
- package/src/teamcity-client/models/typed-value.ts +39 -0
- package/src/teamcity-client/models/user-approval-rule.ts +36 -0
- package/src/teamcity-client/models/user-approvals.ts +36 -0
- package/src/teamcity-client/models/user-avatars.ts +63 -0
- package/src/teamcity-client/models/user-group-locator.ts +39 -0
- package/src/teamcity-client/models/user-locator.ts +93 -0
- package/src/teamcity-client/models/user.ts +123 -0
- package/src/teamcity-client/models/users.ts +36 -0
- package/src/teamcity-client/models/vcs-check-status.ts +39 -0
- package/src/teamcity-client/models/vcs-label.ts +65 -0
- package/src/teamcity-client/models/vcs-labels.ts +36 -0
- package/src/teamcity-client/models/vcs-root-entries.ts +36 -0
- package/src/teamcity-client/models/vcs-root-entry.ts +48 -0
- package/src/teamcity-client/models/vcs-root-instance-locator.ts +124 -0
- package/src/teamcity-client/models/vcs-root-instance.ts +132 -0
- package/src/teamcity-client/models/vcs-root-instances.ts +54 -0
- package/src/teamcity-client/models/vcs-root-locator.ts +118 -0
- package/src/teamcity-client/models/vcs-root.ts +111 -0
- package/src/teamcity-client/models/vcs-roots.ts +54 -0
- package/src/teamcity-client/models/vcs-status.ts +36 -0
- package/src/teamcity-client/models/versioned-settings-config.ts +111 -0
- package/src/teamcity-client/models/versioned-settings-context-parameter.ts +33 -0
- package/src/teamcity-client/models/versioned-settings-context-parameters.ts +30 -0
- package/src/teamcity-client/models/versioned-settings-error.ts +45 -0
- package/src/teamcity-client/models/versioned-settings-status.ts +68 -0
- package/src/teamcity-client/models/versioned-settings-token.ts +39 -0
- package/src/teamcity-client/models/versioned-settings-tokens.ts +30 -0
- package/src/teamcity-client/package.json +33 -0
- package/src/teamcity-client/tsconfig.esm.json +7 -0
- package/src/teamcity-client/tsconfig.json +13 -0
- package/src/teamcity-client-types.d.ts +27 -0
- package/src/tools/index.ts +2 -0
- package/src/tools.ts +2890 -0
- package/src/types/config.ts +140 -0
- package/src/types/index.ts +171 -0
- package/src/types/mcp.ts +80 -0
- package/src/types/project.ts +128 -0
- package/src/types/teamcity.ts +289 -0
- package/src/utils/async/index.test.ts +664 -0
- package/src/utils/async/index.ts +578 -0
- package/src/utils/error-logger.test.ts +173 -0
- package/src/utils/error-logger.ts +145 -0
- package/src/utils/index.ts +88 -0
- package/src/utils/logger/index.test.ts +271 -0
- package/src/utils/logger/index.ts +441 -0
- package/src/utils/logger.ts +49 -0
- package/src/utils/lru-cache.ts +105 -0
- package/src/utils/mcp.ts +84 -0
- package/src/utils/validation.ts +284 -0
- package/tests/__mocks__/@modelcontextprotocol/sdk/server/index.js +31 -0
- package/tests/__mocks__/@modelcontextprotocol/sdk/server/stdio.js +12 -0
- package/tests/__mocks__/@modelcontextprotocol/sdk/types.js +16 -0
- package/tests/development-tooling.test.ts +207 -0
- package/tests/e2e/cleanup.ts +68 -0
- package/tests/e2e/index.ts +166 -0
- package/tests/e2e/mcp-client.ts +73 -0
- package/tests/e2e/setup-playground.ts +67 -0
- package/tests/integration/branches-and-queue-scenario.test.ts +108 -0
- package/tests/integration/build-config-clone-update-scenario.test.ts +80 -0
- package/tests/integration/build-results-and-logs-scenario.test.ts +136 -0
- package/tests/integration/dev-tools-list.test.ts +103 -0
- package/tests/integration/e2e-scenario.test.ts +147 -0
- package/tests/integration/lib/mcp-runner.ts +59 -0
- package/tests/integration/parameters-scenario.test.ts +85 -0
- package/tests/integration/pause-configs-scenario.test.ts +74 -0
- package/tests/integration/queue-maintenance-scenario.test.ts +132 -0
- package/tests/integration/server-health-scenario.test.ts +59 -0
- package/tests/integration/triggers-scenario.test.ts +80 -0
- package/tests/integration/vcs-scenario.test.ts +78 -0
- package/tests/jest.test.js +122 -0
- package/tests/mcp-server.test.ts +378 -0
- package/tests/setup.test.js +97 -0
- package/tests/setup.ts +88 -0
- package/tests/swagger/swagger-fetcher.test.ts +619 -0
- package/tests/teamcity/auth.test.ts +276 -0
- package/tests/teamcity/circuit-breaker.test.ts +304 -0
- package/tests/teamcity/errors.test.ts +221 -0
- package/tests/test-utils/mock-logger.ts +15 -0
- package/tests/test-utils/mock-teamcity-client.ts +403 -0
- package/tests/testing-infrastructure.test.ts +209 -0
- package/tests/tooling.test.js +118 -0
- package/tests/types/shims.d.ts +20 -0
- package/tests/types/tool-results.ts +68 -0
- package/tests/typescript.test.js +108 -0
- package/tests/unit/mcp/server-lifecycle.test.ts +301 -0
- package/tests/unit/middleware/error.test.ts +283 -0
- package/tests/unit/server.test.ts +102 -0
- package/tests/unit/swagger/swagger-manager.test.ts +89 -0
- package/tests/unit/teamcity/artifact-manager.test.ts +450 -0
- package/tests/unit/teamcity/branch-discovery-manager.test.ts +561 -0
- package/tests/unit/teamcity/branch-filtering-service.test.ts +481 -0
- package/tests/unit/teamcity/branch-specification-parser.test.ts +443 -0
- package/tests/unit/teamcity/build-config-navigator-more.test.ts +245 -0
- package/tests/unit/teamcity/build-config-navigator.test.ts +1452 -0
- package/tests/unit/teamcity/build-configuration-manager.test.ts +750 -0
- package/tests/unit/teamcity/build-configuration-resolver.test.ts +659 -0
- package/tests/unit/teamcity/build-list-manager.test.ts +574 -0
- package/tests/unit/teamcity/build-parameters-manager.test.ts +712 -0
- package/tests/unit/teamcity/build-progress-tracker.test.ts +1030 -0
- package/tests/unit/teamcity/build-query-builder.test.ts +311 -0
- package/tests/unit/teamcity/build-queue-manager.test.ts +879 -0
- package/tests/unit/teamcity/build-results-manager.test.ts +630 -0
- package/tests/unit/teamcity/build-status-manager.test.ts +640 -0
- package/tests/unit/teamcity/build-step-manager.test.ts +886 -0
- package/tests/unit/teamcity/build-trigger-manager.test.ts +1052 -0
- package/tests/unit/teamcity/configuration-branch-matcher.test.ts +692 -0
- package/tests/unit/teamcity/pagination.test.ts +118 -0
- package/tests/unit/teamcity/project-list-manager.test.ts +118 -0
- package/tests/unit/teamcity/project-manager-branches.test.ts +176 -0
- package/tests/unit/teamcity/project-manager-more.test.ts +90 -0
- package/tests/unit/teamcity/project-manager.test.ts +189 -0
- package/tests/unit/teamcity/project-navigator-branches.test.ts +168 -0
- package/tests/unit/teamcity/project-navigator-more.test.ts +58 -0
- package/tests/unit/teamcity/project-navigator.test.ts +791 -0
- package/tests/unit/teamcity/test-problem-reporter-trend-patterns.test.ts +80 -0
- package/tests/unit/teamcity/test-problem-reporter.test.ts +551 -0
- package/tests/unit/tools/agent-vcs-admin.test.ts +121 -0
- package/tests/unit/tools/availability-and-queue.test.ts +118 -0
- package/tests/unit/tools/branches-vcs-agents.test.ts +119 -0
- package/tests/unit/tools/build-actions-and-status.test.ts +125 -0
- package/tests/unit/tools/bulk-surface-coverage.test.ts +116 -0
- package/tests/unit/tools/compatibility-lookups.test.ts +150 -0
- package/tests/unit/tools/fetch-build-log-ambiguity.test.ts +70 -0
- package/tests/unit/tools/fetch-build-log-by-number.test.ts +66 -0
- package/tests/unit/tools/fetch-build-log-pagination.test.ts +73 -0
- package/tests/unit/tools/fetch-build-log-tail.test.ts +33 -0
- package/tests/unit/tools/get-status-and-results.test.ts +67 -0
- package/tests/unit/tools/list-branches-and-parameters.test.ts +36 -0
- package/tests/unit/tools/list-build-configs-pagination.test.ts +39 -0
- package/tests/unit/tools/list-builds-pagination.test.ts +45 -0
- package/tests/unit/tools/list-pagination-all.test.ts +259 -0
- package/tests/unit/tools/list-projects-pagination.test.ts +39 -0
- package/tests/unit/tools/parameters-and-steps-triggers.test.ts +176 -0
- package/tests/unit/tools/project-build-crud.test.ts +110 -0
- package/tests/unit/tools/project-hierarchy.test.ts +46 -0
- package/tests/unit/tools/queue-maintenance.test.ts +130 -0
- package/tests/unit/tools/server-health-and-metrics.test.ts +134 -0
- package/tests/unit/tools/simple-getters.test.ts +88 -0
- package/tests/unit/tools/update_project_settings.test.ts +64 -0
- package/tests/unit/utils/lru-cache.test.ts +77 -0
- package/tests/unit/utils/mcp.test.ts +82 -0
- package/tests/unit/utils/runTool.test.ts +38 -0
- package/tests/unit/utils/validation.test.ts +168 -0
- package/tsconfig.build.json +28 -0
- package/tsconfig.json +60 -0
- package/tsconfig.lint.json +13 -0
|
@@ -0,0 +1,1837 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* TeamCity REST API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2018.1 (current)
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import type { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from 'axios';
|
|
15
|
+
import globalAxios from 'axios';
|
|
16
|
+
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import {
|
|
19
|
+
BASE_PATH,
|
|
20
|
+
BaseAPI,
|
|
21
|
+
COLLECTION_FORMATS,
|
|
22
|
+
type RequestArgs,
|
|
23
|
+
RequiredError,
|
|
24
|
+
operationServerMap,
|
|
25
|
+
} from '../base';
|
|
26
|
+
// Some imports not used depending on template conditions
|
|
27
|
+
// @ts-ignore
|
|
28
|
+
import {
|
|
29
|
+
DUMMY_BASE_URL,
|
|
30
|
+
assertParamExists,
|
|
31
|
+
createRequestFunction,
|
|
32
|
+
serializeDataIfNeeded,
|
|
33
|
+
setApiKeyToObject,
|
|
34
|
+
setBasicAuthToObject,
|
|
35
|
+
setBearerAuthToObject,
|
|
36
|
+
setOAuthToObject,
|
|
37
|
+
setSearchParams,
|
|
38
|
+
toPathString,
|
|
39
|
+
} from '../common';
|
|
40
|
+
import type { Configuration } from '../configuration';
|
|
41
|
+
// @ts-ignore
|
|
42
|
+
import type { Properties } from '../models';
|
|
43
|
+
// @ts-ignore
|
|
44
|
+
import type { VcsRoot } from '../models';
|
|
45
|
+
// @ts-ignore
|
|
46
|
+
import type { VcsRootInstances } from '../models';
|
|
47
|
+
// @ts-ignore
|
|
48
|
+
import type { VcsRoots } from '../models';
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* VcsRootApi - axios parameter creator
|
|
52
|
+
* @export
|
|
53
|
+
*/
|
|
54
|
+
export const VcsRootApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
55
|
+
return {
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @summary Add a new VCS root.
|
|
59
|
+
* @param {string} [fields]
|
|
60
|
+
* @param {VcsRoot} [body]
|
|
61
|
+
* @param {*} [options] Override http request option.
|
|
62
|
+
* @throws {RequiredError}
|
|
63
|
+
*/
|
|
64
|
+
addVcsRoot: async (
|
|
65
|
+
fields?: string,
|
|
66
|
+
body?: VcsRoot,
|
|
67
|
+
options: RawAxiosRequestConfig = {}
|
|
68
|
+
): Promise<RequestArgs> => {
|
|
69
|
+
const localVarPath = `/app/rest/vcs-roots`;
|
|
70
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
71
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
72
|
+
let baseOptions;
|
|
73
|
+
if (configuration) {
|
|
74
|
+
baseOptions = configuration.baseOptions;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
78
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
79
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
80
|
+
|
|
81
|
+
if (fields !== undefined) {
|
|
82
|
+
localVarQueryParameter['fields'] = String(fields);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
localVarHeaderParameter['Content-Type'] = 'application/xml';
|
|
86
|
+
|
|
87
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
88
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
89
|
+
localVarRequestOptions.headers = {
|
|
90
|
+
...localVarHeaderParameter,
|
|
91
|
+
...headersFromBaseOptions,
|
|
92
|
+
...options["headers"],
|
|
93
|
+
};
|
|
94
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
95
|
+
body,
|
|
96
|
+
localVarRequestOptions,
|
|
97
|
+
configuration
|
|
98
|
+
);
|
|
99
|
+
|
|
100
|
+
return {
|
|
101
|
+
url: toPathString(localVarUrlObj),
|
|
102
|
+
options: localVarRequestOptions,
|
|
103
|
+
};
|
|
104
|
+
},
|
|
105
|
+
/**
|
|
106
|
+
*
|
|
107
|
+
* @summary Delete all properties of the matching VCS root.
|
|
108
|
+
* @param {string} vcsRootLocator
|
|
109
|
+
* @param {*} [options] Override http request option.
|
|
110
|
+
* @throws {RequiredError}
|
|
111
|
+
*/
|
|
112
|
+
deleteAllVcsRootProperties: async (
|
|
113
|
+
vcsRootLocator: string,
|
|
114
|
+
options: RawAxiosRequestConfig = {}
|
|
115
|
+
): Promise<RequestArgs> => {
|
|
116
|
+
// verify required parameter 'vcsRootLocator' is not null or undefined
|
|
117
|
+
assertParamExists('deleteAllVcsRootProperties', 'vcsRootLocator', vcsRootLocator);
|
|
118
|
+
const localVarPath = `/app/rest/vcs-roots/{vcsRootLocator}/properties`.replace(
|
|
119
|
+
`{${'vcsRootLocator'}}`,
|
|
120
|
+
encodeURIComponent(String(vcsRootLocator))
|
|
121
|
+
);
|
|
122
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
123
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
124
|
+
let baseOptions;
|
|
125
|
+
if (configuration) {
|
|
126
|
+
baseOptions = configuration.baseOptions;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
130
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
131
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
132
|
+
|
|
133
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
134
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
135
|
+
localVarRequestOptions.headers = {
|
|
136
|
+
...localVarHeaderParameter,
|
|
137
|
+
...headersFromBaseOptions,
|
|
138
|
+
...options["headers"],
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
return {
|
|
142
|
+
url: toPathString(localVarUrlObj),
|
|
143
|
+
options: localVarRequestOptions,
|
|
144
|
+
};
|
|
145
|
+
},
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @summary Remove VCS root matching the locator.
|
|
149
|
+
* @param {string} vcsRootLocator
|
|
150
|
+
* @param {*} [options] Override http request option.
|
|
151
|
+
* @throws {RequiredError}
|
|
152
|
+
*/
|
|
153
|
+
deleteVcsRoot: async (
|
|
154
|
+
vcsRootLocator: string,
|
|
155
|
+
options: RawAxiosRequestConfig = {}
|
|
156
|
+
): Promise<RequestArgs> => {
|
|
157
|
+
// verify required parameter 'vcsRootLocator' is not null or undefined
|
|
158
|
+
assertParamExists('deleteVcsRoot', 'vcsRootLocator', vcsRootLocator);
|
|
159
|
+
const localVarPath = `/app/rest/vcs-roots/{vcsRootLocator}`.replace(
|
|
160
|
+
`{${'vcsRootLocator'}}`,
|
|
161
|
+
encodeURIComponent(String(vcsRootLocator))
|
|
162
|
+
);
|
|
163
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
164
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
165
|
+
let baseOptions;
|
|
166
|
+
if (configuration) {
|
|
167
|
+
baseOptions = configuration.baseOptions;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
171
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
172
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
173
|
+
|
|
174
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
175
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
176
|
+
localVarRequestOptions.headers = {
|
|
177
|
+
...localVarHeaderParameter,
|
|
178
|
+
...headersFromBaseOptions,
|
|
179
|
+
...options["headers"],
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
return {
|
|
183
|
+
url: toPathString(localVarUrlObj),
|
|
184
|
+
options: localVarRequestOptions,
|
|
185
|
+
};
|
|
186
|
+
},
|
|
187
|
+
/**
|
|
188
|
+
*
|
|
189
|
+
* @summary Delete a property of the matching VCS root.
|
|
190
|
+
* @param {string} vcsRootLocator
|
|
191
|
+
* @param {string} name
|
|
192
|
+
* @param {*} [options] Override http request option.
|
|
193
|
+
* @throws {RequiredError}
|
|
194
|
+
*/
|
|
195
|
+
deleteVcsRootProperty: async (
|
|
196
|
+
vcsRootLocator: string,
|
|
197
|
+
name: string,
|
|
198
|
+
options: RawAxiosRequestConfig = {}
|
|
199
|
+
): Promise<RequestArgs> => {
|
|
200
|
+
// verify required parameter 'vcsRootLocator' is not null or undefined
|
|
201
|
+
assertParamExists('deleteVcsRootProperty', 'vcsRootLocator', vcsRootLocator);
|
|
202
|
+
// verify required parameter 'name' is not null or undefined
|
|
203
|
+
assertParamExists('deleteVcsRootProperty', 'name', name);
|
|
204
|
+
const localVarPath = `/app/rest/vcs-roots/{vcsRootLocator}/properties/{name}`
|
|
205
|
+
.replace(`{${'vcsRootLocator'}}`, encodeURIComponent(String(vcsRootLocator)))
|
|
206
|
+
.replace(`{${'name'}}`, encodeURIComponent(String(name)));
|
|
207
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
208
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
209
|
+
let baseOptions;
|
|
210
|
+
if (configuration) {
|
|
211
|
+
baseOptions = configuration.baseOptions;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
215
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
216
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
217
|
+
|
|
218
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
219
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
220
|
+
localVarRequestOptions.headers = {
|
|
221
|
+
...localVarHeaderParameter,
|
|
222
|
+
...headersFromBaseOptions,
|
|
223
|
+
...options["headers"],
|
|
224
|
+
};
|
|
225
|
+
|
|
226
|
+
return {
|
|
227
|
+
url: toPathString(localVarUrlObj),
|
|
228
|
+
options: localVarRequestOptions,
|
|
229
|
+
};
|
|
230
|
+
},
|
|
231
|
+
/**
|
|
232
|
+
*
|
|
233
|
+
* @summary Get all properties of the matching VCS root.
|
|
234
|
+
* @param {string} vcsRootLocator
|
|
235
|
+
* @param {string} [fields]
|
|
236
|
+
* @param {*} [options] Override http request option.
|
|
237
|
+
* @throws {RequiredError}
|
|
238
|
+
*/
|
|
239
|
+
getAllVcsRootProperties: async (
|
|
240
|
+
vcsRootLocator: string,
|
|
241
|
+
fields?: string,
|
|
242
|
+
options: RawAxiosRequestConfig = {}
|
|
243
|
+
): Promise<RequestArgs> => {
|
|
244
|
+
// verify required parameter 'vcsRootLocator' is not null or undefined
|
|
245
|
+
assertParamExists('getAllVcsRootProperties', 'vcsRootLocator', vcsRootLocator);
|
|
246
|
+
const localVarPath = `/app/rest/vcs-roots/{vcsRootLocator}/properties`.replace(
|
|
247
|
+
`{${'vcsRootLocator'}}`,
|
|
248
|
+
encodeURIComponent(String(vcsRootLocator))
|
|
249
|
+
);
|
|
250
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
251
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
252
|
+
let baseOptions;
|
|
253
|
+
if (configuration) {
|
|
254
|
+
baseOptions = configuration.baseOptions;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
258
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
259
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
260
|
+
|
|
261
|
+
if (fields !== undefined) {
|
|
262
|
+
localVarQueryParameter['fields'] = String(fields);
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
266
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
267
|
+
localVarRequestOptions.headers = {
|
|
268
|
+
...localVarHeaderParameter,
|
|
269
|
+
...headersFromBaseOptions,
|
|
270
|
+
...options["headers"],
|
|
271
|
+
};
|
|
272
|
+
|
|
273
|
+
return {
|
|
274
|
+
url: toPathString(localVarUrlObj),
|
|
275
|
+
options: localVarRequestOptions,
|
|
276
|
+
};
|
|
277
|
+
},
|
|
278
|
+
/**
|
|
279
|
+
*
|
|
280
|
+
* @summary Get all VCS roots.
|
|
281
|
+
* @param {string} [locator]
|
|
282
|
+
* @param {string} [fields]
|
|
283
|
+
* @param {*} [options] Override http request option.
|
|
284
|
+
* @throws {RequiredError}
|
|
285
|
+
*/
|
|
286
|
+
getAllVcsRoots: async (
|
|
287
|
+
locator?: string,
|
|
288
|
+
fields?: string,
|
|
289
|
+
options: RawAxiosRequestConfig = {}
|
|
290
|
+
): Promise<RequestArgs> => {
|
|
291
|
+
const localVarPath = `/app/rest/vcs-roots`;
|
|
292
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
293
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
294
|
+
let baseOptions;
|
|
295
|
+
if (configuration) {
|
|
296
|
+
baseOptions = configuration.baseOptions;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
300
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
301
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
302
|
+
|
|
303
|
+
if (locator !== undefined) {
|
|
304
|
+
localVarQueryParameter['locator'] = String(locator);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
if (fields !== undefined) {
|
|
308
|
+
localVarQueryParameter['fields'] = String(fields);
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
312
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
313
|
+
localVarRequestOptions.headers = {
|
|
314
|
+
...localVarHeaderParameter,
|
|
315
|
+
...headersFromBaseOptions,
|
|
316
|
+
...options["headers"],
|
|
317
|
+
};
|
|
318
|
+
|
|
319
|
+
return {
|
|
320
|
+
url: toPathString(localVarUrlObj),
|
|
321
|
+
options: localVarRequestOptions,
|
|
322
|
+
};
|
|
323
|
+
},
|
|
324
|
+
/**
|
|
325
|
+
*
|
|
326
|
+
* @summary Get root endpoints.
|
|
327
|
+
* @param {string} vcsRootLocator
|
|
328
|
+
* @param {string} [fields]
|
|
329
|
+
* @param {*} [options] Override http request option.
|
|
330
|
+
* @throws {RequiredError}
|
|
331
|
+
*/
|
|
332
|
+
getRootEndpoints: async (
|
|
333
|
+
vcsRootLocator: string,
|
|
334
|
+
fields?: string,
|
|
335
|
+
options: RawAxiosRequestConfig = {}
|
|
336
|
+
): Promise<RequestArgs> => {
|
|
337
|
+
// verify required parameter 'vcsRootLocator' is not null or undefined
|
|
338
|
+
assertParamExists('getRootEndpoints', 'vcsRootLocator', vcsRootLocator);
|
|
339
|
+
const localVarPath = `/app/rest/vcs-roots/{vcsRootLocator}`.replace(
|
|
340
|
+
`{${'vcsRootLocator'}}`,
|
|
341
|
+
encodeURIComponent(String(vcsRootLocator))
|
|
342
|
+
);
|
|
343
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
344
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
345
|
+
let baseOptions;
|
|
346
|
+
if (configuration) {
|
|
347
|
+
baseOptions = configuration.baseOptions;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
351
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
352
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
353
|
+
|
|
354
|
+
if (fields !== undefined) {
|
|
355
|
+
localVarQueryParameter['fields'] = String(fields);
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
359
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
360
|
+
localVarRequestOptions.headers = {
|
|
361
|
+
...localVarHeaderParameter,
|
|
362
|
+
...headersFromBaseOptions,
|
|
363
|
+
...options["headers"],
|
|
364
|
+
};
|
|
365
|
+
|
|
366
|
+
return {
|
|
367
|
+
url: toPathString(localVarUrlObj),
|
|
368
|
+
options: localVarRequestOptions,
|
|
369
|
+
};
|
|
370
|
+
},
|
|
371
|
+
/**
|
|
372
|
+
*
|
|
373
|
+
* @summary Get a field of the matching VCS root.
|
|
374
|
+
* @param {string} vcsRootLocator
|
|
375
|
+
* @param {string} field
|
|
376
|
+
* @param {*} [options] Override http request option.
|
|
377
|
+
* @throws {RequiredError}
|
|
378
|
+
*/
|
|
379
|
+
getVcsRootField: async (
|
|
380
|
+
vcsRootLocator: string,
|
|
381
|
+
field: string,
|
|
382
|
+
options: RawAxiosRequestConfig = {}
|
|
383
|
+
): Promise<RequestArgs> => {
|
|
384
|
+
// verify required parameter 'vcsRootLocator' is not null or undefined
|
|
385
|
+
assertParamExists('getVcsRootField', 'vcsRootLocator', vcsRootLocator);
|
|
386
|
+
// verify required parameter 'field' is not null or undefined
|
|
387
|
+
assertParamExists('getVcsRootField', 'field', field);
|
|
388
|
+
const localVarPath = `/app/rest/vcs-roots/{vcsRootLocator}/{field}`
|
|
389
|
+
.replace(`{${'vcsRootLocator'}}`, encodeURIComponent(String(vcsRootLocator)))
|
|
390
|
+
.replace(`{${'field'}}`, encodeURIComponent(String(field)));
|
|
391
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
392
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
393
|
+
let baseOptions;
|
|
394
|
+
if (configuration) {
|
|
395
|
+
baseOptions = configuration.baseOptions;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
399
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
400
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
401
|
+
|
|
402
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
403
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
404
|
+
localVarRequestOptions.headers = {
|
|
405
|
+
...localVarHeaderParameter,
|
|
406
|
+
...headersFromBaseOptions,
|
|
407
|
+
...options["headers"],
|
|
408
|
+
};
|
|
409
|
+
|
|
410
|
+
return {
|
|
411
|
+
url: toPathString(localVarUrlObj),
|
|
412
|
+
options: localVarRequestOptions,
|
|
413
|
+
};
|
|
414
|
+
},
|
|
415
|
+
/**
|
|
416
|
+
*
|
|
417
|
+
* @summary Get all VCS root instances of the matching VCS root.
|
|
418
|
+
* @param {string} vcsRootLocator
|
|
419
|
+
* @param {string} [fields]
|
|
420
|
+
* @param {*} [options] Override http request option.
|
|
421
|
+
* @throws {RequiredError}
|
|
422
|
+
*/
|
|
423
|
+
getVcsRootInstances: async (
|
|
424
|
+
vcsRootLocator: string,
|
|
425
|
+
fields?: string,
|
|
426
|
+
options: RawAxiosRequestConfig = {}
|
|
427
|
+
): Promise<RequestArgs> => {
|
|
428
|
+
// verify required parameter 'vcsRootLocator' is not null or undefined
|
|
429
|
+
assertParamExists('getVcsRootInstances', 'vcsRootLocator', vcsRootLocator);
|
|
430
|
+
const localVarPath = `/app/rest/vcs-roots/{vcsRootLocator}/instances`.replace(
|
|
431
|
+
`{${'vcsRootLocator'}}`,
|
|
432
|
+
encodeURIComponent(String(vcsRootLocator))
|
|
433
|
+
);
|
|
434
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
435
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
436
|
+
let baseOptions;
|
|
437
|
+
if (configuration) {
|
|
438
|
+
baseOptions = configuration.baseOptions;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
442
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
443
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
444
|
+
|
|
445
|
+
if (fields !== undefined) {
|
|
446
|
+
localVarQueryParameter['fields'] = String(fields);
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
450
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
451
|
+
localVarRequestOptions.headers = {
|
|
452
|
+
...localVarHeaderParameter,
|
|
453
|
+
...headersFromBaseOptions,
|
|
454
|
+
...options["headers"],
|
|
455
|
+
};
|
|
456
|
+
|
|
457
|
+
return {
|
|
458
|
+
url: toPathString(localVarUrlObj),
|
|
459
|
+
options: localVarRequestOptions,
|
|
460
|
+
};
|
|
461
|
+
},
|
|
462
|
+
/**
|
|
463
|
+
*
|
|
464
|
+
* @summary Get a property on the matching VCS root.
|
|
465
|
+
* @param {string} vcsRootLocator
|
|
466
|
+
* @param {string} name
|
|
467
|
+
* @param {*} [options] Override http request option.
|
|
468
|
+
* @throws {RequiredError}
|
|
469
|
+
*/
|
|
470
|
+
getVcsRootProperty: async (
|
|
471
|
+
vcsRootLocator: string,
|
|
472
|
+
name: string,
|
|
473
|
+
options: RawAxiosRequestConfig = {}
|
|
474
|
+
): Promise<RequestArgs> => {
|
|
475
|
+
// verify required parameter 'vcsRootLocator' is not null or undefined
|
|
476
|
+
assertParamExists('getVcsRootProperty', 'vcsRootLocator', vcsRootLocator);
|
|
477
|
+
// verify required parameter 'name' is not null or undefined
|
|
478
|
+
assertParamExists('getVcsRootProperty', 'name', name);
|
|
479
|
+
const localVarPath = `/app/rest/vcs-roots/{vcsRootLocator}/properties/{name}`
|
|
480
|
+
.replace(`{${'vcsRootLocator'}}`, encodeURIComponent(String(vcsRootLocator)))
|
|
481
|
+
.replace(`{${'name'}}`, encodeURIComponent(String(name)));
|
|
482
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
483
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
484
|
+
let baseOptions;
|
|
485
|
+
if (configuration) {
|
|
486
|
+
baseOptions = configuration.baseOptions;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
490
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
491
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
492
|
+
|
|
493
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
494
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
495
|
+
localVarRequestOptions.headers = {
|
|
496
|
+
...localVarHeaderParameter,
|
|
497
|
+
...headersFromBaseOptions,
|
|
498
|
+
...options["headers"],
|
|
499
|
+
};
|
|
500
|
+
|
|
501
|
+
return {
|
|
502
|
+
url: toPathString(localVarUrlObj),
|
|
503
|
+
options: localVarRequestOptions,
|
|
504
|
+
};
|
|
505
|
+
},
|
|
506
|
+
/**
|
|
507
|
+
*
|
|
508
|
+
* @summary Get the settings file of the matching VCS root.
|
|
509
|
+
* @param {string} vcsRootLocator
|
|
510
|
+
* @param {*} [options] Override http request option.
|
|
511
|
+
* @throws {RequiredError}
|
|
512
|
+
*/
|
|
513
|
+
getVcsRootSettingsFile: async (
|
|
514
|
+
vcsRootLocator: string,
|
|
515
|
+
options: RawAxiosRequestConfig = {}
|
|
516
|
+
): Promise<RequestArgs> => {
|
|
517
|
+
// verify required parameter 'vcsRootLocator' is not null or undefined
|
|
518
|
+
assertParamExists('getVcsRootSettingsFile', 'vcsRootLocator', vcsRootLocator);
|
|
519
|
+
const localVarPath = `/app/rest/vcs-roots/{vcsRootLocator}/settingsFile`.replace(
|
|
520
|
+
`{${'vcsRootLocator'}}`,
|
|
521
|
+
encodeURIComponent(String(vcsRootLocator))
|
|
522
|
+
);
|
|
523
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
524
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
525
|
+
let baseOptions;
|
|
526
|
+
if (configuration) {
|
|
527
|
+
baseOptions = configuration.baseOptions;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
531
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
532
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
533
|
+
|
|
534
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
535
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
536
|
+
localVarRequestOptions.headers = {
|
|
537
|
+
...localVarHeaderParameter,
|
|
538
|
+
...headersFromBaseOptions,
|
|
539
|
+
...options["headers"],
|
|
540
|
+
};
|
|
541
|
+
|
|
542
|
+
return {
|
|
543
|
+
url: toPathString(localVarUrlObj),
|
|
544
|
+
options: localVarRequestOptions,
|
|
545
|
+
};
|
|
546
|
+
},
|
|
547
|
+
/**
|
|
548
|
+
*
|
|
549
|
+
* @summary Update a field of the matching VCS root.
|
|
550
|
+
* @param {string} vcsRootLocator
|
|
551
|
+
* @param {string} field
|
|
552
|
+
* @param {string} [body]
|
|
553
|
+
* @param {*} [options] Override http request option.
|
|
554
|
+
* @throws {RequiredError}
|
|
555
|
+
*/
|
|
556
|
+
setVcsRootField: async (
|
|
557
|
+
vcsRootLocator: string,
|
|
558
|
+
field: string,
|
|
559
|
+
body?: string,
|
|
560
|
+
options: RawAxiosRequestConfig = {}
|
|
561
|
+
): Promise<RequestArgs> => {
|
|
562
|
+
// verify required parameter 'vcsRootLocator' is not null or undefined
|
|
563
|
+
assertParamExists('setVcsRootField', 'vcsRootLocator', vcsRootLocator);
|
|
564
|
+
// verify required parameter 'field' is not null or undefined
|
|
565
|
+
assertParamExists('setVcsRootField', 'field', field);
|
|
566
|
+
const localVarPath = `/app/rest/vcs-roots/{vcsRootLocator}/{field}`
|
|
567
|
+
.replace(`{${'vcsRootLocator'}}`, encodeURIComponent(String(vcsRootLocator)))
|
|
568
|
+
.replace(`{${'field'}}`, encodeURIComponent(String(field)));
|
|
569
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
570
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
571
|
+
let baseOptions;
|
|
572
|
+
if (configuration) {
|
|
573
|
+
baseOptions = configuration.baseOptions;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options };
|
|
577
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
578
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
579
|
+
|
|
580
|
+
localVarHeaderParameter['Content-Type'] = 'text/plain';
|
|
581
|
+
|
|
582
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
583
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
584
|
+
localVarRequestOptions.headers = {
|
|
585
|
+
...localVarHeaderParameter,
|
|
586
|
+
...headersFromBaseOptions,
|
|
587
|
+
...options["headers"],
|
|
588
|
+
};
|
|
589
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
590
|
+
body,
|
|
591
|
+
localVarRequestOptions,
|
|
592
|
+
configuration
|
|
593
|
+
);
|
|
594
|
+
|
|
595
|
+
return {
|
|
596
|
+
url: toPathString(localVarUrlObj),
|
|
597
|
+
options: localVarRequestOptions,
|
|
598
|
+
};
|
|
599
|
+
},
|
|
600
|
+
/**
|
|
601
|
+
*
|
|
602
|
+
* @summary Update all properties of the matching VCS root.
|
|
603
|
+
* @param {string} vcsRootLocator
|
|
604
|
+
* @param {string} [fields]
|
|
605
|
+
* @param {Properties} [body]
|
|
606
|
+
* @param {*} [options] Override http request option.
|
|
607
|
+
* @throws {RequiredError}
|
|
608
|
+
*/
|
|
609
|
+
setVcsRootProperties: async (
|
|
610
|
+
vcsRootLocator: string,
|
|
611
|
+
fields?: string,
|
|
612
|
+
body?: Properties,
|
|
613
|
+
options: RawAxiosRequestConfig = {}
|
|
614
|
+
): Promise<RequestArgs> => {
|
|
615
|
+
// verify required parameter 'vcsRootLocator' is not null or undefined
|
|
616
|
+
assertParamExists('setVcsRootProperties', 'vcsRootLocator', vcsRootLocator);
|
|
617
|
+
const localVarPath = `/app/rest/vcs-roots/{vcsRootLocator}/properties`.replace(
|
|
618
|
+
`{${'vcsRootLocator'}}`,
|
|
619
|
+
encodeURIComponent(String(vcsRootLocator))
|
|
620
|
+
);
|
|
621
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
622
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
623
|
+
let baseOptions;
|
|
624
|
+
if (configuration) {
|
|
625
|
+
baseOptions = configuration.baseOptions;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options };
|
|
629
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
630
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
631
|
+
|
|
632
|
+
if (fields !== undefined) {
|
|
633
|
+
localVarQueryParameter['fields'] = String(fields);
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
localVarHeaderParameter['Content-Type'] = 'application/xml';
|
|
637
|
+
|
|
638
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
639
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
640
|
+
localVarRequestOptions.headers = {
|
|
641
|
+
...localVarHeaderParameter,
|
|
642
|
+
...headersFromBaseOptions,
|
|
643
|
+
...options["headers"],
|
|
644
|
+
};
|
|
645
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
646
|
+
body,
|
|
647
|
+
localVarRequestOptions,
|
|
648
|
+
configuration
|
|
649
|
+
);
|
|
650
|
+
|
|
651
|
+
return {
|
|
652
|
+
url: toPathString(localVarUrlObj),
|
|
653
|
+
options: localVarRequestOptions,
|
|
654
|
+
};
|
|
655
|
+
},
|
|
656
|
+
/**
|
|
657
|
+
*
|
|
658
|
+
* @summary Update a property of the matching VCS root.
|
|
659
|
+
* @param {string} vcsRootLocator
|
|
660
|
+
* @param {string} name
|
|
661
|
+
* @param {string} [body]
|
|
662
|
+
* @param {*} [options] Override http request option.
|
|
663
|
+
* @throws {RequiredError}
|
|
664
|
+
*/
|
|
665
|
+
setVcsRootProperty: async (
|
|
666
|
+
vcsRootLocator: string,
|
|
667
|
+
name: string,
|
|
668
|
+
body?: string,
|
|
669
|
+
options: RawAxiosRequestConfig = {}
|
|
670
|
+
): Promise<RequestArgs> => {
|
|
671
|
+
// verify required parameter 'vcsRootLocator' is not null or undefined
|
|
672
|
+
assertParamExists('setVcsRootProperty', 'vcsRootLocator', vcsRootLocator);
|
|
673
|
+
// verify required parameter 'name' is not null or undefined
|
|
674
|
+
assertParamExists('setVcsRootProperty', 'name', name);
|
|
675
|
+
const localVarPath = `/app/rest/vcs-roots/{vcsRootLocator}/properties/{name}`
|
|
676
|
+
.replace(`{${'vcsRootLocator'}}`, encodeURIComponent(String(vcsRootLocator)))
|
|
677
|
+
.replace(`{${'name'}}`, encodeURIComponent(String(name)));
|
|
678
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
679
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
680
|
+
let baseOptions;
|
|
681
|
+
if (configuration) {
|
|
682
|
+
baseOptions = configuration.baseOptions;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options };
|
|
686
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
687
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
688
|
+
|
|
689
|
+
localVarHeaderParameter['Content-Type'] = 'text/plain';
|
|
690
|
+
|
|
691
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
692
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
693
|
+
localVarRequestOptions.headers = {
|
|
694
|
+
...localVarHeaderParameter,
|
|
695
|
+
...headersFromBaseOptions,
|
|
696
|
+
...options["headers"],
|
|
697
|
+
};
|
|
698
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
699
|
+
body,
|
|
700
|
+
localVarRequestOptions,
|
|
701
|
+
configuration
|
|
702
|
+
);
|
|
703
|
+
|
|
704
|
+
return {
|
|
705
|
+
url: toPathString(localVarUrlObj),
|
|
706
|
+
options: localVarRequestOptions,
|
|
707
|
+
};
|
|
708
|
+
},
|
|
709
|
+
};
|
|
710
|
+
};
|
|
711
|
+
|
|
712
|
+
/**
|
|
713
|
+
* VcsRootApi - functional programming interface
|
|
714
|
+
* @export
|
|
715
|
+
*/
|
|
716
|
+
export const VcsRootApiFp = function (configuration?: Configuration) {
|
|
717
|
+
const localVarAxiosParamCreator = VcsRootApiAxiosParamCreator(configuration);
|
|
718
|
+
return {
|
|
719
|
+
/**
|
|
720
|
+
*
|
|
721
|
+
* @summary Add a new VCS root.
|
|
722
|
+
* @param {string} [fields]
|
|
723
|
+
* @param {VcsRoot} [body]
|
|
724
|
+
* @param {*} [options] Override http request option.
|
|
725
|
+
* @throws {RequiredError}
|
|
726
|
+
*/
|
|
727
|
+
async addVcsRoot(
|
|
728
|
+
fields?: string,
|
|
729
|
+
body?: VcsRoot,
|
|
730
|
+
options?: RawAxiosRequestConfig
|
|
731
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VcsRoot>> {
|
|
732
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.addVcsRoot(fields, body, options);
|
|
733
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
734
|
+
const localVarOperationServerBasePath =
|
|
735
|
+
operationServerMap['VcsRootApi.addVcsRoot']?.[localVarOperationServerIndex]?.url;
|
|
736
|
+
return (axios, basePath) =>
|
|
737
|
+
createRequestFunction(
|
|
738
|
+
localVarAxiosArgs,
|
|
739
|
+
globalAxios,
|
|
740
|
+
BASE_PATH,
|
|
741
|
+
configuration
|
|
742
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
743
|
+
},
|
|
744
|
+
/**
|
|
745
|
+
*
|
|
746
|
+
* @summary Delete all properties of the matching VCS root.
|
|
747
|
+
* @param {string} vcsRootLocator
|
|
748
|
+
* @param {*} [options] Override http request option.
|
|
749
|
+
* @throws {RequiredError}
|
|
750
|
+
*/
|
|
751
|
+
async deleteAllVcsRootProperties(
|
|
752
|
+
vcsRootLocator: string,
|
|
753
|
+
options?: RawAxiosRequestConfig
|
|
754
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
755
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAllVcsRootProperties(
|
|
756
|
+
vcsRootLocator,
|
|
757
|
+
options
|
|
758
|
+
);
|
|
759
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
760
|
+
const localVarOperationServerBasePath =
|
|
761
|
+
operationServerMap['VcsRootApi.deleteAllVcsRootProperties']?.[localVarOperationServerIndex]
|
|
762
|
+
?.url;
|
|
763
|
+
return (axios, basePath) =>
|
|
764
|
+
createRequestFunction(
|
|
765
|
+
localVarAxiosArgs,
|
|
766
|
+
globalAxios,
|
|
767
|
+
BASE_PATH,
|
|
768
|
+
configuration
|
|
769
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
770
|
+
},
|
|
771
|
+
/**
|
|
772
|
+
*
|
|
773
|
+
* @summary Remove VCS root matching the locator.
|
|
774
|
+
* @param {string} vcsRootLocator
|
|
775
|
+
* @param {*} [options] Override http request option.
|
|
776
|
+
* @throws {RequiredError}
|
|
777
|
+
*/
|
|
778
|
+
async deleteVcsRoot(
|
|
779
|
+
vcsRootLocator: string,
|
|
780
|
+
options?: RawAxiosRequestConfig
|
|
781
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
782
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVcsRoot(
|
|
783
|
+
vcsRootLocator,
|
|
784
|
+
options
|
|
785
|
+
);
|
|
786
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
787
|
+
const localVarOperationServerBasePath =
|
|
788
|
+
operationServerMap['VcsRootApi.deleteVcsRoot']?.[localVarOperationServerIndex]?.url;
|
|
789
|
+
return (axios, basePath) =>
|
|
790
|
+
createRequestFunction(
|
|
791
|
+
localVarAxiosArgs,
|
|
792
|
+
globalAxios,
|
|
793
|
+
BASE_PATH,
|
|
794
|
+
configuration
|
|
795
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
796
|
+
},
|
|
797
|
+
/**
|
|
798
|
+
*
|
|
799
|
+
* @summary Delete a property of the matching VCS root.
|
|
800
|
+
* @param {string} vcsRootLocator
|
|
801
|
+
* @param {string} name
|
|
802
|
+
* @param {*} [options] Override http request option.
|
|
803
|
+
* @throws {RequiredError}
|
|
804
|
+
*/
|
|
805
|
+
async deleteVcsRootProperty(
|
|
806
|
+
vcsRootLocator: string,
|
|
807
|
+
name: string,
|
|
808
|
+
options?: RawAxiosRequestConfig
|
|
809
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
810
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVcsRootProperty(
|
|
811
|
+
vcsRootLocator,
|
|
812
|
+
name,
|
|
813
|
+
options
|
|
814
|
+
);
|
|
815
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
816
|
+
const localVarOperationServerBasePath =
|
|
817
|
+
operationServerMap['VcsRootApi.deleteVcsRootProperty']?.[localVarOperationServerIndex]?.url;
|
|
818
|
+
return (axios, basePath) =>
|
|
819
|
+
createRequestFunction(
|
|
820
|
+
localVarAxiosArgs,
|
|
821
|
+
globalAxios,
|
|
822
|
+
BASE_PATH,
|
|
823
|
+
configuration
|
|
824
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
825
|
+
},
|
|
826
|
+
/**
|
|
827
|
+
*
|
|
828
|
+
* @summary Get all properties of the matching VCS root.
|
|
829
|
+
* @param {string} vcsRootLocator
|
|
830
|
+
* @param {string} [fields]
|
|
831
|
+
* @param {*} [options] Override http request option.
|
|
832
|
+
* @throws {RequiredError}
|
|
833
|
+
*/
|
|
834
|
+
async getAllVcsRootProperties(
|
|
835
|
+
vcsRootLocator: string,
|
|
836
|
+
fields?: string,
|
|
837
|
+
options?: RawAxiosRequestConfig
|
|
838
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Properties>> {
|
|
839
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAllVcsRootProperties(
|
|
840
|
+
vcsRootLocator,
|
|
841
|
+
fields,
|
|
842
|
+
options
|
|
843
|
+
);
|
|
844
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
845
|
+
const localVarOperationServerBasePath =
|
|
846
|
+
operationServerMap['VcsRootApi.getAllVcsRootProperties']?.[localVarOperationServerIndex]
|
|
847
|
+
?.url;
|
|
848
|
+
return (axios, basePath) =>
|
|
849
|
+
createRequestFunction(
|
|
850
|
+
localVarAxiosArgs,
|
|
851
|
+
globalAxios,
|
|
852
|
+
BASE_PATH,
|
|
853
|
+
configuration
|
|
854
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
855
|
+
},
|
|
856
|
+
/**
|
|
857
|
+
*
|
|
858
|
+
* @summary Get all VCS roots.
|
|
859
|
+
* @param {string} [locator]
|
|
860
|
+
* @param {string} [fields]
|
|
861
|
+
* @param {*} [options] Override http request option.
|
|
862
|
+
* @throws {RequiredError}
|
|
863
|
+
*/
|
|
864
|
+
async getAllVcsRoots(
|
|
865
|
+
locator?: string,
|
|
866
|
+
fields?: string,
|
|
867
|
+
options?: RawAxiosRequestConfig
|
|
868
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VcsRoots>> {
|
|
869
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAllVcsRoots(
|
|
870
|
+
locator,
|
|
871
|
+
fields,
|
|
872
|
+
options
|
|
873
|
+
);
|
|
874
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
875
|
+
const localVarOperationServerBasePath =
|
|
876
|
+
operationServerMap['VcsRootApi.getAllVcsRoots']?.[localVarOperationServerIndex]?.url;
|
|
877
|
+
return (axios, basePath) =>
|
|
878
|
+
createRequestFunction(
|
|
879
|
+
localVarAxiosArgs,
|
|
880
|
+
globalAxios,
|
|
881
|
+
BASE_PATH,
|
|
882
|
+
configuration
|
|
883
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
884
|
+
},
|
|
885
|
+
/**
|
|
886
|
+
*
|
|
887
|
+
* @summary Get root endpoints.
|
|
888
|
+
* @param {string} vcsRootLocator
|
|
889
|
+
* @param {string} [fields]
|
|
890
|
+
* @param {*} [options] Override http request option.
|
|
891
|
+
* @throws {RequiredError}
|
|
892
|
+
*/
|
|
893
|
+
async getRootEndpoints(
|
|
894
|
+
vcsRootLocator: string,
|
|
895
|
+
fields?: string,
|
|
896
|
+
options?: RawAxiosRequestConfig
|
|
897
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VcsRoot>> {
|
|
898
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getRootEndpoints(
|
|
899
|
+
vcsRootLocator,
|
|
900
|
+
fields,
|
|
901
|
+
options
|
|
902
|
+
);
|
|
903
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
904
|
+
const localVarOperationServerBasePath =
|
|
905
|
+
operationServerMap['VcsRootApi.getRootEndpoints']?.[localVarOperationServerIndex]?.url;
|
|
906
|
+
return (axios, basePath) =>
|
|
907
|
+
createRequestFunction(
|
|
908
|
+
localVarAxiosArgs,
|
|
909
|
+
globalAxios,
|
|
910
|
+
BASE_PATH,
|
|
911
|
+
configuration
|
|
912
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
913
|
+
},
|
|
914
|
+
/**
|
|
915
|
+
*
|
|
916
|
+
* @summary Get a field of the matching VCS root.
|
|
917
|
+
* @param {string} vcsRootLocator
|
|
918
|
+
* @param {string} field
|
|
919
|
+
* @param {*} [options] Override http request option.
|
|
920
|
+
* @throws {RequiredError}
|
|
921
|
+
*/
|
|
922
|
+
async getVcsRootField(
|
|
923
|
+
vcsRootLocator: string,
|
|
924
|
+
field: string,
|
|
925
|
+
options?: RawAxiosRequestConfig
|
|
926
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
927
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVcsRootField(
|
|
928
|
+
vcsRootLocator,
|
|
929
|
+
field,
|
|
930
|
+
options
|
|
931
|
+
);
|
|
932
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
933
|
+
const localVarOperationServerBasePath =
|
|
934
|
+
operationServerMap['VcsRootApi.getVcsRootField']?.[localVarOperationServerIndex]?.url;
|
|
935
|
+
return (axios, basePath) =>
|
|
936
|
+
createRequestFunction(
|
|
937
|
+
localVarAxiosArgs,
|
|
938
|
+
globalAxios,
|
|
939
|
+
BASE_PATH,
|
|
940
|
+
configuration
|
|
941
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
942
|
+
},
|
|
943
|
+
/**
|
|
944
|
+
*
|
|
945
|
+
* @summary Get all VCS root instances of the matching VCS root.
|
|
946
|
+
* @param {string} vcsRootLocator
|
|
947
|
+
* @param {string} [fields]
|
|
948
|
+
* @param {*} [options] Override http request option.
|
|
949
|
+
* @throws {RequiredError}
|
|
950
|
+
*/
|
|
951
|
+
async getVcsRootInstances(
|
|
952
|
+
vcsRootLocator: string,
|
|
953
|
+
fields?: string,
|
|
954
|
+
options?: RawAxiosRequestConfig
|
|
955
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VcsRootInstances>> {
|
|
956
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVcsRootInstances(
|
|
957
|
+
vcsRootLocator,
|
|
958
|
+
fields,
|
|
959
|
+
options
|
|
960
|
+
);
|
|
961
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
962
|
+
const localVarOperationServerBasePath =
|
|
963
|
+
operationServerMap['VcsRootApi.getVcsRootInstances']?.[localVarOperationServerIndex]?.url;
|
|
964
|
+
return (axios, basePath) =>
|
|
965
|
+
createRequestFunction(
|
|
966
|
+
localVarAxiosArgs,
|
|
967
|
+
globalAxios,
|
|
968
|
+
BASE_PATH,
|
|
969
|
+
configuration
|
|
970
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
971
|
+
},
|
|
972
|
+
/**
|
|
973
|
+
*
|
|
974
|
+
* @summary Get a property on the matching VCS root.
|
|
975
|
+
* @param {string} vcsRootLocator
|
|
976
|
+
* @param {string} name
|
|
977
|
+
* @param {*} [options] Override http request option.
|
|
978
|
+
* @throws {RequiredError}
|
|
979
|
+
*/
|
|
980
|
+
async getVcsRootProperty(
|
|
981
|
+
vcsRootLocator: string,
|
|
982
|
+
name: string,
|
|
983
|
+
options?: RawAxiosRequestConfig
|
|
984
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
985
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVcsRootProperty(
|
|
986
|
+
vcsRootLocator,
|
|
987
|
+
name,
|
|
988
|
+
options
|
|
989
|
+
);
|
|
990
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
991
|
+
const localVarOperationServerBasePath =
|
|
992
|
+
operationServerMap['VcsRootApi.getVcsRootProperty']?.[localVarOperationServerIndex]?.url;
|
|
993
|
+
return (axios, basePath) =>
|
|
994
|
+
createRequestFunction(
|
|
995
|
+
localVarAxiosArgs,
|
|
996
|
+
globalAxios,
|
|
997
|
+
BASE_PATH,
|
|
998
|
+
configuration
|
|
999
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
1000
|
+
},
|
|
1001
|
+
/**
|
|
1002
|
+
*
|
|
1003
|
+
* @summary Get the settings file of the matching VCS root.
|
|
1004
|
+
* @param {string} vcsRootLocator
|
|
1005
|
+
* @param {*} [options] Override http request option.
|
|
1006
|
+
* @throws {RequiredError}
|
|
1007
|
+
*/
|
|
1008
|
+
async getVcsRootSettingsFile(
|
|
1009
|
+
vcsRootLocator: string,
|
|
1010
|
+
options?: RawAxiosRequestConfig
|
|
1011
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
1012
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVcsRootSettingsFile(
|
|
1013
|
+
vcsRootLocator,
|
|
1014
|
+
options
|
|
1015
|
+
);
|
|
1016
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1017
|
+
const localVarOperationServerBasePath =
|
|
1018
|
+
operationServerMap['VcsRootApi.getVcsRootSettingsFile']?.[localVarOperationServerIndex]
|
|
1019
|
+
?.url;
|
|
1020
|
+
return (axios, basePath) =>
|
|
1021
|
+
createRequestFunction(
|
|
1022
|
+
localVarAxiosArgs,
|
|
1023
|
+
globalAxios,
|
|
1024
|
+
BASE_PATH,
|
|
1025
|
+
configuration
|
|
1026
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
1027
|
+
},
|
|
1028
|
+
/**
|
|
1029
|
+
*
|
|
1030
|
+
* @summary Update a field of the matching VCS root.
|
|
1031
|
+
* @param {string} vcsRootLocator
|
|
1032
|
+
* @param {string} field
|
|
1033
|
+
* @param {string} [body]
|
|
1034
|
+
* @param {*} [options] Override http request option.
|
|
1035
|
+
* @throws {RequiredError}
|
|
1036
|
+
*/
|
|
1037
|
+
async setVcsRootField(
|
|
1038
|
+
vcsRootLocator: string,
|
|
1039
|
+
field: string,
|
|
1040
|
+
body?: string,
|
|
1041
|
+
options?: RawAxiosRequestConfig
|
|
1042
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
1043
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setVcsRootField(
|
|
1044
|
+
vcsRootLocator,
|
|
1045
|
+
field,
|
|
1046
|
+
body,
|
|
1047
|
+
options
|
|
1048
|
+
);
|
|
1049
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1050
|
+
const localVarOperationServerBasePath =
|
|
1051
|
+
operationServerMap['VcsRootApi.setVcsRootField']?.[localVarOperationServerIndex]?.url;
|
|
1052
|
+
return (axios, basePath) =>
|
|
1053
|
+
createRequestFunction(
|
|
1054
|
+
localVarAxiosArgs,
|
|
1055
|
+
globalAxios,
|
|
1056
|
+
BASE_PATH,
|
|
1057
|
+
configuration
|
|
1058
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
1059
|
+
},
|
|
1060
|
+
/**
|
|
1061
|
+
*
|
|
1062
|
+
* @summary Update all properties of the matching VCS root.
|
|
1063
|
+
* @param {string} vcsRootLocator
|
|
1064
|
+
* @param {string} [fields]
|
|
1065
|
+
* @param {Properties} [body]
|
|
1066
|
+
* @param {*} [options] Override http request option.
|
|
1067
|
+
* @throws {RequiredError}
|
|
1068
|
+
*/
|
|
1069
|
+
async setVcsRootProperties(
|
|
1070
|
+
vcsRootLocator: string,
|
|
1071
|
+
fields?: string,
|
|
1072
|
+
body?: Properties,
|
|
1073
|
+
options?: RawAxiosRequestConfig
|
|
1074
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Properties>> {
|
|
1075
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setVcsRootProperties(
|
|
1076
|
+
vcsRootLocator,
|
|
1077
|
+
fields,
|
|
1078
|
+
body,
|
|
1079
|
+
options
|
|
1080
|
+
);
|
|
1081
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1082
|
+
const localVarOperationServerBasePath =
|
|
1083
|
+
operationServerMap['VcsRootApi.setVcsRootProperties']?.[localVarOperationServerIndex]?.url;
|
|
1084
|
+
return (axios, basePath) =>
|
|
1085
|
+
createRequestFunction(
|
|
1086
|
+
localVarAxiosArgs,
|
|
1087
|
+
globalAxios,
|
|
1088
|
+
BASE_PATH,
|
|
1089
|
+
configuration
|
|
1090
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
1091
|
+
},
|
|
1092
|
+
/**
|
|
1093
|
+
*
|
|
1094
|
+
* @summary Update a property of the matching VCS root.
|
|
1095
|
+
* @param {string} vcsRootLocator
|
|
1096
|
+
* @param {string} name
|
|
1097
|
+
* @param {string} [body]
|
|
1098
|
+
* @param {*} [options] Override http request option.
|
|
1099
|
+
* @throws {RequiredError}
|
|
1100
|
+
*/
|
|
1101
|
+
async setVcsRootProperty(
|
|
1102
|
+
vcsRootLocator: string,
|
|
1103
|
+
name: string,
|
|
1104
|
+
body?: string,
|
|
1105
|
+
options?: RawAxiosRequestConfig
|
|
1106
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
1107
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setVcsRootProperty(
|
|
1108
|
+
vcsRootLocator,
|
|
1109
|
+
name,
|
|
1110
|
+
body,
|
|
1111
|
+
options
|
|
1112
|
+
);
|
|
1113
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1114
|
+
const localVarOperationServerBasePath =
|
|
1115
|
+
operationServerMap['VcsRootApi.setVcsRootProperty']?.[localVarOperationServerIndex]?.url;
|
|
1116
|
+
return (axios, basePath) =>
|
|
1117
|
+
createRequestFunction(
|
|
1118
|
+
localVarAxiosArgs,
|
|
1119
|
+
globalAxios,
|
|
1120
|
+
BASE_PATH,
|
|
1121
|
+
configuration
|
|
1122
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
1123
|
+
},
|
|
1124
|
+
};
|
|
1125
|
+
};
|
|
1126
|
+
|
|
1127
|
+
/**
|
|
1128
|
+
* VcsRootApi - factory interface
|
|
1129
|
+
* @export
|
|
1130
|
+
*/
|
|
1131
|
+
export const VcsRootApiFactory = function (
|
|
1132
|
+
configuration?: Configuration,
|
|
1133
|
+
basePath?: string,
|
|
1134
|
+
axios?: AxiosInstance
|
|
1135
|
+
) {
|
|
1136
|
+
const localVarFp = VcsRootApiFp(configuration);
|
|
1137
|
+
return {
|
|
1138
|
+
/**
|
|
1139
|
+
*
|
|
1140
|
+
* @summary Add a new VCS root.
|
|
1141
|
+
* @param {string} [fields]
|
|
1142
|
+
* @param {VcsRoot} [body]
|
|
1143
|
+
* @param {*} [options] Override http request option.
|
|
1144
|
+
* @throws {RequiredError}
|
|
1145
|
+
*/
|
|
1146
|
+
addVcsRoot(
|
|
1147
|
+
fields?: string,
|
|
1148
|
+
body?: VcsRoot,
|
|
1149
|
+
options?: RawAxiosRequestConfig
|
|
1150
|
+
): AxiosPromise<VcsRoot> {
|
|
1151
|
+
return localVarFp
|
|
1152
|
+
.addVcsRoot(fields, body, options)
|
|
1153
|
+
.then((request) => request(axios, basePath));
|
|
1154
|
+
},
|
|
1155
|
+
/**
|
|
1156
|
+
*
|
|
1157
|
+
* @summary Delete all properties of the matching VCS root.
|
|
1158
|
+
* @param {string} vcsRootLocator
|
|
1159
|
+
* @param {*} [options] Override http request option.
|
|
1160
|
+
* @throws {RequiredError}
|
|
1161
|
+
*/
|
|
1162
|
+
deleteAllVcsRootProperties(
|
|
1163
|
+
vcsRootLocator: string,
|
|
1164
|
+
options?: RawAxiosRequestConfig
|
|
1165
|
+
): AxiosPromise<void> {
|
|
1166
|
+
return localVarFp
|
|
1167
|
+
.deleteAllVcsRootProperties(vcsRootLocator, options)
|
|
1168
|
+
.then((request) => request(axios, basePath));
|
|
1169
|
+
},
|
|
1170
|
+
/**
|
|
1171
|
+
*
|
|
1172
|
+
* @summary Remove VCS root matching the locator.
|
|
1173
|
+
* @param {string} vcsRootLocator
|
|
1174
|
+
* @param {*} [options] Override http request option.
|
|
1175
|
+
* @throws {RequiredError}
|
|
1176
|
+
*/
|
|
1177
|
+
deleteVcsRoot(vcsRootLocator: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
1178
|
+
return localVarFp
|
|
1179
|
+
.deleteVcsRoot(vcsRootLocator, options)
|
|
1180
|
+
.then((request) => request(axios, basePath));
|
|
1181
|
+
},
|
|
1182
|
+
/**
|
|
1183
|
+
*
|
|
1184
|
+
* @summary Delete a property of the matching VCS root.
|
|
1185
|
+
* @param {string} vcsRootLocator
|
|
1186
|
+
* @param {string} name
|
|
1187
|
+
* @param {*} [options] Override http request option.
|
|
1188
|
+
* @throws {RequiredError}
|
|
1189
|
+
*/
|
|
1190
|
+
deleteVcsRootProperty(
|
|
1191
|
+
vcsRootLocator: string,
|
|
1192
|
+
name: string,
|
|
1193
|
+
options?: RawAxiosRequestConfig
|
|
1194
|
+
): AxiosPromise<void> {
|
|
1195
|
+
return localVarFp
|
|
1196
|
+
.deleteVcsRootProperty(vcsRootLocator, name, options)
|
|
1197
|
+
.then((request) => request(axios, basePath));
|
|
1198
|
+
},
|
|
1199
|
+
/**
|
|
1200
|
+
*
|
|
1201
|
+
* @summary Get all properties of the matching VCS root.
|
|
1202
|
+
* @param {string} vcsRootLocator
|
|
1203
|
+
* @param {string} [fields]
|
|
1204
|
+
* @param {*} [options] Override http request option.
|
|
1205
|
+
* @throws {RequiredError}
|
|
1206
|
+
*/
|
|
1207
|
+
getAllVcsRootProperties(
|
|
1208
|
+
vcsRootLocator: string,
|
|
1209
|
+
fields?: string,
|
|
1210
|
+
options?: RawAxiosRequestConfig
|
|
1211
|
+
): AxiosPromise<Properties> {
|
|
1212
|
+
return localVarFp
|
|
1213
|
+
.getAllVcsRootProperties(vcsRootLocator, fields, options)
|
|
1214
|
+
.then((request) => request(axios, basePath));
|
|
1215
|
+
},
|
|
1216
|
+
/**
|
|
1217
|
+
*
|
|
1218
|
+
* @summary Get all VCS roots.
|
|
1219
|
+
* @param {string} [locator]
|
|
1220
|
+
* @param {string} [fields]
|
|
1221
|
+
* @param {*} [options] Override http request option.
|
|
1222
|
+
* @throws {RequiredError}
|
|
1223
|
+
*/
|
|
1224
|
+
getAllVcsRoots(
|
|
1225
|
+
locator?: string,
|
|
1226
|
+
fields?: string,
|
|
1227
|
+
options?: RawAxiosRequestConfig
|
|
1228
|
+
): AxiosPromise<VcsRoots> {
|
|
1229
|
+
return localVarFp
|
|
1230
|
+
.getAllVcsRoots(locator, fields, options)
|
|
1231
|
+
.then((request) => request(axios, basePath));
|
|
1232
|
+
},
|
|
1233
|
+
/**
|
|
1234
|
+
*
|
|
1235
|
+
* @summary Get root endpoints.
|
|
1236
|
+
* @param {string} vcsRootLocator
|
|
1237
|
+
* @param {string} [fields]
|
|
1238
|
+
* @param {*} [options] Override http request option.
|
|
1239
|
+
* @throws {RequiredError}
|
|
1240
|
+
*/
|
|
1241
|
+
getRootEndpoints(
|
|
1242
|
+
vcsRootLocator: string,
|
|
1243
|
+
fields?: string,
|
|
1244
|
+
options?: RawAxiosRequestConfig
|
|
1245
|
+
): AxiosPromise<VcsRoot> {
|
|
1246
|
+
return localVarFp
|
|
1247
|
+
.getRootEndpoints(vcsRootLocator, fields, options)
|
|
1248
|
+
.then((request) => request(axios, basePath));
|
|
1249
|
+
},
|
|
1250
|
+
/**
|
|
1251
|
+
*
|
|
1252
|
+
* @summary Get a field of the matching VCS root.
|
|
1253
|
+
* @param {string} vcsRootLocator
|
|
1254
|
+
* @param {string} field
|
|
1255
|
+
* @param {*} [options] Override http request option.
|
|
1256
|
+
* @throws {RequiredError}
|
|
1257
|
+
*/
|
|
1258
|
+
getVcsRootField(
|
|
1259
|
+
vcsRootLocator: string,
|
|
1260
|
+
field: string,
|
|
1261
|
+
options?: RawAxiosRequestConfig
|
|
1262
|
+
): AxiosPromise<string> {
|
|
1263
|
+
return localVarFp
|
|
1264
|
+
.getVcsRootField(vcsRootLocator, field, options)
|
|
1265
|
+
.then((request) => request(axios, basePath));
|
|
1266
|
+
},
|
|
1267
|
+
/**
|
|
1268
|
+
*
|
|
1269
|
+
* @summary Get all VCS root instances of the matching VCS root.
|
|
1270
|
+
* @param {string} vcsRootLocator
|
|
1271
|
+
* @param {string} [fields]
|
|
1272
|
+
* @param {*} [options] Override http request option.
|
|
1273
|
+
* @throws {RequiredError}
|
|
1274
|
+
*/
|
|
1275
|
+
getVcsRootInstances(
|
|
1276
|
+
vcsRootLocator: string,
|
|
1277
|
+
fields?: string,
|
|
1278
|
+
options?: RawAxiosRequestConfig
|
|
1279
|
+
): AxiosPromise<VcsRootInstances> {
|
|
1280
|
+
return localVarFp
|
|
1281
|
+
.getVcsRootInstances(vcsRootLocator, fields, options)
|
|
1282
|
+
.then((request) => request(axios, basePath));
|
|
1283
|
+
},
|
|
1284
|
+
/**
|
|
1285
|
+
*
|
|
1286
|
+
* @summary Get a property on the matching VCS root.
|
|
1287
|
+
* @param {string} vcsRootLocator
|
|
1288
|
+
* @param {string} name
|
|
1289
|
+
* @param {*} [options] Override http request option.
|
|
1290
|
+
* @throws {RequiredError}
|
|
1291
|
+
*/
|
|
1292
|
+
getVcsRootProperty(
|
|
1293
|
+
vcsRootLocator: string,
|
|
1294
|
+
name: string,
|
|
1295
|
+
options?: RawAxiosRequestConfig
|
|
1296
|
+
): AxiosPromise<string> {
|
|
1297
|
+
return localVarFp
|
|
1298
|
+
.getVcsRootProperty(vcsRootLocator, name, options)
|
|
1299
|
+
.then((request) => request(axios, basePath));
|
|
1300
|
+
},
|
|
1301
|
+
/**
|
|
1302
|
+
*
|
|
1303
|
+
* @summary Get the settings file of the matching VCS root.
|
|
1304
|
+
* @param {string} vcsRootLocator
|
|
1305
|
+
* @param {*} [options] Override http request option.
|
|
1306
|
+
* @throws {RequiredError}
|
|
1307
|
+
*/
|
|
1308
|
+
getVcsRootSettingsFile(
|
|
1309
|
+
vcsRootLocator: string,
|
|
1310
|
+
options?: RawAxiosRequestConfig
|
|
1311
|
+
): AxiosPromise<string> {
|
|
1312
|
+
return localVarFp
|
|
1313
|
+
.getVcsRootSettingsFile(vcsRootLocator, options)
|
|
1314
|
+
.then((request) => request(axios, basePath));
|
|
1315
|
+
},
|
|
1316
|
+
/**
|
|
1317
|
+
*
|
|
1318
|
+
* @summary Update a field of the matching VCS root.
|
|
1319
|
+
* @param {string} vcsRootLocator
|
|
1320
|
+
* @param {string} field
|
|
1321
|
+
* @param {string} [body]
|
|
1322
|
+
* @param {*} [options] Override http request option.
|
|
1323
|
+
* @throws {RequiredError}
|
|
1324
|
+
*/
|
|
1325
|
+
setVcsRootField(
|
|
1326
|
+
vcsRootLocator: string,
|
|
1327
|
+
field: string,
|
|
1328
|
+
body?: string,
|
|
1329
|
+
options?: RawAxiosRequestConfig
|
|
1330
|
+
): AxiosPromise<string> {
|
|
1331
|
+
return localVarFp
|
|
1332
|
+
.setVcsRootField(vcsRootLocator, field, body, options)
|
|
1333
|
+
.then((request) => request(axios, basePath));
|
|
1334
|
+
},
|
|
1335
|
+
/**
|
|
1336
|
+
*
|
|
1337
|
+
* @summary Update all properties of the matching VCS root.
|
|
1338
|
+
* @param {string} vcsRootLocator
|
|
1339
|
+
* @param {string} [fields]
|
|
1340
|
+
* @param {Properties} [body]
|
|
1341
|
+
* @param {*} [options] Override http request option.
|
|
1342
|
+
* @throws {RequiredError}
|
|
1343
|
+
*/
|
|
1344
|
+
setVcsRootProperties(
|
|
1345
|
+
vcsRootLocator: string,
|
|
1346
|
+
fields?: string,
|
|
1347
|
+
body?: Properties,
|
|
1348
|
+
options?: RawAxiosRequestConfig
|
|
1349
|
+
): AxiosPromise<Properties> {
|
|
1350
|
+
return localVarFp
|
|
1351
|
+
.setVcsRootProperties(vcsRootLocator, fields, body, options)
|
|
1352
|
+
.then((request) => request(axios, basePath));
|
|
1353
|
+
},
|
|
1354
|
+
/**
|
|
1355
|
+
*
|
|
1356
|
+
* @summary Update a property of the matching VCS root.
|
|
1357
|
+
* @param {string} vcsRootLocator
|
|
1358
|
+
* @param {string} name
|
|
1359
|
+
* @param {string} [body]
|
|
1360
|
+
* @param {*} [options] Override http request option.
|
|
1361
|
+
* @throws {RequiredError}
|
|
1362
|
+
*/
|
|
1363
|
+
setVcsRootProperty(
|
|
1364
|
+
vcsRootLocator: string,
|
|
1365
|
+
name: string,
|
|
1366
|
+
body?: string,
|
|
1367
|
+
options?: RawAxiosRequestConfig
|
|
1368
|
+
): AxiosPromise<string> {
|
|
1369
|
+
return localVarFp
|
|
1370
|
+
.setVcsRootProperty(vcsRootLocator, name, body, options)
|
|
1371
|
+
.then((request) => request(axios, basePath));
|
|
1372
|
+
},
|
|
1373
|
+
};
|
|
1374
|
+
};
|
|
1375
|
+
|
|
1376
|
+
/**
|
|
1377
|
+
* VcsRootApi - interface
|
|
1378
|
+
* @export
|
|
1379
|
+
* @interface VcsRootApi
|
|
1380
|
+
*/
|
|
1381
|
+
export interface VcsRootApiInterface {
|
|
1382
|
+
/**
|
|
1383
|
+
*
|
|
1384
|
+
* @summary Add a new VCS root.
|
|
1385
|
+
* @param {string} [fields]
|
|
1386
|
+
* @param {VcsRoot} [body]
|
|
1387
|
+
* @param {*} [options] Override http request option.
|
|
1388
|
+
* @throws {RequiredError}
|
|
1389
|
+
* @memberof VcsRootApiInterface
|
|
1390
|
+
*/
|
|
1391
|
+
addVcsRoot(
|
|
1392
|
+
fields?: string,
|
|
1393
|
+
body?: VcsRoot,
|
|
1394
|
+
options?: RawAxiosRequestConfig
|
|
1395
|
+
): AxiosPromise<VcsRoot>;
|
|
1396
|
+
|
|
1397
|
+
/**
|
|
1398
|
+
*
|
|
1399
|
+
* @summary Delete all properties of the matching VCS root.
|
|
1400
|
+
* @param {string} vcsRootLocator
|
|
1401
|
+
* @param {*} [options] Override http request option.
|
|
1402
|
+
* @throws {RequiredError}
|
|
1403
|
+
* @memberof VcsRootApiInterface
|
|
1404
|
+
*/
|
|
1405
|
+
deleteAllVcsRootProperties(
|
|
1406
|
+
vcsRootLocator: string,
|
|
1407
|
+
options?: RawAxiosRequestConfig
|
|
1408
|
+
): AxiosPromise<void>;
|
|
1409
|
+
|
|
1410
|
+
/**
|
|
1411
|
+
*
|
|
1412
|
+
* @summary Remove VCS root matching the locator.
|
|
1413
|
+
* @param {string} vcsRootLocator
|
|
1414
|
+
* @param {*} [options] Override http request option.
|
|
1415
|
+
* @throws {RequiredError}
|
|
1416
|
+
* @memberof VcsRootApiInterface
|
|
1417
|
+
*/
|
|
1418
|
+
deleteVcsRoot(vcsRootLocator: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1419
|
+
|
|
1420
|
+
/**
|
|
1421
|
+
*
|
|
1422
|
+
* @summary Delete a property of the matching VCS root.
|
|
1423
|
+
* @param {string} vcsRootLocator
|
|
1424
|
+
* @param {string} name
|
|
1425
|
+
* @param {*} [options] Override http request option.
|
|
1426
|
+
* @throws {RequiredError}
|
|
1427
|
+
* @memberof VcsRootApiInterface
|
|
1428
|
+
*/
|
|
1429
|
+
deleteVcsRootProperty(
|
|
1430
|
+
vcsRootLocator: string,
|
|
1431
|
+
name: string,
|
|
1432
|
+
options?: RawAxiosRequestConfig
|
|
1433
|
+
): AxiosPromise<void>;
|
|
1434
|
+
|
|
1435
|
+
/**
|
|
1436
|
+
*
|
|
1437
|
+
* @summary Get all properties of the matching VCS root.
|
|
1438
|
+
* @param {string} vcsRootLocator
|
|
1439
|
+
* @param {string} [fields]
|
|
1440
|
+
* @param {*} [options] Override http request option.
|
|
1441
|
+
* @throws {RequiredError}
|
|
1442
|
+
* @memberof VcsRootApiInterface
|
|
1443
|
+
*/
|
|
1444
|
+
getAllVcsRootProperties(
|
|
1445
|
+
vcsRootLocator: string,
|
|
1446
|
+
fields?: string,
|
|
1447
|
+
options?: RawAxiosRequestConfig
|
|
1448
|
+
): AxiosPromise<Properties>;
|
|
1449
|
+
|
|
1450
|
+
/**
|
|
1451
|
+
*
|
|
1452
|
+
* @summary Get all VCS roots.
|
|
1453
|
+
* @param {string} [locator]
|
|
1454
|
+
* @param {string} [fields]
|
|
1455
|
+
* @param {*} [options] Override http request option.
|
|
1456
|
+
* @throws {RequiredError}
|
|
1457
|
+
* @memberof VcsRootApiInterface
|
|
1458
|
+
*/
|
|
1459
|
+
getAllVcsRoots(
|
|
1460
|
+
locator?: string,
|
|
1461
|
+
fields?: string,
|
|
1462
|
+
options?: RawAxiosRequestConfig
|
|
1463
|
+
): AxiosPromise<VcsRoots>;
|
|
1464
|
+
|
|
1465
|
+
/**
|
|
1466
|
+
*
|
|
1467
|
+
* @summary Get root endpoints.
|
|
1468
|
+
* @param {string} vcsRootLocator
|
|
1469
|
+
* @param {string} [fields]
|
|
1470
|
+
* @param {*} [options] Override http request option.
|
|
1471
|
+
* @throws {RequiredError}
|
|
1472
|
+
* @memberof VcsRootApiInterface
|
|
1473
|
+
*/
|
|
1474
|
+
getRootEndpoints(
|
|
1475
|
+
vcsRootLocator: string,
|
|
1476
|
+
fields?: string,
|
|
1477
|
+
options?: RawAxiosRequestConfig
|
|
1478
|
+
): AxiosPromise<VcsRoot>;
|
|
1479
|
+
|
|
1480
|
+
/**
|
|
1481
|
+
*
|
|
1482
|
+
* @summary Get a field of the matching VCS root.
|
|
1483
|
+
* @param {string} vcsRootLocator
|
|
1484
|
+
* @param {string} field
|
|
1485
|
+
* @param {*} [options] Override http request option.
|
|
1486
|
+
* @throws {RequiredError}
|
|
1487
|
+
* @memberof VcsRootApiInterface
|
|
1488
|
+
*/
|
|
1489
|
+
getVcsRootField(
|
|
1490
|
+
vcsRootLocator: string,
|
|
1491
|
+
field: string,
|
|
1492
|
+
options?: RawAxiosRequestConfig
|
|
1493
|
+
): AxiosPromise<string>;
|
|
1494
|
+
|
|
1495
|
+
/**
|
|
1496
|
+
*
|
|
1497
|
+
* @summary Get all VCS root instances of the matching VCS root.
|
|
1498
|
+
* @param {string} vcsRootLocator
|
|
1499
|
+
* @param {string} [fields]
|
|
1500
|
+
* @param {*} [options] Override http request option.
|
|
1501
|
+
* @throws {RequiredError}
|
|
1502
|
+
* @memberof VcsRootApiInterface
|
|
1503
|
+
*/
|
|
1504
|
+
getVcsRootInstances(
|
|
1505
|
+
vcsRootLocator: string,
|
|
1506
|
+
fields?: string,
|
|
1507
|
+
options?: RawAxiosRequestConfig
|
|
1508
|
+
): AxiosPromise<VcsRootInstances>;
|
|
1509
|
+
|
|
1510
|
+
/**
|
|
1511
|
+
*
|
|
1512
|
+
* @summary Get a property on the matching VCS root.
|
|
1513
|
+
* @param {string} vcsRootLocator
|
|
1514
|
+
* @param {string} name
|
|
1515
|
+
* @param {*} [options] Override http request option.
|
|
1516
|
+
* @throws {RequiredError}
|
|
1517
|
+
* @memberof VcsRootApiInterface
|
|
1518
|
+
*/
|
|
1519
|
+
getVcsRootProperty(
|
|
1520
|
+
vcsRootLocator: string,
|
|
1521
|
+
name: string,
|
|
1522
|
+
options?: RawAxiosRequestConfig
|
|
1523
|
+
): AxiosPromise<string>;
|
|
1524
|
+
|
|
1525
|
+
/**
|
|
1526
|
+
*
|
|
1527
|
+
* @summary Get the settings file of the matching VCS root.
|
|
1528
|
+
* @param {string} vcsRootLocator
|
|
1529
|
+
* @param {*} [options] Override http request option.
|
|
1530
|
+
* @throws {RequiredError}
|
|
1531
|
+
* @memberof VcsRootApiInterface
|
|
1532
|
+
*/
|
|
1533
|
+
getVcsRootSettingsFile(
|
|
1534
|
+
vcsRootLocator: string,
|
|
1535
|
+
options?: RawAxiosRequestConfig
|
|
1536
|
+
): AxiosPromise<string>;
|
|
1537
|
+
|
|
1538
|
+
/**
|
|
1539
|
+
*
|
|
1540
|
+
* @summary Update a field of the matching VCS root.
|
|
1541
|
+
* @param {string} vcsRootLocator
|
|
1542
|
+
* @param {string} field
|
|
1543
|
+
* @param {string} [body]
|
|
1544
|
+
* @param {*} [options] Override http request option.
|
|
1545
|
+
* @throws {RequiredError}
|
|
1546
|
+
* @memberof VcsRootApiInterface
|
|
1547
|
+
*/
|
|
1548
|
+
setVcsRootField(
|
|
1549
|
+
vcsRootLocator: string,
|
|
1550
|
+
field: string,
|
|
1551
|
+
body?: string,
|
|
1552
|
+
options?: RawAxiosRequestConfig
|
|
1553
|
+
): AxiosPromise<string>;
|
|
1554
|
+
|
|
1555
|
+
/**
|
|
1556
|
+
*
|
|
1557
|
+
* @summary Update all properties of the matching VCS root.
|
|
1558
|
+
* @param {string} vcsRootLocator
|
|
1559
|
+
* @param {string} [fields]
|
|
1560
|
+
* @param {Properties} [body]
|
|
1561
|
+
* @param {*} [options] Override http request option.
|
|
1562
|
+
* @throws {RequiredError}
|
|
1563
|
+
* @memberof VcsRootApiInterface
|
|
1564
|
+
*/
|
|
1565
|
+
setVcsRootProperties(
|
|
1566
|
+
vcsRootLocator: string,
|
|
1567
|
+
fields?: string,
|
|
1568
|
+
body?: Properties,
|
|
1569
|
+
options?: RawAxiosRequestConfig
|
|
1570
|
+
): AxiosPromise<Properties>;
|
|
1571
|
+
|
|
1572
|
+
/**
|
|
1573
|
+
*
|
|
1574
|
+
* @summary Update a property of the matching VCS root.
|
|
1575
|
+
* @param {string} vcsRootLocator
|
|
1576
|
+
* @param {string} name
|
|
1577
|
+
* @param {string} [body]
|
|
1578
|
+
* @param {*} [options] Override http request option.
|
|
1579
|
+
* @throws {RequiredError}
|
|
1580
|
+
* @memberof VcsRootApiInterface
|
|
1581
|
+
*/
|
|
1582
|
+
setVcsRootProperty(
|
|
1583
|
+
vcsRootLocator: string,
|
|
1584
|
+
name: string,
|
|
1585
|
+
body?: string,
|
|
1586
|
+
options?: RawAxiosRequestConfig
|
|
1587
|
+
): AxiosPromise<string>;
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1590
|
+
/**
|
|
1591
|
+
* VcsRootApi - object-oriented interface
|
|
1592
|
+
* @export
|
|
1593
|
+
* @class VcsRootApi
|
|
1594
|
+
* @extends {BaseAPI}
|
|
1595
|
+
*/
|
|
1596
|
+
export class VcsRootApi extends BaseAPI implements VcsRootApiInterface {
|
|
1597
|
+
/**
|
|
1598
|
+
*
|
|
1599
|
+
* @summary Add a new VCS root.
|
|
1600
|
+
* @param {string} [fields]
|
|
1601
|
+
* @param {VcsRoot} [body]
|
|
1602
|
+
* @param {*} [options] Override http request option.
|
|
1603
|
+
* @throws {RequiredError}
|
|
1604
|
+
* @memberof VcsRootApi
|
|
1605
|
+
*/
|
|
1606
|
+
public addVcsRoot(fields?: string, body?: VcsRoot, options?: RawAxiosRequestConfig) {
|
|
1607
|
+
return VcsRootApiFp(this.configuration)
|
|
1608
|
+
.addVcsRoot(fields, body, options)
|
|
1609
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
/**
|
|
1613
|
+
*
|
|
1614
|
+
* @summary Delete all properties of the matching VCS root.
|
|
1615
|
+
* @param {string} vcsRootLocator
|
|
1616
|
+
* @param {*} [options] Override http request option.
|
|
1617
|
+
* @throws {RequiredError}
|
|
1618
|
+
* @memberof VcsRootApi
|
|
1619
|
+
*/
|
|
1620
|
+
public deleteAllVcsRootProperties(vcsRootLocator: string, options?: RawAxiosRequestConfig) {
|
|
1621
|
+
return VcsRootApiFp(this.configuration)
|
|
1622
|
+
.deleteAllVcsRootProperties(vcsRootLocator, options)
|
|
1623
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
/**
|
|
1627
|
+
*
|
|
1628
|
+
* @summary Remove VCS root matching the locator.
|
|
1629
|
+
* @param {string} vcsRootLocator
|
|
1630
|
+
* @param {*} [options] Override http request option.
|
|
1631
|
+
* @throws {RequiredError}
|
|
1632
|
+
* @memberof VcsRootApi
|
|
1633
|
+
*/
|
|
1634
|
+
public deleteVcsRoot(vcsRootLocator: string, options?: RawAxiosRequestConfig) {
|
|
1635
|
+
return VcsRootApiFp(this.configuration)
|
|
1636
|
+
.deleteVcsRoot(vcsRootLocator, options)
|
|
1637
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
/**
|
|
1641
|
+
*
|
|
1642
|
+
* @summary Delete a property of the matching VCS root.
|
|
1643
|
+
* @param {string} vcsRootLocator
|
|
1644
|
+
* @param {string} name
|
|
1645
|
+
* @param {*} [options] Override http request option.
|
|
1646
|
+
* @throws {RequiredError}
|
|
1647
|
+
* @memberof VcsRootApi
|
|
1648
|
+
*/
|
|
1649
|
+
public deleteVcsRootProperty(
|
|
1650
|
+
vcsRootLocator: string,
|
|
1651
|
+
name: string,
|
|
1652
|
+
options?: RawAxiosRequestConfig
|
|
1653
|
+
) {
|
|
1654
|
+
return VcsRootApiFp(this.configuration)
|
|
1655
|
+
.deleteVcsRootProperty(vcsRootLocator, name, options)
|
|
1656
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
/**
|
|
1660
|
+
*
|
|
1661
|
+
* @summary Get all properties of the matching VCS root.
|
|
1662
|
+
* @param {string} vcsRootLocator
|
|
1663
|
+
* @param {string} [fields]
|
|
1664
|
+
* @param {*} [options] Override http request option.
|
|
1665
|
+
* @throws {RequiredError}
|
|
1666
|
+
* @memberof VcsRootApi
|
|
1667
|
+
*/
|
|
1668
|
+
public getAllVcsRootProperties(
|
|
1669
|
+
vcsRootLocator: string,
|
|
1670
|
+
fields?: string,
|
|
1671
|
+
options?: RawAxiosRequestConfig
|
|
1672
|
+
) {
|
|
1673
|
+
return VcsRootApiFp(this.configuration)
|
|
1674
|
+
.getAllVcsRootProperties(vcsRootLocator, fields, options)
|
|
1675
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1678
|
+
/**
|
|
1679
|
+
*
|
|
1680
|
+
* @summary Get all VCS roots.
|
|
1681
|
+
* @param {string} [locator]
|
|
1682
|
+
* @param {string} [fields]
|
|
1683
|
+
* @param {*} [options] Override http request option.
|
|
1684
|
+
* @throws {RequiredError}
|
|
1685
|
+
* @memberof VcsRootApi
|
|
1686
|
+
*/
|
|
1687
|
+
public getAllVcsRoots(locator?: string, fields?: string, options?: RawAxiosRequestConfig) {
|
|
1688
|
+
return VcsRootApiFp(this.configuration)
|
|
1689
|
+
.getAllVcsRoots(locator, fields, options)
|
|
1690
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
/**
|
|
1694
|
+
*
|
|
1695
|
+
* @summary Get root endpoints.
|
|
1696
|
+
* @param {string} vcsRootLocator
|
|
1697
|
+
* @param {string} [fields]
|
|
1698
|
+
* @param {*} [options] Override http request option.
|
|
1699
|
+
* @throws {RequiredError}
|
|
1700
|
+
* @memberof VcsRootApi
|
|
1701
|
+
*/
|
|
1702
|
+
public getRootEndpoints(
|
|
1703
|
+
vcsRootLocator: string,
|
|
1704
|
+
fields?: string,
|
|
1705
|
+
options?: RawAxiosRequestConfig
|
|
1706
|
+
) {
|
|
1707
|
+
return VcsRootApiFp(this.configuration)
|
|
1708
|
+
.getRootEndpoints(vcsRootLocator, fields, options)
|
|
1709
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
/**
|
|
1713
|
+
*
|
|
1714
|
+
* @summary Get a field of the matching VCS root.
|
|
1715
|
+
* @param {string} vcsRootLocator
|
|
1716
|
+
* @param {string} field
|
|
1717
|
+
* @param {*} [options] Override http request option.
|
|
1718
|
+
* @throws {RequiredError}
|
|
1719
|
+
* @memberof VcsRootApi
|
|
1720
|
+
*/
|
|
1721
|
+
public getVcsRootField(vcsRootLocator: string, field: string, options?: RawAxiosRequestConfig) {
|
|
1722
|
+
return VcsRootApiFp(this.configuration)
|
|
1723
|
+
.getVcsRootField(vcsRootLocator, field, options)
|
|
1724
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
/**
|
|
1728
|
+
*
|
|
1729
|
+
* @summary Get all VCS root instances of the matching VCS root.
|
|
1730
|
+
* @param {string} vcsRootLocator
|
|
1731
|
+
* @param {string} [fields]
|
|
1732
|
+
* @param {*} [options] Override http request option.
|
|
1733
|
+
* @throws {RequiredError}
|
|
1734
|
+
* @memberof VcsRootApi
|
|
1735
|
+
*/
|
|
1736
|
+
public getVcsRootInstances(
|
|
1737
|
+
vcsRootLocator: string,
|
|
1738
|
+
fields?: string,
|
|
1739
|
+
options?: RawAxiosRequestConfig
|
|
1740
|
+
) {
|
|
1741
|
+
return VcsRootApiFp(this.configuration)
|
|
1742
|
+
.getVcsRootInstances(vcsRootLocator, fields, options)
|
|
1743
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
/**
|
|
1747
|
+
*
|
|
1748
|
+
* @summary Get a property on the matching VCS root.
|
|
1749
|
+
* @param {string} vcsRootLocator
|
|
1750
|
+
* @param {string} name
|
|
1751
|
+
* @param {*} [options] Override http request option.
|
|
1752
|
+
* @throws {RequiredError}
|
|
1753
|
+
* @memberof VcsRootApi
|
|
1754
|
+
*/
|
|
1755
|
+
public getVcsRootProperty(vcsRootLocator: string, name: string, options?: RawAxiosRequestConfig) {
|
|
1756
|
+
return VcsRootApiFp(this.configuration)
|
|
1757
|
+
.getVcsRootProperty(vcsRootLocator, name, options)
|
|
1758
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
/**
|
|
1762
|
+
*
|
|
1763
|
+
* @summary Get the settings file of the matching VCS root.
|
|
1764
|
+
* @param {string} vcsRootLocator
|
|
1765
|
+
* @param {*} [options] Override http request option.
|
|
1766
|
+
* @throws {RequiredError}
|
|
1767
|
+
* @memberof VcsRootApi
|
|
1768
|
+
*/
|
|
1769
|
+
public getVcsRootSettingsFile(vcsRootLocator: string, options?: RawAxiosRequestConfig) {
|
|
1770
|
+
return VcsRootApiFp(this.configuration)
|
|
1771
|
+
.getVcsRootSettingsFile(vcsRootLocator, options)
|
|
1772
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
/**
|
|
1776
|
+
*
|
|
1777
|
+
* @summary Update a field of the matching VCS root.
|
|
1778
|
+
* @param {string} vcsRootLocator
|
|
1779
|
+
* @param {string} field
|
|
1780
|
+
* @param {string} [body]
|
|
1781
|
+
* @param {*} [options] Override http request option.
|
|
1782
|
+
* @throws {RequiredError}
|
|
1783
|
+
* @memberof VcsRootApi
|
|
1784
|
+
*/
|
|
1785
|
+
public setVcsRootField(
|
|
1786
|
+
vcsRootLocator: string,
|
|
1787
|
+
field: string,
|
|
1788
|
+
body?: string,
|
|
1789
|
+
options?: RawAxiosRequestConfig
|
|
1790
|
+
) {
|
|
1791
|
+
return VcsRootApiFp(this.configuration)
|
|
1792
|
+
.setVcsRootField(vcsRootLocator, field, body, options)
|
|
1793
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
/**
|
|
1797
|
+
*
|
|
1798
|
+
* @summary Update all properties of the matching VCS root.
|
|
1799
|
+
* @param {string} vcsRootLocator
|
|
1800
|
+
* @param {string} [fields]
|
|
1801
|
+
* @param {Properties} [body]
|
|
1802
|
+
* @param {*} [options] Override http request option.
|
|
1803
|
+
* @throws {RequiredError}
|
|
1804
|
+
* @memberof VcsRootApi
|
|
1805
|
+
*/
|
|
1806
|
+
public setVcsRootProperties(
|
|
1807
|
+
vcsRootLocator: string,
|
|
1808
|
+
fields?: string,
|
|
1809
|
+
body?: Properties,
|
|
1810
|
+
options?: RawAxiosRequestConfig
|
|
1811
|
+
) {
|
|
1812
|
+
return VcsRootApiFp(this.configuration)
|
|
1813
|
+
.setVcsRootProperties(vcsRootLocator, fields, body, options)
|
|
1814
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
/**
|
|
1818
|
+
*
|
|
1819
|
+
* @summary Update a property of the matching VCS root.
|
|
1820
|
+
* @param {string} vcsRootLocator
|
|
1821
|
+
* @param {string} name
|
|
1822
|
+
* @param {string} [body]
|
|
1823
|
+
* @param {*} [options] Override http request option.
|
|
1824
|
+
* @throws {RequiredError}
|
|
1825
|
+
* @memberof VcsRootApi
|
|
1826
|
+
*/
|
|
1827
|
+
public setVcsRootProperty(
|
|
1828
|
+
vcsRootLocator: string,
|
|
1829
|
+
name: string,
|
|
1830
|
+
body?: string,
|
|
1831
|
+
options?: RawAxiosRequestConfig
|
|
1832
|
+
) {
|
|
1833
|
+
return VcsRootApiFp(this.configuration)
|
|
1834
|
+
.setVcsRootProperty(vcsRootLocator, name, body, options)
|
|
1835
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1836
|
+
}
|
|
1837
|
+
}
|