@harnessio/react-rmg-service-client 0.66.0 → 0.67.1-beta.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 (85) hide show
  1. package/dist/rmg-service/src/services/hooks/useGetIntegrationExecutionQuery.d.ts +25 -0
  2. package/dist/rmg-service/src/services/hooks/useGetIntegrationExecutionQuery.js +14 -0
  3. package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityQuery.d.ts +1 -0
  4. package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionActivityOutputsV2Query.d.ts +28 -0
  5. package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionActivityOutputsV2Query.js +20 -0
  6. package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionPhaseOutputsV2Query.d.ts +27 -0
  7. package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionPhaseOutputsV2Query.js +19 -0
  8. package/dist/rmg-service/src/services/hooks/useGetReleaseChangesetFacetsQuery.d.ts +29 -0
  9. package/dist/rmg-service/src/services/hooks/useGetReleaseChangesetFacetsQuery.js +14 -0
  10. package/dist/rmg-service/src/services/hooks/useListArtifactTrackerServiceMappingsQuery.d.ts +1 -0
  11. package/dist/rmg-service/src/services/hooks/useListIntegrationExecutionsQuery.d.ts +31 -0
  12. package/dist/rmg-service/src/services/hooks/useListIntegrationExecutionsQuery.js +14 -0
  13. package/dist/rmg-service/src/services/hooks/useListReleaseChangesetCommitsQuery.d.ts +34 -0
  14. package/dist/rmg-service/src/services/hooks/useListReleaseChangesetCommitsQuery.js +14 -0
  15. package/dist/rmg-service/src/services/hooks/useListReleaseChangesetsQuery.d.ts +39 -0
  16. package/dist/rmg-service/src/services/hooks/useListReleaseChangesetsQuery.js +14 -0
  17. package/dist/rmg-service/src/services/hooks/usePostWebhookQueueActionMutation.d.ts +28 -0
  18. package/dist/rmg-service/src/services/hooks/usePostWebhookQueueActionMutation.js +14 -0
  19. package/dist/rmg-service/src/services/hooks/useRetryReleaseChangesetMutation.d.ts +26 -0
  20. package/dist/rmg-service/src/services/hooks/useRetryReleaseChangesetMutation.js +14 -0
  21. package/dist/rmg-service/src/services/hooks/useTriggerIntegrationExecutionMutation.d.ts +25 -0
  22. package/dist/rmg-service/src/services/hooks/useTriggerIntegrationExecutionMutation.js +14 -0
  23. package/dist/rmg-service/src/services/hooks/useUpdateReleaseChangesetTagsMutation.d.ts +29 -0
  24. package/dist/rmg-service/src/services/hooks/useUpdateReleaseChangesetTagsMutation.js +14 -0
  25. package/dist/rmg-service/src/services/index.d.ts +43 -0
  26. package/dist/rmg-service/src/services/index.js +11 -0
  27. package/dist/rmg-service/src/services/requestBodies/CreateOrchestrationActivityRequestRequestBody.d.ts +2 -0
  28. package/dist/rmg-service/src/services/requestBodies/CreateOrchestrationActivityRequestRequestBody.js +0 -3
  29. package/dist/rmg-service/src/services/requestBodies/UpdateOrchestrationActivityRequestRequestBody.d.ts +2 -0
  30. package/dist/rmg-service/src/services/requestBodies/UpdateOrchestrationActivityRequestRequestBody.js +0 -3
  31. package/dist/rmg-service/src/services/requestBodies/WebhookQueueActionRequestRequestBody.d.ts +2 -0
  32. package/dist/rmg-service/src/services/requestBodies/WebhookQueueActionRequestRequestBody.js +1 -0
  33. package/dist/rmg-service/src/services/responses/ExecutionOutputsV2ResponseResponse.d.ts +7 -0
  34. package/dist/rmg-service/src/services/responses/ExecutionOutputsV2ResponseResponse.js +1 -0
  35. package/dist/rmg-service/src/services/responses/GetOrchestrationActivityResponseResponse.d.ts +2 -0
  36. package/dist/rmg-service/src/services/responses/GetOrchestrationActivityResponseResponse.js +0 -3
  37. package/dist/rmg-service/src/services/responses/WebhookQueueActionResponseResponse.d.ts +2 -0
  38. package/dist/rmg-service/src/services/responses/WebhookQueueActionResponseResponse.js +1 -0
  39. package/dist/rmg-service/src/services/schemas/ArtifactTrackerServiceMapping.d.ts +5 -1
  40. package/dist/rmg-service/src/services/schemas/ArtifactTrackerSettings.d.ts +8 -0
  41. package/dist/rmg-service/src/services/schemas/Changeset.d.ts +21 -0
  42. package/dist/rmg-service/src/services/schemas/Changeset.js +4 -0
  43. package/dist/rmg-service/src/services/schemas/ChangesetCommit.d.ts +22 -0
  44. package/dist/rmg-service/src/services/schemas/ChangesetCommit.js +1 -0
  45. package/dist/rmg-service/src/services/schemas/ChangesetCommitList.d.ts +8 -0
  46. package/dist/rmg-service/src/services/schemas/ChangesetCommitList.js +1 -0
  47. package/dist/rmg-service/src/services/schemas/ChangesetCommitTicket.d.ts +7 -0
  48. package/dist/rmg-service/src/services/schemas/ChangesetCommitTicket.js +4 -0
  49. package/dist/rmg-service/src/services/schemas/ChangesetFacets.d.ts +6 -0
  50. package/dist/rmg-service/src/services/schemas/ChangesetFacets.js +4 -0
  51. package/dist/rmg-service/src/services/schemas/ChangesetList.d.ts +8 -0
  52. package/dist/rmg-service/src/services/schemas/ChangesetList.js +1 -0
  53. package/dist/rmg-service/src/services/schemas/CreateArtifactTrackerServiceMappingRequest.d.ts +9 -2
  54. package/dist/rmg-service/src/services/schemas/CreateArtifactTrackerSettingsRequest.d.ts +9 -1
  55. package/dist/rmg-service/src/services/schemas/CreateOrchestrationActivityRequestType.d.ts +1 -1
  56. package/dist/rmg-service/src/services/schemas/ExecutionOutputGroupDto.d.ts +10 -0
  57. package/dist/rmg-service/src/services/schemas/ExecutionOutputGroupDto.js +1 -0
  58. package/dist/rmg-service/src/services/schemas/ExecutionOutputV2Dto.d.ts +13 -0
  59. package/dist/rmg-service/src/services/schemas/ExecutionOutputV2Dto.js +4 -0
  60. package/dist/rmg-service/src/services/schemas/GitDetails.d.ts +49 -0
  61. package/dist/rmg-service/src/services/schemas/GitDetails.js +4 -0
  62. package/dist/rmg-service/src/services/schemas/IntegrationExecution.d.ts +20 -0
  63. package/dist/rmg-service/src/services/schemas/IntegrationExecution.js +4 -0
  64. package/dist/rmg-service/src/services/schemas/IntegrationExecutionList.d.ts +11 -0
  65. package/dist/rmg-service/src/services/schemas/IntegrationExecutionList.js +1 -0
  66. package/dist/rmg-service/src/services/schemas/MatchedSignalExecutionSummaryDto.d.ts +4 -0
  67. package/dist/rmg-service/src/services/schemas/OrchestrationActivitySummaryDto.d.ts +12 -0
  68. package/dist/rmg-service/src/services/schemas/TriggerIntegrationExecutionRequest.d.ts +8 -0
  69. package/dist/rmg-service/src/services/schemas/TriggerIntegrationExecutionRequest.js +4 -0
  70. package/dist/rmg-service/src/services/schemas/TriggerIntegrationExecutionResponse.d.ts +3 -0
  71. package/dist/rmg-service/src/services/schemas/TriggerIntegrationExecutionResponse.js +4 -0
  72. package/dist/rmg-service/src/services/schemas/UpdateArtifactTrackerServiceMappingRequest.d.ts +11 -1
  73. package/dist/rmg-service/src/services/schemas/UpdateChangesetTagsRequest.d.ts +4 -0
  74. package/dist/rmg-service/src/services/schemas/UpdateChangesetTagsRequest.js +4 -0
  75. package/dist/rmg-service/src/services/schemas/UpsertArtifactTrackerSettingsRequest.d.ts +9 -1
  76. package/dist/rmg-service/src/services/schemas/WebhookQueueActionRequest.d.ts +18 -0
  77. package/dist/rmg-service/src/services/schemas/WebhookQueueActionRequest.js +4 -0
  78. package/dist/rmg-service/src/services/schemas/WebhookQueueActionResponse.d.ts +10 -0
  79. package/dist/rmg-service/src/services/schemas/WebhookQueueActionResponse.js +4 -0
  80. package/dist/rmg-service/src/services/schemas/WebhookSignalArtifacts.d.ts +16 -0
  81. package/dist/rmg-service/src/services/schemas/WebhookSignalArtifacts.js +1 -0
  82. package/dist/rmg-service/src/services/schemas/WebhookSignalImage.d.ts +9 -0
  83. package/dist/rmg-service/src/services/schemas/WebhookSignalImage.js +4 -0
  84. package/dist/rmg-service/src/services/schemas/WebhookSignalRequest.d.ts +2 -0
  85. package/package.json +1 -1
