@daghis/teamcity-mcp 0.1.2 → 0.2.0

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 (48) hide show
  1. package/.commitlintrc.js +21 -0
  2. package/.commitlintrc.mjs +25 -0
  3. package/.github/dependabot.yml +38 -0
  4. package/.github/workflows/ci.yml +26 -22
  5. package/.github/workflows/codeql.yml +1 -1
  6. package/.github/workflows/commitlint.yml +3 -3
  7. package/.github/workflows/publish.yml +2 -2
  8. package/AGENTS.md +61 -0
  9. package/CHANGELOG.md +7 -0
  10. package/README.md +8 -0
  11. package/THIRD_PARTY_NOTICES.md +58 -0
  12. package/dist/index.js +303 -232
  13. package/dist/index.js.map +4 -4
  14. package/dist/src/teamcity-client/api/agent-api.d.ts +15 -15
  15. package/dist/src/teamcity-client/api/agent-pool-api.d.ts +14 -14
  16. package/dist/src/teamcity-client/api/agent-type-api.d.ts +1 -1
  17. package/dist/src/teamcity-client/api/audit-api.d.ts +2 -2
  18. package/dist/src/teamcity-client/api/avatar-api.d.ts +4 -4
  19. package/dist/src/teamcity-client/api/build-api.d.ts +57 -57
  20. package/dist/src/teamcity-client/api/build-queue-api.d.ts +14 -14
  21. package/dist/src/teamcity-client/api/build-type-api.d.ts +109 -109
  22. package/dist/src/teamcity-client/api/change-api.d.ts +10 -10
  23. package/dist/src/teamcity-client/api/cloud-instance-api.d.ts +10 -10
  24. package/dist/src/teamcity-client/api/deployment-dashboard-api.d.ts +9 -9
  25. package/dist/src/teamcity-client/api/global-server-settings-api.d.ts +2 -2
  26. package/dist/src/teamcity-client/api/group-api.d.ts +16 -16
  27. package/dist/src/teamcity-client/api/health-api.d.ts +4 -4
  28. package/dist/src/teamcity-client/api/investigation-api.d.ts +6 -6
  29. package/dist/src/teamcity-client/api/mute-api.d.ts +6 -6
  30. package/dist/src/teamcity-client/api/node-api.d.ts +6 -6
  31. package/dist/src/teamcity-client/api/problem-api.d.ts +2 -2
  32. package/dist/src/teamcity-client/api/problem-occurrence-api.d.ts +2 -2
  33. package/dist/src/teamcity-client/api/project-api.d.ts +48 -48
  34. package/dist/src/teamcity-client/api/role-api.d.ts +8 -8
  35. package/dist/src/teamcity-client/api/root-api.d.ts +4 -4
  36. package/dist/src/teamcity-client/api/server-api.d.ts +18 -18
  37. package/dist/src/teamcity-client/api/server-authentication-settings-api.d.ts +2 -2
  38. package/dist/src/teamcity-client/api/test-api.d.ts +2 -2
  39. package/dist/src/teamcity-client/api/test-occurrence-api.d.ts +2 -2
  40. package/dist/src/teamcity-client/api/user-api.d.ts +28 -28
  41. package/dist/src/teamcity-client/api/vcs-root-api.d.ts +14 -14
  42. package/dist/src/teamcity-client/api/vcs-root-instance-api.d.ts +17 -17
  43. package/dist/src/teamcity-client/api/versioned-settings-api.d.ts +15 -15
  44. package/package.json +14 -13
  45. package/scripts/build.cjs +25 -6
  46. package/scripts/generate-third-party-notices.cjs +71 -0
  47. package/src/teamcity/auth.ts +2 -2
  48. package/TODO.md +0 -80
@@ -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
@@ -219,53 +219,53 @@ export interface ProjectApiInterface {
219
219
  updateFeatures(projectLocator: string, fields?: string, body?: ProjectFeatures, options?: RawAxiosRequestConfig): AxiosPromise<object>;
220
220
  }
