@harnessio/react-rmg-service-client 0.17.0 → 0.18.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 (69) hide show
  1. package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation.d.ts +38 -0
  2. package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation.js +14 -0
  3. package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery.d.ts +31 -0
  4. package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery.js +14 -0
  5. package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputStoreQuery.d.ts +33 -0
  6. package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputStoreQuery.js +14 -0
  7. package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputStoreSummaryQuery.d.ts +25 -0
  8. package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputStoreSummaryQuery.js +14 -0
  9. package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityQuery.d.ts +25 -0
  10. package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityQuery.js +14 -0
  11. package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessInputStoreSummaryQuery.d.ts +25 -0
  12. package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessInputStoreSummaryQuery.js +14 -0
  13. package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessQuery.js +1 -1
  14. package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessSummaryQuery.js +1 -1
  15. package/dist/rmg-service/src/services/hooks/usePostOrchestrationActivityInputStoreMutation.d.ts +25 -0
  16. package/dist/rmg-service/src/services/hooks/usePostOrchestrationActivityInputStoreMutation.js +14 -0
  17. package/dist/rmg-service/src/services/hooks/usePostOrchestrationActivityMutation.js +1 -1
  18. package/dist/rmg-service/src/services/hooks/usePostOrchestrationProcessInputStoreMutation.d.ts +41 -0
  19. package/dist/rmg-service/src/services/hooks/usePostOrchestrationProcessInputStoreMutation.js +14 -0
  20. package/dist/rmg-service/src/services/hooks/usePostOrchestrationProcessMutation.js +1 -1
  21. package/dist/rmg-service/src/services/hooks/usePutOrchestrationActivityInputStoreMutation.d.ts +31 -0
  22. package/dist/rmg-service/src/services/hooks/usePutOrchestrationActivityInputStoreMutation.js +14 -0
  23. package/dist/rmg-service/src/services/hooks/usePutOrchestrationActivityMutation.d.ts +27 -0
  24. package/dist/rmg-service/src/services/hooks/usePutOrchestrationActivityMutation.js +14 -0
  25. package/dist/rmg-service/src/services/hooks/usePutOrchestrationProcessInputStoreMutation.d.ts +39 -0
  26. package/dist/rmg-service/src/services/hooks/usePutOrchestrationProcessInputStoreMutation.js +14 -0
  27. package/dist/rmg-service/src/services/hooks/usePutOrchestrationProcessMutation.d.ts +27 -0
  28. package/dist/rmg-service/src/services/hooks/usePutOrchestrationProcessMutation.js +14 -0
  29. package/dist/rmg-service/src/services/index.d.ts +41 -5
  30. package/dist/rmg-service/src/services/index.js +12 -1
  31. package/dist/rmg-service/src/services/requestBodies/CreateOrchestrationActivityInputStoreRequestRequestBody.d.ts +6 -0
  32. package/dist/rmg-service/src/services/requestBodies/UpdateOrchestrationActivityRequestRequestBody.d.ts +3 -0
  33. package/dist/rmg-service/src/services/requestBodies/UpdateOrchestrationProcessRequestRequestBody.d.ts +3 -0
  34. package/dist/rmg-service/src/services/responses/{CreateInputSetStoreResponseResponse.d.ts → CreateOrchestrationActivityInputStoreResponseResponse.d.ts} +1 -1
  35. package/dist/rmg-service/src/services/responses/CreateOrchestrationActivityInputStoreResponseResponse.js +4 -0
  36. package/dist/rmg-service/src/services/responses/CreateOrchestrationProcessInputStoreResponseResponse.d.ts +6 -0
  37. package/dist/rmg-service/src/services/responses/CreateOrchestrationProcessInputStoreResponseResponse.js +4 -0
  38. package/dist/rmg-service/src/services/responses/GetOrchestrationActivityResponseResponse.d.ts +10 -0
  39. package/dist/rmg-service/src/services/responses/GetOrchestrationActivityResponseResponse.js +4 -0
  40. package/dist/rmg-service/src/services/responses/OrchestrationActivityInputStoreSummaryResponseResponse.d.ts +16 -0
  41. package/dist/rmg-service/src/services/responses/OrchestrationActivityInputStoreSummaryResponseResponse.js +1 -0
  42. package/dist/rmg-service/src/services/responses/OrchestrationActivityListByProcessIdentifierResponseResponse.d.ts +10 -0
  43. package/dist/rmg-service/src/services/responses/OrchestrationActivityListByProcessIdentifierResponseResponse.js +1 -0
  44. package/dist/rmg-service/src/services/responses/OrchestrationProcessInputStoreSummaryResponseResponse.d.ts +16 -0
  45. package/dist/rmg-service/src/services/responses/OrchestrationProcessInputStoreSummaryResponseResponse.js +1 -0
  46. package/dist/rmg-service/src/services/schemas/CreateOrchestrationActivityInputSetRequestType.d.ts +4 -0
  47. package/dist/rmg-service/src/services/schemas/CreateOrchestrationActivityInputSetRequestType.js +4 -0
  48. package/dist/rmg-service/src/services/schemas/OrchestrationActivityInputStoreDto.d.ts +8 -0
  49. package/dist/rmg-service/src/services/schemas/OrchestrationActivityInputStoreDto.js +1 -0
  50. package/dist/rmg-service/src/services/schemas/OrchestrationActivityYaml.d.ts +18 -0
  51. package/dist/rmg-service/src/services/schemas/OrchestrationActivityYaml.js +4 -0
  52. package/dist/rmg-service/src/services/schemas/OrchestrationActivityYamlDto.d.ts +10 -0
  53. package/dist/rmg-service/src/services/schemas/OrchestrationActivityYamlDto.js +4 -0
  54. package/dist/rmg-service/src/services/schemas/OrchestrationPhaseYaml.d.ts +24 -0
  55. package/dist/rmg-service/src/services/schemas/OrchestrationPhaseYaml.js +1 -0
  56. package/dist/rmg-service/src/services/schemas/OrchestrationProcessInputStoreDto.d.ts +9 -0
  57. package/dist/rmg-service/src/services/schemas/OrchestrationProcessInputStoreDto.js +1 -0
  58. package/dist/rmg-service/src/services/schemas/OrchestrationReleaseProcessYaml.d.ts +16 -0
  59. package/dist/rmg-service/src/services/schemas/OrchestrationReleaseProcessYaml.js +1 -0
  60. package/dist/rmg-service/src/services/schemas/PipelineOrchestrationActivityYaml.d.ts +62 -0
  61. package/dist/rmg-service/src/services/schemas/PipelineOrchestrationActivityYaml.js +4 -0
  62. package/package.json +1 -1
  63. package/dist/rmg-service/src/services/hooks/usePostInputSetStoreMutation.d.ts +0 -25
  64. package/dist/rmg-service/src/services/hooks/usePostInputSetStoreMutation.js +0 -14
  65. package/dist/rmg-service/src/services/requestBodies/CreateInputSetStoreRequestRequestBody.d.ts +0 -6
  66. package/dist/rmg-service/src/services/schemas/CreateInputSetStoreRequestType.d.ts +0 -4
  67. /package/dist/rmg-service/src/services/requestBodies/{CreateInputSetStoreRequestRequestBody.js → CreateOrchestrationActivityInputStoreRequestRequestBody.js} +0 -0
  68. /package/dist/rmg-service/src/services/{responses/CreateInputSetStoreResponseResponse.js → requestBodies/UpdateOrchestrationActivityRequestRequestBody.js} +0 -0
  69. /package/dist/rmg-service/src/services/{schemas/CreateInputSetStoreRequestType.js → requestBodies/UpdateOrchestrationProcessRequestRequestBody.js} +0 -0
