@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,2025 @@
|
|
|
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 { Projects } from '../models';
|
|
43
|
+
// @ts-ignore
|
|
44
|
+
import type { VersionedSettingsConfig } from '../models';
|
|
45
|
+
// @ts-ignore
|
|
46
|
+
import type { VersionedSettingsContextParameters } from '../models';
|
|
47
|
+
// @ts-ignore
|
|
48
|
+
import type { VersionedSettingsStatus } from '../models';
|
|
49
|
+
// @ts-ignore
|
|
50
|
+
import type { VersionedSettingsTokens } from '../models';
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* VersionedSettingsApi - axios parameter creator
|
|
54
|
+
* @export
|
|
55
|
+
*/
|
|
56
|
+
export const VersionedSettingsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
57
|
+
return {
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @summary Add Versioned Settings Tokens.
|
|
61
|
+
* @param {string} locator
|
|
62
|
+
* @param {VersionedSettingsTokens} [body]
|
|
63
|
+
* @param {*} [options] Override http request option.
|
|
64
|
+
* @throws {RequiredError}
|
|
65
|
+
*/
|
|
66
|
+
addVersionedSettingsTokens: async (
|
|
67
|
+
locator: string,
|
|
68
|
+
body?: VersionedSettingsTokens,
|
|
69
|
+
options: RawAxiosRequestConfig = {}
|
|
70
|
+
): Promise<RequestArgs> => {
|
|
71
|
+
// verify required parameter 'locator' is not null or undefined
|
|
72
|
+
assertParamExists('addVersionedSettingsTokens', 'locator', locator);
|
|
73
|
+
const localVarPath = `/app/rest/projects/{locator}/versionedSettings/tokens`.replace(
|
|
74
|
+
`{${'locator'}}`,
|
|
75
|
+
encodeURIComponent(String(locator))
|
|
76
|
+
);
|
|
77
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
78
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
79
|
+
let baseOptions;
|
|
80
|
+
if (configuration) {
|
|
81
|
+
baseOptions = configuration.baseOptions;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
85
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
86
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
87
|
+
|
|
88
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
89
|
+
|
|
90
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
91
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
92
|
+
localVarRequestOptions.headers = {
|
|
93
|
+
...localVarHeaderParameter,
|
|
94
|
+
...headersFromBaseOptions,
|
|
95
|
+
...options["headers"],
|
|
96
|
+
};
|
|
97
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
98
|
+
body,
|
|
99
|
+
localVarRequestOptions,
|
|
100
|
+
configuration
|
|
101
|
+
);
|
|
102
|
+
|
|
103
|
+
return {
|
|
104
|
+
url: toPathString(localVarUrlObj),
|
|
105
|
+
options: localVarRequestOptions,
|
|
106
|
+
};
|
|
107
|
+
},
|
|
108
|
+
/**
|
|
109
|
+
*
|
|
110
|
+
* @summary Check for changes in Versioned Settings.
|
|
111
|
+
* @param {string} locator
|
|
112
|
+
* @param {*} [options] Override http request option.
|
|
113
|
+
* @throws {RequiredError}
|
|
114
|
+
*/
|
|
115
|
+
checkForVersionedSettingsChanges: async (
|
|
116
|
+
locator: string,
|
|
117
|
+
options: RawAxiosRequestConfig = {}
|
|
118
|
+
): Promise<RequestArgs> => {
|
|
119
|
+
// verify required parameter 'locator' is not null or undefined
|
|
120
|
+
assertParamExists('checkForVersionedSettingsChanges', 'locator', locator);
|
|
121
|
+
const localVarPath = `/app/rest/projects/{locator}/versionedSettings/checkForChanges`.replace(
|
|
122
|
+
`{${'locator'}}`,
|
|
123
|
+
encodeURIComponent(String(locator))
|
|
124
|
+
);
|
|
125
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
126
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
127
|
+
let baseOptions;
|
|
128
|
+
if (configuration) {
|
|
129
|
+
baseOptions = configuration.baseOptions;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
133
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
134
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
135
|
+
|
|
136
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
137
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
138
|
+
localVarRequestOptions.headers = {
|
|
139
|
+
...localVarHeaderParameter,
|
|
140
|
+
...headersFromBaseOptions,
|
|
141
|
+
...options["headers"],
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
return {
|
|
145
|
+
url: toPathString(localVarUrlObj),
|
|
146
|
+
options: localVarRequestOptions,
|
|
147
|
+
};
|
|
148
|
+
},
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @summary Perform Versioned Settings action: Commit current settings to VCS.
|
|
152
|
+
* @param {string} locator
|
|
153
|
+
* @param {*} [options] Override http request option.
|
|
154
|
+
* @throws {RequiredError}
|
|
155
|
+
*/
|
|
156
|
+
commitCurrentSettings: async (
|
|
157
|
+
locator: string,
|
|
158
|
+
options: RawAxiosRequestConfig = {}
|
|
159
|
+
): Promise<RequestArgs> => {
|
|
160
|
+
// verify required parameter 'locator' is not null or undefined
|
|
161
|
+
assertParamExists('commitCurrentSettings', 'locator', locator);
|
|
162
|
+
const localVarPath =
|
|
163
|
+
`/app/rest/projects/{locator}/versionedSettings/commitCurrentSettings`.replace(
|
|
164
|
+
`{${'locator'}}`,
|
|
165
|
+
encodeURIComponent(String(locator))
|
|
166
|
+
);
|
|
167
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
168
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
169
|
+
let baseOptions;
|
|
170
|
+
if (configuration) {
|
|
171
|
+
baseOptions = configuration.baseOptions;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
175
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
176
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
177
|
+
|
|
178
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
179
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
180
|
+
localVarRequestOptions.headers = {
|
|
181
|
+
...localVarHeaderParameter,
|
|
182
|
+
...headersFromBaseOptions,
|
|
183
|
+
...options["headers"],
|
|
184
|
+
};
|
|
185
|
+
|
|
186
|
+
return {
|
|
187
|
+
url: toPathString(localVarUrlObj),
|
|
188
|
+
options: localVarRequestOptions,
|
|
189
|
+
};
|
|
190
|
+
},
|
|
191
|
+
/**
|
|
192
|
+
*
|
|
193
|
+
* @summary Delete Versioned Settings config parameter value.
|
|
194
|
+
* @param {string} locator
|
|
195
|
+
* @param {string} name
|
|
196
|
+
* @param {*} [options] Override http request option.
|
|
197
|
+
* @throws {RequiredError}
|
|
198
|
+
*/
|
|
199
|
+
deleteVersionedSettingsConfigParameter: async (
|
|
200
|
+
locator: string,
|
|
201
|
+
name: string,
|
|
202
|
+
options: RawAxiosRequestConfig = {}
|
|
203
|
+
): Promise<RequestArgs> => {
|
|
204
|
+
// verify required parameter 'locator' is not null or undefined
|
|
205
|
+
assertParamExists('deleteVersionedSettingsConfigParameter', 'locator', locator);
|
|
206
|
+
// verify required parameter 'name' is not null or undefined
|
|
207
|
+
assertParamExists('deleteVersionedSettingsConfigParameter', 'name', name);
|
|
208
|
+
const localVarPath = `/app/rest/projects/{locator}/versionedSettings/config/parameters/{name}`
|
|
209
|
+
.replace(`{${'locator'}}`, encodeURIComponent(String(locator)))
|
|
210
|
+
.replace(`{${'name'}}`, encodeURIComponent(String(name)));
|
|
211
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
212
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
213
|
+
let baseOptions;
|
|
214
|
+
if (configuration) {
|
|
215
|
+
baseOptions = configuration.baseOptions;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
219
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
220
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
221
|
+
|
|
222
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
223
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
224
|
+
localVarRequestOptions.headers = {
|
|
225
|
+
...localVarHeaderParameter,
|
|
226
|
+
...headersFromBaseOptions,
|
|
227
|
+
...options["headers"],
|
|
228
|
+
};
|
|
229
|
+
|
|
230
|
+
return {
|
|
231
|
+
url: toPathString(localVarUrlObj),
|
|
232
|
+
options: localVarRequestOptions,
|
|
233
|
+
};
|
|
234
|
+
},
|
|
235
|
+
/**
|
|
236
|
+
*
|
|
237
|
+
* @summary Delete Versioned Settings Tokens.
|
|
238
|
+
* @param {string} locator
|
|
239
|
+
* @param {VersionedSettingsTokens} [body]
|
|
240
|
+
* @param {*} [options] Override http request option.
|
|
241
|
+
* @throws {RequiredError}
|
|
242
|
+
*/
|
|
243
|
+
deleteVersionedSettingsTokens: async (
|
|
244
|
+
locator: string,
|
|
245
|
+
body?: VersionedSettingsTokens,
|
|
246
|
+
options: RawAxiosRequestConfig = {}
|
|
247
|
+
): Promise<RequestArgs> => {
|
|
248
|
+
// verify required parameter 'locator' is not null or undefined
|
|
249
|
+
assertParamExists('deleteVersionedSettingsTokens', 'locator', locator);
|
|
250
|
+
const localVarPath = `/app/rest/projects/{locator}/versionedSettings/tokens`.replace(
|
|
251
|
+
`{${'locator'}}`,
|
|
252
|
+
encodeURIComponent(String(locator))
|
|
253
|
+
);
|
|
254
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
255
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
256
|
+
let baseOptions;
|
|
257
|
+
if (configuration) {
|
|
258
|
+
baseOptions = configuration.baseOptions;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
262
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
263
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
264
|
+
|
|
265
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
266
|
+
|
|
267
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
268
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
269
|
+
localVarRequestOptions.headers = {
|
|
270
|
+
...localVarHeaderParameter,
|
|
271
|
+
...headersFromBaseOptions,
|
|
272
|
+
...options["headers"],
|
|
273
|
+
};
|
|
274
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
275
|
+
body,
|
|
276
|
+
localVarRequestOptions,
|
|
277
|
+
configuration
|
|
278
|
+
);
|
|
279
|
+
|
|
280
|
+
return {
|
|
281
|
+
url: toPathString(localVarUrlObj),
|
|
282
|
+
options: localVarRequestOptions,
|
|
283
|
+
};
|
|
284
|
+
},
|
|
285
|
+
/**
|
|
286
|
+
*
|
|
287
|
+
* @summary Get Versioned Settings config.
|
|
288
|
+
* @param {string} locator
|
|
289
|
+
* @param {string} [fields]
|
|
290
|
+
* @param {*} [options] Override http request option.
|
|
291
|
+
* @throws {RequiredError}
|
|
292
|
+
*/
|
|
293
|
+
getVersionedSettingsConfig: async (
|
|
294
|
+
locator: string,
|
|
295
|
+
fields?: string,
|
|
296
|
+
options: RawAxiosRequestConfig = {}
|
|
297
|
+
): Promise<RequestArgs> => {
|
|
298
|
+
// verify required parameter 'locator' is not null or undefined
|
|
299
|
+
assertParamExists('getVersionedSettingsConfig', 'locator', locator);
|
|
300
|
+
const localVarPath = `/app/rest/projects/{locator}/versionedSettings/config`.replace(
|
|
301
|
+
`{${'locator'}}`,
|
|
302
|
+
encodeURIComponent(String(locator))
|
|
303
|
+
);
|
|
304
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
305
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
306
|
+
let baseOptions;
|
|
307
|
+
if (configuration) {
|
|
308
|
+
baseOptions = configuration.baseOptions;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
312
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
313
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
314
|
+
|
|
315
|
+
if (fields !== undefined) {
|
|
316
|
+
localVarQueryParameter['fields'] = String(fields);
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
320
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
321
|
+
localVarRequestOptions.headers = {
|
|
322
|
+
...localVarHeaderParameter,
|
|
323
|
+
...headersFromBaseOptions,
|
|
324
|
+
...options["headers"],
|
|
325
|
+
};
|
|
326
|
+
|
|
327
|
+
return {
|
|
328
|
+
url: toPathString(localVarUrlObj),
|
|
329
|
+
options: localVarRequestOptions,
|
|
330
|
+
};
|
|
331
|
+
},
|
|
332
|
+
/**
|
|
333
|
+
*
|
|
334
|
+
* @summary Get Versioned Settings config parameter value.
|
|
335
|
+
* @param {string} locator
|
|
336
|
+
* @param {string} name
|
|
337
|
+
* @param {*} [options] Override http request option.
|
|
338
|
+
* @throws {RequiredError}
|
|
339
|
+
*/
|
|
340
|
+
getVersionedSettingsConfigParameter: async (
|
|
341
|
+
locator: string,
|
|
342
|
+
name: string,
|
|
343
|
+
options: RawAxiosRequestConfig = {}
|
|
344
|
+
): Promise<RequestArgs> => {
|
|
345
|
+
// verify required parameter 'locator' is not null or undefined
|
|
346
|
+
assertParamExists('getVersionedSettingsConfigParameter', 'locator', locator);
|
|
347
|
+
// verify required parameter 'name' is not null or undefined
|
|
348
|
+
assertParamExists('getVersionedSettingsConfigParameter', 'name', name);
|
|
349
|
+
const localVarPath = `/app/rest/projects/{locator}/versionedSettings/config/parameters/{name}`
|
|
350
|
+
.replace(`{${'locator'}}`, encodeURIComponent(String(locator)))
|
|
351
|
+
.replace(`{${'name'}}`, encodeURIComponent(String(name)));
|
|
352
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
353
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
354
|
+
let baseOptions;
|
|
355
|
+
if (configuration) {
|
|
356
|
+
baseOptions = configuration.baseOptions;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
360
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
361
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
362
|
+
|
|
363
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
364
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
365
|
+
localVarRequestOptions.headers = {
|
|
366
|
+
...localVarHeaderParameter,
|
|
367
|
+
...headersFromBaseOptions,
|
|
368
|
+
...options["headers"],
|
|
369
|
+
};
|
|
370
|
+
|
|
371
|
+
return {
|
|
372
|
+
url: toPathString(localVarUrlObj),
|
|
373
|
+
options: localVarRequestOptions,
|
|
374
|
+
};
|
|
375
|
+
},
|
|
376
|
+
/**
|
|
377
|
+
*
|
|
378
|
+
* @summary Get Versioned Settings Context Parameters.
|
|
379
|
+
* @param {string} locator
|
|
380
|
+
* @param {*} [options] Override http request option.
|
|
381
|
+
* @throws {RequiredError}
|
|
382
|
+
*/
|
|
383
|
+
getVersionedSettingsContextParameters: async (
|
|
384
|
+
locator: string,
|
|
385
|
+
options: RawAxiosRequestConfig = {}
|
|
386
|
+
): Promise<RequestArgs> => {
|
|
387
|
+
// verify required parameter 'locator' is not null or undefined
|
|
388
|
+
assertParamExists('getVersionedSettingsContextParameters', 'locator', locator);
|
|
389
|
+
const localVarPath =
|
|
390
|
+
`/app/rest/projects/{locator}/versionedSettings/contextParameters`.replace(
|
|
391
|
+
`{${'locator'}}`,
|
|
392
|
+
encodeURIComponent(String(locator))
|
|
393
|
+
);
|
|
394
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
395
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
396
|
+
let baseOptions;
|
|
397
|
+
if (configuration) {
|
|
398
|
+
baseOptions = configuration.baseOptions;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
402
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
403
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
404
|
+
|
|
405
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
406
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
407
|
+
localVarRequestOptions.headers = {
|
|
408
|
+
...localVarHeaderParameter,
|
|
409
|
+
...headersFromBaseOptions,
|
|
410
|
+
...options["headers"],
|
|
411
|
+
};
|
|
412
|
+
|
|
413
|
+
return {
|
|
414
|
+
url: toPathString(localVarUrlObj),
|
|
415
|
+
options: localVarRequestOptions,
|
|
416
|
+
};
|
|
417
|
+
},
|
|
418
|
+
/**
|
|
419
|
+
*
|
|
420
|
+
* @summary Get a list of projects that are affected by Load Settings from VCS action.
|
|
421
|
+
* @param {string} locator
|
|
422
|
+
* @param {string} [fields]
|
|
423
|
+
* @param {*} [options] Override http request option.
|
|
424
|
+
* @throws {RequiredError}
|
|
425
|
+
*/
|
|
426
|
+
getVersionedSettingsProjectsToLoad: async (
|
|
427
|
+
locator: string,
|
|
428
|
+
fields?: string,
|
|
429
|
+
options: RawAxiosRequestConfig = {}
|
|
430
|
+
): Promise<RequestArgs> => {
|
|
431
|
+
// verify required parameter 'locator' is not null or undefined
|
|
432
|
+
assertParamExists('getVersionedSettingsProjectsToLoad', 'locator', locator);
|
|
433
|
+
const localVarPath =
|
|
434
|
+
`/app/rest/projects/{locator}/versionedSettings/affectedProjects`.replace(
|
|
435
|
+
`{${'locator'}}`,
|
|
436
|
+
encodeURIComponent(String(locator))
|
|
437
|
+
);
|
|
438
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
439
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
440
|
+
let baseOptions;
|
|
441
|
+
if (configuration) {
|
|
442
|
+
baseOptions = configuration.baseOptions;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
446
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
447
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
448
|
+
|
|
449
|
+
if (fields !== undefined) {
|
|
450
|
+
localVarQueryParameter['fields'] = String(fields);
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
454
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
455
|
+
localVarRequestOptions.headers = {
|
|
456
|
+
...localVarHeaderParameter,
|
|
457
|
+
...headersFromBaseOptions,
|
|
458
|
+
...options["headers"],
|
|
459
|
+
};
|
|
460
|
+
|
|
461
|
+
return {
|
|
462
|
+
url: toPathString(localVarUrlObj),
|
|
463
|
+
options: localVarRequestOptions,
|
|
464
|
+
};
|
|
465
|
+
},
|
|
466
|
+
/**
|
|
467
|
+
*
|
|
468
|
+
* @summary Get current status of Versioned Settings.
|
|
469
|
+
* @param {string} locator
|
|
470
|
+
* @param {string} [fields]
|
|
471
|
+
* @param {*} [options] Override http request option.
|
|
472
|
+
* @throws {RequiredError}
|
|
473
|
+
*/
|
|
474
|
+
getVersionedSettingsStatus: async (
|
|
475
|
+
locator: string,
|
|
476
|
+
fields?: string,
|
|
477
|
+
options: RawAxiosRequestConfig = {}
|
|
478
|
+
): Promise<RequestArgs> => {
|
|
479
|
+
// verify required parameter 'locator' is not null or undefined
|
|
480
|
+
assertParamExists('getVersionedSettingsStatus', 'locator', locator);
|
|
481
|
+
const localVarPath = `/app/rest/projects/{locator}/versionedSettings/status`.replace(
|
|
482
|
+
`{${'locator'}}`,
|
|
483
|
+
encodeURIComponent(String(locator))
|
|
484
|
+
);
|
|
485
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
486
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
487
|
+
let baseOptions;
|
|
488
|
+
if (configuration) {
|
|
489
|
+
baseOptions = configuration.baseOptions;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
493
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
494
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
495
|
+
|
|
496
|
+
if (fields !== undefined) {
|
|
497
|
+
localVarQueryParameter['fields'] = String(fields);
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
501
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
502
|
+
localVarRequestOptions.headers = {
|
|
503
|
+
...localVarHeaderParameter,
|
|
504
|
+
...headersFromBaseOptions,
|
|
505
|
+
...options["headers"],
|
|
506
|
+
};
|
|
507
|
+
|
|
508
|
+
return {
|
|
509
|
+
url: toPathString(localVarUrlObj),
|
|
510
|
+
options: localVarRequestOptions,
|
|
511
|
+
};
|
|
512
|
+
},
|
|
513
|
+
/**
|
|
514
|
+
*
|
|
515
|
+
* @summary Get Versioned Settings Tokens.
|
|
516
|
+
* @param {string} locator
|
|
517
|
+
* @param {string} [status]
|
|
518
|
+
* @param {*} [options] Override http request option.
|
|
519
|
+
* @throws {RequiredError}
|
|
520
|
+
*/
|
|
521
|
+
getVersionedSettingsTokens: async (
|
|
522
|
+
locator: string,
|
|
523
|
+
status?: string,
|
|
524
|
+
options: RawAxiosRequestConfig = {}
|
|
525
|
+
): Promise<RequestArgs> => {
|
|
526
|
+
// verify required parameter 'locator' is not null or undefined
|
|
527
|
+
assertParamExists('getVersionedSettingsTokens', 'locator', locator);
|
|
528
|
+
const localVarPath = `/app/rest/projects/{locator}/versionedSettings/tokens`.replace(
|
|
529
|
+
`{${'locator'}}`,
|
|
530
|
+
encodeURIComponent(String(locator))
|
|
531
|
+
);
|
|
532
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
533
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
534
|
+
let baseOptions;
|
|
535
|
+
if (configuration) {
|
|
536
|
+
baseOptions = configuration.baseOptions;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
540
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
541
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
542
|
+
|
|
543
|
+
if (status !== undefined) {
|
|
544
|
+
localVarQueryParameter['status'] = String(status);
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
548
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
549
|
+
localVarRequestOptions.headers = {
|
|
550
|
+
...localVarHeaderParameter,
|
|
551
|
+
...headersFromBaseOptions,
|
|
552
|
+
...options["headers"],
|
|
553
|
+
};
|
|
554
|
+
|
|
555
|
+
return {
|
|
556
|
+
url: toPathString(localVarUrlObj),
|
|
557
|
+
options: localVarRequestOptions,
|
|
558
|
+
};
|
|
559
|
+
},
|
|
560
|
+
/**
|
|
561
|
+
*
|
|
562
|
+
* @summary Perform Versioned Settings action: Load Setting from VCS.
|
|
563
|
+
* @param {string} locator
|
|
564
|
+
* @param {string} [fields]
|
|
565
|
+
* @param {*} [options] Override http request option.
|
|
566
|
+
* @throws {RequiredError}
|
|
567
|
+
*/
|
|
568
|
+
loadSettingsFromVCS: async (
|
|
569
|
+
locator: string,
|
|
570
|
+
fields?: string,
|
|
571
|
+
options: RawAxiosRequestConfig = {}
|
|
572
|
+
): Promise<RequestArgs> => {
|
|
573
|
+
// verify required parameter 'locator' is not null or undefined
|
|
574
|
+
assertParamExists('loadSettingsFromVCS', 'locator', locator);
|
|
575
|
+
const localVarPath = `/app/rest/projects/{locator}/versionedSettings/loadSettings`.replace(
|
|
576
|
+
`{${'locator'}}`,
|
|
577
|
+
encodeURIComponent(String(locator))
|
|
578
|
+
);
|
|
579
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
580
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
581
|
+
let baseOptions;
|
|
582
|
+
if (configuration) {
|
|
583
|
+
baseOptions = configuration.baseOptions;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
587
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
588
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
589
|
+
|
|
590
|
+
if (fields !== undefined) {
|
|
591
|
+
localVarQueryParameter['fields'] = String(fields);
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
595
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
596
|
+
localVarRequestOptions.headers = {
|
|
597
|
+
...localVarHeaderParameter,
|
|
598
|
+
...headersFromBaseOptions,
|
|
599
|
+
...options["headers"],
|
|
600
|
+
};
|
|
601
|
+
|
|
602
|
+
return {
|
|
603
|
+
url: toPathString(localVarUrlObj),
|
|
604
|
+
options: localVarRequestOptions,
|
|
605
|
+
};
|
|
606
|
+
},
|
|
607
|
+
/**
|
|
608
|
+
*
|
|
609
|
+
* @summary Set Verseioned Settings config.
|
|
610
|
+
* @param {string} locator
|
|
611
|
+
* @param {string} [fields]
|
|
612
|
+
* @param {VersionedSettingsConfig} [body]
|
|
613
|
+
* @param {*} [options] Override http request option.
|
|
614
|
+
* @throws {RequiredError}
|
|
615
|
+
*/
|
|
616
|
+
setVersionedSettingsConfig: async (
|
|
617
|
+
locator: string,
|
|
618
|
+
fields?: string,
|
|
619
|
+
body?: VersionedSettingsConfig,
|
|
620
|
+
options: RawAxiosRequestConfig = {}
|
|
621
|
+
): Promise<RequestArgs> => {
|
|
622
|
+
// verify required parameter 'locator' is not null or undefined
|
|
623
|
+
assertParamExists('setVersionedSettingsConfig', 'locator', locator);
|
|
624
|
+
const localVarPath = `/app/rest/projects/{locator}/versionedSettings/config`.replace(
|
|
625
|
+
`{${'locator'}}`,
|
|
626
|
+
encodeURIComponent(String(locator))
|
|
627
|
+
);
|
|
628
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
629
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
630
|
+
let baseOptions;
|
|
631
|
+
if (configuration) {
|
|
632
|
+
baseOptions = configuration.baseOptions;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options };
|
|
636
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
637
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
638
|
+
|
|
639
|
+
if (fields !== undefined) {
|
|
640
|
+
localVarQueryParameter['fields'] = String(fields);
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
644
|
+
|
|
645
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
646
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
647
|
+
localVarRequestOptions.headers = {
|
|
648
|
+
...localVarHeaderParameter,
|
|
649
|
+
...headersFromBaseOptions,
|
|
650
|
+
...options["headers"],
|
|
651
|
+
};
|
|
652
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
653
|
+
body,
|
|
654
|
+
localVarRequestOptions,
|
|
655
|
+
configuration
|
|
656
|
+
);
|
|
657
|
+
|
|
658
|
+
return {
|
|
659
|
+
url: toPathString(localVarUrlObj),
|
|
660
|
+
options: localVarRequestOptions,
|
|
661
|
+
};
|
|
662
|
+
},
|
|
663
|
+
/**
|
|
664
|
+
*
|
|
665
|
+
* @summary Set Versioned Settings config parameter value.
|
|
666
|
+
* @param {string} locator
|
|
667
|
+
* @param {string} name
|
|
668
|
+
* @param {string} [body]
|
|
669
|
+
* @param {*} [options] Override http request option.
|
|
670
|
+
* @throws {RequiredError}
|
|
671
|
+
*/
|
|
672
|
+
setVersionedSettingsConfigParameter: async (
|
|
673
|
+
locator: string,
|
|
674
|
+
name: string,
|
|
675
|
+
body?: string,
|
|
676
|
+
options: RawAxiosRequestConfig = {}
|
|
677
|
+
): Promise<RequestArgs> => {
|
|
678
|
+
// verify required parameter 'locator' is not null or undefined
|
|
679
|
+
assertParamExists('setVersionedSettingsConfigParameter', 'locator', locator);
|
|
680
|
+
// verify required parameter 'name' is not null or undefined
|
|
681
|
+
assertParamExists('setVersionedSettingsConfigParameter', 'name', name);
|
|
682
|
+
const localVarPath = `/app/rest/projects/{locator}/versionedSettings/config/parameters/{name}`
|
|
683
|
+
.replace(`{${'locator'}}`, encodeURIComponent(String(locator)))
|
|
684
|
+
.replace(`{${'name'}}`, encodeURIComponent(String(name)));
|
|
685
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
686
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
687
|
+
let baseOptions;
|
|
688
|
+
if (configuration) {
|
|
689
|
+
baseOptions = configuration.baseOptions;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options };
|
|
693
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
694
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
695
|
+
|
|
696
|
+
localVarHeaderParameter['Content-Type'] = 'text/plain';
|
|
697
|
+
|
|
698
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
699
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
700
|
+
localVarRequestOptions.headers = {
|
|
701
|
+
...localVarHeaderParameter,
|
|
702
|
+
...headersFromBaseOptions,
|
|
703
|
+
...options["headers"],
|
|
704
|
+
};
|
|
705
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
706
|
+
body,
|
|
707
|
+
localVarRequestOptions,
|
|
708
|
+
configuration
|
|
709
|
+
);
|
|
710
|
+
|
|
711
|
+
return {
|
|
712
|
+
url: toPathString(localVarUrlObj),
|
|
713
|
+
options: localVarRequestOptions,
|
|
714
|
+
};
|
|
715
|
+
},
|
|
716
|
+
/**
|
|
717
|
+
*
|
|
718
|
+
* @summary Set Versioned Settings Context Parameters.
|
|
719
|
+
* @param {string} locator
|
|
720
|
+
* @param {VersionedSettingsContextParameters} [body]
|
|
721
|
+
* @param {*} [options] Override http request option.
|
|
722
|
+
* @throws {RequiredError}
|
|
723
|
+
*/
|
|
724
|
+
setVersionedSettingsContextParameters: async (
|
|
725
|
+
locator: string,
|
|
726
|
+
body?: VersionedSettingsContextParameters,
|
|
727
|
+
options: RawAxiosRequestConfig = {}
|
|
728
|
+
): Promise<RequestArgs> => {
|
|
729
|
+
// verify required parameter 'locator' is not null or undefined
|
|
730
|
+
assertParamExists('setVersionedSettingsContextParameters', 'locator', locator);
|
|
731
|
+
const localVarPath =
|
|
732
|
+
`/app/rest/projects/{locator}/versionedSettings/contextParameters`.replace(
|
|
733
|
+
`{${'locator'}}`,
|
|
734
|
+
encodeURIComponent(String(locator))
|
|
735
|
+
);
|
|
736
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
737
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
738
|
+
let baseOptions;
|
|
739
|
+
if (configuration) {
|
|
740
|
+
baseOptions = configuration.baseOptions;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options };
|
|
744
|
+
const localVarHeaderParameter = {} as Record<string, string>;
|
|
745
|
+
const localVarQueryParameter = {} as Record<string, string>;
|
|
746
|
+
|
|
747
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
748
|
+
|
|
749
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
750
|
+
let headersFromBaseOptions = baseOptions && baseOptions["headers"] ? baseOptions["headers"] : {};
|
|
751
|
+
localVarRequestOptions.headers = {
|
|
752
|
+
...localVarHeaderParameter,
|
|
753
|
+
...headersFromBaseOptions,
|
|
754
|
+
...options["headers"],
|
|
755
|
+
};
|
|
756
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
757
|
+
body,
|
|
758
|
+
localVarRequestOptions,
|
|
759
|
+
configuration
|
|
760
|
+
);
|
|
761
|
+
|
|
762
|
+
return {
|
|
763
|
+
url: toPathString(localVarUrlObj),
|
|
764
|
+
options: localVarRequestOptions,
|
|
765
|
+
};
|
|
766
|
+
},
|
|
767
|
+
};
|
|
768
|
+
};
|
|
769
|
+
|
|
770
|
+
/**
|
|
771
|
+
* VersionedSettingsApi - functional programming interface
|
|
772
|
+
* @export
|
|
773
|
+
*/
|
|
774
|
+
export const VersionedSettingsApiFp = function (configuration?: Configuration) {
|
|
775
|
+
const localVarAxiosParamCreator = VersionedSettingsApiAxiosParamCreator(configuration);
|
|
776
|
+
return {
|
|
777
|
+
/**
|
|
778
|
+
*
|
|
779
|
+
* @summary Add Versioned Settings Tokens.
|
|
780
|
+
* @param {string} locator
|
|
781
|
+
* @param {VersionedSettingsTokens} [body]
|
|
782
|
+
* @param {*} [options] Override http request option.
|
|
783
|
+
* @throws {RequiredError}
|
|
784
|
+
*/
|
|
785
|
+
async addVersionedSettingsTokens(
|
|
786
|
+
locator: string,
|
|
787
|
+
body?: VersionedSettingsTokens,
|
|
788
|
+
options?: RawAxiosRequestConfig
|
|
789
|
+
): Promise<
|
|
790
|
+
(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VersionedSettingsTokens>
|
|
791
|
+
> {
|
|
792
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.addVersionedSettingsTokens(
|
|
793
|
+
locator,
|
|
794
|
+
body,
|
|
795
|
+
options
|
|
796
|
+
);
|
|
797
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
798
|
+
const localVarOperationServerBasePath =
|
|
799
|
+
operationServerMap['VersionedSettingsApi.addVersionedSettingsTokens']?.[
|
|
800
|
+
localVarOperationServerIndex
|
|
801
|
+
]?.url;
|
|
802
|
+
return (axios, basePath) =>
|
|
803
|
+
createRequestFunction(
|
|
804
|
+
localVarAxiosArgs,
|
|
805
|
+
globalAxios,
|
|
806
|
+
BASE_PATH,
|
|
807
|
+
configuration
|
|
808
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
809
|
+
},
|
|
810
|
+
/**
|
|
811
|
+
*
|
|
812
|
+
* @summary Check for changes in Versioned Settings.
|
|
813
|
+
* @param {string} locator
|
|
814
|
+
* @param {*} [options] Override http request option.
|
|
815
|
+
* @throws {RequiredError}
|
|
816
|
+
*/
|
|
817
|
+
async checkForVersionedSettingsChanges(
|
|
818
|
+
locator: string,
|
|
819
|
+
options?: RawAxiosRequestConfig
|
|
820
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
821
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.checkForVersionedSettingsChanges(
|
|
822
|
+
locator,
|
|
823
|
+
options
|
|
824
|
+
);
|
|
825
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
826
|
+
const localVarOperationServerBasePath =
|
|
827
|
+
operationServerMap['VersionedSettingsApi.checkForVersionedSettingsChanges']?.[
|
|
828
|
+
localVarOperationServerIndex
|
|
829
|
+
]?.url;
|
|
830
|
+
return (axios, basePath) =>
|
|
831
|
+
createRequestFunction(
|
|
832
|
+
localVarAxiosArgs,
|
|
833
|
+
globalAxios,
|
|
834
|
+
BASE_PATH,
|
|
835
|
+
configuration
|
|
836
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
837
|
+
},
|
|
838
|
+
/**
|
|
839
|
+
*
|
|
840
|
+
* @summary Perform Versioned Settings action: Commit current settings to VCS.
|
|
841
|
+
* @param {string} locator
|
|
842
|
+
* @param {*} [options] Override http request option.
|
|
843
|
+
* @throws {RequiredError}
|
|
844
|
+
*/
|
|
845
|
+
async commitCurrentSettings(
|
|
846
|
+
locator: string,
|
|
847
|
+
options?: RawAxiosRequestConfig
|
|
848
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
849
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.commitCurrentSettings(
|
|
850
|
+
locator,
|
|
851
|
+
options
|
|
852
|
+
);
|
|
853
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
854
|
+
const localVarOperationServerBasePath =
|
|
855
|
+
operationServerMap['VersionedSettingsApi.commitCurrentSettings']?.[
|
|
856
|
+
localVarOperationServerIndex
|
|
857
|
+
]?.url;
|
|
858
|
+
return (axios, basePath) =>
|
|
859
|
+
createRequestFunction(
|
|
860
|
+
localVarAxiosArgs,
|
|
861
|
+
globalAxios,
|
|
862
|
+
BASE_PATH,
|
|
863
|
+
configuration
|
|
864
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
865
|
+
},
|
|
866
|
+
/**
|
|
867
|
+
*
|
|
868
|
+
* @summary Delete Versioned Settings config parameter value.
|
|
869
|
+
* @param {string} locator
|
|
870
|
+
* @param {string} name
|
|
871
|
+
* @param {*} [options] Override http request option.
|
|
872
|
+
* @throws {RequiredError}
|
|
873
|
+
*/
|
|
874
|
+
async deleteVersionedSettingsConfigParameter(
|
|
875
|
+
locator: string,
|
|
876
|
+
name: string,
|
|
877
|
+
options?: RawAxiosRequestConfig
|
|
878
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
879
|
+
const localVarAxiosArgs =
|
|
880
|
+
await localVarAxiosParamCreator.deleteVersionedSettingsConfigParameter(
|
|
881
|
+
locator,
|
|
882
|
+
name,
|
|
883
|
+
options
|
|
884
|
+
);
|
|
885
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
886
|
+
const localVarOperationServerBasePath =
|
|
887
|
+
operationServerMap['VersionedSettingsApi.deleteVersionedSettingsConfigParameter']?.[
|
|
888
|
+
localVarOperationServerIndex
|
|
889
|
+
]?.url;
|
|
890
|
+
return (axios, basePath) =>
|
|
891
|
+
createRequestFunction(
|
|
892
|
+
localVarAxiosArgs,
|
|
893
|
+
globalAxios,
|
|
894
|
+
BASE_PATH,
|
|
895
|
+
configuration
|
|
896
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
897
|
+
},
|
|
898
|
+
/**
|
|
899
|
+
*
|
|
900
|
+
* @summary Delete Versioned Settings Tokens.
|
|
901
|
+
* @param {string} locator
|
|
902
|
+
* @param {VersionedSettingsTokens} [body]
|
|
903
|
+
* @param {*} [options] Override http request option.
|
|
904
|
+
* @throws {RequiredError}
|
|
905
|
+
*/
|
|
906
|
+
async deleteVersionedSettingsTokens(
|
|
907
|
+
locator: string,
|
|
908
|
+
body?: VersionedSettingsTokens,
|
|
909
|
+
options?: RawAxiosRequestConfig
|
|
910
|
+
): Promise<
|
|
911
|
+
(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VersionedSettingsTokens>
|
|
912
|
+
> {
|
|
913
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVersionedSettingsTokens(
|
|
914
|
+
locator,
|
|
915
|
+
body,
|
|
916
|
+
options
|
|
917
|
+
);
|
|
918
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
919
|
+
const localVarOperationServerBasePath =
|
|
920
|
+
operationServerMap['VersionedSettingsApi.deleteVersionedSettingsTokens']?.[
|
|
921
|
+
localVarOperationServerIndex
|
|
922
|
+
]?.url;
|
|
923
|
+
return (axios, basePath) =>
|
|
924
|
+
createRequestFunction(
|
|
925
|
+
localVarAxiosArgs,
|
|
926
|
+
globalAxios,
|
|
927
|
+
BASE_PATH,
|
|
928
|
+
configuration
|
|
929
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
930
|
+
},
|
|
931
|
+
/**
|
|
932
|
+
*
|
|
933
|
+
* @summary Get Versioned Settings config.
|
|
934
|
+
* @param {string} locator
|
|
935
|
+
* @param {string} [fields]
|
|
936
|
+
* @param {*} [options] Override http request option.
|
|
937
|
+
* @throws {RequiredError}
|
|
938
|
+
*/
|
|
939
|
+
async getVersionedSettingsConfig(
|
|
940
|
+
locator: string,
|
|
941
|
+
fields?: string,
|
|
942
|
+
options?: RawAxiosRequestConfig
|
|
943
|
+
): Promise<
|
|
944
|
+
(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VersionedSettingsConfig>
|
|
945
|
+
> {
|
|
946
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVersionedSettingsConfig(
|
|
947
|
+
locator,
|
|
948
|
+
fields,
|
|
949
|
+
options
|
|
950
|
+
);
|
|
951
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
952
|
+
const localVarOperationServerBasePath =
|
|
953
|
+
operationServerMap['VersionedSettingsApi.getVersionedSettingsConfig']?.[
|
|
954
|
+
localVarOperationServerIndex
|
|
955
|
+
]?.url;
|
|
956
|
+
return (axios, basePath) =>
|
|
957
|
+
createRequestFunction(
|
|
958
|
+
localVarAxiosArgs,
|
|
959
|
+
globalAxios,
|
|
960
|
+
BASE_PATH,
|
|
961
|
+
configuration
|
|
962
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
963
|
+
},
|
|
964
|
+
/**
|
|
965
|
+
*
|
|
966
|
+
* @summary Get Versioned Settings config parameter value.
|
|
967
|
+
* @param {string} locator
|
|
968
|
+
* @param {string} name
|
|
969
|
+
* @param {*} [options] Override http request option.
|
|
970
|
+
* @throws {RequiredError}
|
|
971
|
+
*/
|
|
972
|
+
async getVersionedSettingsConfigParameter(
|
|
973
|
+
locator: string,
|
|
974
|
+
name: string,
|
|
975
|
+
options?: RawAxiosRequestConfig
|
|
976
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
977
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVersionedSettingsConfigParameter(
|
|
978
|
+
locator,
|
|
979
|
+
name,
|
|
980
|
+
options
|
|
981
|
+
);
|
|
982
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
983
|
+
const localVarOperationServerBasePath =
|
|
984
|
+
operationServerMap['VersionedSettingsApi.getVersionedSettingsConfigParameter']?.[
|
|
985
|
+
localVarOperationServerIndex
|
|
986
|
+
]?.url;
|
|
987
|
+
return (axios, basePath) =>
|
|
988
|
+
createRequestFunction(
|
|
989
|
+
localVarAxiosArgs,
|
|
990
|
+
globalAxios,
|
|
991
|
+
BASE_PATH,
|
|
992
|
+
configuration
|
|
993
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
994
|
+
},
|
|
995
|
+
/**
|
|
996
|
+
*
|
|
997
|
+
* @summary Get Versioned Settings Context Parameters.
|
|
998
|
+
* @param {string} locator
|
|
999
|
+
* @param {*} [options] Override http request option.
|
|
1000
|
+
* @throws {RequiredError}
|
|
1001
|
+
*/
|
|
1002
|
+
async getVersionedSettingsContextParameters(
|
|
1003
|
+
locator: string,
|
|
1004
|
+
options?: RawAxiosRequestConfig
|
|
1005
|
+
): Promise<
|
|
1006
|
+
(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VersionedSettingsContextParameters>
|
|
1007
|
+
> {
|
|
1008
|
+
const localVarAxiosArgs =
|
|
1009
|
+
await localVarAxiosParamCreator.getVersionedSettingsContextParameters(locator, options);
|
|
1010
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1011
|
+
const localVarOperationServerBasePath =
|
|
1012
|
+
operationServerMap['VersionedSettingsApi.getVersionedSettingsContextParameters']?.[
|
|
1013
|
+
localVarOperationServerIndex
|
|
1014
|
+
]?.url;
|
|
1015
|
+
return (axios, basePath) =>
|
|
1016
|
+
createRequestFunction(
|
|
1017
|
+
localVarAxiosArgs,
|
|
1018
|
+
globalAxios,
|
|
1019
|
+
BASE_PATH,
|
|
1020
|
+
configuration
|
|
1021
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
1022
|
+
},
|
|
1023
|
+
/**
|
|
1024
|
+
*
|
|
1025
|
+
* @summary Get a list of projects that are affected by Load Settings from VCS action.
|
|
1026
|
+
* @param {string} locator
|
|
1027
|
+
* @param {string} [fields]
|
|
1028
|
+
* @param {*} [options] Override http request option.
|
|
1029
|
+
* @throws {RequiredError}
|
|
1030
|
+
*/
|
|
1031
|
+
async getVersionedSettingsProjectsToLoad(
|
|
1032
|
+
locator: string,
|
|
1033
|
+
fields?: string,
|
|
1034
|
+
options?: RawAxiosRequestConfig
|
|
1035
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Projects>> {
|
|
1036
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVersionedSettingsProjectsToLoad(
|
|
1037
|
+
locator,
|
|
1038
|
+
fields,
|
|
1039
|
+
options
|
|
1040
|
+
);
|
|
1041
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1042
|
+
const localVarOperationServerBasePath =
|
|
1043
|
+
operationServerMap['VersionedSettingsApi.getVersionedSettingsProjectsToLoad']?.[
|
|
1044
|
+
localVarOperationServerIndex
|
|
1045
|
+
]?.url;
|
|
1046
|
+
return (axios, basePath) =>
|
|
1047
|
+
createRequestFunction(
|
|
1048
|
+
localVarAxiosArgs,
|
|
1049
|
+
globalAxios,
|
|
1050
|
+
BASE_PATH,
|
|
1051
|
+
configuration
|
|
1052
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
1053
|
+
},
|
|
1054
|
+
/**
|
|
1055
|
+
*
|
|
1056
|
+
* @summary Get current status of Versioned Settings.
|
|
1057
|
+
* @param {string} locator
|
|
1058
|
+
* @param {string} [fields]
|
|
1059
|
+
* @param {*} [options] Override http request option.
|
|
1060
|
+
* @throws {RequiredError}
|
|
1061
|
+
*/
|
|
1062
|
+
async getVersionedSettingsStatus(
|
|
1063
|
+
locator: string,
|
|
1064
|
+
fields?: string,
|
|
1065
|
+
options?: RawAxiosRequestConfig
|
|
1066
|
+
): Promise<
|
|
1067
|
+
(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VersionedSettingsStatus>
|
|
1068
|
+
> {
|
|
1069
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVersionedSettingsStatus(
|
|
1070
|
+
locator,
|
|
1071
|
+
fields,
|
|
1072
|
+
options
|
|
1073
|
+
);
|
|
1074
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1075
|
+
const localVarOperationServerBasePath =
|
|
1076
|
+
operationServerMap['VersionedSettingsApi.getVersionedSettingsStatus']?.[
|
|
1077
|
+
localVarOperationServerIndex
|
|
1078
|
+
]?.url;
|
|
1079
|
+
return (axios, basePath) =>
|
|
1080
|
+
createRequestFunction(
|
|
1081
|
+
localVarAxiosArgs,
|
|
1082
|
+
globalAxios,
|
|
1083
|
+
BASE_PATH,
|
|
1084
|
+
configuration
|
|
1085
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
1086
|
+
},
|
|
1087
|
+
/**
|
|
1088
|
+
*
|
|
1089
|
+
* @summary Get Versioned Settings Tokens.
|
|
1090
|
+
* @param {string} locator
|
|
1091
|
+
* @param {string} [status]
|
|
1092
|
+
* @param {*} [options] Override http request option.
|
|
1093
|
+
* @throws {RequiredError}
|
|
1094
|
+
*/
|
|
1095
|
+
async getVersionedSettingsTokens(
|
|
1096
|
+
locator: string,
|
|
1097
|
+
status?: string,
|
|
1098
|
+
options?: RawAxiosRequestConfig
|
|
1099
|
+
): Promise<
|
|
1100
|
+
(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VersionedSettingsTokens>
|
|
1101
|
+
> {
|
|
1102
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVersionedSettingsTokens(
|
|
1103
|
+
locator,
|
|
1104
|
+
status,
|
|
1105
|
+
options
|
|
1106
|
+
);
|
|
1107
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1108
|
+
const localVarOperationServerBasePath =
|
|
1109
|
+
operationServerMap['VersionedSettingsApi.getVersionedSettingsTokens']?.[
|
|
1110
|
+
localVarOperationServerIndex
|
|
1111
|
+
]?.url;
|
|
1112
|
+
return (axios, basePath) =>
|
|
1113
|
+
createRequestFunction(
|
|
1114
|
+
localVarAxiosArgs,
|
|
1115
|
+
globalAxios,
|
|
1116
|
+
BASE_PATH,
|
|
1117
|
+
configuration
|
|
1118
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
1119
|
+
},
|
|
1120
|
+
/**
|
|
1121
|
+
*
|
|
1122
|
+
* @summary Perform Versioned Settings action: Load Setting from VCS.
|
|
1123
|
+
* @param {string} locator
|
|
1124
|
+
* @param {string} [fields]
|
|
1125
|
+
* @param {*} [options] Override http request option.
|
|
1126
|
+
* @throws {RequiredError}
|
|
1127
|
+
*/
|
|
1128
|
+
async loadSettingsFromVCS(
|
|
1129
|
+
locator: string,
|
|
1130
|
+
fields?: string,
|
|
1131
|
+
options?: RawAxiosRequestConfig
|
|
1132
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Projects>> {
|
|
1133
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.loadSettingsFromVCS(
|
|
1134
|
+
locator,
|
|
1135
|
+
fields,
|
|
1136
|
+
options
|
|
1137
|
+
);
|
|
1138
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1139
|
+
const localVarOperationServerBasePath =
|
|
1140
|
+
operationServerMap['VersionedSettingsApi.loadSettingsFromVCS']?.[
|
|
1141
|
+
localVarOperationServerIndex
|
|
1142
|
+
]?.url;
|
|
1143
|
+
return (axios, basePath) =>
|
|
1144
|
+
createRequestFunction(
|
|
1145
|
+
localVarAxiosArgs,
|
|
1146
|
+
globalAxios,
|
|
1147
|
+
BASE_PATH,
|
|
1148
|
+
configuration
|
|
1149
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
1150
|
+
},
|
|
1151
|
+
/**
|
|
1152
|
+
*
|
|
1153
|
+
* @summary Set Verseioned Settings config.
|
|
1154
|
+
* @param {string} locator
|
|
1155
|
+
* @param {string} [fields]
|
|
1156
|
+
* @param {VersionedSettingsConfig} [body]
|
|
1157
|
+
* @param {*} [options] Override http request option.
|
|
1158
|
+
* @throws {RequiredError}
|
|
1159
|
+
*/
|
|
1160
|
+
async setVersionedSettingsConfig(
|
|
1161
|
+
locator: string,
|
|
1162
|
+
fields?: string,
|
|
1163
|
+
body?: VersionedSettingsConfig,
|
|
1164
|
+
options?: RawAxiosRequestConfig
|
|
1165
|
+
): Promise<
|
|
1166
|
+
(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VersionedSettingsConfig>
|
|
1167
|
+
> {
|
|
1168
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setVersionedSettingsConfig(
|
|
1169
|
+
locator,
|
|
1170
|
+
fields,
|
|
1171
|
+
body,
|
|
1172
|
+
options
|
|
1173
|
+
);
|
|
1174
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1175
|
+
const localVarOperationServerBasePath =
|
|
1176
|
+
operationServerMap['VersionedSettingsApi.setVersionedSettingsConfig']?.[
|
|
1177
|
+
localVarOperationServerIndex
|
|
1178
|
+
]?.url;
|
|
1179
|
+
return (axios, basePath) =>
|
|
1180
|
+
createRequestFunction(
|
|
1181
|
+
localVarAxiosArgs,
|
|
1182
|
+
globalAxios,
|
|
1183
|
+
BASE_PATH,
|
|
1184
|
+
configuration
|
|
1185
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
1186
|
+
},
|
|
1187
|
+
/**
|
|
1188
|
+
*
|
|
1189
|
+
* @summary Set Versioned Settings config parameter value.
|
|
1190
|
+
* @param {string} locator
|
|
1191
|
+
* @param {string} name
|
|
1192
|
+
* @param {string} [body]
|
|
1193
|
+
* @param {*} [options] Override http request option.
|
|
1194
|
+
* @throws {RequiredError}
|
|
1195
|
+
*/
|
|
1196
|
+
async setVersionedSettingsConfigParameter(
|
|
1197
|
+
locator: string,
|
|
1198
|
+
name: string,
|
|
1199
|
+
body?: string,
|
|
1200
|
+
options?: RawAxiosRequestConfig
|
|
1201
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
1202
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setVersionedSettingsConfigParameter(
|
|
1203
|
+
locator,
|
|
1204
|
+
name,
|
|
1205
|
+
body,
|
|
1206
|
+
options
|
|
1207
|
+
);
|
|
1208
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1209
|
+
const localVarOperationServerBasePath =
|
|
1210
|
+
operationServerMap['VersionedSettingsApi.setVersionedSettingsConfigParameter']?.[
|
|
1211
|
+
localVarOperationServerIndex
|
|
1212
|
+
]?.url;
|
|
1213
|
+
return (axios, basePath) =>
|
|
1214
|
+
createRequestFunction(
|
|
1215
|
+
localVarAxiosArgs,
|
|
1216
|
+
globalAxios,
|
|
1217
|
+
BASE_PATH,
|
|
1218
|
+
configuration
|
|
1219
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
1220
|
+
},
|
|
1221
|
+
/**
|
|
1222
|
+
*
|
|
1223
|
+
* @summary Set Versioned Settings Context Parameters.
|
|
1224
|
+
* @param {string} locator
|
|
1225
|
+
* @param {VersionedSettingsContextParameters} [body]
|
|
1226
|
+
* @param {*} [options] Override http request option.
|
|
1227
|
+
* @throws {RequiredError}
|
|
1228
|
+
*/
|
|
1229
|
+
async setVersionedSettingsContextParameters(
|
|
1230
|
+
locator: string,
|
|
1231
|
+
body?: VersionedSettingsContextParameters,
|
|
1232
|
+
options?: RawAxiosRequestConfig
|
|
1233
|
+
): Promise<
|
|
1234
|
+
(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VersionedSettingsContextParameters>
|
|
1235
|
+
> {
|
|
1236
|
+
const localVarAxiosArgs =
|
|
1237
|
+
await localVarAxiosParamCreator.setVersionedSettingsContextParameters(
|
|
1238
|
+
locator,
|
|
1239
|
+
body,
|
|
1240
|
+
options
|
|
1241
|
+
);
|
|
1242
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1243
|
+
const localVarOperationServerBasePath =
|
|
1244
|
+
operationServerMap['VersionedSettingsApi.setVersionedSettingsContextParameters']?.[
|
|
1245
|
+
localVarOperationServerIndex
|
|
1246
|
+
]?.url;
|
|
1247
|
+
return (axios, basePath) =>
|
|
1248
|
+
createRequestFunction(
|
|
1249
|
+
localVarAxiosArgs,
|
|
1250
|
+
globalAxios,
|
|
1251
|
+
BASE_PATH,
|
|
1252
|
+
configuration
|
|
1253
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
1254
|
+
},
|
|
1255
|
+
};
|
|
1256
|
+
};
|
|
1257
|
+
|
|
1258
|
+
/**
|
|
1259
|
+
* VersionedSettingsApi - factory interface
|
|
1260
|
+
* @export
|
|
1261
|
+
*/
|
|
1262
|
+
export const VersionedSettingsApiFactory = function (
|
|
1263
|
+
configuration?: Configuration,
|
|
1264
|
+
basePath?: string,
|
|
1265
|
+
axios?: AxiosInstance
|
|
1266
|
+
) {
|
|
1267
|
+
const localVarFp = VersionedSettingsApiFp(configuration);
|
|
1268
|
+
return {
|
|
1269
|
+
/**
|
|
1270
|
+
*
|
|
1271
|
+
* @summary Add Versioned Settings Tokens.
|
|
1272
|
+
* @param {string} locator
|
|
1273
|
+
* @param {VersionedSettingsTokens} [body]
|
|
1274
|
+
* @param {*} [options] Override http request option.
|
|
1275
|
+
* @throws {RequiredError}
|
|
1276
|
+
*/
|
|
1277
|
+
addVersionedSettingsTokens(
|
|
1278
|
+
locator: string,
|
|
1279
|
+
body?: VersionedSettingsTokens,
|
|
1280
|
+
options?: RawAxiosRequestConfig
|
|
1281
|
+
): AxiosPromise<VersionedSettingsTokens> {
|
|
1282
|
+
return localVarFp
|
|
1283
|
+
.addVersionedSettingsTokens(locator, body, options)
|
|
1284
|
+
.then((request) => request(axios, basePath));
|
|
1285
|
+
},
|
|
1286
|
+
/**
|
|
1287
|
+
*
|
|
1288
|
+
* @summary Check for changes in Versioned Settings.
|
|
1289
|
+
* @param {string} locator
|
|
1290
|
+
* @param {*} [options] Override http request option.
|
|
1291
|
+
* @throws {RequiredError}
|
|
1292
|
+
*/
|
|
1293
|
+
checkForVersionedSettingsChanges(
|
|
1294
|
+
locator: string,
|
|
1295
|
+
options?: RawAxiosRequestConfig
|
|
1296
|
+
): AxiosPromise<void> {
|
|
1297
|
+
return localVarFp
|
|
1298
|
+
.checkForVersionedSettingsChanges(locator, options)
|
|
1299
|
+
.then((request) => request(axios, basePath));
|
|
1300
|
+
},
|
|
1301
|
+
/**
|
|
1302
|
+
*
|
|
1303
|
+
* @summary Perform Versioned Settings action: Commit current settings to VCS.
|
|
1304
|
+
* @param {string} locator
|
|
1305
|
+
* @param {*} [options] Override http request option.
|
|
1306
|
+
* @throws {RequiredError}
|
|
1307
|
+
*/
|
|
1308
|
+
commitCurrentSettings(locator: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
1309
|
+
return localVarFp
|
|
1310
|
+
.commitCurrentSettings(locator, options)
|
|
1311
|
+
.then((request) => request(axios, basePath));
|
|
1312
|
+
},
|
|
1313
|
+
/**
|
|
1314
|
+
*
|
|
1315
|
+
* @summary Delete Versioned Settings config parameter value.
|
|
1316
|
+
* @param {string} locator
|
|
1317
|
+
* @param {string} name
|
|
1318
|
+
* @param {*} [options] Override http request option.
|
|
1319
|
+
* @throws {RequiredError}
|
|
1320
|
+
*/
|
|
1321
|
+
deleteVersionedSettingsConfigParameter(
|
|
1322
|
+
locator: string,
|
|
1323
|
+
name: string,
|
|
1324
|
+
options?: RawAxiosRequestConfig
|
|
1325
|
+
): AxiosPromise<void> {
|
|
1326
|
+
return localVarFp
|
|
1327
|
+
.deleteVersionedSettingsConfigParameter(locator, name, options)
|
|
1328
|
+
.then((request) => request(axios, basePath));
|
|
1329
|
+
},
|
|
1330
|
+
/**
|
|
1331
|
+
*
|
|
1332
|
+
* @summary Delete Versioned Settings Tokens.
|
|
1333
|
+
* @param {string} locator
|
|
1334
|
+
* @param {VersionedSettingsTokens} [body]
|
|
1335
|
+
* @param {*} [options] Override http request option.
|
|
1336
|
+
* @throws {RequiredError}
|
|
1337
|
+
*/
|
|
1338
|
+
deleteVersionedSettingsTokens(
|
|
1339
|
+
locator: string,
|
|
1340
|
+
body?: VersionedSettingsTokens,
|
|
1341
|
+
options?: RawAxiosRequestConfig
|
|
1342
|
+
): AxiosPromise<VersionedSettingsTokens> {
|
|
1343
|
+
return localVarFp
|
|
1344
|
+
.deleteVersionedSettingsTokens(locator, body, options)
|
|
1345
|
+
.then((request) => request(axios, basePath));
|
|
1346
|
+
},
|
|
1347
|
+
/**
|
|
1348
|
+
*
|
|
1349
|
+
* @summary Get Versioned Settings config.
|
|
1350
|
+
* @param {string} locator
|
|
1351
|
+
* @param {string} [fields]
|
|
1352
|
+
* @param {*} [options] Override http request option.
|
|
1353
|
+
* @throws {RequiredError}
|
|
1354
|
+
*/
|
|
1355
|
+
getVersionedSettingsConfig(
|
|
1356
|
+
locator: string,
|
|
1357
|
+
fields?: string,
|
|
1358
|
+
options?: RawAxiosRequestConfig
|
|
1359
|
+
): AxiosPromise<VersionedSettingsConfig> {
|
|
1360
|
+
return localVarFp
|
|
1361
|
+
.getVersionedSettingsConfig(locator, fields, options)
|
|
1362
|
+
.then((request) => request(axios, basePath));
|
|
1363
|
+
},
|
|
1364
|
+
/**
|
|
1365
|
+
*
|
|
1366
|
+
* @summary Get Versioned Settings config parameter value.
|
|
1367
|
+
* @param {string} locator
|
|
1368
|
+
* @param {string} name
|
|
1369
|
+
* @param {*} [options] Override http request option.
|
|
1370
|
+
* @throws {RequiredError}
|
|
1371
|
+
*/
|
|
1372
|
+
getVersionedSettingsConfigParameter(
|
|
1373
|
+
locator: string,
|
|
1374
|
+
name: string,
|
|
1375
|
+
options?: RawAxiosRequestConfig
|
|
1376
|
+
): AxiosPromise<string> {
|
|
1377
|
+
return localVarFp
|
|
1378
|
+
.getVersionedSettingsConfigParameter(locator, name, options)
|
|
1379
|
+
.then((request) => request(axios, basePath));
|
|
1380
|
+
},
|
|
1381
|
+
/**
|
|
1382
|
+
*
|
|
1383
|
+
* @summary Get Versioned Settings Context Parameters.
|
|
1384
|
+
* @param {string} locator
|
|
1385
|
+
* @param {*} [options] Override http request option.
|
|
1386
|
+
* @throws {RequiredError}
|
|
1387
|
+
*/
|
|
1388
|
+
getVersionedSettingsContextParameters(
|
|
1389
|
+
locator: string,
|
|
1390
|
+
options?: RawAxiosRequestConfig
|
|
1391
|
+
): AxiosPromise<VersionedSettingsContextParameters> {
|
|
1392
|
+
return localVarFp
|
|
1393
|
+
.getVersionedSettingsContextParameters(locator, options)
|
|
1394
|
+
.then((request) => request(axios, basePath));
|
|
1395
|
+
},
|
|
1396
|
+
/**
|
|
1397
|
+
*
|
|
1398
|
+
* @summary Get a list of projects that are affected by Load Settings from VCS action.
|
|
1399
|
+
* @param {string} locator
|
|
1400
|
+
* @param {string} [fields]
|
|
1401
|
+
* @param {*} [options] Override http request option.
|
|
1402
|
+
* @throws {RequiredError}
|
|
1403
|
+
*/
|
|
1404
|
+
getVersionedSettingsProjectsToLoad(
|
|
1405
|
+
locator: string,
|
|
1406
|
+
fields?: string,
|
|
1407
|
+
options?: RawAxiosRequestConfig
|
|
1408
|
+
): AxiosPromise<Projects> {
|
|
1409
|
+
return localVarFp
|
|
1410
|
+
.getVersionedSettingsProjectsToLoad(locator, fields, options)
|
|
1411
|
+
.then((request) => request(axios, basePath));
|
|
1412
|
+
},
|
|
1413
|
+
/**
|
|
1414
|
+
*
|
|
1415
|
+
* @summary Get current status of Versioned Settings.
|
|
1416
|
+
* @param {string} locator
|
|
1417
|
+
* @param {string} [fields]
|
|
1418
|
+
* @param {*} [options] Override http request option.
|
|
1419
|
+
* @throws {RequiredError}
|
|
1420
|
+
*/
|
|
1421
|
+
getVersionedSettingsStatus(
|
|
1422
|
+
locator: string,
|
|
1423
|
+
fields?: string,
|
|
1424
|
+
options?: RawAxiosRequestConfig
|
|
1425
|
+
): AxiosPromise<VersionedSettingsStatus> {
|
|
1426
|
+
return localVarFp
|
|
1427
|
+
.getVersionedSettingsStatus(locator, fields, options)
|
|
1428
|
+
.then((request) => request(axios, basePath));
|
|
1429
|
+
},
|
|
1430
|
+
/**
|
|
1431
|
+
*
|
|
1432
|
+
* @summary Get Versioned Settings Tokens.
|
|
1433
|
+
* @param {string} locator
|
|
1434
|
+
* @param {string} [status]
|
|
1435
|
+
* @param {*} [options] Override http request option.
|
|
1436
|
+
* @throws {RequiredError}
|
|
1437
|
+
*/
|
|
1438
|
+
getVersionedSettingsTokens(
|
|
1439
|
+
locator: string,
|
|
1440
|
+
status?: string,
|
|
1441
|
+
options?: RawAxiosRequestConfig
|
|
1442
|
+
): AxiosPromise<VersionedSettingsTokens> {
|
|
1443
|
+
return localVarFp
|
|
1444
|
+
.getVersionedSettingsTokens(locator, status, options)
|
|
1445
|
+
.then((request) => request(axios, basePath));
|
|
1446
|
+
},
|
|
1447
|
+
/**
|
|
1448
|
+
*
|
|
1449
|
+
* @summary Perform Versioned Settings action: Load Setting from VCS.
|
|
1450
|
+
* @param {string} locator
|
|
1451
|
+
* @param {string} [fields]
|
|
1452
|
+
* @param {*} [options] Override http request option.
|
|
1453
|
+
* @throws {RequiredError}
|
|
1454
|
+
*/
|
|
1455
|
+
loadSettingsFromVCS(
|
|
1456
|
+
locator: string,
|
|
1457
|
+
fields?: string,
|
|
1458
|
+
options?: RawAxiosRequestConfig
|
|
1459
|
+
): AxiosPromise<Projects> {
|
|
1460
|
+
return localVarFp
|
|
1461
|
+
.loadSettingsFromVCS(locator, fields, options)
|
|
1462
|
+
.then((request) => request(axios, basePath));
|
|
1463
|
+
},
|
|
1464
|
+
/**
|
|
1465
|
+
*
|
|
1466
|
+
* @summary Set Verseioned Settings config.
|
|
1467
|
+
* @param {string} locator
|
|
1468
|
+
* @param {string} [fields]
|
|
1469
|
+
* @param {VersionedSettingsConfig} [body]
|
|
1470
|
+
* @param {*} [options] Override http request option.
|
|
1471
|
+
* @throws {RequiredError}
|
|
1472
|
+
*/
|
|
1473
|
+
setVersionedSettingsConfig(
|
|
1474
|
+
locator: string,
|
|
1475
|
+
fields?: string,
|
|
1476
|
+
body?: VersionedSettingsConfig,
|
|
1477
|
+
options?: RawAxiosRequestConfig
|
|
1478
|
+
): AxiosPromise<VersionedSettingsConfig> {
|
|
1479
|
+
return localVarFp
|
|
1480
|
+
.setVersionedSettingsConfig(locator, fields, body, options)
|
|
1481
|
+
.then((request) => request(axios, basePath));
|
|
1482
|
+
},
|
|
1483
|
+
/**
|
|
1484
|
+
*
|
|
1485
|
+
* @summary Set Versioned Settings config parameter value.
|
|
1486
|
+
* @param {string} locator
|
|
1487
|
+
* @param {string} name
|
|
1488
|
+
* @param {string} [body]
|
|
1489
|
+
* @param {*} [options] Override http request option.
|
|
1490
|
+
* @throws {RequiredError}
|
|
1491
|
+
*/
|
|
1492
|
+
setVersionedSettingsConfigParameter(
|
|
1493
|
+
locator: string,
|
|
1494
|
+
name: string,
|
|
1495
|
+
body?: string,
|
|
1496
|
+
options?: RawAxiosRequestConfig
|
|
1497
|
+
): AxiosPromise<string> {
|
|
1498
|
+
return localVarFp
|
|
1499
|
+
.setVersionedSettingsConfigParameter(locator, name, body, options)
|
|
1500
|
+
.then((request) => request(axios, basePath));
|
|
1501
|
+
},
|
|
1502
|
+
/**
|
|
1503
|
+
*
|
|
1504
|
+
* @summary Set Versioned Settings Context Parameters.
|
|
1505
|
+
* @param {string} locator
|
|
1506
|
+
* @param {VersionedSettingsContextParameters} [body]
|
|
1507
|
+
* @param {*} [options] Override http request option.
|
|
1508
|
+
* @throws {RequiredError}
|
|
1509
|
+
*/
|
|
1510
|
+
setVersionedSettingsContextParameters(
|
|
1511
|
+
locator: string,
|
|
1512
|
+
body?: VersionedSettingsContextParameters,
|
|
1513
|
+
options?: RawAxiosRequestConfig
|
|
1514
|
+
): AxiosPromise<VersionedSettingsContextParameters> {
|
|
1515
|
+
return localVarFp
|
|
1516
|
+
.setVersionedSettingsContextParameters(locator, body, options)
|
|
1517
|
+
.then((request) => request(axios, basePath));
|
|
1518
|
+
},
|
|
1519
|
+
};
|
|
1520
|
+
};
|
|
1521
|
+
|
|
1522
|
+
/**
|
|
1523
|
+
* VersionedSettingsApi - interface
|
|
1524
|
+
* @export
|
|
1525
|
+
* @interface VersionedSettingsApi
|
|
1526
|
+
*/
|
|
1527
|
+
export interface VersionedSettingsApiInterface {
|
|
1528
|
+
/**
|
|
1529
|
+
*
|
|
1530
|
+
* @summary Add Versioned Settings Tokens.
|
|
1531
|
+
* @param {string} locator
|
|
1532
|
+
* @param {VersionedSettingsTokens} [body]
|
|
1533
|
+
* @param {*} [options] Override http request option.
|
|
1534
|
+
* @throws {RequiredError}
|
|
1535
|
+
* @memberof VersionedSettingsApiInterface
|
|
1536
|
+
*/
|
|
1537
|
+
addVersionedSettingsTokens(
|
|
1538
|
+
locator: string,
|
|
1539
|
+
body?: VersionedSettingsTokens,
|
|
1540
|
+
options?: RawAxiosRequestConfig
|
|
1541
|
+
): AxiosPromise<VersionedSettingsTokens>;
|
|
1542
|
+
|
|
1543
|
+
/**
|
|
1544
|
+
*
|
|
1545
|
+
* @summary Check for changes in Versioned Settings.
|
|
1546
|
+
* @param {string} locator
|
|
1547
|
+
* @param {*} [options] Override http request option.
|
|
1548
|
+
* @throws {RequiredError}
|
|
1549
|
+
* @memberof VersionedSettingsApiInterface
|
|
1550
|
+
*/
|
|
1551
|
+
checkForVersionedSettingsChanges(
|
|
1552
|
+
locator: string,
|
|
1553
|
+
options?: RawAxiosRequestConfig
|
|
1554
|
+
): AxiosPromise<void>;
|
|
1555
|
+
|
|
1556
|
+
/**
|
|
1557
|
+
*
|
|
1558
|
+
* @summary Perform Versioned Settings action: Commit current settings to VCS.
|
|
1559
|
+
* @param {string} locator
|
|
1560
|
+
* @param {*} [options] Override http request option.
|
|
1561
|
+
* @throws {RequiredError}
|
|
1562
|
+
* @memberof VersionedSettingsApiInterface
|
|
1563
|
+
*/
|
|
1564
|
+
commitCurrentSettings(locator: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1565
|
+
|
|
1566
|
+
/**
|
|
1567
|
+
*
|
|
1568
|
+
* @summary Delete Versioned Settings config parameter value.
|
|
1569
|
+
* @param {string} locator
|
|
1570
|
+
* @param {string} name
|
|
1571
|
+
* @param {*} [options] Override http request option.
|
|
1572
|
+
* @throws {RequiredError}
|
|
1573
|
+
* @memberof VersionedSettingsApiInterface
|
|
1574
|
+
*/
|
|
1575
|
+
deleteVersionedSettingsConfigParameter(
|
|
1576
|
+
locator: string,
|
|
1577
|
+
name: string,
|
|
1578
|
+
options?: RawAxiosRequestConfig
|
|
1579
|
+
): AxiosPromise<void>;
|
|
1580
|
+
|
|
1581
|
+
/**
|
|
1582
|
+
*
|
|
1583
|
+
* @summary Delete Versioned Settings Tokens.
|
|
1584
|
+
* @param {string} locator
|
|
1585
|
+
* @param {VersionedSettingsTokens} [body]
|
|
1586
|
+
* @param {*} [options] Override http request option.
|
|
1587
|
+
* @throws {RequiredError}
|
|
1588
|
+
* @memberof VersionedSettingsApiInterface
|
|
1589
|
+
*/
|
|
1590
|
+
deleteVersionedSettingsTokens(
|
|
1591
|
+
locator: string,
|
|
1592
|
+
body?: VersionedSettingsTokens,
|
|
1593
|
+
options?: RawAxiosRequestConfig
|
|
1594
|
+
): AxiosPromise<VersionedSettingsTokens>;
|
|
1595
|
+
|
|
1596
|
+
/**
|
|
1597
|
+
*
|
|
1598
|
+
* @summary Get Versioned Settings config.
|
|
1599
|
+
* @param {string} locator
|
|
1600
|
+
* @param {string} [fields]
|
|
1601
|
+
* @param {*} [options] Override http request option.
|
|
1602
|
+
* @throws {RequiredError}
|
|
1603
|
+
* @memberof VersionedSettingsApiInterface
|
|
1604
|
+
*/
|
|
1605
|
+
getVersionedSettingsConfig(
|
|
1606
|
+
locator: string,
|
|
1607
|
+
fields?: string,
|
|
1608
|
+
options?: RawAxiosRequestConfig
|
|
1609
|
+
): AxiosPromise<VersionedSettingsConfig>;
|
|
1610
|
+
|
|
1611
|
+
/**
|
|
1612
|
+
*
|
|
1613
|
+
* @summary Get Versioned Settings config parameter value.
|
|
1614
|
+
* @param {string} locator
|
|
1615
|
+
* @param {string} name
|
|
1616
|
+
* @param {*} [options] Override http request option.
|
|
1617
|
+
* @throws {RequiredError}
|
|
1618
|
+
* @memberof VersionedSettingsApiInterface
|
|
1619
|
+
*/
|
|
1620
|
+
getVersionedSettingsConfigParameter(
|
|
1621
|
+
locator: string,
|
|
1622
|
+
name: string,
|
|
1623
|
+
options?: RawAxiosRequestConfig
|
|
1624
|
+
): AxiosPromise<string>;
|
|
1625
|
+
|
|
1626
|
+
/**
|
|
1627
|
+
*
|
|
1628
|
+
* @summary Get Versioned Settings Context Parameters.
|
|
1629
|
+
* @param {string} locator
|
|
1630
|
+
* @param {*} [options] Override http request option.
|
|
1631
|
+
* @throws {RequiredError}
|
|
1632
|
+
* @memberof VersionedSettingsApiInterface
|
|
1633
|
+
*/
|
|
1634
|
+
getVersionedSettingsContextParameters(
|
|
1635
|
+
locator: string,
|
|
1636
|
+
options?: RawAxiosRequestConfig
|
|
1637
|
+
): AxiosPromise<VersionedSettingsContextParameters>;
|
|
1638
|
+
|
|
1639
|
+
/**
|
|
1640
|
+
*
|
|
1641
|
+
* @summary Get a list of projects that are affected by Load Settings from VCS action.
|
|
1642
|
+
* @param {string} locator
|
|
1643
|
+
* @param {string} [fields]
|
|
1644
|
+
* @param {*} [options] Override http request option.
|
|
1645
|
+
* @throws {RequiredError}
|
|
1646
|
+
* @memberof VersionedSettingsApiInterface
|
|
1647
|
+
*/
|
|
1648
|
+
getVersionedSettingsProjectsToLoad(
|
|
1649
|
+
locator: string,
|
|
1650
|
+
fields?: string,
|
|
1651
|
+
options?: RawAxiosRequestConfig
|
|
1652
|
+
): AxiosPromise<Projects>;
|
|
1653
|
+
|
|
1654
|
+
/**
|
|
1655
|
+
*
|
|
1656
|
+
* @summary Get current status of Versioned Settings.
|
|
1657
|
+
* @param {string} locator
|
|
1658
|
+
* @param {string} [fields]
|
|
1659
|
+
* @param {*} [options] Override http request option.
|
|
1660
|
+
* @throws {RequiredError}
|
|
1661
|
+
* @memberof VersionedSettingsApiInterface
|
|
1662
|
+
*/
|
|
1663
|
+
getVersionedSettingsStatus(
|
|
1664
|
+
locator: string,
|
|
1665
|
+
fields?: string,
|
|
1666
|
+
options?: RawAxiosRequestConfig
|
|
1667
|
+
): AxiosPromise<VersionedSettingsStatus>;
|
|
1668
|
+
|
|
1669
|
+
/**
|
|
1670
|
+
*
|
|
1671
|
+
* @summary Get Versioned Settings Tokens.
|
|
1672
|
+
* @param {string} locator
|
|
1673
|
+
* @param {string} [status]
|
|
1674
|
+
* @param {*} [options] Override http request option.
|
|
1675
|
+
* @throws {RequiredError}
|
|
1676
|
+
* @memberof VersionedSettingsApiInterface
|
|
1677
|
+
*/
|
|
1678
|
+
getVersionedSettingsTokens(
|
|
1679
|
+
locator: string,
|
|
1680
|
+
status?: string,
|
|
1681
|
+
options?: RawAxiosRequestConfig
|
|
1682
|
+
): AxiosPromise<VersionedSettingsTokens>;
|
|
1683
|
+
|
|
1684
|
+
/**
|
|
1685
|
+
*
|
|
1686
|
+
* @summary Perform Versioned Settings action: Load Setting from VCS.
|
|
1687
|
+
* @param {string} locator
|
|
1688
|
+
* @param {string} [fields]
|
|
1689
|
+
* @param {*} [options] Override http request option.
|
|
1690
|
+
* @throws {RequiredError}
|
|
1691
|
+
* @memberof VersionedSettingsApiInterface
|
|
1692
|
+
*/
|
|
1693
|
+
loadSettingsFromVCS(
|
|
1694
|
+
locator: string,
|
|
1695
|
+
fields?: string,
|
|
1696
|
+
options?: RawAxiosRequestConfig
|
|
1697
|
+
): AxiosPromise<Projects>;
|
|
1698
|
+
|
|
1699
|
+
/**
|
|
1700
|
+
*
|
|
1701
|
+
* @summary Set Verseioned Settings config.
|
|
1702
|
+
* @param {string} locator
|
|
1703
|
+
* @param {string} [fields]
|
|
1704
|
+
* @param {VersionedSettingsConfig} [body]
|
|
1705
|
+
* @param {*} [options] Override http request option.
|
|
1706
|
+
* @throws {RequiredError}
|
|
1707
|
+
* @memberof VersionedSettingsApiInterface
|
|
1708
|
+
*/
|
|
1709
|
+
setVersionedSettingsConfig(
|
|
1710
|
+
locator: string,
|
|
1711
|
+
fields?: string,
|
|
1712
|
+
body?: VersionedSettingsConfig,
|
|
1713
|
+
options?: RawAxiosRequestConfig
|
|
1714
|
+
): AxiosPromise<VersionedSettingsConfig>;
|
|
1715
|
+
|
|
1716
|
+
/**
|
|
1717
|
+
*
|
|
1718
|
+
* @summary Set Versioned Settings config parameter value.
|
|
1719
|
+
* @param {string} locator
|
|
1720
|
+
* @param {string} name
|
|
1721
|
+
* @param {string} [body]
|
|
1722
|
+
* @param {*} [options] Override http request option.
|
|
1723
|
+
* @throws {RequiredError}
|
|
1724
|
+
* @memberof VersionedSettingsApiInterface
|
|
1725
|
+
*/
|
|
1726
|
+
setVersionedSettingsConfigParameter(
|
|
1727
|
+
locator: string,
|
|
1728
|
+
name: string,
|
|
1729
|
+
body?: string,
|
|
1730
|
+
options?: RawAxiosRequestConfig
|
|
1731
|
+
): AxiosPromise<string>;
|
|
1732
|
+
|
|
1733
|
+
/**
|
|
1734
|
+
*
|
|
1735
|
+
* @summary Set Versioned Settings Context Parameters.
|
|
1736
|
+
* @param {string} locator
|
|
1737
|
+
* @param {VersionedSettingsContextParameters} [body]
|
|
1738
|
+
* @param {*} [options] Override http request option.
|
|
1739
|
+
* @throws {RequiredError}
|
|
1740
|
+
* @memberof VersionedSettingsApiInterface
|
|
1741
|
+
*/
|
|
1742
|
+
setVersionedSettingsContextParameters(
|
|
1743
|
+
locator: string,
|
|
1744
|
+
body?: VersionedSettingsContextParameters,
|
|
1745
|
+
options?: RawAxiosRequestConfig
|
|
1746
|
+
): AxiosPromise<VersionedSettingsContextParameters>;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
/**
|
|
1750
|
+
* VersionedSettingsApi - object-oriented interface
|
|
1751
|
+
* @export
|
|
1752
|
+
* @class VersionedSettingsApi
|
|
1753
|
+
* @extends {BaseAPI}
|
|
1754
|
+
*/
|
|
1755
|
+
export class VersionedSettingsApi extends BaseAPI implements VersionedSettingsApiInterface {
|
|
1756
|
+
/**
|
|
1757
|
+
*
|
|
1758
|
+
* @summary Add Versioned Settings Tokens.
|
|
1759
|
+
* @param {string} locator
|
|
1760
|
+
* @param {VersionedSettingsTokens} [body]
|
|
1761
|
+
* @param {*} [options] Override http request option.
|
|
1762
|
+
* @throws {RequiredError}
|
|
1763
|
+
* @memberof VersionedSettingsApi
|
|
1764
|
+
*/
|
|
1765
|
+
public addVersionedSettingsTokens(
|
|
1766
|
+
locator: string,
|
|
1767
|
+
body?: VersionedSettingsTokens,
|
|
1768
|
+
options?: RawAxiosRequestConfig
|
|
1769
|
+
) {
|
|
1770
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
1771
|
+
.addVersionedSettingsTokens(locator, body, options)
|
|
1772
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
/**
|
|
1776
|
+
*
|
|
1777
|
+
* @summary Check for changes in Versioned Settings.
|
|
1778
|
+
* @param {string} locator
|
|
1779
|
+
* @param {*} [options] Override http request option.
|
|
1780
|
+
* @throws {RequiredError}
|
|
1781
|
+
* @memberof VersionedSettingsApi
|
|
1782
|
+
*/
|
|
1783
|
+
public checkForVersionedSettingsChanges(locator: string, options?: RawAxiosRequestConfig) {
|
|
1784
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
1785
|
+
.checkForVersionedSettingsChanges(locator, options)
|
|
1786
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
/**
|
|
1790
|
+
*
|
|
1791
|
+
* @summary Perform Versioned Settings action: Commit current settings to VCS.
|
|
1792
|
+
* @param {string} locator
|
|
1793
|
+
* @param {*} [options] Override http request option.
|
|
1794
|
+
* @throws {RequiredError}
|
|
1795
|
+
* @memberof VersionedSettingsApi
|
|
1796
|
+
*/
|
|
1797
|
+
public commitCurrentSettings(locator: string, options?: RawAxiosRequestConfig) {
|
|
1798
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
1799
|
+
.commitCurrentSettings(locator, options)
|
|
1800
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
/**
|
|
1804
|
+
*
|
|
1805
|
+
* @summary Delete Versioned Settings config parameter value.
|
|
1806
|
+
* @param {string} locator
|
|
1807
|
+
* @param {string} name
|
|
1808
|
+
* @param {*} [options] Override http request option.
|
|
1809
|
+
* @throws {RequiredError}
|
|
1810
|
+
* @memberof VersionedSettingsApi
|
|
1811
|
+
*/
|
|
1812
|
+
public deleteVersionedSettingsConfigParameter(
|
|
1813
|
+
locator: string,
|
|
1814
|
+
name: string,
|
|
1815
|
+
options?: RawAxiosRequestConfig
|
|
1816
|
+
) {
|
|
1817
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
1818
|
+
.deleteVersionedSettingsConfigParameter(locator, name, options)
|
|
1819
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1820
|
+
}
|
|
1821
|
+
|
|
1822
|
+
/**
|
|
1823
|
+
*
|
|
1824
|
+
* @summary Delete Versioned Settings Tokens.
|
|
1825
|
+
* @param {string} locator
|
|
1826
|
+
* @param {VersionedSettingsTokens} [body]
|
|
1827
|
+
* @param {*} [options] Override http request option.
|
|
1828
|
+
* @throws {RequiredError}
|
|
1829
|
+
* @memberof VersionedSettingsApi
|
|
1830
|
+
*/
|
|
1831
|
+
public deleteVersionedSettingsTokens(
|
|
1832
|
+
locator: string,
|
|
1833
|
+
body?: VersionedSettingsTokens,
|
|
1834
|
+
options?: RawAxiosRequestConfig
|
|
1835
|
+
) {
|
|
1836
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
1837
|
+
.deleteVersionedSettingsTokens(locator, body, options)
|
|
1838
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
/**
|
|
1842
|
+
*
|
|
1843
|
+
* @summary Get Versioned Settings config.
|
|
1844
|
+
* @param {string} locator
|
|
1845
|
+
* @param {string} [fields]
|
|
1846
|
+
* @param {*} [options] Override http request option.
|
|
1847
|
+
* @throws {RequiredError}
|
|
1848
|
+
* @memberof VersionedSettingsApi
|
|
1849
|
+
*/
|
|
1850
|
+
public getVersionedSettingsConfig(
|
|
1851
|
+
locator: string,
|
|
1852
|
+
fields?: string,
|
|
1853
|
+
options?: RawAxiosRequestConfig
|
|
1854
|
+
) {
|
|
1855
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
1856
|
+
.getVersionedSettingsConfig(locator, fields, options)
|
|
1857
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
/**
|
|
1861
|
+
*
|
|
1862
|
+
* @summary Get Versioned Settings config parameter value.
|
|
1863
|
+
* @param {string} locator
|
|
1864
|
+
* @param {string} name
|
|
1865
|
+
* @param {*} [options] Override http request option.
|
|
1866
|
+
* @throws {RequiredError}
|
|
1867
|
+
* @memberof VersionedSettingsApi
|
|
1868
|
+
*/
|
|
1869
|
+
public getVersionedSettingsConfigParameter(
|
|
1870
|
+
locator: string,
|
|
1871
|
+
name: string,
|
|
1872
|
+
options?: RawAxiosRequestConfig
|
|
1873
|
+
) {
|
|
1874
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
1875
|
+
.getVersionedSettingsConfigParameter(locator, name, options)
|
|
1876
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
/**
|
|
1880
|
+
*
|
|
1881
|
+
* @summary Get Versioned Settings Context Parameters.
|
|
1882
|
+
* @param {string} locator
|
|
1883
|
+
* @param {*} [options] Override http request option.
|
|
1884
|
+
* @throws {RequiredError}
|
|
1885
|
+
* @memberof VersionedSettingsApi
|
|
1886
|
+
*/
|
|
1887
|
+
public getVersionedSettingsContextParameters(locator: string, options?: RawAxiosRequestConfig) {
|
|
1888
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
1889
|
+
.getVersionedSettingsContextParameters(locator, options)
|
|
1890
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
/**
|
|
1894
|
+
*
|
|
1895
|
+
* @summary Get a list of projects that are affected by Load Settings from VCS action.
|
|
1896
|
+
* @param {string} locator
|
|
1897
|
+
* @param {string} [fields]
|
|
1898
|
+
* @param {*} [options] Override http request option.
|
|
1899
|
+
* @throws {RequiredError}
|
|
1900
|
+
* @memberof VersionedSettingsApi
|
|
1901
|
+
*/
|
|
1902
|
+
public getVersionedSettingsProjectsToLoad(
|
|
1903
|
+
locator: string,
|
|
1904
|
+
fields?: string,
|
|
1905
|
+
options?: RawAxiosRequestConfig
|
|
1906
|
+
) {
|
|
1907
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
1908
|
+
.getVersionedSettingsProjectsToLoad(locator, fields, options)
|
|
1909
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
/**
|
|
1913
|
+
*
|
|
1914
|
+
* @summary Get current status of Versioned Settings.
|
|
1915
|
+
* @param {string} locator
|
|
1916
|
+
* @param {string} [fields]
|
|
1917
|
+
* @param {*} [options] Override http request option.
|
|
1918
|
+
* @throws {RequiredError}
|
|
1919
|
+
* @memberof VersionedSettingsApi
|
|
1920
|
+
*/
|
|
1921
|
+
public getVersionedSettingsStatus(
|
|
1922
|
+
locator: string,
|
|
1923
|
+
fields?: string,
|
|
1924
|
+
options?: RawAxiosRequestConfig
|
|
1925
|
+
) {
|
|
1926
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
1927
|
+
.getVersionedSettingsStatus(locator, fields, options)
|
|
1928
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
/**
|
|
1932
|
+
*
|
|
1933
|
+
* @summary Get Versioned Settings Tokens.
|
|
1934
|
+
* @param {string} locator
|
|
1935
|
+
* @param {string} [status]
|
|
1936
|
+
* @param {*} [options] Override http request option.
|
|
1937
|
+
* @throws {RequiredError}
|
|
1938
|
+
* @memberof VersionedSettingsApi
|
|
1939
|
+
*/
|
|
1940
|
+
public getVersionedSettingsTokens(
|
|
1941
|
+
locator: string,
|
|
1942
|
+
status?: string,
|
|
1943
|
+
options?: RawAxiosRequestConfig
|
|
1944
|
+
) {
|
|
1945
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
1946
|
+
.getVersionedSettingsTokens(locator, status, options)
|
|
1947
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
/**
|
|
1951
|
+
*
|
|
1952
|
+
* @summary Perform Versioned Settings action: Load Setting from VCS.
|
|
1953
|
+
* @param {string} locator
|
|
1954
|
+
* @param {string} [fields]
|
|
1955
|
+
* @param {*} [options] Override http request option.
|
|
1956
|
+
* @throws {RequiredError}
|
|
1957
|
+
* @memberof VersionedSettingsApi
|
|
1958
|
+
*/
|
|
1959
|
+
public loadSettingsFromVCS(locator: string, fields?: string, options?: RawAxiosRequestConfig) {
|
|
1960
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
1961
|
+
.loadSettingsFromVCS(locator, fields, options)
|
|
1962
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1965
|
+
/**
|
|
1966
|
+
*
|
|
1967
|
+
* @summary Set Verseioned Settings config.
|
|
1968
|
+
* @param {string} locator
|
|
1969
|
+
* @param {string} [fields]
|
|
1970
|
+
* @param {VersionedSettingsConfig} [body]
|
|
1971
|
+
* @param {*} [options] Override http request option.
|
|
1972
|
+
* @throws {RequiredError}
|
|
1973
|
+
* @memberof VersionedSettingsApi
|
|
1974
|
+
*/
|
|
1975
|
+
public setVersionedSettingsConfig(
|
|
1976
|
+
locator: string,
|
|
1977
|
+
fields?: string,
|
|
1978
|
+
body?: VersionedSettingsConfig,
|
|
1979
|
+
options?: RawAxiosRequestConfig
|
|
1980
|
+
) {
|
|
1981
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
1982
|
+
.setVersionedSettingsConfig(locator, fields, body, options)
|
|
1983
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1986
|
+
/**
|
|
1987
|
+
*
|
|
1988
|
+
* @summary Set Versioned Settings config parameter value.
|
|
1989
|
+
* @param {string} locator
|
|
1990
|
+
* @param {string} name
|
|
1991
|
+
* @param {string} [body]
|
|
1992
|
+
* @param {*} [options] Override http request option.
|
|
1993
|
+
* @throws {RequiredError}
|
|
1994
|
+
* @memberof VersionedSettingsApi
|
|
1995
|
+
*/
|
|
1996
|
+
public setVersionedSettingsConfigParameter(
|
|
1997
|
+
locator: string,
|
|
1998
|
+
name: string,
|
|
1999
|
+
body?: string,
|
|
2000
|
+
options?: RawAxiosRequestConfig
|
|
2001
|
+
) {
|
|
2002
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
2003
|
+
.setVersionedSettingsConfigParameter(locator, name, body, options)
|
|
2004
|
+
.then((request) => request(this.axios, this.basePath));
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
/**
|
|
2008
|
+
*
|
|
2009
|
+
* @summary Set Versioned Settings Context Parameters.
|
|
2010
|
+
* @param {string} locator
|
|
2011
|
+
* @param {VersionedSettingsContextParameters} [body]
|
|
2012
|
+
* @param {*} [options] Override http request option.
|
|
2013
|
+
* @throws {RequiredError}
|
|
2014
|
+
* @memberof VersionedSettingsApi
|
|
2015
|
+
*/
|
|
2016
|
+
public setVersionedSettingsContextParameters(
|
|
2017
|
+
locator: string,
|
|
2018
|
+
body?: VersionedSettingsContextParameters,
|
|
2019
|
+
options?: RawAxiosRequestConfig
|
|
2020
|
+
) {
|
|
2021
|
+
return VersionedSettingsApiFp(this.configuration)
|
|
2022
|
+
.setVersionedSettingsContextParameters(locator, body, options)
|
|
2023
|
+
.then((request) => request(this.axios, this.basePath));
|
|
2024
|
+
}
|
|
2025
|
+
}
|