221
221
  export declare class ProjectApi extends BaseAPI implements ProjectApiInterface {
222
- addAgentPoolsProject(projectLocator: string, body?: AgentPool, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentPool, any>>;
223
- addBuildType(projectLocator: string, fields?: string, body?: NewBuildTypeDescription, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any>>;
224
- addFeature(projectLocator: string, fields?: string, body?: ProjectFeature, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
225
- addProject(body?: NewProjectDescription, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
226
- addSecureToken(projectLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
227
- addTemplate(projectLocator: string, fields?: string, body?: NewBuildTypeDescription, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any>>;
228
- createBuildParameter(projectLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any>>;
229
- deleteBuildParameter(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
230
- deleteBuildParameters(projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
231
- deleteFeature(featureLocator: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
232
- deleteProject(projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
233
- getAgentPoolsProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentPools, any>>;
234
- getAllBranches(projectLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Branches, any>>;
235
- getAllBuildTypesOrdered(projectLocator: string, field?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any>>;
236
- getAllProjects(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any>>;
237
- getAllSubprojectsOrdered(projectLocator: string, field?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any>>;
238
- getBuildParameter(name: string, projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any>>;
239
- getBuildParameterSpecification(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
240
- getBuildParameterType(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Type, any>>;
241
- getBuildParameterValue(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
242
- getBuildParameters(projectLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
243
- getDefaultTemplate(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any>>;
244
- getDefaultValueSets(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TypedValueSets, any>>;
245
- getDeploymentDashboardInProject(projectLocator: string, dashboardLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentDashboard, any>>;
246
- getDeploymentDashboardsInProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentDashboards, any>>;
247
- getFeature(featureLocator: string, projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
248
- getFeatures(projectLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
249
- getProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
250
- getProjectField(projectLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
251
- getProjectParentProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
252
- getProjectSettingsFile(projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
253
- getProjectTemplates(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any>>;
254
- getSecureValue(projectLocator: string, token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
255
- removeDefaultTemplate(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
256
- removeProjectFromAgentPool(projectLocator: string, agentPoolLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
257
- setAgentPoolsProject(projectLocator: string, fields?: string, body?: AgentPools, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentPools, any>>;
258
- setBuildTypesOrder(projectLocator: string, field?: string, body?: BuildTypes, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any>>;
259
- setDefaultTemplate(projectLocator: string, fields?: string, body?: BuildType, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any>>;
260
- setParentProject(projectLocator: string, fields?: string, body?: Project, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
261
- setProjectField(projectLocator: string, field: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
262
- setSubprojectsOrder(projectLocator: string, field?: string, body?: Projects, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any>>;
263
- updateBuildParameter(name: string, projectLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any>>;
264
- updateBuildParameterSpecification(name: string, projectLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
265
- updateBuildParameterType(name: string, projectLocator: string, body?: Type, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Type, any>>;
266
- updateBuildParameterValue(name: string, projectLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
267
- updateBuildParameters(projectLocator: string, fields?: string, body?: Properties, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
268
- updateFeature(featureLocator: string, projectLocator: string, fields?: string, body?: ProjectFeature, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
269
- updateFeatures(projectLocator: string, fields?: string, body?: ProjectFeatures, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
222
+ addAgentPoolsProject(projectLocator: string, body?: AgentPool, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentPool, any, {}>>;
223
+ addBuildType(projectLocator: string, fields?: string, body?: NewBuildTypeDescription, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any, {}>>;
224
+ addFeature(projectLocator: string, fields?: string, body?: ProjectFeature, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
225
+ addProject(body?: NewProjectDescription, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
226
+ addSecureToken(projectLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
227
+ addTemplate(projectLocator: string, fields?: string, body?: NewBuildTypeDescription, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any, {}>>;
228
+ createBuildParameter(projectLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any, {}>>;
229
+ deleteBuildParameter(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
230
+ deleteBuildParameters(projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
231
+ deleteFeature(featureLocator: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
232
+ deleteProject(projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
233
+ getAgentPoolsProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentPools, any, {}>>;
234
+ getAllBranches(projectLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Branches, any, {}>>;
235
+ getAllBuildTypesOrdered(projectLocator: string, field?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any, {}>>;
236
+ getAllProjects(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any, {}>>;
237
+ getAllSubprojectsOrdered(projectLocator: string, field?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any, {}>>;
238
+ getBuildParameter(name: string, projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any, {}>>;
239
+ getBuildParameterSpecification(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
240
+ getBuildParameterType(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Type, any, {}>>;
241
+ getBuildParameterValue(name: string, projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
242
+ getBuildParameters(projectLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
243
+ getDefaultTemplate(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any, {}>>;
244
+ getDefaultValueSets(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TypedValueSets, any, {}>>;
245
+ getDeploymentDashboardInProject(projectLocator: string, dashboardLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentDashboard, any, {}>>;
246
+ getDeploymentDashboardsInProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentDashboards, any, {}>>;
247
+ getFeature(featureLocator: string, projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
248
+ getFeatures(projectLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
249
+ getProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
250
+ getProjectField(projectLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
251
+ getProjectParentProject(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
252
+ getProjectSettingsFile(projectLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
253
+ getProjectTemplates(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any, {}>>;
254
+ getSecureValue(projectLocator: string, token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
255
+ removeDefaultTemplate(projectLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
256
+ removeProjectFromAgentPool(projectLocator: string, agentPoolLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
257
+ setAgentPoolsProject(projectLocator: string, fields?: string, body?: AgentPools, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentPools, any, {}>>;
258
+ setBuildTypesOrder(projectLocator: string, field?: string, body?: BuildTypes, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildTypes, any, {}>>;
259
+ setDefaultTemplate(projectLocator: string, fields?: string, body?: BuildType, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BuildType, any, {}>>;
260
+ setParentProject(projectLocator: string, fields?: string, body?: Project, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
261
+ setProjectField(projectLocator: string, field: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
262
+ setSubprojectsOrder(projectLocator: string, field?: string, body?: Projects, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Projects, any, {}>>;
263
+ updateBuildParameter(name: string, projectLocator: string, fields?: string, body?: Property, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Property, any, {}>>;
264
+ updateBuildParameterSpecification(name: string, projectLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
265
+ updateBuildParameterType(name: string, projectLocator: string, body?: Type, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Type, any, {}>>;
266
+ updateBuildParameterValue(name: string, projectLocator: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
267
+ updateBuildParameters(projectLocator: string, fields?: string, body?: Properties, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
268
+ updateFeature(featureLocator: string, projectLocator: string, fields?: string, body?: ProjectFeature, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
269
+ updateFeatures(projectLocator: string, fields?: string, body?: ProjectFeatures, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
270
270
  }
271
271
  //# sourceMappingURL=project-api.d.ts.map
@@ -44,13 +44,13 @@ export interface RoleApiInterface {
44
44
  removePermission(roleId: string, permissionId: string, fields?: string, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
45
45
  }
46
46
  export declare class RoleApi extends BaseAPI implements RoleApiInterface {
47
- addIncludedRole(roleId: string, includedId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
48
- addPermission(roleId: string, permissionId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
49
- createRole(fields?: string, body?: Role, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
50
- deleteRole(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
51
- getRole(id: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
52
- getRoles(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any>>;
53
- removeIncludedRole(roleId: string, includedId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
54
- removePermission(roleId: string, permissionId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
47
+ addIncludedRole(roleId: string, includedId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
48
+ addPermission(roleId: string, permissionId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
49
+ createRole(fields?: string, body?: Role, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
50
+ deleteRole(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
51
+ getRole(id: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
52
+ getRoles(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any, {}>>;
53
+ removeIncludedRole(roleId: string, includedId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
54
+ removePermission(roleId: string, permissionId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
55
55
  }
56
56
  //# sourceMappingURL=role-api.d.ts.map
@@ -27,9 +27,9 @@ export interface RootApiInterface {
27
27
  getVersion(options?: RawAxiosRequestConfig): AxiosPromise<string>;
28
28
  }
29
29
  export declare class RootApi extends BaseAPI implements RootApiInterface {
30
- getApiVersion(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
31
- getPluginInfo(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Plugin, any>>;
32
- getRootEndpointsOfRoot(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
33
- getVersion(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
30
+ getApiVersion(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
31
+ getPluginInfo(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Plugin, any, {}>>;
32
+ getRootEndpointsOfRoot(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
33
+ getVersion(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
34
34
  }
35
35
  //# sourceMappingURL=root-api.d.ts.map
@@ -90,23 +90,23 @@ export interface ServerApiInterface {
90
90
  startBackup(fileName?: string, addTimestamp?: boolean, includeConfigs?: boolean, includeDatabase?: boolean, includeBuildLogs?: boolean, includePersonalChanges?: boolean, includeRunningBuilds?: boolean, includeSupplimentaryData?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<string>;
91
91
  }
92
92
  export declare class ServerApi extends BaseAPI implements ServerApiInterface {
93
- addLicenseKeys(fields?: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicenseKeys, any>>;
94
- deleteLicenseKey(licenseKey: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
95
- downloadFileOfServer(path: string, areaId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
96
- getAllMetrics(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Metrics, any>>;
97
- getAllPlugins(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Plugins, any>>;
98
- getBackupStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
99
- getCleanupSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Cleanup, any>>;
100
- getFileMetadataOfServer(path: string, areaId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
101
- getFilesListForSubpathOfServer(path: string, areaId: string, basePath?: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any>>;
102
- getFilesListOfServer(areaId: string, basePath?: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any>>;
103
- getLicenseKey(licenseKey: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicenseKey, any>>;
104
- getLicenseKeys(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicenseKeys, any>>;
105
- getLicensingData(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicensingData, any>>;
106
- getServerField(field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
107
- getServerInfo(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Server, any>>;
108
- getZippedFileOfServer(path: string, areaId: string, basePath?: string, locator?: string, name?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
109
- setCleanupSettings(body?: Cleanup, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Cleanup, any>>;
110
- startBackup(fileName?: string, addTimestamp?: boolean, includeConfigs?: boolean, includeDatabase?: boolean, includeBuildLogs?: boolean, includePersonalChanges?: boolean, includeRunningBuilds?: boolean, includeSupplimentaryData?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
93
+ addLicenseKeys(fields?: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicenseKeys, any, {}>>;
94
+ deleteLicenseKey(licenseKey: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
95
+ downloadFileOfServer(path: string, areaId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
96
+ getAllMetrics(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Metrics, any, {}>>;
97
+ getAllPlugins(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Plugins, any, {}>>;
98
+ getBackupStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
99
+ getCleanupSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Cleanup, any, {}>>;
100
+ getFileMetadataOfServer(path: string, areaId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
101
+ getFilesListForSubpathOfServer(path: string, areaId: string, basePath?: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any, {}>>;
102
+ getFilesListOfServer(areaId: string, basePath?: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Files, any, {}>>;
103
+ getLicenseKey(licenseKey: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicenseKey, any, {}>>;
104
+ getLicenseKeys(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicenseKeys, any, {}>>;
105
+ getLicensingData(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LicensingData, any, {}>>;
106
+ getServerField(field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
107
+ getServerInfo(fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Server, any, {}>>;
108
+ getZippedFileOfServer(path: string, areaId: string, basePath?: string, locator?: string, name?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
109
+ setCleanupSettings(body?: Cleanup, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Cleanup, any, {}>>;
110
+ startBackup(fileName?: string, addTimestamp?: boolean, includeConfigs?: boolean, includeDatabase?: boolean, includeBuildLogs?: boolean, includePersonalChanges?: boolean, includeRunningBuilds?: boolean, includeSupplimentaryData?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
111
111
  }
112
112
  //# sourceMappingURL=server-api.d.ts.map
@@ -19,7 +19,7 @@ export interface ServerAuthenticationSettingsApiInterface {
19
19
  setAuthSettings(body?: ServerAuthSettings, options?: RawAxiosRequestConfig): AxiosPromise<ServerAuthSettings>;
20
20
  }
21
21
  export declare class ServerAuthenticationSettingsApi extends BaseAPI implements ServerAuthenticationSettingsApiInterface {
22
- getAuthSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerAuthSettings, any>>;
23
- setAuthSettings(body?: ServerAuthSettings, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerAuthSettings, any>>;
22
+ getAuthSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerAuthSettings, any, {}>>;
23
+ setAuthSettings(body?: ServerAuthSettings, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerAuthSettings, any, {}>>;
24
24
  }
25
25
  //# sourceMappingURL=server-authentication-settings-api.d.ts.map
@@ -20,7 +20,7 @@ export interface TestApiInterface {
20
20
  getTests(locator?: string, fields?: string, options?: RawAxiosRequestConfig): AxiosPromise<Tests>;
21
21
  }
22
22
  export declare class TestApi extends BaseAPI implements TestApiInterface {
23
- getTest(testLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Test, any>>;
24
- getTests(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tests, any>>;
23
+ getTest(testLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Test, any, {}>>;
24
+ getTests(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tests, any, {}>>;
25
25
  }
26
26
  //# sourceMappingURL=test-api.d.ts.map
@@ -20,7 +20,7 @@ export interface TestOccurrenceApiInterface {
20
20
  getTestOccurrence(testLocator: string, fields?: string, options?: RawAxiosRequestConfig): AxiosPromise<TestOccurrence>;
21
21
  }
22
22
  export declare class TestOccurrenceApi extends BaseAPI implements TestOccurrenceApiInterface {
23
- getAllTestOccurrences(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestOccurrences, any>>;
24
- getTestOccurrence(testLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestOccurrence, any>>;
23
+ getAllTestOccurrences(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestOccurrences, any, {}>>;
24
+ getTestOccurrence(testLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestOccurrence, any, {}>>;
25
25
  }
26
26
  //# sourceMappingURL=test-occurrence-api.d.ts.map
@@ -132,33 +132,33 @@ export interface UserApiInterface {
132
132
  setUserRoles(userLocator: string, body?: Roles, options?: RawAxiosRequestConfig): AxiosPromise<Roles>;
133
133
  }
134
134
  export declare class UserApi extends BaseAPI implements UserApiInterface {
135
- addRoleToUser(userLocator: string, body?: Role, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
136
- addRoleToUserAtScope(userLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
137
- addUser(fields?: string, body?: User, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any>>;
138
- addUserToken(userLocator: string, fields?: string, body?: Token, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Token, any>>;
139
- deleteUser(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
140
- deleteUserField(userLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
141
- deleteUserToken(userLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
142
- getAllUserGroups(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Groups, any>>;
143
- getAllUserRoles(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any>>;
144
- getAllUsers(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Users, any>>;
145
- getUser(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any>>;
146
- getUserField(userLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
147
- getUserGroup(userLocator: string, groupLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Group, any>>;
148
- getUserPermissions(userLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionAssignments, any>>;
149
- getUserProperties(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any>>;
150
- getUserProperty(userLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
151
- getUserRolesAtScope(userLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any>>;
152
- getUserTokens(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tokens, any>>;
153
- logoutUser(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
154
- removeUserFromGroup(userLocator: string, groupLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
155
- removeUserProperty(userLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
156
- removeUserRememberMe(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
157
- removeUserRoleAtScope(userLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
158
- replaceUser(userLocator: string, fields?: string, body?: User, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any>>;
159
- setUserField(userLocator: string, field: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
160
- setUserGroups(userLocator: string, fields?: string, body?: Groups, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Groups, any>>;
161
- setUserProperty(userLocator: string, name: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
162
- setUserRoles(userLocator: string, body?: Roles, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any>>;
135
+ addRoleToUser(userLocator: string, body?: Role, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
136
+ addRoleToUserAtScope(userLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
137
+ addUser(fields?: string, body?: User, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any, {}>>;
138
+ addUserToken(userLocator: string, fields?: string, body?: Token, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Token, any, {}>>;
139
+ deleteUser(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
140
+ deleteUserField(userLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
141
+ deleteUserToken(userLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
142
+ getAllUserGroups(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Groups, any, {}>>;
143
+ getAllUserRoles(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any, {}>>;
144
+ getAllUsers(locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Users, any, {}>>;
145
+ getUser(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any, {}>>;
146
+ getUserField(userLocator: string, field: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
147
+ getUserGroup(userLocator: string, groupLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Group, any, {}>>;
148
+ getUserPermissions(userLocator: string, locator?: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionAssignments, any, {}>>;
149
+ getUserProperties(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Properties, any, {}>>;
150
+ getUserProperty(userLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
151
+ getUserRolesAtScope(userLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
152
+ getUserTokens(userLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tokens, any, {}>>;
153
+ logoutUser(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
154
+ removeUserFromGroup(userLocator: string, groupLocator: string, fields?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
155
+ removeUserProperty(userLocator: string, name: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
156
+ removeUserRememberMe(userLocator: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
157
+ removeUserRoleAtScope(userLocator: string, roleId: string, scope: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
158
+ replaceUser(userLocator: string, fields?: string, body?: User, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any, {}>>;
159
+ setUserField(userLocator: string, field: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
160
+ setUserGroups(userLocator: string, fields?: string, body?: Groups, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Groups, any, {}>>;
161
+ setUserProperty(userLocator: string, name: string, body?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
162
+ setUserRoles(userLocator: string, body?: Roles, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Roles, any, {}>>;
163
163
  }
164
164
  //# sourceMappingURL=user-api.d.ts.map