@@ -33,6 +33,8 @@ export type { GetFreezeDetailsErrorResponse, GetFreezeDetailsOkResponse, GetFree
33
33
  export { getFreezeDetails, useGetFreezeDetailsQuery } from './hooks/useGetFreezeDetailsQuery';
34
34
  export type { GetFreezeListErrorResponse, GetFreezeListOkResponse, GetFreezeListProps, GetFreezeListQueryQueryParams, } from './hooks/useGetFreezeListQuery';
35
35
  export { getFreezeList, useGetFreezeListQuery } from './hooks/useGetFreezeListQuery';
36
+ export type { GetIntegrationExecutionErrorResponse, GetIntegrationExecutionOkResponse, GetIntegrationExecutionProps, GetIntegrationExecutionQueryPathParams, GetIntegrationExecutionQueryQueryParams, } from './hooks/useGetIntegrationExecutionQuery';
37
+ export { getIntegrationExecution, useGetIntegrationExecutionQuery, } from './hooks/useGetIntegrationExecutionQuery';
36
38
  export type { GetOrchestrationActivitiesByAcitivityRefsErrorResponse, GetOrchestrationActivitiesByAcitivityRefsMutationQueryParams, GetOrchestrationActivitiesByAcitivityRefsOkResponse, GetOrchestrationActivitiesByAcitivityRefsProps, GetOrchestrationActivitiesByAcitivityRefsRequestBody, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
37
39
  export { getOrchestrationActivitiesByAcitivityRefs, useGetOrchestrationActivitiesByAcitivityRefsMutation, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
38
40
  export type { GetOrchestrationActivitiesByProcessIdentifierErrorResponse, GetOrchestrationActivitiesByProcessIdentifierOkResponse, GetOrchestrationActivitiesByProcessIdentifierProps, GetOrchestrationActivitiesByProcessIdentifierQueryPathParams, GetOrchestrationActivitiesByProcessIdentifierQueryQueryParams, } from './hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery';
@@ -51,10 +53,14 @@ export type { GetOrchestrationExecutionActivityInputsErrorResponse, GetOrchestra
51
53
  export { getOrchestrationExecutionActivityInputs, useGetOrchestrationExecutionActivityInputsQuery, } from './hooks/useGetOrchestrationExecutionActivityInputsQuery';
52
54
  export type { GetOrchestrationExecutionActivityOutputsErrorResponse, GetOrchestrationExecutionActivityOutputsOkResponse, GetOrchestrationExecutionActivityOutputsProps, GetOrchestrationExecutionActivityOutputsQueryPathParams, GetOrchestrationExecutionActivityOutputsQueryQueryParams, } from './hooks/useGetOrchestrationExecutionActivityOutputsQuery';
53
55
  export { getOrchestrationExecutionActivityOutputs, useGetOrchestrationExecutionActivityOutputsQuery, } from './hooks/useGetOrchestrationExecutionActivityOutputsQuery';
56
+ export type { GetOrchestrationExecutionActivityOutputsV2ErrorResponse, GetOrchestrationExecutionActivityOutputsV2OkResponse, GetOrchestrationExecutionActivityOutputsV2Props, GetOrchestrationExecutionActivityOutputsV2QueryPathParams, GetOrchestrationExecutionActivityOutputsV2QueryQueryParams, } from './hooks/useGetOrchestrationExecutionActivityOutputsV2Query';
57
+ export { getOrchestrationExecutionActivityOutputsV2, useGetOrchestrationExecutionActivityOutputsV2Query, } from './hooks/useGetOrchestrationExecutionActivityOutputsV2Query';
54
58
  export type { GetOrchestrationExecutionActivityErrorResponse, GetOrchestrationExecutionActivityOkResponse, GetOrchestrationExecutionActivityProps, GetOrchestrationExecutionActivityQueryPathParams, GetOrchestrationExecutionActivityQueryQueryParams, } from './hooks/useGetOrchestrationExecutionActivityQuery';
55
59
  export { getOrchestrationExecutionActivity, useGetOrchestrationExecutionActivityQuery, } from './hooks/useGetOrchestrationExecutionActivityQuery';
56
60
  export type { GetOrchestrationExecutionPhaseOutputsErrorResponse, GetOrchestrationExecutionPhaseOutputsOkResponse, GetOrchestrationExecutionPhaseOutputsProps, GetOrchestrationExecutionPhaseOutputsQueryPathParams, GetOrchestrationExecutionPhaseOutputsQueryQueryParams, } from './hooks/useGetOrchestrationExecutionPhaseOutputsQuery';
57
61
  export { getOrchestrationExecutionPhaseOutputs, useGetOrchestrationExecutionPhaseOutputsQuery, } from './hooks/useGetOrchestrationExecutionPhaseOutputsQuery';
62
+ export type { GetOrchestrationExecutionPhaseOutputsV2ErrorResponse, GetOrchestrationExecutionPhaseOutputsV2OkResponse, GetOrchestrationExecutionPhaseOutputsV2Props, GetOrchestrationExecutionPhaseOutputsV2QueryPathParams, GetOrchestrationExecutionPhaseOutputsV2QueryQueryParams, } from './hooks/useGetOrchestrationExecutionPhaseOutputsV2Query';
63
+ export { getOrchestrationExecutionPhaseOutputsV2, useGetOrchestrationExecutionPhaseOutputsV2Query, } from './hooks/useGetOrchestrationExecutionPhaseOutputsV2Query';
58
64
  export type { GetOrchestrationExecutionPhasesErrorResponse, GetOrchestrationExecutionPhasesOkResponse, GetOrchestrationExecutionPhasesProps, GetOrchestrationExecutionPhasesQueryPathParams, GetOrchestrationExecutionPhasesQueryQueryParams, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
59
65
  export { getOrchestrationExecutionPhases, useGetOrchestrationExecutionPhasesQuery, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
60
66
  export type { GetOrchestrationExecutionReleaseInputErrorResponse, GetOrchestrationExecutionReleaseInputOkResponse, GetOrchestrationExecutionReleaseInputProps, GetOrchestrationExecutionReleaseInputQueryPathParams, GetOrchestrationExecutionReleaseInputQueryQueryParams, } from './hooks/useGetOrchestrationExecutionReleaseInputQuery';
@@ -79,6 +85,8 @@ export type { GetProcessExecutionErrorResponse, GetProcessExecutionOkResponse, G
79
85
  export { getProcessExecution, useGetProcessExecutionQuery, } from './hooks/useGetProcessExecutionQuery';
80
86
  export type { GetReleaseActivitiesErrorResponse, GetReleaseActivitiesOkResponse, GetReleaseActivitiesProps, GetReleaseActivitiesQueryPathParams, GetReleaseActivitiesQueryQueryParams, } from './hooks/useGetReleaseActivitiesQuery';
81
87
  export { getReleaseActivities, useGetReleaseActivitiesQuery, } from './hooks/useGetReleaseActivitiesQuery';
88
+ export type { GetReleaseChangesetFacetsErrorResponse, GetReleaseChangesetFacetsOkResponse, GetReleaseChangesetFacetsProps, GetReleaseChangesetFacetsQueryPathParams, GetReleaseChangesetFacetsQueryQueryParams, } from './hooks/useGetReleaseChangesetFacetsQuery';
89
+ export { getReleaseChangesetFacets, useGetReleaseChangesetFacetsQuery, } from './hooks/useGetReleaseChangesetFacetsQuery';
82
90
  export type { GetReleaseConflictsErrorResponse, GetReleaseConflictsOkResponse, GetReleaseConflictsProps, GetReleaseConflictsQueryPathParams, GetReleaseConflictsQueryQueryParams, } from './hooks/useGetReleaseConflictsQuery';
83
91
  export { getReleaseConflicts, useGetReleaseConflictsQuery, } from './hooks/useGetReleaseConflictsQuery';
84
92
  export type { GetReleaseDayActivitiesErrorResponse, GetReleaseDayActivitiesOkResponse, GetReleaseDayActivitiesProps, GetReleaseDayActivitiesQueryPathParams, GetReleaseDayActivitiesQueryQueryParams, } from './hooks/useGetReleaseDayActivitiesQuery';
@@ -117,6 +125,12 @@ export type { ListArtifactTrackerServiceMappingsErrorResponse, ListArtifactTrack
117
125
  export { listArtifactTrackerServiceMappings, useListArtifactTrackerServiceMappingsQuery, } from './hooks/useListArtifactTrackerServiceMappingsQuery';
118
126
  export type { ListArtifactTrackerSettingsErrorResponse, ListArtifactTrackerSettingsOkResponse, ListArtifactTrackerSettingsProps, ListArtifactTrackerSettingsQueryQueryParams, } from './hooks/useListArtifactTrackerSettingsQuery';
119
127
  export { listArtifactTrackerSettings, useListArtifactTrackerSettingsQuery, } from './hooks/useListArtifactTrackerSettingsQuery';
128
+ export type { ListIntegrationExecutionsErrorResponse, ListIntegrationExecutionsOkResponse, ListIntegrationExecutionsProps, ListIntegrationExecutionsQueryQueryParams, } from './hooks/useListIntegrationExecutionsQuery';
129
+ export { listIntegrationExecutions, useListIntegrationExecutionsQuery, } from './hooks/useListIntegrationExecutionsQuery';
130
+ export type { ListReleaseChangesetCommitsErrorResponse, ListReleaseChangesetCommitsOkResponse, ListReleaseChangesetCommitsProps, ListReleaseChangesetCommitsQueryPathParams, ListReleaseChangesetCommitsQueryQueryParams, } from './hooks/useListReleaseChangesetCommitsQuery';
131
+ export { listReleaseChangesetCommits, useListReleaseChangesetCommitsQuery, } from './hooks/useListReleaseChangesetCommitsQuery';
132
+ export type { ListReleaseChangesetsErrorResponse, ListReleaseChangesetsOkResponse, ListReleaseChangesetsProps, ListReleaseChangesetsQueryPathParams, ListReleaseChangesetsQueryQueryParams, } from './hooks/useListReleaseChangesetsQuery';
133
+ export { listReleaseChangesets, useListReleaseChangesetsQuery, } from './hooks/useListReleaseChangesetsQuery';
120
134
  export type { PatchReleaseGroupErrorResponse, PatchReleaseGroupMutationPathParams, PatchReleaseGroupMutationQueryParams, PatchReleaseGroupOkResponse, PatchReleaseGroupProps, PatchReleaseGroupRequestBody, } from './hooks/usePatchReleaseGroupMutation';
121
135
  export { patchReleaseGroup, usePatchReleaseGroupMutation, } from './hooks/usePatchReleaseGroupMutation';
122
136
  export type { PostActivityExecutionOutputErrorResponse, PostActivityExecutionOutputMutationPathParams, PostActivityExecutionOutputMutationQueryParams, PostActivityExecutionOutputOkResponse, PostActivityExecutionOutputProps, PostActivityExecutionOutputRequestBody, } from './hooks/usePostActivityExecutionOutputMutation';
@@ -153,6 +167,8 @@ export type { PostReleaseSubprocessTriggerErrorResponse, PostReleaseSubprocessTr
153
167
  export { postReleaseSubprocessTrigger, usePostReleaseSubprocessTriggerMutation, } from './hooks/usePostReleaseSubprocessTriggerMutation';
154
168
  export type { PostReleaseSummaryErrorResponse, PostReleaseSummaryMutationQueryParams, PostReleaseSummaryOkResponse, PostReleaseSummaryProps, PostReleaseSummaryRequestBody, } from './hooks/usePostReleaseSummaryMutation';
155
169
  export { postReleaseSummary, usePostReleaseSummaryMutation, } from './hooks/usePostReleaseSummaryMutation';
170
+ export type { PostWebhookQueueActionErrorResponse, PostWebhookQueueActionMutationPathParams, PostWebhookQueueActionMutationQueryParams, PostWebhookQueueActionOkResponse, PostWebhookQueueActionProps, PostWebhookQueueActionRequestBody, } from './hooks/usePostWebhookQueueActionMutation';
171
+ export { postWebhookQueueAction, usePostWebhookQueueActionMutation, } from './hooks/usePostWebhookQueueActionMutation';
156
172
  export type { PutOrchestrationActivityErrorResponse, PutOrchestrationActivityMutationPathParams, PutOrchestrationActivityMutationQueryParams, PutOrchestrationActivityOkResponse, PutOrchestrationActivityProps, PutOrchestrationActivityRequestBody, } from './hooks/usePutOrchestrationActivityMutation';
157
173
  export { putOrchestrationActivity, usePutOrchestrationActivityMutation, } from './hooks/usePutOrchestrationActivityMutation';
158
174
  export type { PutOrchestrationProcessInputErrorResponse, PutOrchestrationProcessInputMutationPathParams, PutOrchestrationProcessInputMutationQueryParams, PutOrchestrationProcessInputOkResponse, PutOrchestrationProcessInputProps, PutOrchestrationProcessInputRequestBody, } from './hooks/usePutOrchestrationProcessInputMutation';
@@ -163,18 +179,24 @@ export type { PutReleaseGroupErrorResponse, PutReleaseGroupMutationPathParams, P
163
179
  export { putReleaseGroup, usePutReleaseGroupMutation } from './hooks/usePutReleaseGroupMutation';
164
180
  export type { PutReleaseReleaseIdErrorResponse, PutReleaseReleaseIdMutationPathParams, PutReleaseReleaseIdOkResponse, PutReleaseReleaseIdProps, PutReleaseReleaseIdRequestBody, } from './hooks/usePutReleaseReleaseIdMutation';
165
181
  export { putReleaseReleaseId, usePutReleaseReleaseIdMutation, } from './hooks/usePutReleaseReleaseIdMutation';
182
+ export type { RetryReleaseChangesetErrorResponse, RetryReleaseChangesetMutationPathParams, RetryReleaseChangesetMutationQueryParams, RetryReleaseChangesetOkResponse, RetryReleaseChangesetProps, } from './hooks/useRetryReleaseChangesetMutation';
183
+ export { retryReleaseChangeset, useRetryReleaseChangesetMutation, } from './hooks/useRetryReleaseChangesetMutation';
166
184
  export type { ServeUploadErrorResponse, ServeUploadOkResponse, ServeUploadProps, ServeUploadQueryPathParams, } from './hooks/useServeUploadQuery';
167
185
  export { serveUpload, useServeUploadQuery } from './hooks/useServeUploadQuery';
168
186
  export type { StartReleaseExecutionErrorResponse, StartReleaseExecutionMutationPathParams, StartReleaseExecutionMutationQueryParams, StartReleaseExecutionOkResponse, StartReleaseExecutionProps, StartReleaseExecutionRequestBody, } from './hooks/useStartReleaseExecutionMutation';
169
187
  export { startReleaseExecution, useStartReleaseExecutionMutation, } from './hooks/useStartReleaseExecutionMutation';
170
188
  export type { StreamUploadErrorResponse, StreamUploadMutationQueryParams, StreamUploadOkResponse, StreamUploadProps, StreamUploadRequestBody, } from './hooks/useStreamUploadMutation';
171
189
  export { streamUpload, useStreamUploadMutation } from './hooks/useStreamUploadMutation';
190
+ export type { TriggerIntegrationExecutionErrorResponse, TriggerIntegrationExecutionMutationQueryParams, TriggerIntegrationExecutionOkResponse, TriggerIntegrationExecutionProps, TriggerIntegrationExecutionRequestBody, } from './hooks/useTriggerIntegrationExecutionMutation';
191
+ export { triggerIntegrationExecution, useTriggerIntegrationExecutionMutation, } from './hooks/useTriggerIntegrationExecutionMutation';
172
192
  export type { UpdateArtifactTrackerServiceMappingErrorResponse, UpdateArtifactTrackerServiceMappingMutationPathParams, UpdateArtifactTrackerServiceMappingMutationQueryParams, UpdateArtifactTrackerServiceMappingOkResponse, UpdateArtifactTrackerServiceMappingProps, UpdateArtifactTrackerServiceMappingRequestBody, } from './hooks/useUpdateArtifactTrackerServiceMappingMutation';
173
193
  export { updateArtifactTrackerServiceMapping, useUpdateArtifactTrackerServiceMappingMutation, } from './hooks/useUpdateArtifactTrackerServiceMappingMutation';
174
194
  export type { UpdateExecutionTaskMetadataErrorResponse, UpdateExecutionTaskMetadataMutationPathParams, UpdateExecutionTaskMetadataMutationQueryParams, UpdateExecutionTaskMetadataOkResponse, UpdateExecutionTaskMetadataProps, UpdateExecutionTaskMetadataRequestBody, } from './hooks/useUpdateExecutionTaskMetadataMutation';
175
195
  export { updateExecutionTaskMetadata, useUpdateExecutionTaskMetadataMutation, } from './hooks/useUpdateExecutionTaskMetadataMutation';
176
196
  export type { UpdateExecutionTaskStatusErrorResponse, UpdateExecutionTaskStatusMutationPathParams, UpdateExecutionTaskStatusMutationQueryParams, UpdateExecutionTaskStatusOkResponse, UpdateExecutionTaskStatusProps, UpdateExecutionTaskStatusRequestBody, } from './hooks/useUpdateExecutionTaskStatusMutation';
177
197
  export { updateExecutionTaskStatus, useUpdateExecutionTaskStatusMutation, } from './hooks/useUpdateExecutionTaskStatusMutation';
198
+ export type { UpdateReleaseChangesetTagsErrorResponse, UpdateReleaseChangesetTagsMutationPathParams, UpdateReleaseChangesetTagsMutationQueryParams, UpdateReleaseChangesetTagsOkResponse, UpdateReleaseChangesetTagsProps, UpdateReleaseChangesetTagsRequestBody, } from './hooks/useUpdateReleaseChangesetTagsMutation';
199
+ export { updateReleaseChangesetTags, useUpdateReleaseChangesetTagsMutation, } from './hooks/useUpdateReleaseChangesetTagsMutation';
178
200
  export type { UpdateReleaseConflictErrorResponse, UpdateReleaseConflictMutationPathParams, UpdateReleaseConflictOkResponse, UpdateReleaseConflictProps, UpdateReleaseConflictRequestBody, } from './hooks/useUpdateReleaseConflictMutation';
179
201
  export { updateReleaseConflict, useUpdateReleaseConflictMutation, } from './hooks/useUpdateReleaseConflictMutation';
180
202
  export type { UpdateTaskCommentErrorResponse, UpdateTaskCommentMutationPathParams, UpdateTaskCommentMutationQueryParams, UpdateTaskCommentOkResponse, UpdateTaskCommentProps, UpdateTaskCommentRequestBody, } from './hooks/useUpdateTaskCommentMutation';
@@ -196,6 +218,7 @@ export type { UpdateOrchestrationProcessInputRequestRequestBody } from './reques
196
218
  export type { UpdateOrchestrationProcessRequestRequestBody } from './requestBodies/UpdateOrchestrationProcessRequestRequestBody';
197
219
  export type { UpdateReleaseGroupRequestRequestBody } from './requestBodies/UpdateReleaseGroupRequestRequestBody';
198
220
  export type { UpdateReleaseRequestRequestBody } from './requestBodies/UpdateReleaseRequestRequestBody';
221
+ export type { WebhookQueueActionRequestRequestBody } from './requestBodies/WebhookQueueActionRequestRequestBody';
199
222
  export type { ActivityExecutionInputsResponseResponse } from './responses/ActivityExecutionInputsResponseResponse';
200
223
  export type { ActivityInputsResponseResponse } from './responses/ActivityInputsResponseResponse';
201
224
  export type { CreateAdHocReleaseResponseResponse } from './responses/CreateAdHocReleaseResponseResponse';
@@ -211,6 +234,7 @@ export type { ErrorResponseResponse } from './responses/ErrorResponseResponse';
211
234
  export type { EventsResponseResponse } from './responses/EventsResponseResponse';
212
235
  export type { ExecuteProcessResponseResponse } from './responses/ExecuteProcessResponseResponse';
213
236
  export type { ExecutionOutputsResponseResponse } from './responses/ExecutionOutputsResponseResponse';
237
+ export type { ExecutionOutputsV2ResponseResponse } from './responses/ExecutionOutputsV2ResponseResponse';
214
238
  export type { ExecutionTasksListResponseResponse } from './responses/ExecutionTasksListResponseResponse';
215
239
  export type { FreezeDetailsResponseResponse } from './responses/FreezeDetailsResponseResponse';
216
240
  export type { FreezeListResponseResponse } from './responses/FreezeListResponseResponse';
@@ -252,6 +276,7 @@ export type { UpdateReleaseResponseResponse } from './responses/UpdateReleaseRes
252
276
  export type { UpdateTaskCommentResponseResponse } from './responses/UpdateTaskCommentResponseResponse';
253
277
  export type { ValidateOrchestrationProcessInputResponseResponse } from './responses/ValidateOrchestrationProcessInputResponseResponse';
254
278
  export type { WebhookMatchedSignalExecutionSummaryListResponseResponse } from './responses/WebhookMatchedSignalExecutionSummaryListResponseResponse';
279
+ export type { WebhookQueueActionResponseResponse } from './responses/WebhookQueueActionResponseResponse';
255
280
  export type { AbortedBy } from './schemas/AbortedBy';
256
281
  export type { AcrArtifactMetadata } from './schemas/AcrArtifactMetadata';
257
282
  export type { ActivityCounts } from './schemas/ActivityCounts';
@@ -278,6 +303,12 @@ export type { ArtifactoryRegistryMetadata } from './schemas/ArtifactoryRegistryM
278
303
  export type { AttachedReleaseGroupDto } from './schemas/AttachedReleaseGroupDto';
279
304
  export type { AutoExecuteOnScheduleProperty } from './schemas/AutoExecuteOnScheduleProperty';
280
305
  export type { BuildInfo } from './schemas/BuildInfo';
306
+ export type { Changeset } from './schemas/Changeset';
307
+ export type { ChangesetCommit } from './schemas/ChangesetCommit';
308
+ export type { ChangesetCommitList } from './schemas/ChangesetCommitList';
309
+ export type { ChangesetCommitTicket } from './schemas/ChangesetCommitTicket';
310
+ export type { ChangesetFacets } from './schemas/ChangesetFacets';
311
+ export type { ChangesetList } from './schemas/ChangesetList';
281
312
  export type { ClusterDeploymentDto } from './schemas/ClusterDeploymentDto';
282
313
  export type { CommentedByDto } from './schemas/CommentedByDto';
283
314
  export type { ConflictStatus } from './schemas/ConflictStatus';
@@ -307,6 +338,8 @@ export type { EventType } from './schemas/EventType';
307
338
  export type { ExecuteProcessResponseDto } from './schemas/ExecuteProcessResponseDto';
308
339
  export type { ExecutionConflict } from './schemas/ExecutionConflict';
309
340
  export type { ExecutionOutputDto } from './schemas/ExecutionOutputDto';
341
+ export type { ExecutionOutputGroupDto } from './schemas/ExecutionOutputGroupDto';
342
+ export type { ExecutionOutputV2Dto } from './schemas/ExecutionOutputV2Dto';
310
343
  export type { ExecutionTaskDto } from './schemas/ExecutionTaskDto';
311
344
  export type { ExecutionTaskStatus } from './schemas/ExecutionTaskStatus';
312
345
  export type { ExecutionTriggerInfo } from './schemas/ExecutionTriggerInfo';
@@ -319,6 +352,7 @@ export type { FreezeListResponseDto } from './schemas/FreezeListResponseDto';
319
352
  export type { Freq } from './schemas/Freq';
320
353
  export type { GcrArtifactMetadata } from './schemas/GcrArtifactMetadata';
321
354
  export type { GetReleaseGroupResponse } from './schemas/GetReleaseGroupResponse';
355
+ export type { GitDetails } from './schemas/GitDetails';
322
356
  export type { GithubPackageRegistryMetadata } from './schemas/GithubPackageRegistryMetadata';
323
357
  export type { GlobalReleaseInputYaml } from './schemas/GlobalReleaseInputYaml';
324
358
  export type { GoogleArtifactRegistryMetadata } from './schemas/GoogleArtifactRegistryMetadata';
@@ -329,6 +363,8 @@ export type { InfrastructureInputVariable } from './schemas/InfrastructureInputV
329
363
  export type { InfrastructureMetadata } from './schemas/InfrastructureMetadata';
330
364
  export type { InputVariable } from './schemas/InputVariable';
331
365
  export type { InputVariableType } from './schemas/InputVariableType';
366
+ export type { IntegrationExecution } from './schemas/IntegrationExecution';
367
+ export type { IntegrationExecutionList } from './schemas/IntegrationExecutionList';
332
368
  export type { LastUpdatedByDto } from './schemas/LastUpdatedByDto';
333
369
  export type { ManualActivityInfo } from './schemas/ManualActivityInfo';
334
370
  export type { ManualTaskYaml } from './schemas/ManualTaskYaml';
@@ -418,16 +454,23 @@ export type { TaskCommentsListResponseDto } from './schemas/TaskCommentsListResp
418
454
  export type { TaskExecuteConfig } from './schemas/TaskExecuteConfig';
419
455
  export type { TemplateReferenceSummary } from './schemas/TemplateReferenceSummary';
420
456
  export type { TimeRangeDto } from './schemas/TimeRangeDto';
457
+ export type { TriggerIntegrationExecutionRequest } from './schemas/TriggerIntegrationExecutionRequest';
458
+ export type { TriggerIntegrationExecutionResponse } from './schemas/TriggerIntegrationExecutionResponse';
421
459
  export type { TriggerType } from './schemas/TriggerType';
422
460
  export type { TriggeredBy } from './schemas/TriggeredBy';
423
461
  export type { TriggeredByDto } from './schemas/TriggeredByDto';
424
462
  export type { UpdateArtifactTrackerServiceMappingRequest } from './schemas/UpdateArtifactTrackerServiceMappingRequest';
463
+ export type { UpdateChangesetTagsRequest } from './schemas/UpdateChangesetTagsRequest';
425
464
  export type { UploadResponse } from './schemas/UploadResponse';
426
465
  export type { UpsertArtifactTrackerSettingsRequest } from './schemas/UpsertArtifactTrackerSettingsRequest';
427
466
  export type { User } from './schemas/User';
428
467
  export type { WebhookErrorResponse } from './schemas/WebhookErrorResponse';
429
468
  export type { WebhookEventType } from './schemas/WebhookEventType';
430
469
  export type { WebhookMetadataResponse } from './schemas/WebhookMetadataResponse';
470
+ export type { WebhookQueueActionRequest } from './schemas/WebhookQueueActionRequest';
471
+ export type { WebhookQueueActionResponse } from './schemas/WebhookQueueActionResponse';
472
+ export type { WebhookSignalArtifacts } from './schemas/WebhookSignalArtifacts';
473
+ export type { WebhookSignalImage } from './schemas/WebhookSignalImage';
431
474
  export type { WebhookSignalPipeline } from './schemas/WebhookSignalPipeline';
432
475
  export type { WebhookSignalRequest } from './schemas/WebhookSignalRequest';
433
476
  export type { WebhookSignalResponse } from './schemas/WebhookSignalResponse';
@@ -15,6 +15,7 @@ export { getArtifactTrackerSettings, useGetArtifactTrackerSettingsQuery, } from
15
15
  export { getEventsByEntityTypeAndId, useGetEventsByEntityTypeAndIdQuery, } from './hooks/useGetEventsByEntityTypeAndIdQuery';
16
16
  export { getFreezeDetails, useGetFreezeDetailsQuery } from './hooks/useGetFreezeDetailsQuery';
17
17
  export { getFreezeList, useGetFreezeListQuery } from './hooks/useGetFreezeListQuery';
18
+ export { getIntegrationExecution, useGetIntegrationExecutionQuery, } from './hooks/useGetIntegrationExecutionQuery';
18
19
  export { getOrchestrationActivitiesByAcitivityRefs, useGetOrchestrationActivitiesByAcitivityRefsMutation, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
19
20
  export { getOrchestrationActivitiesByProcessIdentifier, useGetOrchestrationActivitiesByProcessIdentifierQuery, } from './hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery';
20
21
  export { getOrchestrationActivityInputs, useGetOrchestrationActivityInputsQuery, } from './hooks/useGetOrchestrationActivityInputsQuery';
@@ -24,8 +25,10 @@ export { getOrchestrationExecutionActivitiesPaginated, useGetOrchestrationExecut
24
25
  export { getOrchestrationExecutionActivities, useGetOrchestrationExecutionActivitiesQuery, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
25
26
  export { getOrchestrationExecutionActivityInputs, useGetOrchestrationExecutionActivityInputsQuery, } from './hooks/useGetOrchestrationExecutionActivityInputsQuery';
26
27
  export { getOrchestrationExecutionActivityOutputs, useGetOrchestrationExecutionActivityOutputsQuery, } from './hooks/useGetOrchestrationExecutionActivityOutputsQuery';
28
+ export { getOrchestrationExecutionActivityOutputsV2, useGetOrchestrationExecutionActivityOutputsV2Query, } from './hooks/useGetOrchestrationExecutionActivityOutputsV2Query';
27
29
  export { getOrchestrationExecutionActivity, useGetOrchestrationExecutionActivityQuery, } from './hooks/useGetOrchestrationExecutionActivityQuery';
28
30
  export { getOrchestrationExecutionPhaseOutputs, useGetOrchestrationExecutionPhaseOutputsQuery, } from './hooks/useGetOrchestrationExecutionPhaseOutputsQuery';
31
+ export { getOrchestrationExecutionPhaseOutputsV2, useGetOrchestrationExecutionPhaseOutputsV2Query, } from './hooks/useGetOrchestrationExecutionPhaseOutputsV2Query';
29
32
  export { getOrchestrationExecutionPhases, useGetOrchestrationExecutionPhasesQuery, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
30
33
  export { getOrchestrationExecutionReleaseInput, useGetOrchestrationExecutionReleaseInputQuery, } from './hooks/useGetOrchestrationExecutionReleaseInputQuery';
31
34
  export { getOrchestrationExecutionTasks, useGetOrchestrationExecutionTasksQuery, } from './hooks/useGetOrchestrationExecutionTasksQuery';
@@ -38,6 +41,7 @@ export { getProcessExecutionActivitiesPaginated, useGetProcessExecutionActivitie
38
41
  export { getProcessExecutionPhases, useGetProcessExecutionPhasesQuery, } from './hooks/useGetProcessExecutionPhasesQuery';
39
42
  export { getProcessExecution, useGetProcessExecutionQuery, } from './hooks/useGetProcessExecutionQuery';
40
43
  export { getReleaseActivities, useGetReleaseActivitiesQuery, } from './hooks/useGetReleaseActivitiesQuery';
44
+ export { getReleaseChangesetFacets, useGetReleaseChangesetFacetsQuery, } from './hooks/useGetReleaseChangesetFacetsQuery';
41
45
  export { getReleaseConflicts, useGetReleaseConflictsQuery, } from './hooks/useGetReleaseConflictsQuery';
42
46
  export { getReleaseDayActivities, useGetReleaseDayActivitiesQuery, } from './hooks/useGetReleaseDayActivitiesQuery';
43
47
  export { getReleaseGroup, useGetReleaseGroupQuery } from './hooks/useGetReleaseGroupQuery';
@@ -57,6 +61,9 @@ export { getYamlSchema, useGetYamlSchemaQuery } from './hooks/useGetYamlSchemaQu
57
61
  export { ingestWebhookSignal, useIngestWebhookSignalMutation, } from './hooks/useIngestWebhookSignalMutation';
58
62
  export { listArtifactTrackerServiceMappings, useListArtifactTrackerServiceMappingsQuery, } from './hooks/useListArtifactTrackerServiceMappingsQuery';
59
63
  export { listArtifactTrackerSettings, useListArtifactTrackerSettingsQuery, } from './hooks/useListArtifactTrackerSettingsQuery';
64
+ export { listIntegrationExecutions, useListIntegrationExecutionsQuery, } from './hooks/useListIntegrationExecutionsQuery';
65
+ export { listReleaseChangesetCommits, useListReleaseChangesetCommitsQuery, } from './hooks/useListReleaseChangesetCommitsQuery';
66
+ export { listReleaseChangesets, useListReleaseChangesetsQuery, } from './hooks/useListReleaseChangesetsQuery';
60
67
  export { patchReleaseGroup, usePatchReleaseGroupMutation, } from './hooks/usePatchReleaseGroupMutation';
61
68
  export { postActivityExecutionOutput, usePostActivityExecutionOutputMutation, } from './hooks/usePostActivityExecutionOutputMutation';
62
69
  export { postOnHoldActivityAction, usePostOnHoldActivityActionMutation, } from './hooks/usePostOnHoldActivityActionMutation';
@@ -75,17 +82,21 @@ export { postReleaseList, usePostReleaseListMutation } from './hooks/usePostRele
75
82
  export { postReleaseReportGenerate, usePostReleaseReportGenerateMutation, } from './hooks/usePostReleaseReportGenerateMutation';
76
83
  export { postReleaseSubprocessTrigger, usePostReleaseSubprocessTriggerMutation, } from './hooks/usePostReleaseSubprocessTriggerMutation';
77
84
  export { postReleaseSummary, usePostReleaseSummaryMutation, } from './hooks/usePostReleaseSummaryMutation';
85
+ export { postWebhookQueueAction, usePostWebhookQueueActionMutation, } from './hooks/usePostWebhookQueueActionMutation';
78
86
  export { putOrchestrationActivity, usePutOrchestrationActivityMutation, } from './hooks/usePutOrchestrationActivityMutation';
79
87
  export { putOrchestrationProcessInput, usePutOrchestrationProcessInputMutation, } from './hooks/usePutOrchestrationProcessInputMutation';
80
88
  export { putOrchestrationProcess, usePutOrchestrationProcessMutation, } from './hooks/usePutOrchestrationProcessMutation';
81
89
  export { putReleaseGroup, usePutReleaseGroupMutation } from './hooks/usePutReleaseGroupMutation';
82
90
  export { putReleaseReleaseId, usePutReleaseReleaseIdMutation, } from './hooks/usePutReleaseReleaseIdMutation';
91
+ export { retryReleaseChangeset, useRetryReleaseChangesetMutation, } from './hooks/useRetryReleaseChangesetMutation';
83
92
  export { serveUpload, useServeUploadQuery } from './hooks/useServeUploadQuery';
84
93
  export { startReleaseExecution, useStartReleaseExecutionMutation, } from './hooks/useStartReleaseExecutionMutation';
85
94
  export { streamUpload, useStreamUploadMutation } from './hooks/useStreamUploadMutation';
95
+ export { triggerIntegrationExecution, useTriggerIntegrationExecutionMutation, } from './hooks/useTriggerIntegrationExecutionMutation';
86
96
  export { updateArtifactTrackerServiceMapping, useUpdateArtifactTrackerServiceMappingMutation, } from './hooks/useUpdateArtifactTrackerServiceMappingMutation';
87
97
  export { updateExecutionTaskMetadata, useUpdateExecutionTaskMetadataMutation, } from './hooks/useUpdateExecutionTaskMetadataMutation';
88
98
  export { updateExecutionTaskStatus, useUpdateExecutionTaskStatusMutation, } from './hooks/useUpdateExecutionTaskStatusMutation';
99
+ export { updateReleaseChangesetTags, useUpdateReleaseChangesetTagsMutation, } from './hooks/useUpdateReleaseChangesetTagsMutation';
89
100
  export { updateReleaseConflict, useUpdateReleaseConflictMutation, } from './hooks/useUpdateReleaseConflictMutation';
90
101
  export { updateTaskComment, useUpdateTaskCommentMutation, } from './hooks/useUpdateTaskCommentMutation';
91
102
  export { upsertArtifactTrackerSettings, useUpsertArtifactTrackerSettingsMutation, } from './hooks/useUpsertArtifactTrackerSettingsMutation';
@@ -1,3 +1,5 @@
1
+ import type { GitDetails } from '../schemas/GitDetails';
1
2
  export interface CreateOrchestrationActivityRequestRequestBody {
3
+ git_details?: GitDetails;
2
4
  yaml: string;
3
5
  }
@@ -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 {};
@@ -1,3 +1,5 @@
1
+ import type { GitDetails } from '../schemas/GitDetails';
1
2
  export interface UpdateOrchestrationActivityRequestRequestBody {
3
+ git_details?: GitDetails;
2
4
  yaml: string;
3
5
  }
@@ -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,2 @@
1
+ import type { WebhookQueueActionRequest } from '../schemas/WebhookQueueActionRequest';
2
+ export type WebhookQueueActionRequestRequestBody = WebhookQueueActionRequest;
@@ -0,0 +1,7 @@
1
+ import type { ExecutionOutputGroupDto } from '../schemas/ExecutionOutputGroupDto';
2
+ export interface ExecutionOutputsV2ResponseResponse {
3
+ /**
4
+ * List of output groups; one entry per webhook signal (or one entry for phase/manual outputs)
5
+ */
6
+ values: ExecutionOutputGroupDto[];
7
+ }
@@ -1,4 +1,6 @@
1
+ import type { GitDetails } from '../schemas/GitDetails';
1
2
  export interface GetOrchestrationActivityResponseResponse {
3
+ git_details?: GitDetails;
2
4
  /**
3
5
  * Identifier of the orchestration activity
4
6
  */
@@ -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,2 @@
1
+ import type { WebhookQueueActionResponse } from '../schemas/WebhookQueueActionResponse';
2
+ export type WebhookQueueActionResponseResponse = WebhookQueueActionResponse;
@@ -5,6 +5,10 @@ export interface ArtifactTrackerServiceMapping {
5
5
  * @format int64
6
6
  */
7
7
  createdAt?: number;
8
+ /**
9
+ * Docker/container registry connector reference.
10
+ */
11
+ dockerConnectorRefOverride?: string;
8
12
  gitConnectorRefOverride?: string;
9
13
  identifier: string;
10
14
  k8sConnectorRefOverride?: string;
@@ -14,7 +18,7 @@ export interface ArtifactTrackerServiceMapping {
14
18
  */
15
19
  lastUpdatedAt?: number;
16
20
  serviceRef?: string;
17
- settingsIdentifier?: string;
21
+ settingsIdentifier: string;
18
22
  ticketConnectorRefOverride?: string;
19
23
  ticketRegexOverride?: string;
20
24
  }
@@ -3,6 +3,10 @@ export interface ArtifactTrackerSettings {
3
3
  * @format int64
4
4
  */
5
5
  createdAt?: number;
6
+ /**
7
+ * Docker/container registry connector reference.
8
+ */
9
+ defaultDockerConnectorRef?: string;
6
10
  defaultGitConnectorRef?: string;
7
11
  defaultK8sConnectorRef?: string;
8
12
  defaultK8sNamespace?: string;
@@ -13,4 +17,8 @@ export interface ArtifactTrackerSettings {
13
17
  * @format int64
14
18
  */
15
19
  lastUpdatedAt?: number;
20
+ /**
21
+ * Human-readable name for the settings.
22
+ */
23
+ name: string;
16
24
  }
@@ -0,0 +1,21 @@
1
+ export interface Changeset {
2
+ artifactPath: string;
3
+ commitCount?: number;
4
+ /**
5
+ * @format int64
6
+ */
7
+ createdAt?: number;
8
+ errorMessage?: string;
9
+ fromArtifactTag: string;
10
+ id: string;
11
+ /**
12
+ * @format int64
13
+ */
14
+ lastUpdatedAt?: number;
15
+ pipelineExecutionId?: string;
16
+ registry?: string;
17
+ releaseId: string;
18
+ serviceRef?: string;
19
+ status: 'COMPLETED' | 'FAILED' | 'IN_PROGRESS' | 'PENDING';
20
+ toArtifactTag: string;
21
+ }
@@ -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,22 @@
1
+ import type { ChangesetCommitTicket } from '../schemas/ChangesetCommitTicket';
2
+ export interface ChangesetCommit {
3
+ /**
4
+ * @format int64
5
+ */
6
+ authorDate?: number;
7
+ authorEmail?: string;
8
+ authorName?: string;
9
+ /**
10
+ * @format int64
11
+ */
12
+ committerDate?: number;
13
+ committerEmail?: string;
14
+ committerName?: string;
15
+ id: string;
16
+ message: string;
17
+ parentShas?: string[];
18
+ repoName?: string;
19
+ sha: string;
20
+ tickets?: ChangesetCommitTicket[];
21
+ url?: string;
22
+ }
@@ -0,0 +1,8 @@
1
+ import type { ChangesetCommit } from '../schemas/ChangesetCommit';
2
+ export interface ChangesetCommitList {
3
+ content?: ChangesetCommit[];
4
+ pageNumber?: number;
5
+ pageSize?: number;
6
+ totalElements?: number;
7
+ totalPages?: number;
8
+ }
@@ -0,0 +1,7 @@
1
+ export interface ChangesetCommitTicket {
2
+ key: string;
3
+ source?: string;
4
+ summary?: string;
5
+ type?: string;
6
+ url?: string;
7
+ }
@@ -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,6 @@
1
+ export interface ChangesetFacets {
2
+ artifactPaths?: string[];
3
+ registries?: string[];
4
+ services?: string[];
5
+ tags?: 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 { Changeset } from '../schemas/Changeset';
2
+ export interface ChangesetList {
3
+ content?: Changeset[];
4
+ pageNumber?: number;
5
+ pageSize?: number;
6
+ totalElements?: number;
7
+ totalPages?: number;
8
+ }
@@ -1,6 +1,13 @@
1
1
  export interface CreateArtifactTrackerServiceMappingRequest {
2
2
  artifactPath: string;
3
3
  artifactRegistry?: string;
4
+ /**
5
+ * Docker/container registry connector reference.
6
+ */
7
+ dockerConnectorRefOverride?: string;
8
+ /**
9
+ * Optional override for the linked settings' default git connector. Required only when the linked settings has no defaultGitConnectorRef.
10
+ */
4
11
  gitConnectorRefOverride?: string;
5
12
  /**
6
13
  * Optional human-readable identifier. Auto-generated from serviceRef, registry, and artifactPath if omitted.
@@ -10,9 +17,9 @@ export interface CreateArtifactTrackerServiceMappingRequest {
10
17
  k8sNamespaceOverride?: string;
11
18
  serviceRef?: string;
12
19
  /**
13
- * Identifier of the settings to link. Auto-resolved if omitted and exactly one settings exists in scope.
20
+ * Identifier of the settings to link. Required.
14
21
  */
15
- settingsIdentifier?: string;
22
+ settingsIdentifier: string;
16
23
  ticketConnectorRefOverride?: string;
17
24
  ticketRegexOverride?: string;
18
25
  }
@@ -1,8 +1,16 @@
1
1
  export interface CreateArtifactTrackerSettingsRequest {
2
- defaultGitConnectorRef: string;
2
+ /**
3
+ * Docker/container registry connector reference.
4
+ */
5
+ defaultDockerConnectorRef?: string;
6
+ defaultGitConnectorRef?: string;
3
7
  defaultK8sConnectorRef?: string;
4
8
  defaultK8sNamespace?: string;
5
9
  defaultTicketConnectorRef?: string;
6
10
  defaultTicketRegex?: string;
7
11
  identifier: string;
12
+ /**
13
+ * Human-readable name for the settings.
14
+ */
15
+ name: string;
8
16
  }
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Type of orchestration activity
3
3
  */
4
- export type CreateOrchestrationActivityRequestType = 'MANUAL' | 'PIPELINE' | 'SUBPROCESS' | 'WEBHOOK';
4
+ export type CreateOrchestrationActivityRequestType = 'MANUAL' | 'PIPELINE' | 'PIPELINE_QUEUE' | 'SUBPROCESS';
@@ -0,0 +1,10 @@
1
+ import type { ExecutionOutputV2Dto } from '../schemas/ExecutionOutputV2Dto';
2
+ /**
3
+ * A group of output entries from one webhook signal or execution, with extensible metadata
4
+ */
5
+ export interface ExecutionOutputGroupDto {
6
+ /**
7
+ * List of output name/value pairs for this group
8
+ */
9
+ output: ExecutionOutputV2Dto[];
10
+ }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * A single name/value output entry (v2)
3
+ */
4
+ export interface ExecutionOutputV2Dto {
5
+ /**
6
+ * Name of the output parameter
7
+ */
8
+ name: string;
9
+ /**
10
+ * Value of the output parameter (always a string in v2)
11
+ */
12
+ value: string;
13
+ }
@@ -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,49 @@
1
+ /**
2
+ * Git metadata associated with an orchestration activity stored in a remote git repository
3
+ */
4
+ export interface GitDetails {
5
+ /**
6
+ * Base branch to create the new branch from
7
+ */
8
+ base_branch?: string;
9
+ /**
10
+ * Git branch where the activity YAML resides
11
+ */
12
+ branch?: string;
13
+ /**
14
+ * Commit message to use when saving to git
15
+ */
16
+ commit_msg?: string;
17
+ /**
18
+ * Connector reference for the git provider
19
+ */
20
+ connector_ref?: string;
21
+ /**
22
+ * Default branch of the git repository
23
+ */
24
+ default_branch?: string;
25
+ /**
26
+ * Commit SHA of the latest commit on the default branch
27
+ */
28
+ default_branch_commit_sha?: string;
29
+ /**
30
+ * URL to the file on the default branch
31
+ */
32
+ default_branch_file_url?: string;
33
+ /**
34
+ * Whether to create a new branch when saving
35
+ */
36
+ is_new_branch?: boolean;
37
+ /**
38
+ * File path within the git repository
39
+ */
40
+ path?: string;
41
+ /**
42
+ * Git repository URL where the activity YAML is stored
43
+ */
44
+ repo?: string;
45
+ /**
46
+ * Storage type of the activity (e.g. INLINE, REMOTE)
47
+ */
48
+ store_type?: string;
49
+ }
@@ -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 {};