@daghis/teamcity-mcp 0.1.2 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/.commitlintrc.mjs +25 -0
  2. package/.github/dependabot.yml +38 -0
  3. package/.github/workflows/ci.yml +26 -22
  4. package/.github/workflows/codeql.yml +1 -1
  5. package/.github/workflows/commitlint.yml +3 -3
  6. package/.github/workflows/publish.yml +22 -2
  7. package/AGENTS.md +61 -0
  8. package/CHANGELOG.md +14 -0
  9. package/README.md +8 -0
  10. package/THIRD_PARTY_NOTICES.md +58 -0
  11. package/dist/index.js +390 -322
  12. package/dist/index.js.map +4 -4
  13. package/dist/src/middleware/global-error-handler.d.ts.map +1 -1
  14. package/dist/src/teamcity/auth.d.ts.map +1 -1
  15. package/dist/src/teamcity-client/api/agent-api.d.ts +15 -15
  16. package/dist/src/teamcity-client/api/agent-pool-api.d.ts +14 -14
  17. package/dist/src/teamcity-client/api/agent-type-api.d.ts +1 -1
  18. package/dist/src/teamcity-client/api/audit-api.d.ts +2 -2
  19. package/dist/src/teamcity-client/api/avatar-api.d.ts +4 -4
  20. package/dist/src/teamcity-client/api/build-api.d.ts +57 -57
  21. package/dist/src/teamcity-client/api/build-queue-api.d.ts +14 -14
  22. package/dist/src/teamcity-client/api/build-type-api.d.ts +109 -109
  23. package/dist/src/teamcity-client/api/change-api.d.ts +10 -10
  24. package/dist/src/teamcity-client/api/cloud-instance-api.d.ts +10 -10
  25. package/dist/src/teamcity-client/api/deployment-dashboard-api.d.ts +9 -9
  26. package/dist/src/teamcity-client/api/global-server-settings-api.d.ts +2 -2
  27. package/dist/src/teamcity-client/api/group-api.d.ts +16 -16
  28. package/dist/src/teamcity-client/api/health-api.d.ts +4 -4
  29. package/dist/src/teamcity-client/api/investigation-api.d.ts +6 -6
  30. package/dist/src/teamcity-client/api/mute-api.d.ts +6 -6
  31. package/dist/src/teamcity-client/api/node-api.d.ts +6 -6
  32. package/dist/src/teamcity-client/api/problem-api.d.ts +2 -2
  33. package/dist/src/teamcity-client/api/problem-occurrence-api.d.ts +2 -2
  34. package/dist/src/teamcity-client/api/project-api.d.ts +48 -48
  35. package/dist/src/teamcity-client/api/role-api.d.ts +8 -8
  36. package/dist/src/teamcity-client/api/root-api.d.ts +4 -4
  37. package/dist/src/teamcity-client/api/server-api.d.ts +18 -18
  38. package/dist/src/teamcity-client/api/server-authentication-settings-api.d.ts +2 -2
  39. package/dist/src/teamcity-client/api/test-api.d.ts +2 -2
  40. package/dist/src/teamcity-client/api/test-occurrence-api.d.ts +2 -2
  41. package/dist/src/teamcity-client/api/user-api.d.ts +28 -28
  42. package/dist/src/teamcity-client/api/vcs-root-api.d.ts +14 -14
  43. package/dist/src/teamcity-client/api/vcs-root-instance-api.d.ts +17 -17
  44. package/dist/src/teamcity-client/api/versioned-settings-api.d.ts +15 -15
  45. package/dist/src/tools.d.ts.map +1 -1
  46. package/package.json +14 -13
  47. package/scripts/build.cjs +25 -6
  48. package/scripts/generate-third-party-notices.cjs +71 -0
  49. package/src/middleware/global-error-handler.ts +11 -0
  50. package/src/teamcity/auth.ts +13 -9
  51. package/src/tools.ts +20 -6
  52. package/.commitlintrc.js +0 -3
  53. package/TODO.md +0 -80
