@harnessio/react-rmg-service-client 0.23.0 → 0.25.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 (86) hide show
  1. package/dist/rmg-service/src/services/hooks/useCreateTaskCommentMutation.d.ts +32 -0
  2. package/dist/rmg-service/src/services/hooks/useCreateTaskCommentMutation.js +14 -0
  3. package/dist/rmg-service/src/services/hooks/useDeleteTaskCommentMutation.d.ts +24 -0
  4. package/dist/rmg-service/src/services/hooks/useDeleteTaskCommentMutation.js +14 -0
  5. package/dist/rmg-service/src/services/hooks/useGetFreezeDetailsQuery.d.ts +25 -0
  6. package/dist/rmg-service/src/services/hooks/useGetFreezeDetailsQuery.js +14 -0
  7. package/dist/rmg-service/src/services/hooks/useGetFreezeListQuery.d.ts +35 -0
  8. package/dist/rmg-service/src/services/hooks/useGetFreezeListQuery.js +14 -0
  9. package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputsQuery.d.ts +25 -0
  10. package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputsQuery.js +14 -0
  11. package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionTasksQuery.d.ts +28 -0
  12. package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionTasksQuery.js +20 -0
  13. package/dist/rmg-service/src/services/hooks/useGetTaskCommentsSummaryQuery.d.ts +30 -0
  14. package/dist/rmg-service/src/services/hooks/useGetTaskCommentsSummaryQuery.js +14 -0
  15. package/dist/rmg-service/src/services/hooks/useStartReleaseExecutionMutation.d.ts +8 -1
  16. package/dist/rmg-service/src/services/hooks/useUpdateExecutionTaskMetadataMutation.d.ts +36 -0
  17. package/dist/rmg-service/src/services/hooks/useUpdateExecutionTaskMetadataMutation.js +14 -0
  18. package/dist/rmg-service/src/services/hooks/useUpdateExecutionTaskStatusMutation.d.ts +33 -0
  19. package/dist/rmg-service/src/services/hooks/useUpdateExecutionTaskStatusMutation.js +14 -0
  20. package/dist/rmg-service/src/services/hooks/useUpdateTaskCommentMutation.d.ts +32 -0
  21. package/dist/rmg-service/src/services/hooks/useUpdateTaskCommentMutation.js +14 -0
  22. package/dist/rmg-service/src/services/index.d.ts +45 -1
  23. package/dist/rmg-service/src/services/index.js +10 -0
  24. package/dist/rmg-service/src/services/responses/ActivityInputsResponseResponse.d.ts +2 -0
  25. package/dist/rmg-service/src/services/responses/ActivityInputsResponseResponse.js +1 -0
  26. package/dist/rmg-service/src/services/responses/CreateTaskCommentResponseResponse.d.ts +6 -0
  27. package/dist/rmg-service/src/services/responses/CreateTaskCommentResponseResponse.js +4 -0
  28. package/dist/rmg-service/src/services/responses/ExecutionTasksListResponseResponse.d.ts +7 -0
  29. package/dist/rmg-service/src/services/responses/ExecutionTasksListResponseResponse.js +1 -0
  30. package/dist/rmg-service/src/services/responses/FreezeDetailsResponseResponse.d.ts +2 -0
  31. package/dist/rmg-service/src/services/responses/FreezeDetailsResponseResponse.js +1 -0
  32. package/dist/rmg-service/src/services/responses/FreezeListResponseResponse.d.ts +2 -0
  33. package/dist/rmg-service/src/services/responses/FreezeListResponseResponse.js +1 -0
  34. package/dist/rmg-service/src/services/responses/TaskCommentsListResponseResponse.d.ts +2 -0
  35. package/dist/rmg-service/src/services/responses/TaskCommentsListResponseResponse.js +1 -0
  36. package/dist/rmg-service/src/services/responses/UpdateExecutionTaskMetadataResponseResponse.d.ts +6 -0
  37. package/dist/rmg-service/src/services/responses/UpdateExecutionTaskMetadataResponseResponse.js +4 -0
  38. package/dist/rmg-service/src/services/responses/UpdateExecutionTaskStatusResponseResponse.d.ts +8 -0
  39. package/dist/rmg-service/src/services/responses/UpdateExecutionTaskStatusResponseResponse.js +1 -0
  40. package/dist/rmg-service/src/services/responses/UpdateTaskCommentResponseResponse.d.ts +6 -0
  41. package/dist/rmg-service/src/services/responses/UpdateTaskCommentResponseResponse.js +4 -0
  42. package/dist/rmg-service/src/services/schemas/ActivityInputYaml.d.ts +1 -1
  43. package/dist/rmg-service/src/services/schemas/ActivityInputsResponse.d.ts +9 -0
  44. package/dist/rmg-service/src/services/schemas/ActivityInputsResponse.js +4 -0
  45. package/dist/rmg-service/src/services/schemas/CommentedByDto.d.ts +10 -0
  46. package/dist/rmg-service/src/services/schemas/CommentedByDto.js +4 -0
  47. package/dist/rmg-service/src/services/schemas/ExecutionTaskDto.d.ts +55 -0
  48. package/dist/rmg-service/src/services/schemas/ExecutionTaskDto.js +1 -0
  49. package/dist/rmg-service/src/services/schemas/ExecutionTaskStatus.d.ts +4 -0
  50. package/dist/rmg-service/src/services/schemas/ExecutionTaskStatus.js +4 -0
  51. package/dist/rmg-service/src/services/schemas/FreezeDetailsDto.d.ts +41 -0
  52. package/dist/rmg-service/src/services/schemas/FreezeDetailsDto.js +1 -0
  53. package/dist/rmg-service/src/services/schemas/FreezeEntitiesDto.d.ts +29 -0
  54. package/dist/rmg-service/src/services/schemas/FreezeEntitiesDto.js +4 -0
  55. package/dist/rmg-service/src/services/schemas/FreezeListItemDto.d.ts +31 -0
  56. package/dist/rmg-service/src/services/schemas/FreezeListItemDto.js +4 -0
  57. package/dist/rmg-service/src/services/schemas/FreezeListResponseDto.d.ts +16 -0
  58. package/dist/rmg-service/src/services/schemas/FreezeListResponseDto.js +1 -0
  59. package/dist/rmg-service/src/services/schemas/GlobalReleaseInputYaml.d.ts +1 -1
  60. package/dist/rmg-service/src/services/schemas/InputVariable.d.ts +4 -12
  61. package/dist/rmg-service/src/services/schemas/InputVariable.js +0 -3
  62. package/dist/rmg-service/src/services/schemas/InputVariableType.d.ts +4 -0
  63. package/dist/rmg-service/src/services/schemas/InputVariableType.js +4 -0
  64. package/dist/rmg-service/src/services/schemas/ManualTaskYaml.d.ts +33 -0
  65. package/dist/rmg-service/src/services/schemas/ManualTaskYaml.js +4 -0
  66. package/dist/rmg-service/src/services/schemas/OrchestrationActivityManualYaml.d.ts +10 -0
  67. package/dist/rmg-service/src/services/schemas/OrchestrationActivityManualYaml.js +1 -0
  68. package/dist/rmg-service/src/services/schemas/OrchestrationActivityPipelineYaml.d.ts +4 -0
  69. package/dist/rmg-service/src/services/schemas/OrchestrationActivityProcessYaml.d.ts +0 -16
  70. package/dist/rmg-service/src/services/schemas/OrchestrationActivityYaml.d.ts +4 -22
  71. package/dist/rmg-service/src/services/schemas/OrchestrationExecutionActivity.d.ts +4 -0
  72. package/dist/rmg-service/src/services/schemas/OrchestrationPhaseYaml.d.ts +23 -33
  73. package/dist/rmg-service/src/services/schemas/OrchestrationProcessInputYaml.d.ts +17 -3
  74. package/dist/rmg-service/src/services/schemas/OrchestrationReleaseProcessYaml.d.ts +1 -5
  75. package/dist/rmg-service/src/services/schemas/PhaseInputYaml.d.ts +3 -1
  76. package/dist/rmg-service/src/services/schemas/PhaseReleaseInputYaml.d.ts +1 -1
  77. package/dist/rmg-service/src/services/schemas/ProcessInputSummaryDto.d.ts +4 -0
  78. package/dist/rmg-service/src/services/schemas/StringOrBool.d.ts +4 -0
  79. package/dist/rmg-service/src/services/schemas/StringOrBool.js +4 -0
  80. package/dist/rmg-service/src/services/schemas/StringOrStringArray.d.ts +4 -0
  81. package/dist/rmg-service/src/services/schemas/StringOrStringArray.js +4 -0
  82. package/dist/rmg-service/src/services/schemas/TaskCommentDto.d.ts +32 -0
  83. package/dist/rmg-service/src/services/schemas/TaskCommentDto.js +1 -0
  84. package/dist/rmg-service/src/services/schemas/TaskCommentsListResponseDto.d.ts +16 -0
  85. package/dist/rmg-service/src/services/schemas/TaskCommentsListResponseDto.js +1 -0
  86. package/package.json +1 -1