@@ -1,6 +1,18 @@
1
1
  export type { GetPathParamsType, ResponseWithPagination } from './helpers';
2
2
  export type { DeleteReleaseGroupErrorResponse, DeleteReleaseGroupMutationPathParams, DeleteReleaseGroupMutationQueryParams, DeleteReleaseGroupOkResponse, DeleteReleaseGroupProps, } from './hooks/useDeleteReleaseGroupMutation';
3
3
  export { deleteReleaseGroup, useDeleteReleaseGroupMutation, } from './hooks/useDeleteReleaseGroupMutation';
4
+ export type { GetOrchestrationActivitiesByAcitivityRefsErrorResponse, GetOrchestrationActivitiesByAcitivityRefsMutationPathParams, GetOrchestrationActivitiesByAcitivityRefsMutationQueryParams, GetOrchestrationActivitiesByAcitivityRefsOkResponse, GetOrchestrationActivitiesByAcitivityRefsProps, GetOrchestrationActivitiesByAcitivityRefsRequestBody, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
5
+ export { getOrchestrationActivitiesByAcitivityRefs, useGetOrchestrationActivitiesByAcitivityRefsMutation, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
6
+ export type { GetOrchestrationActivitiesByProcessIdentifierErrorResponse, GetOrchestrationActivitiesByProcessIdentifierOkResponse, GetOrchestrationActivitiesByProcessIdentifierProps, GetOrchestrationActivitiesByProcessIdentifierQueryPathParams, GetOrchestrationActivitiesByProcessIdentifierQueryQueryParams, } from './hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery';
7
+ export { getOrchestrationActivitiesByProcessIdentifier, useGetOrchestrationActivitiesByProcessIdentifierQuery, } from './hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery';
8
+ export type { GetOrchestrationActivityInputStoreErrorResponse, GetOrchestrationActivityInputStoreOkResponse, GetOrchestrationActivityInputStoreProps, GetOrchestrationActivityInputStoreQueryPathParams, GetOrchestrationActivityInputStoreQueryQueryParams, } from './hooks/useGetOrchestrationActivityInputStoreQuery';
9
+ export { getOrchestrationActivityInputStore, useGetOrchestrationActivityInputStoreQuery, } from './hooks/useGetOrchestrationActivityInputStoreQuery';
10
+ export type { GetOrchestrationActivityInputStoreSummaryErrorResponse, GetOrchestrationActivityInputStoreSummaryOkResponse, GetOrchestrationActivityInputStoreSummaryProps, GetOrchestrationActivityInputStoreSummaryQueryQueryParams, } from './hooks/useGetOrchestrationActivityInputStoreSummaryQuery';
11
+ export { getOrchestrationActivityInputStoreSummary, useGetOrchestrationActivityInputStoreSummaryQuery, } from './hooks/useGetOrchestrationActivityInputStoreSummaryQuery';
12
+ export type { GetOrchestrationActivityErrorResponse, GetOrchestrationActivityOkResponse, GetOrchestrationActivityProps, GetOrchestrationActivityQueryPathParams, GetOrchestrationActivityQueryQueryParams, } from './hooks/useGetOrchestrationActivityQuery';
13
+ export { getOrchestrationActivity, useGetOrchestrationActivityQuery, } from './hooks/useGetOrchestrationActivityQuery';
14
+ export type { GetOrchestrationProcessInputStoreSummaryErrorResponse, GetOrchestrationProcessInputStoreSummaryOkResponse, GetOrchestrationProcessInputStoreSummaryProps, GetOrchestrationProcessInputStoreSummaryQueryQueryParams, } from './hooks/useGetOrchestrationProcessInputStoreSummaryQuery';
15
+ export { getOrchestrationProcessInputStoreSummary, useGetOrchestrationProcessInputStoreSummaryQuery, } from './hooks/useGetOrchestrationProcessInputStoreSummaryQuery';
4
16
  export type { GetOrchestrationProcessErrorResponse, GetOrchestrationProcessOkResponse, GetOrchestrationProcessProps, GetOrchestrationProcessQueryPathParams, GetOrchestrationProcessQueryQueryParams, } from './hooks/useGetOrchestrationProcessQuery';
5
17
  export { getOrchestrationProcess, useGetOrchestrationProcessQuery, } from './hooks/useGetOrchestrationProcessQuery';
6
18
  export type { GetOrchestrationProcessSummaryErrorResponse, GetOrchestrationProcessSummaryOkResponse, GetOrchestrationProcessSummaryProps, GetOrchestrationProcessSummaryQueryQueryParams, } from './hooks/useGetOrchestrationProcessSummaryQuery';
@@ -25,39 +37,56 @@ export type { GetReleaseReleaseIdEnvironmentDashboardErrorResponse, GetReleaseRe
25
37
  export { getReleaseReleaseIdEnvironmentDashboard, useGetReleaseReleaseIdEnvironmentDashboardQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentDashboardQuery';
26
38
  export type { GetReleaseReleaseIdEnvironmentsErrorResponse, GetReleaseReleaseIdEnvironmentsOkResponse, GetReleaseReleaseIdEnvironmentsProps, GetReleaseReleaseIdEnvironmentsQueryPathParams, GetReleaseReleaseIdEnvironmentsQueryQueryParams, } from './hooks/useGetReleaseReleaseIdEnvironmentsQuery';
27
39
  export { getReleaseReleaseIdEnvironments, useGetReleaseReleaseIdEnvironmentsQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentsQuery';
28
- export type { PostInputSetStoreErrorResponse, PostInputSetStoreMutationQueryParams, PostInputSetStoreOkResponse, PostInputSetStoreProps, PostInputSetStoreRequestBody, } from './hooks/usePostInputSetStoreMutation';
29
- export { postInputSetStore, usePostInputSetStoreMutation, } from './hooks/usePostInputSetStoreMutation';
40
+ export type { PostOrchestrationActivityInputStoreErrorResponse, PostOrchestrationActivityInputStoreMutationQueryParams, PostOrchestrationActivityInputStoreOkResponse, PostOrchestrationActivityInputStoreProps, PostOrchestrationActivityInputStoreRequestBody, } from './hooks/usePostOrchestrationActivityInputStoreMutation';
41
+ export { postOrchestrationActivityInputStore, usePostOrchestrationActivityInputStoreMutation, } from './hooks/usePostOrchestrationActivityInputStoreMutation';
30
42
  export type { PostOrchestrationActivityErrorResponse, PostOrchestrationActivityMutationQueryParams, PostOrchestrationActivityOkResponse, PostOrchestrationActivityProps, PostOrchestrationActivityRequestBody, } from './hooks/usePostOrchestrationActivityMutation';
31
43
  export { postOrchestrationActivity, usePostOrchestrationActivityMutation, } from './hooks/usePostOrchestrationActivityMutation';
44
+ export type { PostOrchestrationProcessInputStoreErrorResponse, PostOrchestrationProcessInputStoreMutationQueryParams, PostOrchestrationProcessInputStoreOkResponse, PostOrchestrationProcessInputStoreProps, PostOrchestrationProcessInputStoreRequestBody, } from './hooks/usePostOrchestrationProcessInputStoreMutation';
45
+ export { postOrchestrationProcessInputStore, usePostOrchestrationProcessInputStoreMutation, } from './hooks/usePostOrchestrationProcessInputStoreMutation';
32
46
  export type { PostOrchestrationProcessErrorResponse, PostOrchestrationProcessMutationQueryParams, PostOrchestrationProcessOkResponse, PostOrchestrationProcessProps, PostOrchestrationProcessRequestBody, } from './hooks/usePostOrchestrationProcessMutation';
33
47
  export { postOrchestrationProcess, usePostOrchestrationProcessMutation, } from './hooks/usePostOrchestrationProcessMutation';
34
48
  export type { PostReleaseGroupErrorResponse, PostReleaseGroupMutationQueryParams, PostReleaseGroupOkResponse, PostReleaseGroupProps, PostReleaseGroupRequestBody, } from './hooks/usePostReleaseGroupMutation';
35
49
  export { postReleaseGroup, usePostReleaseGroupMutation } from './hooks/usePostReleaseGroupMutation';
36
50
  export type { PostReleaseSummaryErrorResponse, PostReleaseSummaryMutationQueryParams, PostReleaseSummaryOkResponse, PostReleaseSummaryProps, PostReleaseSummaryRequestBody, } from './hooks/usePostReleaseSummaryMutation';
37
51
  export { postReleaseSummary, usePostReleaseSummaryMutation, } from './hooks/usePostReleaseSummaryMutation';
52
+ export type { PutOrchestrationActivityInputStoreErrorResponse, PutOrchestrationActivityInputStoreMutationPathParams, PutOrchestrationActivityInputStoreMutationQueryParams, PutOrchestrationActivityInputStoreOkResponse, PutOrchestrationActivityInputStoreProps, PutOrchestrationActivityInputStoreRequestBody, } from './hooks/usePutOrchestrationActivityInputStoreMutation';
53
+ export { putOrchestrationActivityInputStore, usePutOrchestrationActivityInputStoreMutation, } from './hooks/usePutOrchestrationActivityInputStoreMutation';
54
+ export type { PutOrchestrationActivityErrorResponse, PutOrchestrationActivityMutationPathParams, PutOrchestrationActivityMutationQueryParams, PutOrchestrationActivityOkResponse, PutOrchestrationActivityProps, PutOrchestrationActivityRequestBody, } from './hooks/usePutOrchestrationActivityMutation';
55
+ export { putOrchestrationActivity, usePutOrchestrationActivityMutation, } from './hooks/usePutOrchestrationActivityMutation';
56
+ export type { PutOrchestrationProcessInputStoreErrorResponse, PutOrchestrationProcessInputStoreMutationPathParams, PutOrchestrationProcessInputStoreMutationQueryParams, PutOrchestrationProcessInputStoreOkResponse, PutOrchestrationProcessInputStoreProps, PutOrchestrationProcessInputStoreRequestBody, } from './hooks/usePutOrchestrationProcessInputStoreMutation';
57
+ export { putOrchestrationProcessInputStore, usePutOrchestrationProcessInputStoreMutation, } from './hooks/usePutOrchestrationProcessInputStoreMutation';
58
+ export type { PutOrchestrationProcessErrorResponse, PutOrchestrationProcessMutationPathParams, PutOrchestrationProcessMutationQueryParams, PutOrchestrationProcessOkResponse, PutOrchestrationProcessProps, PutOrchestrationProcessRequestBody, } from './hooks/usePutOrchestrationProcessMutation';
59
+ export { putOrchestrationProcess, usePutOrchestrationProcessMutation, } from './hooks/usePutOrchestrationProcessMutation';
38
60
  export type { PutReleaseGroupErrorResponse, PutReleaseGroupMutationPathParams, PutReleaseGroupMutationQueryParams, PutReleaseGroupOkResponse, PutReleaseGroupProps, PutReleaseGroupRequestBody, } from './hooks/usePutReleaseGroupMutation';
39
61
  export { putReleaseGroup, usePutReleaseGroupMutation } from './hooks/usePutReleaseGroupMutation';
40
62
  export type { PutReleaseReleaseIdErrorResponse, PutReleaseReleaseIdMutationPathParams, PutReleaseReleaseIdOkResponse, PutReleaseReleaseIdProps, PutReleaseReleaseIdRequestBody, } from './hooks/usePutReleaseReleaseIdMutation';
41
63
  export { putReleaseReleaseId, usePutReleaseReleaseIdMutation, } from './hooks/usePutReleaseReleaseIdMutation';
42
64
  export type { UpdateReleaseConflictErrorResponse, UpdateReleaseConflictMutationPathParams, UpdateReleaseConflictOkResponse, UpdateReleaseConflictProps, UpdateReleaseConflictRequestBody, } from './hooks/useUpdateReleaseConflictMutation';
43
65
  export { updateReleaseConflict, useUpdateReleaseConflictMutation, } from './hooks/useUpdateReleaseConflictMutation';
44
- export type { CreateInputSetStoreRequestRequestBody } from './requestBodies/CreateInputSetStoreRequestRequestBody';
66
+ export type { CreateOrchestrationActivityInputStoreRequestRequestBody } from './requestBodies/CreateOrchestrationActivityInputStoreRequestRequestBody';
45
67
  export type { CreateOrchestrationActivityRequestRequestBody } from './requestBodies/CreateOrchestrationActivityRequestRequestBody';
46
68
  export type { CreateOrchestrationProcessRequestRequestBody } from './requestBodies/CreateOrchestrationProcessRequestRequestBody';
47
69
  export type { CreateReleaseGroupRequestRequestBody } from './requestBodies/CreateReleaseGroupRequestRequestBody';
48
70
  export type { ReleaseSummaryRequestRequestBody } from './requestBodies/ReleaseSummaryRequestRequestBody';
71
+ export type { UpdateOrchestrationActivityRequestRequestBody } from './requestBodies/UpdateOrchestrationActivityRequestRequestBody';
72
+ export type { UpdateOrchestrationProcessRequestRequestBody } from './requestBodies/UpdateOrchestrationProcessRequestRequestBody';
49
73
  export type { UpdateReleaseGroupRequestRequestBody } from './requestBodies/UpdateReleaseGroupRequestRequestBody';
50
74
  export type { UpdateReleaseRequestRequestBody } from './requestBodies/UpdateReleaseRequestRequestBody';
51
- export type { CreateInputSetStoreResponseResponse } from './responses/CreateInputSetStoreResponseResponse';
75
+ export type { CreateOrchestrationActivityInputStoreResponseResponse } from './responses/CreateOrchestrationActivityInputStoreResponseResponse';
52
76
  export type { CreateOrchestrationActivityResponseResponse } from './responses/CreateOrchestrationActivityResponseResponse';
77
+ export type { CreateOrchestrationProcessInputStoreResponseResponse } from './responses/CreateOrchestrationProcessInputStoreResponseResponse';
53
78
  export type { CreateOrchestrationProcessResponseResponse } from './responses/CreateOrchestrationProcessResponseResponse';
54
79
  export type { CreateReleaseGroupResponseResponse } from './responses/CreateReleaseGroupResponseResponse';
55
80
  export type { DeleteReleaseGroupResponseResponse } from './responses/DeleteReleaseGroupResponseResponse';
56
81
  export type { EnvironmentDashboardResponseResponse } from './responses/EnvironmentDashboardResponseResponse';
57
82
  export type { EnvironmentListPerReleaseResponseResponse } from './responses/EnvironmentListPerReleaseResponseResponse';
58
83
  export type { ErrorResponseResponse } from './responses/ErrorResponseResponse';
84
+ export type { GetOrchestrationActivityResponseResponse } from './responses/GetOrchestrationActivityResponseResponse';
59
85
  export type { GetOrchestrationProcessResponseResponse } from './responses/GetOrchestrationProcessResponseResponse';
60
86
  export type { GetReleaseGroupResponseResponse } from './responses/GetReleaseGroupResponseResponse';
87
+ export type { OrchestrationActivityInputStoreSummaryResponseResponse } from './responses/OrchestrationActivityInputStoreSummaryResponseResponse';
88
+ export type { OrchestrationActivityListByProcessIdentifierResponseResponse } from './responses/OrchestrationActivityListByProcessIdentifierResponseResponse';
89
+ export type { OrchestrationProcessInputStoreSummaryResponseResponse } from './responses/OrchestrationProcessInputStoreSummaryResponseResponse';
61
90
  export type { OrchestrationProcessSummaryResponseResponse } from './responses/OrchestrationProcessSummaryResponseResponse';
62
91
  export type { ReleaseActivitiesResponseResponse } from './responses/ReleaseActivitiesResponseResponse';
63
92
  export type { ReleaseApprovalsResponseResponse } from './responses/ReleaseApprovalsResponseResponse';
@@ -73,7 +102,7 @@ export type { ActivityType } from './schemas/ActivityType';
73
102
  export type { ApprovalInfoDto } from './schemas/ApprovalInfoDto';
74
103
  export type { ApprovedByDto } from './schemas/ApprovedByDto';
75
104
  export type { ConflictStatus } from './schemas/ConflictStatus';
76
- export type { CreateInputSetStoreRequestType } from './schemas/CreateInputSetStoreRequestType';
105
+ export type { CreateOrchestrationActivityInputSetRequestType } from './schemas/CreateOrchestrationActivityInputSetRequestType';
77
106
  export type { CreateOrchestrationActivityRequestType } from './schemas/CreateOrchestrationActivityRequestType';
78
107
  export type { EnvironmentDashboardDto } from './schemas/EnvironmentDashboardDto';
79
108
  export type { EnvironmentDto } from './schemas/EnvironmentDto';
@@ -84,9 +113,16 @@ export type { Freq } from './schemas/Freq';
84
113
  export type { GetReleaseGroupResponse } from './schemas/GetReleaseGroupResponse';
85
114
  export type { LastUpdatedByDto } from './schemas/LastUpdatedByDto';
86
115
  export type { NextRequest } from './schemas/NextRequest';
116
+ export type { OrchestrationActivityInputStoreDto } from './schemas/OrchestrationActivityInputStoreDto';
117
+ export type { OrchestrationActivityYaml } from './schemas/OrchestrationActivityYaml';
118
+ export type { OrchestrationActivityYamlDto } from './schemas/OrchestrationActivityYamlDto';
119
+ export type { OrchestrationPhaseYaml } from './schemas/OrchestrationPhaseYaml';
87
120
  export type { OrchestrationProcessDto } from './schemas/OrchestrationProcessDto';
121
+ export type { OrchestrationProcessInputStoreDto } from './schemas/OrchestrationProcessInputStoreDto';
122
+ export type { OrchestrationReleaseProcessYaml } from './schemas/OrchestrationReleaseProcessYaml';
88
123
  export type { Pageable } from './schemas/Pageable';
89
124
  export type { PageableSort } from './schemas/PageableSort';
125
+ export type { PipelineOrchestrationActivityYaml } from './schemas/PipelineOrchestrationActivityYaml';
90
126
  export type { ReleaseActivity } from './schemas/ReleaseActivity';
91
127
  export type { ReleaseApprovalDto } from './schemas/ReleaseApprovalDto';
92
128
  export type { ReleaseApprovalType } from './schemas/ReleaseApprovalType';
@@ -1,4 +1,10 @@
1
1
  export { deleteReleaseGroup, useDeleteReleaseGroupMutation, } from './hooks/useDeleteReleaseGroupMutation';
2
+ export { getOrchestrationActivitiesByAcitivityRefs, useGetOrchestrationActivitiesByAcitivityRefsMutation, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
3
+ export { getOrchestrationActivitiesByProcessIdentifier, useGetOrchestrationActivitiesByProcessIdentifierQuery, } from './hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery';
4
+ export { getOrchestrationActivityInputStore, useGetOrchestrationActivityInputStoreQuery, } from './hooks/useGetOrchestrationActivityInputStoreQuery';
5
+ export { getOrchestrationActivityInputStoreSummary, useGetOrchestrationActivityInputStoreSummaryQuery, } from './hooks/useGetOrchestrationActivityInputStoreSummaryQuery';
6
+ export { getOrchestrationActivity, useGetOrchestrationActivityQuery, } from './hooks/useGetOrchestrationActivityQuery';
7
+ export { getOrchestrationProcessInputStoreSummary, useGetOrchestrationProcessInputStoreSummaryQuery, } from './hooks/useGetOrchestrationProcessInputStoreSummaryQuery';
2
8
  export { getOrchestrationProcess, useGetOrchestrationProcessQuery, } from './hooks/useGetOrchestrationProcessQuery';
3
9
  export { getOrchestrationProcessSummary, useGetOrchestrationProcessSummaryQuery, } from './hooks/useGetOrchestrationProcessSummaryQuery';
4
10
  export { getReleaseActivities, useGetReleaseActivitiesQuery, } from './hooks/useGetReleaseActivitiesQuery';
@@ -11,11 +17,16 @@ export { getRelease, useGetReleaseQuery } from './hooks/useGetReleaseQuery';
11
17
  export { getReleaseReleaseIdApprovals, useGetReleaseReleaseIdApprovalsQuery, } from './hooks/useGetReleaseReleaseIdApprovalsQuery';
12
18
  export { getReleaseReleaseIdEnvironmentDashboard, useGetReleaseReleaseIdEnvironmentDashboardQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentDashboardQuery';
13
19
  export { getReleaseReleaseIdEnvironments, useGetReleaseReleaseIdEnvironmentsQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentsQuery';
14
- export { postInputSetStore, usePostInputSetStoreMutation, } from './hooks/usePostInputSetStoreMutation';
20
+ export { postOrchestrationActivityInputStore, usePostOrchestrationActivityInputStoreMutation, } from './hooks/usePostOrchestrationActivityInputStoreMutation';
15
21
  export { postOrchestrationActivity, usePostOrchestrationActivityMutation, } from './hooks/usePostOrchestrationActivityMutation';
22
+ export { postOrchestrationProcessInputStore, usePostOrchestrationProcessInputStoreMutation, } from './hooks/usePostOrchestrationProcessInputStoreMutation';
16
23
  export { postOrchestrationProcess, usePostOrchestrationProcessMutation, } from './hooks/usePostOrchestrationProcessMutation';
17
24
  export { postReleaseGroup, usePostReleaseGroupMutation } from './hooks/usePostReleaseGroupMutation';
18
25
  export { postReleaseSummary, usePostReleaseSummaryMutation, } from './hooks/usePostReleaseSummaryMutation';
26
+ export { putOrchestrationActivityInputStore, usePutOrchestrationActivityInputStoreMutation, } from './hooks/usePutOrchestrationActivityInputStoreMutation';
27
+ export { putOrchestrationActivity, usePutOrchestrationActivityMutation, } from './hooks/usePutOrchestrationActivityMutation';
28
+ export { putOrchestrationProcessInputStore, usePutOrchestrationProcessInputStoreMutation, } from './hooks/usePutOrchestrationProcessInputStoreMutation';
29
+ export { putOrchestrationProcess, usePutOrchestrationProcessMutation, } from './hooks/usePutOrchestrationProcessMutation';
19
30
  export { putReleaseGroup, usePutReleaseGroupMutation } from './hooks/usePutReleaseGroupMutation';
20
31
  export { putReleaseReleaseId, usePutReleaseReleaseIdMutation, } from './hooks/usePutReleaseReleaseIdMutation';
21
32
  export { updateReleaseConflict, useUpdateReleaseConflictMutation, } from './hooks/useUpdateReleaseConflictMutation';
@@ -0,0 +1,6 @@
1
+ export interface CreateOrchestrationActivityInputStoreRequestRequestBody {
2
+ /**
3
+ * YAML configuration string
4
+ */
5
+ yaml: string;
6
+ }
@@ -0,0 +1,3 @@
1
+ export interface UpdateOrchestrationActivityRequestRequestBody {
2
+ yaml: string;
3
+ }
@@ -0,0 +1,3 @@
1
+ export interface UpdateOrchestrationProcessRequestRequestBody {
2
+ yaml: string;
3
+ }
@@ -1,4 +1,4 @@
1
- export interface CreateInputSetStoreResponseResponse {
1
+ export interface CreateOrchestrationActivityInputStoreResponseResponse {
2
2
  /**
3
3
  * Identifier of the created input set
4
4
  */
@@ -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 CreateOrchestrationProcessInputStoreResponseResponse {
2
+ /**
3
+ * Identifier of the created process input store
4
+ */
5
+ identifier: 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,10 @@
1
+ export interface GetOrchestrationActivityResponseResponse {
2
+ /**
3
+ * Identifier of the orchestration activity
4
+ */
5
+ identifier: string;
6
+ /**
7
+ * YAML representation of the orchestration activity
8
+ */
9
+ yaml: 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,16 @@
1
+ import type { OrchestrationActivityInputStoreDto } from '../schemas/OrchestrationActivityInputStoreDto';
2
+ import type { Pageable } from '../schemas/Pageable';
3
+ import type { PageableSort } from '../schemas/PageableSort';
4
+ export interface OrchestrationActivityInputStoreSummaryResponseResponse {
5
+ content: OrchestrationActivityInputStoreDto[];
6
+ empty: boolean;
7
+ first: boolean;
8
+ last: boolean;
9
+ number: number;
10
+ numberOfElements: number;
11
+ pageable: Pageable;
12
+ size: number;
13
+ sort: PageableSort;
14
+ totalElements: number;
15
+ totalPages: number;
16
+ }
@@ -0,0 +1,10 @@
1
+ import type { OrchestrationActivityYamlDto } from '../schemas/OrchestrationActivityYamlDto';
2
+ import type { NextRequest } from '../schemas/NextRequest';
3
+ export interface OrchestrationActivityListByProcessIdentifierResponseResponse {
4
+ activities: OrchestrationActivityYamlDto[];
5
+ /**
6
+ * Whether this is the last page of results
7
+ */
8
+ last: boolean;
9
+ nextRequest: NextRequest;
10
+ }
@@ -0,0 +1,16 @@
1
+ import type { OrchestrationProcessInputStoreDto } from '../schemas/OrchestrationProcessInputStoreDto';
2
+ import type { Pageable } from '../schemas/Pageable';
3
+ import type { PageableSort } from '../schemas/PageableSort';
4
+ export interface OrchestrationProcessInputStoreSummaryResponseResponse {
5
+ content: OrchestrationProcessInputStoreDto[];
6
+ empty: boolean;
7
+ first: boolean;
8
+ last: boolean;
9
+ number: number;
10
+ numberOfElements: number;
11
+ pageable: Pageable;
12
+ size: number;
13
+ sort: PageableSort;
14
+ totalElements: number;
15
+ totalPages: number;
16
+ }
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Type of input set store. It helps in segregating the type of input set store.
3
+ */
4
+ export type CreateOrchestrationActivityInputSetRequestType = 'ACTIVITY' | 'PROCESS' | 'RELEASE';
@@ -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 { LastUpdatedByDto } from '../schemas/LastUpdatedByDto';
2
+ export interface OrchestrationActivityInputStoreDto {
3
+ description?: string;
4
+ identifier: string;
5
+ lastUpdatedAt: number;
6
+ lastUpdatedBy: LastUpdatedByDto;
7
+ name: string;
8
+ }
@@ -0,0 +1,18 @@
1
+ export interface OrchestrationActivityYaml {
2
+ /**
3
+ * Reference to the activity type (e.g., ReleaseApproval, ReleasePipeline)
4
+ */
5
+ activity_ref: string;
6
+ /**
7
+ * Unique identifier for the activity
8
+ */
9
+ identifier: string;
10
+ /**
11
+ * Name of the activity
12
+ */
13
+ name: string;
14
+ /**
15
+ * Timeout duration for the activity (e.g., "24h", "2h")
16
+ */
17
+ timeout: string;
18
+ }
@@ -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 OrchestrationActivityYamlDto {
2
+ /**
3
+ * Identifier of the activity
4
+ */
5
+ identifier: string;
6
+ /**
7
+ * YAML configuration of the activity
8
+ */
9
+ yaml: 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,24 @@
1
+ import type { OrchestrationActivityYaml } from '../schemas/OrchestrationActivityYaml';
2
+ export interface OrchestrationPhaseYaml {
3
+ activities: OrchestrationActivityYaml[];
4
+ /**
5
+ * List of phase identifiers that this phase depends on
6
+ */
7
+ depends_on?: string[];
8
+ /**
9
+ * Unique identifier for the phase
10
+ */
11
+ identifier: string;
12
+ /**
13
+ * Name of the phase
14
+ */
15
+ name: string;
16
+ /**
17
+ * List of owner groups for the phase
18
+ */
19
+ owners?: string[];
20
+ /**
21
+ * Timeout duration for the phase (e.g., "2h", "24h")
22
+ */
23
+ timeout: string;
24
+ }
@@ -0,0 +1,9 @@
1
+ import type { LastUpdatedByDto } from '../schemas/LastUpdatedByDto';
2
+ export interface OrchestrationProcessInputStoreDto {
3
+ completed: boolean;
4
+ description?: string;
5
+ identifier: string;
6
+ lastUpdatedAt: number;
7
+ lastUpdatedBy: LastUpdatedByDto;
8
+ name: string;
9
+ }
@@ -0,0 +1,16 @@
1
+ import type { OrchestrationPhaseYaml } from '../schemas/OrchestrationPhaseYaml';
2
+ export interface OrchestrationReleaseProcessYaml {
3
+ /**
4
+ * Description of the orchestration process
5
+ */
6
+ description: string;
7
+ /**
8
+ * Unique identifier for the orchestration process
9
+ */
10
+ identifier: string;
11
+ /**
12
+ * Name of the orchestration process
13
+ */
14
+ name: string;
15
+ phases: OrchestrationPhaseYaml[];
16
+ }
@@ -0,0 +1,62 @@
1
+ export interface PipelineOrchestrationActivityYaml {
2
+ /**
3
+ * Description of the pipeline activity
4
+ */
5
+ description: string;
6
+ /**
7
+ * Unique identifier for the pipeline activity
8
+ */
9
+ identifier: string;
10
+ inputs: {
11
+ [key: string]: {
12
+ /**
13
+ * Description of the input parameter
14
+ */
15
+ description: string;
16
+ /**
17
+ * Whether the input is required
18
+ */
19
+ required: boolean;
20
+ /**
21
+ * Type of the input parameter
22
+ */
23
+ type: string;
24
+ };
25
+ };
26
+ /**
27
+ * Name of the pipeline activity
28
+ */
29
+ name: string;
30
+ spec: {
31
+ /**
32
+ * Organization identifier
33
+ */
34
+ orgIdentifier: string;
35
+ outputs: Array<{
36
+ /**
37
+ * Name of the output
38
+ */
39
+ name: string;
40
+ /**
41
+ * Value expression for the output
42
+ */
43
+ value: string;
44
+ }>;
45
+ /**
46
+ * Pipeline identifier
47
+ */
48
+ pipelineIdentifier: string;
49
+ /**
50
+ * Project identifier
51
+ */
52
+ projectIdentifier: string;
53
+ };
54
+ /**
55
+ * Timeout duration for the pipeline activity (e.g., "8h")
56
+ */
57
+ timeout: string;
58
+ /**
59
+ * Type of the activity
60
+ */
61
+ type: 'PIPELINE';
62
+ }
@@ -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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-rmg-service-client",
3
- "version": "0.17.0",
3
+ "version": "0.18.0",
4
4
  "description": "Harness Release Management Service APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",
@@ -1,25 +0,0 @@
1
- import { UseMutationOptions } from '@tanstack/react-query';
2
- import type { CreateInputSetStoreResponseResponse } from '../responses/CreateInputSetStoreResponseResponse';
3
- import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
4
- import type { CreateInputSetStoreRequestRequestBody } from '../requestBodies/CreateInputSetStoreRequestRequestBody';
5
- import type { ResponseWithPagination } from '../helpers';
6
- import { FetcherOptions } from '../../../../fetcher/index.js';
7
- export interface PostInputSetStoreMutationQueryParams {
8
- orgIdentifier?: string;
9
- projectIdentifier?: string;
10
- }
11
- export interface PostInputSetStoreMutationHeaderParams {
12
- 'Harness-Account': string;
13
- }
14
- export type PostInputSetStoreRequestBody = CreateInputSetStoreRequestRequestBody;
15
- export type PostInputSetStoreOkResponse = ResponseWithPagination<CreateInputSetStoreResponseResponse>;
16
- export type PostInputSetStoreErrorResponse = ErrorResponseResponse;
17
- export interface PostInputSetStoreProps extends Omit<FetcherOptions<PostInputSetStoreMutationQueryParams, PostInputSetStoreRequestBody, PostInputSetStoreMutationHeaderParams>, 'url'> {
18
- queryParams: PostInputSetStoreMutationQueryParams;
19
- body: PostInputSetStoreRequestBody;
20
- }
21
- export declare function postInputSetStore(props: PostInputSetStoreProps): Promise<PostInputSetStoreOkResponse>;
22
- /**
23
- * Create a new input set store
24
- */
25
- export declare function usePostInputSetStoreMutation(options?: Omit<UseMutationOptions<PostInputSetStoreOkResponse, PostInputSetStoreErrorResponse, PostInputSetStoreProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<PostInputSetStoreOkResponse, import("..").Error, PostInputSetStoreProps, unknown>;
@@ -1,14 +0,0 @@
1
- /* eslint-disable */
2
- // This code is autogenerated using @harnessio/oats-cli.
3
- // Please do not modify this code directly.
4
- import { useMutation } from '@tanstack/react-query';
5
- import { fetcher } from '../../../../fetcher/index.js';
6
- export function postInputSetStore(props) {
7
- return fetcher(Object.assign({ url: `/inputSetStore`, method: 'POST' }, props));
8
- }
9
- /**
10
- * Create a new input set store
11
- */
12
- export function usePostInputSetStoreMutation(options) {
13
- return useMutation((mutateProps) => postInputSetStore(mutateProps), options);
14
- }
@@ -1,6 +0,0 @@
1
- export interface CreateInputSetStoreRequestRequestBody {
2
- /**
3
- * YAML configuration string
4
- */
5
- yaml: string;
6
- }
@@ -1,4 +0,0 @@
1
- /**
2
- * Type of input set store. It helps in segregating the type of input set store.
3
- */
4
- export type CreateInputSetStoreRequestType = 'ACTIVITY' | 'PROCESS' | 'RELEASE';