@@ -472,114 +472,114 @@ export interface BuildTypeApiInterface {
472
472
  updateBuildTypeVcsRootCheckoutRules(btLocator: string, vcsRootLocator: string, body?: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
473
473
  }
474
474
  export declare class BuildTypeApi extends BaseAPI implements BuildTypeApiInterface {
475
- addAgentRequirementToBuildType(btLocator: string, fields?: string, body?: AgentRequirement, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentRequirement, any>>;
476
- addArtifactDependencyToBuildType(btLocator: string, fields?: string, body?: ArtifactDependency, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ArtifactDependency, any>>;
477
- addBuildFeatureToBuildType(btLocator: string, fields?: string, body?: Feature, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Feature, any>>;
478
- addBuildStepToBuildType(btLocator: string, fields?: string, body?: Step, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Step, any>>;
479
- addBuildTemplate(btLocator: string, optimizeSettings?: boolean, fields?: string, body?: BuildType, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any>>;
480
- addParameterToBuildFeature(btLocator: string, featureId: string, parameterName: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
481
- addParameterToBuildStep(btLocator: string, stepId: string, parameterName: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
482
- addSnapshotDependencyToBuildType(btLocator: string, fields?: string, body?: SnapshotDependency, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDependency, any>>;
483
- addTriggerToBuildType(btLocator: string, fields?: string, body?: Trigger, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Trigger, any>>;
484
- addVcsRootToBuildType(btLocator: string, fields?: string, body?: VcsRootEntry, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootEntry, any>>;
485
- createBuildParameterOfBuildType(btLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any>>;
486
- createBuildParameterOfBuildType_1(btLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any>>;
487
- createBuildType(fields?: string, body?: BuildType, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any>>;
488
- deleteAgentRequirement(btLocator: string, agentRequirementLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
489
- deleteArtifactDependency(btLocator: string, artifactDepLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
490
- deleteBuildParameterOfBuildType(name: string, btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
491
- deleteBuildParameterOfBuildType_2(name: string, btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
492
- deleteBuildParametersOfBuildType(btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
493
- deleteBuildParametersOfBuildType_3(btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
494
- deleteBuildStep(btLocator: string, stepId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
495
- deleteBuildStepParameters(btLocator: string, stepId: string, fields?: string, body?: Properties, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
496
- deleteBuildType(btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
497
- deleteFeatureOfBuildType(btLocator: string, featureId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
498
- deleteSnapshotDependency(btLocator: string, snapshotDepLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
499
- deleteTrigger(btLocator: string, triggerLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
500
- deleteVcsRootOfBuildType(btLocator: string, vcsRootLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
501
- downloadFileOfBuildType(path: string, btLocator: string, resolveParameters?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
502
- getAgentRequirement(btLocator: string, agentRequirementLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentRequirement, any>>;
503
- getAgentRequirementParameter(btLocator: string, agentRequirementLocator: string, fieldName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
504
- getAliases(btLocator: string, field?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Items, any>>;
505
- getAllAgentRequirements(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentRequirements, any>>;
506
- getAllArtifactDependencies(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ArtifactDependencies, any>>;
507
- getAllBranchesOfBuildType(btLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Branches, any>>;
508
- getAllBuildFeatureParameters(btLocator: string, featureId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
509
- getAllBuildFeatures(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Features, any>>;
510
- getAllBuildStepParameters(btLocator: string, stepId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
511
- getAllBuildSteps(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Steps, any>>;
512
- getAllBuildTemplates(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any>>;
513
- getAllBuildTypes(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any>>;
514
- getAllInvestigationsOfBuildType(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Investigations, any>>;
515
- getAllSnapshotDependencies(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDependencies, any>>;
516
- getAllTriggers(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Triggers, any>>;
517
- getAllVcsRootsOfBuildType(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootEntries, any>>;
518
- getArtifactDependency(btLocator: string, artifactDepLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ArtifactDependency, any>>;
519
- getArtifactDependencyParameter(btLocator: string, artifactDepLocator: string, fieldName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
520
- getBuildFeature(btLocator: string, featureId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Feature, any>>;
521
- getBuildFeatureParameter(btLocator: string, featureId: string, parameterName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
522
- getBuildFeatureSetting(btLocator: string, featureId: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
523
- getBuildParameterOfBuildType(name: string, btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any>>;
524
- getBuildParameterOfBuildType_4(name: string, btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any>>;
525
- getBuildParameterSpecificationOfBuildType(name: string, btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
526
- getBuildParameterTypeOfBuildType(name: string, btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Type, any>>;
527
- getBuildParameterValueOfBuildType(name: string, btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
528
- getBuildParameterValueOfBuildType_5(name: string, btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
529
- getBuildParametersOfBuildType(btLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
530
- getBuildParametersOfBuildType_6(btLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
531
- getBuildStep(btLocator: string, stepId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Step, any>>;
532
- getBuildStepParameter(btLocator: string, stepId: string, parameterName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
533
- getBuildStepSetting(btLocator: string, stepId: string, fieldName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
534
- getBuildTemplate(btLocator: string, templateLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any>>;
535
- getBuildType(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any>>;
536
- getBuildTypeBuildTags(btLocator: string, field?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tags, any>>;
537
- getBuildTypeBuilds(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Builds, any>>;
538
- getBuildTypeField(btLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
539
- getBuildTypeSettingsFile(btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
540
- getFileMetadataOfBuildType(path: string, btLocator: string, fields?: string, resolveParameters?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
541
- getFilesListForSubpathOfBuildType(path: string, btLocator: string, basePath?: string, locator?: string, fields?: string, resolveParameters?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any>>;
542
- getFilesListOfBuildType(btLocator: string, basePath?: string, locator?: string, fields?: string, resolveParameters?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any>>;
543
- getSnapshotDependency(btLocator: string, snapshotDepLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDependency, any>>;
544
- getTrigger(btLocator: string, triggerLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Trigger, any>>;
545
- getTriggerParameter(btLocator: string, triggerLocator: string, fieldName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
546
- getVcsRoot(btLocator: string, vcsRootLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootEntry, any>>;
547
- getVcsRootCheckoutRules(btLocator: string, vcsRootLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
548
- getVcsRootInstancesOfBuildType(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootInstances, any>>;
549
- getZippedFileOfBuildType(path: string, btLocator: string, basePath?: string, locator?: string, name?: string, resolveParameters?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
550
- moveBuildType(btLocator: string, targetProjectId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
551
- removeAllTemplates(btLocator: string, inlineSettings?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
552
- removeTemplate(btLocator: string, templateLocator: string, inlineSettings?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
553
- replaceAgentRequirement(btLocator: string, agentRequirementLocator: string, fields?: string, body?: AgentRequirement, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentRequirement, any>>;
554
- replaceAllAgentRequirements(btLocator: string, fields?: string, body?: AgentRequirements, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentRequirements, any>>;
555
- replaceAllArtifactDependencies(btLocator: string, fields?: string, body?: ArtifactDependencies, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ArtifactDependencies, any>>;
556
- replaceAllBuildFeatures(btLocator: string, fields?: string, body?: Features, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Features, any>>;
557
- replaceAllBuildSteps(btLocator: string, fields?: string, body?: Steps, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Steps, any>>;
558
- replaceAllSnapshotDependencies(btLocator: string, fields?: string, body?: SnapshotDependencies, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDependencies, any>>;
559
- replaceAllTriggers(btLocator: string, fields?: string, body?: Triggers, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Triggers, any>>;
560
- replaceAllVcsRoots(btLocator: string, fields?: string, body?: VcsRootEntries, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootEntries, any>>;
561
- replaceArtifactDependency(btLocator: string, artifactDepLocator: string, fields?: string, body?: ArtifactDependency, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ArtifactDependency, any>>;
562
- replaceBuildFeature(btLocator: string, featureId: string, fields?: string, body?: Feature, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Feature, any>>;
563
- replaceBuildFeatureParameters(btLocator: string, featureId: string, fields?: string, body?: Properties, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
564
- replaceBuildStep(btLocator: string, stepId: string, fields?: string, body?: Step, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Step, any>>;
565
- replaceSnapshotDependency(btLocator: string, snapshotDepLocator: string, fields?: string, body?: SnapshotDependency, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDependency, any>>;
566
- replaceTrigger(btLocator: string, triggerLocator: string, fields?: string, body?: Trigger, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Trigger, any>>;
567
- setAgentRequirementParameter(btLocator: string, agentRequirementLocator: string, fieldName: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
568
- setArtifactDependencyParameter(btLocator: string, artifactDepLocator: string, fieldName: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
569
- setBuildFeatureParameter(btLocator: string, featureId: string, name: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
570
- setBuildStepParameter(btLocator: string, stepId: string, fieldName: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
571
- setBuildTypeField(btLocator: string, field: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
572
- setBuildTypeTemplates(btLocator: string, optimizeSettings?: boolean, fields?: string, body?: BuildTypes, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any>>;
573
- setTriggerParameter(btLocator: string, triggerLocator: string, fieldName: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
574
- updateBuildParameterOfBuildType(name: string, btLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any>>;
575
- updateBuildParameterOfBuildType_7(name: string, btLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any>>;
576
- updateBuildParameterSpecificationOfBuildType(name: string, btLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
577
- updateBuildParameterTypeOfBuildType(name: string, btLocator: string, body?: Type, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Type, any>>;
578
- updateBuildParameterValueOfBuildType(name: string, btLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
579
- updateBuildParameterValueOfBuildType_8(name: string, btLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
580
- updateBuildParametersOfBuildType(btLocator: string, fields?: string, body?: Properties, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
581
- updateBuildParametersOfBuildType_9(btLocator: string, fields?: string, body?: Properties, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
582
- updateBuildTypeVcsRoot(btLocator: string, vcsRootLocator: string, fields?: string, body?: VcsRootEntry, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootEntry, any>>;
583
- updateBuildTypeVcsRootCheckoutRules(btLocator: string, vcsRootLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
475
+ addAgentRequirementToBuildType(btLocator: string, fields?: string, body?: AgentRequirement, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentRequirement, any, {}>>;
476
+ addArtifactDependencyToBuildType(btLocator: string, fields?: string, body?: ArtifactDependency, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ArtifactDependency, any, {}>>;
477
+ addBuildFeatureToBuildType(btLocator: string, fields?: string, body?: Feature, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Feature, any, {}>>;
478
+ addBuildStepToBuildType(btLocator: string, fields?: string, body?: Step, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Step, any, {}>>;
479
+ addBuildTemplate(btLocator: string, optimizeSettings?: boolean, fields?: string, body?: BuildType, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any, {}>>;
480
+ addParameterToBuildFeature(btLocator: string, featureId: string, parameterName: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
481
+ addParameterToBuildStep(btLocator: string, stepId: string, parameterName: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
482
+ addSnapshotDependencyToBuildType(btLocator: string, fields?: string, body?: SnapshotDependency, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDependency, any, {}>>;
483
+ addTriggerToBuildType(btLocator: string, fields?: string, body?: Trigger, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Trigger, any, {}>>;
484
+ addVcsRootToBuildType(btLocator: string, fields?: string, body?: VcsRootEntry, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootEntry, any, {}>>;
485
+ createBuildParameterOfBuildType(btLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any, {}>>;
486
+ createBuildParameterOfBuildType_1(btLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any, {}>>;
487
+ createBuildType(fields?: string, body?: BuildType, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any, {}>>;
488
+ deleteAgentRequirement(btLocator: string, agentRequirementLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
489
+ deleteArtifactDependency(btLocator: string, artifactDepLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
490
+ deleteBuildParameterOfBuildType(name: string, btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
491
+ deleteBuildParameterOfBuildType_2(name: string, btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
492
+ deleteBuildParametersOfBuildType(btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
493
+ deleteBuildParametersOfBuildType_3(btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
494
+ deleteBuildStep(btLocator: string, stepId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
495
+ deleteBuildStepParameters(btLocator: string, stepId: string, fields?: string, body?: Properties, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
496
+ deleteBuildType(btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
497
+ deleteFeatureOfBuildType(btLocator: string, featureId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
498
+ deleteSnapshotDependency(btLocator: string, snapshotDepLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
499
+ deleteTrigger(btLocator: string, triggerLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
500
+ deleteVcsRootOfBuildType(btLocator: string, vcsRootLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
501
+ downloadFileOfBuildType(path: string, btLocator: string, resolveParameters?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
502
+ getAgentRequirement(btLocator: string, agentRequirementLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentRequirement, any, {}>>;
503
+ getAgentRequirementParameter(btLocator: string, agentRequirementLocator: string, fieldName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
504
+ getAliases(btLocator: string, field?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Items, any, {}>>;
505
+ getAllAgentRequirements(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentRequirements, any, {}>>;
506
+ getAllArtifactDependencies(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ArtifactDependencies, any, {}>>;
507
+ getAllBranchesOfBuildType(btLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Branches, any, {}>>;
508
+ getAllBuildFeatureParameters(btLocator: string, featureId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
509
+ getAllBuildFeatures(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Features, any, {}>>;
510
+ getAllBuildStepParameters(btLocator: string, stepId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
511
+ getAllBuildSteps(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Steps, any, {}>>;
512
+ getAllBuildTemplates(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any, {}>>;
513
+ getAllBuildTypes(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any, {}>>;
514
+ getAllInvestigationsOfBuildType(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Investigations, any, {}>>;
515
+ getAllSnapshotDependencies(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDependencies, any, {}>>;
516
+ getAllTriggers(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Triggers, any, {}>>;
517
+ getAllVcsRootsOfBuildType(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootEntries, any, {}>>;
518
+ getArtifactDependency(btLocator: string, artifactDepLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ArtifactDependency, any, {}>>;
519
+ getArtifactDependencyParameter(btLocator: string, artifactDepLocator: string, fieldName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
520
+ getBuildFeature(btLocator: string, featureId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Feature, any, {}>>;
521
+ getBuildFeatureParameter(btLocator: string, featureId: string, parameterName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
522
+ getBuildFeatureSetting(btLocator: string, featureId: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
523
+ getBuildParameterOfBuildType(name: string, btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any, {}>>;
524
+ getBuildParameterOfBuildType_4(name: string, btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any, {}>>;
525
+ getBuildParameterSpecificationOfBuildType(name: string, btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
526
+ getBuildParameterTypeOfBuildType(name: string, btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Type, any, {}>>;
527
+ getBuildParameterValueOfBuildType(name: string, btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
528
+ getBuildParameterValueOfBuildType_5(name: string, btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
529
+ getBuildParametersOfBuildType(btLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
530
+ getBuildParametersOfBuildType_6(btLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
531
+ getBuildStep(btLocator: string, stepId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Step, any, {}>>;
532
+ getBuildStepParameter(btLocator: string, stepId: string, parameterName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
533
+ getBuildStepSetting(btLocator: string, stepId: string, fieldName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
534
+ getBuildTemplate(btLocator: string, templateLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any, {}>>;
535
+ getBuildType(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any, {}>>;
536
+ getBuildTypeBuildTags(btLocator: string, field?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tags, any, {}>>;
537
+ getBuildTypeBuilds(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Builds, any, {}>>;
538
+ getBuildTypeField(btLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
539
+ getBuildTypeSettingsFile(btLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
540
+ getFileMetadataOfBuildType(path: string, btLocator: string, fields?: string, resolveParameters?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
541
+ getFilesListForSubpathOfBuildType(path: string, btLocator: string, basePath?: string, locator?: string, fields?: string, resolveParameters?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any, {}>>;
542
+ getFilesListOfBuildType(btLocator: string, basePath?: string, locator?: string, fields?: string, resolveParameters?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any, {}>>;
543
+ getSnapshotDependency(btLocator: string, snapshotDepLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDependency, any, {}>>;
544
+ getTrigger(btLocator: string, triggerLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Trigger, any, {}>>;
545
+ getTriggerParameter(btLocator: string, triggerLocator: string, fieldName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
546
+ getVcsRoot(btLocator: string, vcsRootLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootEntry, any, {}>>;
547
+ getVcsRootCheckoutRules(btLocator: string, vcsRootLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
548
+ getVcsRootInstancesOfBuildType(btLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootInstances, any, {}>>;
549
+ getZippedFileOfBuildType(path: string, btLocator: string, basePath?: string, locator?: string, name?: string, resolveParameters?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
550
+ moveBuildType(btLocator: string, targetProjectId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
551
+ removeAllTemplates(btLocator: string, inlineSettings?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
552
+ removeTemplate(btLocator: string, templateLocator: string, inlineSettings?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
553
+ replaceAgentRequirement(btLocator: string, agentRequirementLocator: string, fields?: string, body?: AgentRequirement, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentRequirement, any, {}>>;
554
+ replaceAllAgentRequirements(btLocator: string, fields?: string, body?: AgentRequirements, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentRequirements, any, {}>>;
555
+ replaceAllArtifactDependencies(btLocator: string, fields?: string, body?: ArtifactDependencies, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ArtifactDependencies, any, {}>>;
556
+ replaceAllBuildFeatures(btLocator: string, fields?: string, body?: Features, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Features, any, {}>>;
557
+ replaceAllBuildSteps(btLocator: string, fields?: string, body?: Steps, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Steps, any, {}>>;
558
+ replaceAllSnapshotDependencies(btLocator: string, fields?: string, body?: SnapshotDependencies, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDependencies, any, {}>>;
559
+ replaceAllTriggers(btLocator: string, fields?: string, body?: Triggers, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Triggers, any, {}>>;
560
+ replaceAllVcsRoots(btLocator: string, fields?: string, body?: VcsRootEntries, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootEntries, any, {}>>;
561
+ replaceArtifactDependency(btLocator: string, artifactDepLocator: string, fields?: string, body?: ArtifactDependency, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ArtifactDependency, any, {}>>;
562
+ replaceBuildFeature(btLocator: string, featureId: string, fields?: string, body?: Feature, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Feature, any, {}>>;
563
+ replaceBuildFeatureParameters(btLocator: string, featureId: string, fields?: string, body?: Properties, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
564
+ replaceBuildStep(btLocator: string, stepId: string, fields?: string, body?: Step, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Step, any, {}>>;
565
+ replaceSnapshotDependency(btLocator: string, snapshotDepLocator: string, fields?: string, body?: SnapshotDependency, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDependency, any, {}>>;
566
+ replaceTrigger(btLocator: string, triggerLocator: string, fields?: string, body?: Trigger, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Trigger, any, {}>>;
567
+ setAgentRequirementParameter(btLocator: string, agentRequirementLocator: string, fieldName: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
568
+ setArtifactDependencyParameter(btLocator: string, artifactDepLocator: string, fieldName: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
569
+ setBuildFeatureParameter(btLocator: string, featureId: string, name: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
570
+ setBuildStepParameter(btLocator: string, stepId: string, fieldName: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
571
+ setBuildTypeField(btLocator: string, field: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
572
+ setBuildTypeTemplates(btLocator: string, optimizeSettings?: boolean, fields?: string, body?: BuildTypes, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any, {}>>;
573
+ setTriggerParameter(btLocator: string, triggerLocator: string, fieldName: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
574
+ updateBuildParameterOfBuildType(name: string, btLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any, {}>>;
575
+ updateBuildParameterOfBuildType_7(name: string, btLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any, {}>>;
576
+ updateBuildParameterSpecificationOfBuildType(name: string, btLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
577
+ updateBuildParameterTypeOfBuildType(name: string, btLocator: string, body?: Type, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Type, any, {}>>;
578
+ updateBuildParameterValueOfBuildType(name: string, btLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
579
+ updateBuildParameterValueOfBuildType_8(name: string, btLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
580
+ updateBuildParametersOfBuildType(btLocator: string, fields?: string, body?: Properties, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
581
+ updateBuildParametersOfBuildType_9(btLocator: string, fields?: string, body?: Properties, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
582
+ updateBuildTypeVcsRoot(btLocator: string, vcsRootLocator: string, fields?: string, body?: VcsRootEntry, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootEntry, any, {}>>;
583
+ updateBuildTypeVcsRootCheckoutRules(btLocator: string, vcsRootLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
584
584
  }
585
585
  //# sourceMappingURL=build-type-api.d.ts.map
@@ -57,15 +57,15 @@ export interface ChangeApiInterface {
57
57
  getChangeVcsRoot(changeLocator: string, fields?: string, options?: RawAxiosRequestConfig): AxiosPromise<VcsRootInstance>;
58
58
  }
59
59
  export declare class ChangeApi extends BaseAPI implements ChangeApiInterface {
60
- getAllChanges(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Changes, any>>;
61
- getChange(changeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Change, any>>;
62
- getChangeAttributes(changeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Entries, any>>;
63
- getChangeDuplicates(changeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Changes, any>>;
64
- getChangeField(changeLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
65
- getChangeFirstBuilds(changeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Builds, any>>;
66
- getChangeIssue(changeLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Issues, any>>;
67
- getChangeParentChanges(changeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Changes, any>>;
68
- getChangeParentRevisions(changeLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Items, any>>;
69
- getChangeVcsRoot(changeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootInstance, any>>;
60
+ getAllChanges(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Changes, any, {}>>;
61
+ getChange(changeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Change, any, {}>>;
62
+ getChangeAttributes(changeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Entries, any, {}>>;
63
+ getChangeDuplicates(changeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Changes, any, {}>>;
64
+ getChangeField(changeLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
65
+ getChangeFirstBuilds(changeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Builds, any, {}>>;
66
+ getChangeIssue(changeLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Issues, any, {}>>;
67
+ getChangeParentChanges(changeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Changes, any, {}>>;
68
+ getChangeParentRevisions(changeLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Items, any, {}>>;
69
+ getChangeVcsRoot(changeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VcsRootInstance, any, {}>>;
70
70
  }
71
71
  //# sourceMappingURL=change-api.d.ts.map
@@ -56,15 +56,15 @@ export interface CloudInstanceApiInterface {
56
56
  terminateInstance(instanceLocator: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
57
57
  }
58
58
  export declare class CloudInstanceApi extends BaseAPI implements CloudInstanceApiInterface {
59
- forseTerminateInstance(instanceLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
60
- getAllCloudImages(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CloudImages, any>>;
61
- getAllCloudInstances(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CloudInstances, any>>;
62
- getAllCloudProfiles(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CloudProfiles, any>>;
63
- getCloudImage(imageLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CloudImage, any>>;
64
- getCloudInstance(instanceLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CloudInstance, any>>;
65
- getCloudProfile(profileLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CloudProfile, any>>;
66
- startInstance(fields?: string, body?: CloudInstance, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
67
- stopInstance(instanceLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
68
- terminateInstance(instanceLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
59
+ forseTerminateInstance(instanceLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
60
+ getAllCloudImages(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CloudImages, any, {}>>;
61
+ getAllCloudInstances(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CloudInstances, any, {}>>;
62
+ getAllCloudProfiles(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CloudProfiles, any, {}>>;
63
+ getCloudImage(imageLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CloudImage, any, {}>>;
64
+ getCloudInstance(instanceLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CloudInstance, any, {}>>;
65
+ getCloudProfile(profileLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CloudProfile, any, {}>>;
66
+ startInstance(fields?: string, body?: CloudInstance, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
67
+ stopInstance(instanceLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
68
+ terminateInstance(instanceLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
69
69
  }
70
70
  //# sourceMappingURL=cloud-instance-api.d.ts.map
@@ -51,14 +51,14 @@ export interface DeploymentDashboardApiInterface {
51
51
  reportNewDeploymentForInstance(deploymentDashboardLocator: string, deploymentInstanceLocator: string, body?: DeploymentStateEntry, options?: RawAxiosRequestConfig): AxiosPromise<DeploymentInstance>;
52
52
  }
53
53
  export declare class DeploymentDashboardApi extends BaseAPI implements DeploymentDashboardApiInterface {
54
- createDashboard(body?: DeploymentDashboard, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentDashboard, any>>;
55
- createInstance(deploymentDashboardLocator: string, body?: DeploymentInstance, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentInstance, any>>;
56
- deleteDashboard(deploymentDashboardLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
57
- deleteInstance(deploymentDashboardLocator: string, deploymentInstanceLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
58
- getAllDashboards(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentDashboards, any>>;
59
- getDashboard(deploymentDashboardLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentDashboard, any>>;
60
- getInstance(deploymentDashboardLocator: string, deploymentInstanceLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentInstance, any>>;
61
- getInstances(deploymentDashboardLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentInstances, any>>;
62
- reportNewDeploymentForInstance(deploymentDashboardLocator: string, deploymentInstanceLocator: string, body?: DeploymentStateEntry, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentInstance, any>>;
54
+ createDashboard(body?: DeploymentDashboard, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentDashboard, any, {}>>;
55
+ createInstance(deploymentDashboardLocator: string, body?: DeploymentInstance, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentInstance, any, {}>>;
56
+ deleteDashboard(deploymentDashboardLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
57
+ deleteInstance(deploymentDashboardLocator: string, deploymentInstanceLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
58
+ getAllDashboards(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentDashboards, any, {}>>;
59
+ getDashboard(deploymentDashboardLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentDashboard, any, {}>>;
60
+ getInstance(deploymentDashboardLocator: string, deploymentInstanceLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentInstance, any, {}>>;
61
+ getInstances(deploymentDashboardLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentInstances, any, {}>>;
62
+ reportNewDeploymentForInstance(deploymentDashboardLocator: string, deploymentInstanceLocator: string, body?: DeploymentStateEntry, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentInstance, any, {}>>;
63
63
  }
64
64
  //# sourceMappingURL=deployment-dashboard-api.d.ts.map
@@ -19,7 +19,7 @@ export interface GlobalServerSettingsApiInterface {
19
19
  setGlobalSettings(body?: ServerGlobalSettings, options?: RawAxiosRequestConfig): AxiosPromise<ServerGlobalSettings>;
20
20
  }
21
21
  export declare class GlobalServerSettingsApi extends BaseAPI implements GlobalServerSettingsApiInterface {
22
- getGlobalSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerGlobalSettings, any>>;
23
- setGlobalSettings(body?: ServerGlobalSettings, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerGlobalSettings, any>>;
22
+ getGlobalSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerGlobalSettings, any, {}>>;
23
+ setGlobalSettings(body?: ServerGlobalSettings, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerGlobalSettings, any, {}>>;
24
24
  }
25
25
  //# sourceMappingURL=global-server-settings-api.d.ts.map
@@ -79,21 +79,21 @@ export interface GroupApiInterface {
79
79
  setGroupRoles(groupLocator: string, body?: Roles, options?: RawAxiosRequestConfig): AxiosPromise<Roles>;
80
80
  }
81
81
  export declare class GroupApi extends BaseAPI implements GroupApiInterface {
82
- addGroup(fields?: string, body?: Group, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Group, any>>;
83
- addRoleAtScopeToGroup(groupLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
84
- addRoleToGroup(groupLocator: string, body?: Role, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
85
- deleteGroup(groupLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
86
- getAllGroups(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Groups, any>>;
87
- getGroupParentGroups(groupLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Groups, any>>;
88
- getGroupProperties(groupLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
89
- getGroupProperty(groupLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
90
- getGroupRoleAtScope(groupLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
91
- getGroupRoles(groupLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any>>;
92
- getUserGroupOfGroup(groupLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Group, any>>;
93
- removeGroupProperty(groupLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
94
- removeRoleAtScopeFromGroup(groupLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
95
- setGroupParentGroups(groupLocator: string, fields?: string, body?: Groups, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Groups, any>>;
96
- setGroupProperty(groupLocator: string, name: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
97
- setGroupRoles(groupLocator: string, body?: Roles, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any>>;
82
+ addGroup(fields?: string, body?: Group, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Group, any, {}>>;
83
+ addRoleAtScopeToGroup(groupLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
84
+ addRoleToGroup(groupLocator: string, body?: Role, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
85
+ deleteGroup(groupLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
86
+ getAllGroups(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Groups, any, {}>>;
87
+ getGroupParentGroups(groupLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Groups, any, {}>>;
88
+ getGroupProperties(groupLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
89
+ getGroupProperty(groupLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
90
+ getGroupRoleAtScope(groupLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
91
+ getGroupRoles(groupLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any, {}>>;
92
+ getUserGroupOfGroup(groupLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Group, any, {}>>;
93
+ removeGroupProperty(groupLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
94
+ removeRoleAtScopeFromGroup(groupLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
95
+ setGroupParentGroups(groupLocator: string, fields?: string, body?: Groups, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Groups, any, {}>>;
96
+ setGroupProperty(groupLocator: string, name: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
97
+ setGroupRoles(groupLocator: string, body?: Roles, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any, {}>>;
98
98
  }
99
99
  //# sourceMappingURL=group-api.d.ts.map
@@ -30,9 +30,9 @@ export interface HealthApiInterface {
30
30
  getSingleHealthItem(locator: string, fields?: string, options?: RawAxiosRequestConfig): AxiosPromise<HealthItem>;
31
31
  }
32
32
  export declare class HealthApi extends BaseAPI implements HealthApiInterface {
33
- getCategories(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthCategories, any>>;
34
- getHealthItems(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthStatusItems, any>>;
35
- getSingleCategory(locator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthCategory, any>>;
36
- getSingleHealthItem(locator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthItem, any>>;
33
+ getCategories(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthCategories, any, {}>>;
34
+ getHealthItems(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthStatusItems, any, {}>>;
35
+ getSingleCategory(locator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthCategory, any, {}>>;
36
+ getSingleHealthItem(locator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthItem, any, {}>>;
37
37
  }
38
38
  //# sourceMappingURL=health-api.d.ts.map
@@ -36,11 +36,11 @@ export interface InvestigationApiInterface {
36
36
  replaceInvestigation(investigationLocator: string, fields?: string, body?: Investigation, options?: RawAxiosRequestConfig): AxiosPromise<Investigation>;
37
37
  }
38
38
  export declare class InvestigationApi extends BaseAPI implements InvestigationApiInterface {
39
- addInvestigation(fields?: string, body?: Investigation, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Investigation, any>>;
40
- addMultipleInvestigations(fields?: string, body?: Investigations, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Investigations, any>>;
41
- deleteInvestigation(investigationLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
42
- getAllInvestigations(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Investigations, any>>;
43
- getInvestigation(investigationLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Investigation, any>>;
44
- replaceInvestigation(investigationLocator: string, fields?: string, body?: Investigation, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Investigation, any>>;
39
+ addInvestigation(fields?: string, body?: Investigation, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Investigation, any, {}>>;
40
+ addMultipleInvestigations(fields?: string, body?: Investigations, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Investigations, any, {}>>;
41
+ deleteInvestigation(investigationLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
42
+ getAllInvestigations(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Investigations, any, {}>>;
43
+ getInvestigation(investigationLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Investigation, any, {}>>;
44
+ replaceInvestigation(investigationLocator: string, fields?: string, body?: Investigation, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Investigation, any, {}>>;
45
45
  }
46
46
  //# sourceMappingURL=investigation-api.d.ts.map
@@ -36,11 +36,11 @@ export interface MuteApiInterface {
36
36
  unmuteTest(muteLocator: string, body?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
37
37
  }
38
38
  export declare class MuteApi extends BaseAPI implements MuteApiInterface {
39
- getAllMutedTests(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Mutes, any>>;
40
- getMutedTest(muteLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Mute, any>>;
41
- muteMultipleTests(fields?: string, body?: Mutes, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Mutes, any>>;
42
- muteTest(fields?: string, body?: Mute, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Mute, any>>;
43
- unmuteMultipleTests(fields?: string, body?: Mutes, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
44
- unmuteTest(muteLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
39
+ getAllMutedTests(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Mutes, any, {}>>;
40
+ getMutedTest(muteLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Mute, any, {}>>;
41
+ muteMultipleTests(fields?: string, body?: Mutes, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Mutes, any, {}>>;
42
+ muteTest(fields?: string, body?: Mute, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Mute, any, {}>>;
43
+ unmuteMultipleTests(fields?: string, body?: Mutes, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
44
+ unmuteTest(muteLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
45
45
  }
46
46
  //# sourceMappingURL=mute-api.d.ts.map
@@ -39,11 +39,11 @@ export interface NodeApiInterface {
39
39
  getNode(nodeLocator: string, fields?: string, options?: RawAxiosRequestConfig): AxiosPromise<Node>;
40
40
  }
41
41
  export declare class NodeApi extends BaseAPI implements NodeApiInterface {
42
- changeNodeResponsibility(nodeLocator: string, name: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EnabledResponsibilities, any>>;
43
- getAllNodes(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Nodes, any>>;
44
- getDisabledResponsibilities(nodeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisabledResponsibilities, any>>;
45
- getEffectiveResponsibilities(nodeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveResponsibilities, any>>;
46
- getEnabledResponsibilities(nodeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EnabledResponsibilities, any>>;
47
- getNode(nodeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Node, any>>;
42
+ changeNodeResponsibility(nodeLocator: string, name: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EnabledResponsibilities, any, {}>>;
43
+ getAllNodes(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Nodes, any, {}>>;
44
+ getDisabledResponsibilities(nodeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisabledResponsibilities, any, {}>>;
45
+ getEffectiveResponsibilities(nodeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveResponsibilities, any, {}>>;
46
+ getEnabledResponsibilities(nodeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EnabledResponsibilities, any, {}>>;
47
+ getNode(nodeLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Node, any, {}>>;
48
48
  }
49
49
  //# sourceMappingURL=node-api.d.ts.map
@@ -20,7 +20,7 @@ export interface ProblemApiInterface {
20
20
  getBuildProblem(problemLocator: string, fields?: string, options?: RawAxiosRequestConfig): AxiosPromise<Problem>;
21
21
  }
22
22
  export declare class ProblemApi extends BaseAPI implements ProblemApiInterface {
23
- getAllBuildProblems(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Problems, any>>;
24
- getBuildProblem(problemLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Problem, any>>;
23
+ getAllBuildProblems(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Problems, any, {}>>;
24
+ getBuildProblem(problemLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Problem, any, {}>>;
25
25
  }
26
26
  //# sourceMappingURL=problem-api.d.ts.map
@@ -20,7 +20,7 @@ export interface ProblemOccurrenceApiInterface {
20
20
  getBuildProblemOccurrence(problemLocator: string, fields?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProblemOccurrence>;
21
21
  }
22
22
  export declare class ProblemOccurrenceApi extends BaseAPI implements ProblemOccurrenceApiInterface {
23
- getAllBuildProblemOccurrences(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProblemOccurrences, any>>;
24
- getBuildProblemOccurrence(problemLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProblemOccurrence, any>>;
23
+ getAllBuildProblemOccurrences(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProblemOccurrences, any, {}>>;
24
+ getBuildProblemOccurrence(problemLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProblemOccurrence, any, {}>>;
25
25
  }
26
26
  //# sourceMappingURL=problem-occurrence-api.d.ts.map