@@ -1,16 +1,28 @@
1
1
  export type { GetPathParamsType, ResponseWithPagination } from './helpers';
2
+ export type { CreateTaskCommentErrorResponse, CreateTaskCommentMutationPathParams, CreateTaskCommentMutationQueryParams, CreateTaskCommentOkResponse, CreateTaskCommentProps, CreateTaskCommentRequestBody, } from './hooks/useCreateTaskCommentMutation';
3
+ export { createTaskComment, useCreateTaskCommentMutation, } from './hooks/useCreateTaskCommentMutation';
2
4
  export type { DeleteReleaseGroupErrorResponse, DeleteReleaseGroupMutationPathParams, DeleteReleaseGroupMutationQueryParams, DeleteReleaseGroupOkResponse, DeleteReleaseGroupProps, } from './hooks/useDeleteReleaseGroupMutation';
3
5
  export { deleteReleaseGroup, useDeleteReleaseGroupMutation, } from './hooks/useDeleteReleaseGroupMutation';
6
+ export type { DeleteTaskCommentErrorResponse, DeleteTaskCommentMutationPathParams, DeleteTaskCommentMutationQueryParams, DeleteTaskCommentOkResponse, DeleteTaskCommentProps, } from './hooks/useDeleteTaskCommentMutation';
7
+ export { deleteTaskComment, useDeleteTaskCommentMutation, } from './hooks/useDeleteTaskCommentMutation';
8
+ export type { GetFreezeDetailsErrorResponse, GetFreezeDetailsOkResponse, GetFreezeDetailsProps, GetFreezeDetailsQueryPathParams, GetFreezeDetailsQueryQueryParams, } from './hooks/useGetFreezeDetailsQuery';
9
+ export { getFreezeDetails, useGetFreezeDetailsQuery } from './hooks/useGetFreezeDetailsQuery';
10
+ export type { GetFreezeListErrorResponse, GetFreezeListOkResponse, GetFreezeListProps, GetFreezeListQueryQueryParams, } from './hooks/useGetFreezeListQuery';
11
+ export { getFreezeList, useGetFreezeListQuery } from './hooks/useGetFreezeListQuery';
4
12
  export type { GetOrchestrationActivitiesByAcitivityRefsErrorResponse, GetOrchestrationActivitiesByAcitivityRefsMutationQueryParams, GetOrchestrationActivitiesByAcitivityRefsOkResponse, GetOrchestrationActivitiesByAcitivityRefsProps, GetOrchestrationActivitiesByAcitivityRefsRequestBody, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
5
13
  export { getOrchestrationActivitiesByAcitivityRefs, useGetOrchestrationActivitiesByAcitivityRefsMutation, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
6
14
  export type { GetOrchestrationActivitiesByProcessIdentifierErrorResponse, GetOrchestrationActivitiesByProcessIdentifierOkResponse, GetOrchestrationActivitiesByProcessIdentifierProps, GetOrchestrationActivitiesByProcessIdentifierQueryPathParams, GetOrchestrationActivitiesByProcessIdentifierQueryQueryParams, } from './hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery';
7
15
  export { getOrchestrationActivitiesByProcessIdentifier, useGetOrchestrationActivitiesByProcessIdentifierQuery, } from './hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery';
16
+ export type { GetOrchestrationActivityInputsErrorResponse, GetOrchestrationActivityInputsOkResponse, GetOrchestrationActivityInputsProps, GetOrchestrationActivityInputsQueryPathParams, GetOrchestrationActivityInputsQueryQueryParams, } from './hooks/useGetOrchestrationActivityInputsQuery';
17
+ export { getOrchestrationActivityInputs, useGetOrchestrationActivityInputsQuery, } from './hooks/useGetOrchestrationActivityInputsQuery';
8
18
  export type { GetOrchestrationActivityErrorResponse, GetOrchestrationActivityOkResponse, GetOrchestrationActivityProps, GetOrchestrationActivityQueryPathParams, GetOrchestrationActivityQueryQueryParams, } from './hooks/useGetOrchestrationActivityQuery';
9
19
  export { getOrchestrationActivity, useGetOrchestrationActivityQuery, } from './hooks/useGetOrchestrationActivityQuery';
10
20
  export type { GetOrchestrationExecutionActivitiesErrorResponse, GetOrchestrationExecutionActivitiesOkResponse, GetOrchestrationExecutionActivitiesProps, GetOrchestrationExecutionActivitiesQueryPathParams, GetOrchestrationExecutionActivitiesQueryQueryParams, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
11
21
  export { getOrchestrationExecutionActivities, useGetOrchestrationExecutionActivitiesQuery, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
12
22
  export type { GetOrchestrationExecutionPhasesErrorResponse, GetOrchestrationExecutionPhasesOkResponse, GetOrchestrationExecutionPhasesProps, GetOrchestrationExecutionPhasesQueryPathParams, GetOrchestrationExecutionPhasesQueryQueryParams, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
13
23
  export { getOrchestrationExecutionPhases, useGetOrchestrationExecutionPhasesQuery, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
24
+ export type { GetOrchestrationExecutionTasksErrorResponse, GetOrchestrationExecutionTasksOkResponse, GetOrchestrationExecutionTasksProps, GetOrchestrationExecutionTasksQueryPathParams, GetOrchestrationExecutionTasksQueryQueryParams, } from './hooks/useGetOrchestrationExecutionTasksQuery';
25
+ export { getOrchestrationExecutionTasks, useGetOrchestrationExecutionTasksQuery, } from './hooks/useGetOrchestrationExecutionTasksQuery';
14
26
  export type { GetOrchestrationProcessInputErrorResponse, GetOrchestrationProcessInputOkResponse, GetOrchestrationProcessInputProps, GetOrchestrationProcessInputQueryPathParams, GetOrchestrationProcessInputQueryQueryParams, } from './hooks/useGetOrchestrationProcessInputQuery';
15
27
  export { getOrchestrationProcessInput, useGetOrchestrationProcessInputQuery, } from './hooks/useGetOrchestrationProcessInputQuery';
16
28
  export type { GetOrchestrationProcessInputSummaryErrorResponse, GetOrchestrationProcessInputSummaryOkResponse, GetOrchestrationProcessInputSummaryProps, GetOrchestrationProcessInputSummaryQueryPathParams, GetOrchestrationProcessInputSummaryQueryQueryParams, } from './hooks/useGetOrchestrationProcessInputSummaryQuery';
@@ -39,6 +51,8 @@ export type { GetReleaseReleaseIdEnvironmentDashboardErrorResponse, GetReleaseRe
39
51
  export { getReleaseReleaseIdEnvironmentDashboard, useGetReleaseReleaseIdEnvironmentDashboardQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentDashboardQuery';
40
52
  export type { GetReleaseReleaseIdEnvironmentsErrorResponse, GetReleaseReleaseIdEnvironmentsOkResponse, GetReleaseReleaseIdEnvironmentsProps, GetReleaseReleaseIdEnvironmentsQueryPathParams, GetReleaseReleaseIdEnvironmentsQueryQueryParams, } from './hooks/useGetReleaseReleaseIdEnvironmentsQuery';
41
53
  export { getReleaseReleaseIdEnvironments, useGetReleaseReleaseIdEnvironmentsQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentsQuery';
54
+ export type { GetTaskCommentsSummaryErrorResponse, GetTaskCommentsSummaryOkResponse, GetTaskCommentsSummaryProps, GetTaskCommentsSummaryQueryPathParams, GetTaskCommentsSummaryQueryQueryParams, } from './hooks/useGetTaskCommentsSummaryQuery';
55
+ export { getTaskCommentsSummary, useGetTaskCommentsSummaryQuery, } from './hooks/useGetTaskCommentsSummaryQuery';
42
56
  export type { PostOrchestrationActivityErrorResponse, PostOrchestrationActivityMutationQueryParams, PostOrchestrationActivityOkResponse, PostOrchestrationActivityProps, PostOrchestrationActivityRequestBody, } from './hooks/usePostOrchestrationActivityMutation';
43
57
  export { postOrchestrationActivity, usePostOrchestrationActivityMutation, } from './hooks/usePostOrchestrationActivityMutation';
44
58
  export type { PostOrchestrationProcessAttachedReleaseGroupsErrorResponse, PostOrchestrationProcessAttachedReleaseGroupsMutationPathParams, PostOrchestrationProcessAttachedReleaseGroupsMutationQueryParams, PostOrchestrationProcessAttachedReleaseGroupsOkResponse, PostOrchestrationProcessAttachedReleaseGroupsProps, PostOrchestrationProcessAttachedReleaseGroupsRequestBody, } from './hooks/usePostOrchestrationProcessAttachedReleaseGroupsMutation';
@@ -61,10 +75,16 @@ export type { PutReleaseGroupErrorResponse, PutReleaseGroupMutationPathParams, P
61
75
  export { putReleaseGroup, usePutReleaseGroupMutation } from './hooks/usePutReleaseGroupMutation';
62
76
  export type { PutReleaseReleaseIdErrorResponse, PutReleaseReleaseIdMutationPathParams, PutReleaseReleaseIdOkResponse, PutReleaseReleaseIdProps, PutReleaseReleaseIdRequestBody, } from './hooks/usePutReleaseReleaseIdMutation';
63
77
  export { putReleaseReleaseId, usePutReleaseReleaseIdMutation, } from './hooks/usePutReleaseReleaseIdMutation';
64
- export type { StartReleaseExecutionErrorResponse, StartReleaseExecutionMutationPathParams, StartReleaseExecutionMutationQueryParams, StartReleaseExecutionOkResponse, StartReleaseExecutionProps, } from './hooks/useStartReleaseExecutionMutation';
78
+ export type { StartReleaseExecutionErrorResponse, StartReleaseExecutionMutationPathParams, StartReleaseExecutionMutationQueryParams, StartReleaseExecutionOkResponse, StartReleaseExecutionProps, StartReleaseExecutionRequestBody, } from './hooks/useStartReleaseExecutionMutation';
65
79
  export { startReleaseExecution, useStartReleaseExecutionMutation, } from './hooks/useStartReleaseExecutionMutation';
80
+ export type { UpdateExecutionTaskMetadataErrorResponse, UpdateExecutionTaskMetadataMutationPathParams, UpdateExecutionTaskMetadataMutationQueryParams, UpdateExecutionTaskMetadataOkResponse, UpdateExecutionTaskMetadataProps, UpdateExecutionTaskMetadataRequestBody, } from './hooks/useUpdateExecutionTaskMetadataMutation';
81
+ export { updateExecutionTaskMetadata, useUpdateExecutionTaskMetadataMutation, } from './hooks/useUpdateExecutionTaskMetadataMutation';
82
+ export type { UpdateExecutionTaskStatusErrorResponse, UpdateExecutionTaskStatusMutationPathParams, UpdateExecutionTaskStatusMutationQueryParams, UpdateExecutionTaskStatusOkResponse, UpdateExecutionTaskStatusProps, UpdateExecutionTaskStatusRequestBody, } from './hooks/useUpdateExecutionTaskStatusMutation';
83
+ export { updateExecutionTaskStatus, useUpdateExecutionTaskStatusMutation, } from './hooks/useUpdateExecutionTaskStatusMutation';
66
84
  export type { UpdateReleaseConflictErrorResponse, UpdateReleaseConflictMutationPathParams, UpdateReleaseConflictOkResponse, UpdateReleaseConflictProps, UpdateReleaseConflictRequestBody, } from './hooks/useUpdateReleaseConflictMutation';
67
85
  export { updateReleaseConflict, useUpdateReleaseConflictMutation, } from './hooks/useUpdateReleaseConflictMutation';
86
+ export type { UpdateTaskCommentErrorResponse, UpdateTaskCommentMutationPathParams, UpdateTaskCommentMutationQueryParams, UpdateTaskCommentOkResponse, UpdateTaskCommentProps, UpdateTaskCommentRequestBody, } from './hooks/useUpdateTaskCommentMutation';
87
+ export { updateTaskComment, useUpdateTaskCommentMutation, } from './hooks/useUpdateTaskCommentMutation';
68
88
  export type { CreateOrchestrationActivityRequestRequestBody } from './requestBodies/CreateOrchestrationActivityRequestRequestBody';
69
89
  export type { CreateOrchestrationProcessInputRequestRequestBody } from './requestBodies/CreateOrchestrationProcessInputRequestRequestBody';
70
90
  export type { CreateOrchestrationProcessRequestRequestBody } from './requestBodies/CreateOrchestrationProcessRequestRequestBody';
@@ -76,14 +96,19 @@ export type { UpdateOrchestrationProcessInputRequestRequestBody } from './reques
76
96
  export type { UpdateOrchestrationProcessRequestRequestBody } from './requestBodies/UpdateOrchestrationProcessRequestRequestBody';
77
97
  export type { UpdateReleaseGroupRequestRequestBody } from './requestBodies/UpdateReleaseGroupRequestRequestBody';
78
98
  export type { UpdateReleaseRequestRequestBody } from './requestBodies/UpdateReleaseRequestRequestBody';
99
+ export type { ActivityInputsResponseResponse } from './responses/ActivityInputsResponseResponse';
79
100
  export type { CreateOrchestrationActivityResponseResponse } from './responses/CreateOrchestrationActivityResponseResponse';
80
101
  export type { CreateOrchestrationProcessInputResponseResponse } from './responses/CreateOrchestrationProcessInputResponseResponse';
81
102
  export type { CreateOrchestrationProcessResponseResponse } from './responses/CreateOrchestrationProcessResponseResponse';
82
103
  export type { CreateReleaseGroupResponseResponse } from './responses/CreateReleaseGroupResponseResponse';
104
+ export type { CreateTaskCommentResponseResponse } from './responses/CreateTaskCommentResponseResponse';
83
105
  export type { DeleteReleaseGroupResponseResponse } from './responses/DeleteReleaseGroupResponseResponse';
84
106
  export type { EnvironmentDashboardResponseResponse } from './responses/EnvironmentDashboardResponseResponse';
85
107
  export type { EnvironmentListPerReleaseResponseResponse } from './responses/EnvironmentListPerReleaseResponseResponse';
86
108
  export type { ErrorResponseResponse } from './responses/ErrorResponseResponse';
109
+ export type { ExecutionTasksListResponseResponse } from './responses/ExecutionTasksListResponseResponse';
110
+ export type { FreezeDetailsResponseResponse } from './responses/FreezeDetailsResponseResponse';
111
+ export type { FreezeListResponseResponse } from './responses/FreezeListResponseResponse';
87
112
  export type { GetOrchestrationActivityResponseResponse } from './responses/GetOrchestrationActivityResponseResponse';
88
113
  export type { GetOrchestrationProcessInputResponseResponse } from './responses/GetOrchestrationProcessInputResponseResponse';
89
114
  export type { GetOrchestrationProcessResponseResponse } from './responses/GetOrchestrationProcessResponseResponse';
@@ -99,17 +124,23 @@ export type { ReleaseDetailsResponseResponse } from './responses/ReleaseDetailsR
99
124
  export type { ReleaseGroupComponentResponseResponse } from './responses/ReleaseGroupComponentResponseResponse';
100
125
  export type { ReleaseGroupSummaryResponseResponse } from './responses/ReleaseGroupSummaryResponseResponse';
101
126
  export type { ReleaseSummaryResponseResponse } from './responses/ReleaseSummaryResponseResponse';
127
+ export type { TaskCommentsListResponseResponse } from './responses/TaskCommentsListResponseResponse';
128
+ export type { UpdateExecutionTaskMetadataResponseResponse } from './responses/UpdateExecutionTaskMetadataResponseResponse';
129
+ export type { UpdateExecutionTaskStatusResponseResponse } from './responses/UpdateExecutionTaskStatusResponseResponse';
102
130
  export type { UpdateOrchestrationActivityResponseResponse } from './responses/UpdateOrchestrationActivityResponseResponse';
103
131
  export type { UpdateOrchestrationProcessInputResponseResponse } from './responses/UpdateOrchestrationProcessInputResponseResponse';
104
132
  export type { UpdateOrchestrationProcessResponseResponse } from './responses/UpdateOrchestrationProcessResponseResponse';
105
133
  export type { UpdateReleaseConflictResponseResponse } from './responses/UpdateReleaseConflictResponseResponse';
106
134
  export type { UpdateReleaseGroupResponseResponse } from './responses/UpdateReleaseGroupResponseResponse';
107
135
  export type { UpdateReleaseResponseResponse } from './responses/UpdateReleaseResponseResponse';
136
+ export type { UpdateTaskCommentResponseResponse } from './responses/UpdateTaskCommentResponseResponse';
108
137
  export type { ActivityInputYaml } from './schemas/ActivityInputYaml';
138
+ export type { ActivityInputsResponse } from './schemas/ActivityInputsResponse';
109
139
  export type { ActivityType } from './schemas/ActivityType';
110
140
  export type { ApprovalInfoDto } from './schemas/ApprovalInfoDto';
111
141
  export type { ApprovedByDto } from './schemas/ApprovedByDto';
112
142
  export type { AttachedReleaseGroupDto } from './schemas/AttachedReleaseGroupDto';
143
+ export type { CommentedByDto } from './schemas/CommentedByDto';
113
144
  export type { ConflictStatus } from './schemas/ConflictStatus';
114
145
  export type { CreateOrchestrationActivityInputSetRequestType } from './schemas/CreateOrchestrationActivityInputSetRequestType';
115
146
  export type { CreateOrchestrationActivityRequestType } from './schemas/CreateOrchestrationActivityRequestType';
@@ -118,12 +149,21 @@ export type { EnvironmentDto } from './schemas/EnvironmentDto';
118
149
  export type { EnvironmentType } from './schemas/EnvironmentType';
119
150
  export type { Error } from './schemas/Error';
120
151
  export type { ExecutionConflict } from './schemas/ExecutionConflict';
152
+ export type { ExecutionTaskDto } from './schemas/ExecutionTaskDto';
153
+ export type { ExecutionTaskStatus } from './schemas/ExecutionTaskStatus';
154
+ export type { FreezeDetailsDto } from './schemas/FreezeDetailsDto';
155
+ export type { FreezeEntitiesDto } from './schemas/FreezeEntitiesDto';
156
+ export type { FreezeListItemDto } from './schemas/FreezeListItemDto';
157
+ export type { FreezeListResponseDto } from './schemas/FreezeListResponseDto';
121
158
  export type { Freq } from './schemas/Freq';
122
159
  export type { GetReleaseGroupResponse } from './schemas/GetReleaseGroupResponse';
123
160
  export type { GlobalReleaseInputYaml } from './schemas/GlobalReleaseInputYaml';
124
161
  export type { InputVariable } from './schemas/InputVariable';
162
+ export type { InputVariableType } from './schemas/InputVariableType';
125
163
  export type { LastUpdatedByDto } from './schemas/LastUpdatedByDto';
164
+ export type { ManualTaskYaml } from './schemas/ManualTaskYaml';
126
165
  export type { NextRequest } from './schemas/NextRequest';
166
+ export type { OrchestrationActivityManualYaml } from './schemas/OrchestrationActivityManualYaml';
127
167
  export type { OrchestrationActivityPipelineYaml } from './schemas/OrchestrationActivityPipelineYaml';
128
168
  export type { OrchestrationActivityProcessYaml } from './schemas/OrchestrationActivityProcessYaml';
129
169
  export type { OrchestrationActivityYaml } from './schemas/OrchestrationActivityYaml';
@@ -160,6 +200,10 @@ export type { Status } from './schemas/Status';
160
200
  export type { StepInfoDetailsDto } from './schemas/StepInfoDetailsDto';
161
201
  export type { StepInfoDto } from './schemas/StepInfoDto';
162
202
  export type { StepInfoType } from './schemas/StepInfoType';
203
+ export type { StringOrBool } from './schemas/StringOrBool';
204
+ export type { StringOrStringArray } from './schemas/StringOrStringArray';
205
+ export type { TaskCommentDto } from './schemas/TaskCommentDto';
206
+ export type { TaskCommentsListResponseDto } from './schemas/TaskCommentsListResponseDto';
163
207
  export type { TimeRangeDto } from './schemas/TimeRangeDto';
164
208
  export type { TriggerType } from './schemas/TriggerType';
165
209
  export type { TriggeredByDto } from './schemas/TriggeredByDto';
@@ -1,9 +1,15 @@
1
+ export { createTaskComment, useCreateTaskCommentMutation, } from './hooks/useCreateTaskCommentMutation';
1
2
  export { deleteReleaseGroup, useDeleteReleaseGroupMutation, } from './hooks/useDeleteReleaseGroupMutation';
3
+ export { deleteTaskComment, useDeleteTaskCommentMutation, } from './hooks/useDeleteTaskCommentMutation';
4
+ export { getFreezeDetails, useGetFreezeDetailsQuery } from './hooks/useGetFreezeDetailsQuery';
5
+ export { getFreezeList, useGetFreezeListQuery } from './hooks/useGetFreezeListQuery';
2
6
  export { getOrchestrationActivitiesByAcitivityRefs, useGetOrchestrationActivitiesByAcitivityRefsMutation, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
3
7
  export { getOrchestrationActivitiesByProcessIdentifier, useGetOrchestrationActivitiesByProcessIdentifierQuery, } from './hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery';
8
+ export { getOrchestrationActivityInputs, useGetOrchestrationActivityInputsQuery, } from './hooks/useGetOrchestrationActivityInputsQuery';
4
9
  export { getOrchestrationActivity, useGetOrchestrationActivityQuery, } from './hooks/useGetOrchestrationActivityQuery';
5
10
  export { getOrchestrationExecutionActivities, useGetOrchestrationExecutionActivitiesQuery, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
6
11
  export { getOrchestrationExecutionPhases, useGetOrchestrationExecutionPhasesQuery, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
12
+ export { getOrchestrationExecutionTasks, useGetOrchestrationExecutionTasksQuery, } from './hooks/useGetOrchestrationExecutionTasksQuery';
7
13
  export { getOrchestrationProcessInput, useGetOrchestrationProcessInputQuery, } from './hooks/useGetOrchestrationProcessInputQuery';
8
14
  export { getOrchestrationProcessInputSummary, useGetOrchestrationProcessInputSummaryQuery, } from './hooks/useGetOrchestrationProcessInputSummaryQuery';
9
15
  export { getOrchestrationProcess, useGetOrchestrationProcessQuery, } from './hooks/useGetOrchestrationProcessQuery';
@@ -18,6 +24,7 @@ export { getRelease, useGetReleaseQuery } from './hooks/useGetReleaseQuery';
18
24
  export { getReleaseReleaseIdApprovals, useGetReleaseReleaseIdApprovalsQuery, } from './hooks/useGetReleaseReleaseIdApprovalsQuery';
19
25
  export { getReleaseReleaseIdEnvironmentDashboard, useGetReleaseReleaseIdEnvironmentDashboardQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentDashboardQuery';
20
26
  export { getReleaseReleaseIdEnvironments, useGetReleaseReleaseIdEnvironmentsQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentsQuery';
27
+ export { getTaskCommentsSummary, useGetTaskCommentsSummaryQuery, } from './hooks/useGetTaskCommentsSummaryQuery';
21
28
  export { postOrchestrationActivity, usePostOrchestrationActivityMutation, } from './hooks/usePostOrchestrationActivityMutation';
22
29
  export { postOrchestrationProcessAttachedReleaseGroups, usePostOrchestrationProcessAttachedReleaseGroupsMutation, } from './hooks/usePostOrchestrationProcessAttachedReleaseGroupsMutation';
23
30
  export { postOrchestrationProcessInput, usePostOrchestrationProcessInputMutation, } from './hooks/usePostOrchestrationProcessInputMutation';
@@ -30,4 +37,7 @@ export { putOrchestrationProcess, usePutOrchestrationProcessMutation, } from './
30
37
  export { putReleaseGroup, usePutReleaseGroupMutation } from './hooks/usePutReleaseGroupMutation';
31
38
  export { putReleaseReleaseId, usePutReleaseReleaseIdMutation, } from './hooks/usePutReleaseReleaseIdMutation';
32
39
  export { startReleaseExecution, useStartReleaseExecutionMutation, } from './hooks/useStartReleaseExecutionMutation';
40
+ export { updateExecutionTaskMetadata, useUpdateExecutionTaskMetadataMutation, } from './hooks/useUpdateExecutionTaskMetadataMutation';
41
+ export { updateExecutionTaskStatus, useUpdateExecutionTaskStatusMutation, } from './hooks/useUpdateExecutionTaskStatusMutation';
33
42
  export { updateReleaseConflict, useUpdateReleaseConflictMutation, } from './hooks/useUpdateReleaseConflictMutation';
43
+ export { updateTaskComment, useUpdateTaskCommentMutation, } from './hooks/useUpdateTaskCommentMutation';
@@ -0,0 +1,2 @@
1
+ import type { ActivityInputsResponse } from '../schemas/ActivityInputsResponse';
2
+ export type ActivityInputsResponseResponse = ActivityInputsResponse;
@@ -0,0 +1,6 @@
1
+ export interface CreateTaskCommentResponseResponse {
2
+ /**
3
+ * UUID of the created comment
4
+ */
5
+ commentId: string;
6
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1,7 @@
1
+ import type { ExecutionTaskDto } from '../schemas/ExecutionTaskDto';
2
+ export interface ExecutionTasksListResponseResponse {
3
+ /**
4
+ * List of execution tasks
5
+ */
6
+ tasks: ExecutionTaskDto[];
7
+ }
@@ -0,0 +1,2 @@
1
+ import type { FreezeDetailsDto } from '../schemas/FreezeDetailsDto';
2
+ export type FreezeDetailsResponseResponse = FreezeDetailsDto;
@@ -0,0 +1,2 @@
1
+ import type { FreezeListResponseDto } from '../schemas/FreezeListResponseDto';
2
+ export type FreezeListResponseResponse = FreezeListResponseDto;
@@ -0,0 +1,2 @@
1
+ import type { TaskCommentsListResponseDto } from '../schemas/TaskCommentsListResponseDto';
2
+ export type TaskCommentsListResponseResponse = TaskCommentsListResponseDto;
@@ -0,0 +1,6 @@
1
+ export interface UpdateExecutionTaskMetadataResponseResponse {
2
+ /**
3
+ * UUID of the updated task
4
+ */
5
+ taskExecutionId: string;
6
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1,8 @@
1
+ import type { ExecutionTaskStatus } from '../schemas/ExecutionTaskStatus';
2
+ export interface UpdateExecutionTaskStatusResponseResponse {
3
+ status: ExecutionTaskStatus;
4
+ /**
5
+ * UUID of the updated task
6
+ */
7
+ taskExecutionId: string;
8
+ }
@@ -0,0 +1,6 @@
1
+ export interface UpdateTaskCommentResponseResponse {
2
+ /**
3
+ * UUID of the updated comment
4
+ */
5
+ commentId: string;
6
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -7,6 +7,6 @@ export interface ActivityInputYaml {
7
7
  * Configuration parameters for the activity
8
8
  */
9
9
  with?: {
10
- [key: string]: any;
10
+ [key: string]: string;
11
11
  };
12
12
  }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Enhanced response structure for activity inputs
3
+ */
4
+ export interface ActivityInputsResponse {
5
+ /**
6
+ * activityInput Yaml string
7
+ */
8
+ activityInput: string;
9
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1,10 @@
1
+ export interface CommentedByDto {
2
+ /**
3
+ * Email of the person who approved the step.
4
+ */
5
+ email: string;
6
+ /**
7
+ * Name of the person who approved the step.
8
+ */
9
+ name: string;
10
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1,55 @@
1
+ import type { StringOrBool } from '../schemas/StringOrBool';
2
+ import type { ExecutionTaskStatus } from '../schemas/ExecutionTaskStatus';
3
+ import type { StringOrStringArray } from '../schemas/StringOrStringArray';
4
+ /**
5
+ * Represents an execution task for a specific activity
6
+ */
7
+ export interface ExecutionTaskDto {
8
+ /**
9
+ * Actual duration taken for the task (e.g., "7h")
10
+ */
11
+ actualDuration?: string;
12
+ /**
13
+ * Unix timestamp when the task was created
14
+ * @format int64
15
+ */
16
+ createdAt?: number;
17
+ /**
18
+ * Description of the task
19
+ */
20
+ description?: string;
21
+ /**
22
+ * Expected duration for the task (e.g., "1d 12h")
23
+ */
24
+ expectedDuration: string;
25
+ /**
26
+ * Unique identifier of the task
27
+ */
28
+ identifier: string;
29
+ /**
30
+ * Unix timestamp when the task was last updated
31
+ * @format int64
32
+ */
33
+ lastUpdatedAt?: number;
34
+ /**
35
+ * Name of the task
36
+ */
37
+ name: string;
38
+ /**
39
+ * Whether this task is required
40
+ */
41
+ required: StringOrBool;
42
+ status: ExecutionTaskStatus;
43
+ /**
44
+ * ID of the task execution
45
+ */
46
+ taskExecutionId?: string;
47
+ /**
48
+ * List of user group identifiers assigned to this task
49
+ */
50
+ userGroups: StringOrStringArray;
51
+ /**
52
+ * List of user identifiers assigned to this task
53
+ */
54
+ users: StringOrStringArray;
55
+ }
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Current status of the execution task
3
+ */
4
+ export type ExecutionTaskStatus = 'BLOCKED' | 'FAILED' | 'IN_PROGRESS' | 'SUCCEEDED' | 'TODO';
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1,41 @@
1
+ import type { FreezeEntitiesDto } from '../schemas/FreezeEntitiesDto';
2
+ /**
3
+ * Detailed freeze information with entity extraction
4
+ */
5
+ export interface FreezeDetailsDto {
6
+ /**
7
+ * Freeze description
8
+ */
9
+ description?: string;
10
+ entities: FreezeEntitiesDto;
11
+ /**
12
+ * Expected end timestamp
13
+ * @format int64
14
+ */
15
+ expectedEndTs: number;
16
+ /**
17
+ * Expected start timestamp
18
+ * @format int64
19
+ */
20
+ expectedStartTs: number;
21
+ /**
22
+ * Freeze identifier
23
+ */
24
+ freeze_identifier: string;
25
+ /**
26
+ * Freeze name
27
+ */
28
+ name: string;
29
+ /**
30
+ * Organization identifier
31
+ */
32
+ orgIdentifier: string;
33
+ /**
34
+ * Project identifier
35
+ */
36
+ projectIdentifier: string;
37
+ /**
38
+ * Freeze status
39
+ */
40
+ status?: 'Disabled' | 'Enabled';
41
+ }
@@ -0,0 +1,29 @@
1
+ /**
2
+ * Entity information extracted from freeze YAML configuration
3
+ */
4
+ export interface FreezeEntitiesDto {
5
+ /**
6
+ * Environment type identifiers extracted from YAML. Contains "__ALL__" marker if all environment types are frozen (filterType="All").
7
+ */
8
+ environmentTypes: string[];
9
+ /**
10
+ * Environment identifiers extracted from YAML. Contains "__ALL__" marker if all environments are frozen (filterType="All").
11
+ */
12
+ environments: string[];
13
+ /**
14
+ * Organization identifiers extracted from YAML. Contains "__ALL__" marker if all organizations are frozen (filterType="All").
15
+ */
16
+ organizations: string[];
17
+ /**
18
+ * Pipeline identifiers extracted from YAML. Contains "__ALL__" marker if all pipelines are frozen (filterType="All").
19
+ */
20
+ pipelines: string[];
21
+ /**
22
+ * Project identifiers extracted from YAML. Contains "__ALL__" marker if all projects are frozen (filterType="All").
23
+ */
24
+ projects: string[];
25
+ /**
26
+ * Service identifiers extracted from YAML. Contains "__ALL__" marker if all services are frozen (filterType="All").
27
+ */
28
+ services: string[];
29
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Basic freeze information for list view
3
+ */
4
+ export interface FreezeListItemDto {
5
+ /**
6
+ * Expected end timestamp
7
+ * @format int64
8
+ */
9
+ expectedEndTs: number;
10
+ /**
11
+ * Expected start timestamp
12
+ * @format int64
13
+ */
14
+ expectedStartTs: number;
15
+ /**
16
+ * Freeze identifier
17
+ */
18
+ identifier: string;
19
+ /**
20
+ * Freeze name
21
+ */
22
+ name: string;
23
+ /**
24
+ * Organization identifier
25
+ */
26
+ orgIdentifier: string;
27
+ /**
28
+ * Project identifier
29
+ */
30
+ projectIdentifier: string;
31
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1,16 @@
1
+ import type { FreezeListItemDto } from '../schemas/FreezeListItemDto';
2
+ import type { NextRequest } from '../schemas/NextRequest';
3
+ /**
4
+ * Paginated response containing freeze list items
5
+ */
6
+ export interface FreezeListResponseDto {
7
+ /**
8
+ * List of freeze items
9
+ */
10
+ freezes: FreezeListItemDto[];
11
+ /**
12
+ * Whether this is the last page of results
13
+ */
14
+ last: boolean;
15
+ nextRequest: NextRequest;
16
+ }
@@ -3,6 +3,6 @@ export interface GlobalReleaseInputYaml {
3
3
  * Global input values
4
4
  */
5
5
  with?: {
6
- [key: string]: any;
6
+ [key: string]: string;
7
7
  };
8
8
  }
@@ -1,20 +1,12 @@
1
+ import type { InputVariableType } from '../schemas/InputVariableType';
1
2
  export interface InputVariable {
2
3
  /**
3
- * Default value for the variable (type depends on the variable type)
4
+ * Default value for the variable in string format
4
5
  */
5
- default?: string | number | boolean | {} | {
6
- [key: string]: any;
7
- };
6
+ default?: string;
8
7
  /**
9
8
  * Description of the variable
10
9
  */
11
10
  description?: string;
12
- /**
13
- * Name of the input variable
14
- */
15
- name: string;
16
- /**
17
- * Type of the variable (e.g., string, list, boolean)
18
- */
19
- type: 'boolean' | 'list' | 'number' | 'object' | 'string';
11
+ type: InputVariableType;
20
12
  }
@@ -1,4 +1 @@
1
- /* eslint-disable */
2
- // This code is autogenerated using @harnessio/oats-cli.
3
- // Please do not modify this code directly.
4
1
  export {};
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Type of an input variable for parameters and process inputs.
3
+ */
4
+ export type InputVariableType = 'boolean' | 'list' | 'number' | 'object' | 'string';
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1,33 @@
1
+ /**
2
+ * Manual task configuration
3
+ */
4
+ export interface ManualTaskYaml {
5
+ /**
6
+ * Description of the manual task
7
+ */
8
+ description?: string;
9
+ /**
10
+ * Expected duration for the task (e.g., "1w", "1d", "2h", "1d 12h")
11
+ */
12
+ duration: string;
13
+ /**
14
+ * Unique identifier for the manual task
15
+ */
16
+ id: string;
17
+ /**
18
+ * Name of the manual task
19
+ */
20
+ name: string;
21
+ /**
22
+ * Whether this task is required, it can be boolean or string as we support expressions
23
+ */
24
+ required: boolean | string;
25
+ /**
26
+ * List of user groups or references, it can be string or array of strings as we support expressions
27
+ */
28
+ userGroups: string | string[];
29
+ /**
30
+ * List of user emails or references, it can be string or array of strings as we support expressions
31
+ */
32
+ users: string | string[];
33
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};