@harnessio/react-rmg-service-client 0.22.0 → 0.24.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.
- package/dist/rmg-service/src/services/hooks/useGetFreezeDetailsQuery.d.ts +25 -0
- package/dist/rmg-service/src/services/hooks/useGetFreezeDetailsQuery.js +14 -0
- package/dist/rmg-service/src/services/hooks/useGetFreezeListQuery.d.ts +35 -0
- package/dist/rmg-service/src/services/hooks/useGetFreezeListQuery.js +14 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputsQuery.d.ts +25 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputsQuery.js +14 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessInputQuery.d.ts +26 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessInputQuery.js +19 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessInputSummaryQuery.d.ts +29 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessInputSummaryQuery.js +14 -0
- package/dist/rmg-service/src/services/hooks/usePostOrchestrationProcessAttachedReleaseGroupsMutation.d.ts +32 -0
- package/dist/rmg-service/src/services/hooks/usePostOrchestrationProcessAttachedReleaseGroupsMutation.js +14 -0
- package/dist/rmg-service/src/services/hooks/usePostOrchestrationProcessInputMutation.d.ts +28 -0
- package/dist/rmg-service/src/services/hooks/{usePostOrchestrationProcessInputStoreMutation.js → usePostOrchestrationProcessInputMutation.js} +5 -5
- package/dist/rmg-service/src/services/hooks/usePutOrchestrationActivityMutation.d.ts +2 -1
- package/dist/rmg-service/src/services/hooks/usePutOrchestrationProcessInputMutation.d.ts +29 -0
- package/dist/rmg-service/src/services/hooks/{usePutOrchestrationProcessInputStoreMutation.js → usePutOrchestrationProcessInputMutation.js} +5 -5
- package/dist/rmg-service/src/services/hooks/usePutOrchestrationProcessMutation.d.ts +2 -1
- package/dist/rmg-service/src/services/hooks/useStartReleaseExecutionMutation.d.ts +8 -1
- package/dist/rmg-service/src/services/index.d.ts +47 -23
- package/dist/rmg-service/src/services/index.js +8 -7
- package/dist/rmg-service/src/services/requestBodies/CreateOrchestrationProcessInputRequestRequestBody.d.ts +6 -0
- package/dist/rmg-service/src/services/requestBodies/CreateReleaseGroupRequestRequestBody.d.ts +9 -1
- package/dist/rmg-service/src/services/requestBodies/OrchestrationProcessAttachedReleaseGroupsRequestRequestBody.d.ts +10 -0
- package/dist/rmg-service/src/services/requestBodies/UpdateOrchestrationProcessInputRequestRequestBody.d.ts +6 -0
- package/dist/rmg-service/src/services/requestBodies/UpdateReleaseGroupRequestRequestBody.d.ts +9 -1
- package/dist/rmg-service/src/services/requestBodies/UpdateReleaseRequestRequestBody.d.ts +8 -0
- package/dist/rmg-service/src/services/responses/ActivityInputsResponseResponse.d.ts +2 -0
- package/dist/rmg-service/src/services/responses/CreateOrchestrationProcessInputResponseResponse.d.ts +10 -0
- package/dist/rmg-service/src/services/responses/FreezeDetailsResponseResponse.d.ts +2 -0
- package/dist/rmg-service/src/services/responses/FreezeListResponseResponse.d.ts +2 -0
- package/dist/rmg-service/src/services/responses/GetOrchestrationProcessInputResponseResponse.d.ts +14 -0
- package/dist/rmg-service/src/services/responses/GetOrchestrationProcessInputResponseResponse.js +4 -0
- package/dist/rmg-service/src/services/responses/{OrchestrationProcessInputStoreSummaryResponseResponse.d.ts → OrchestrationProcessAttachedReleaseGroupsResponseResponse.d.ts} +3 -3
- package/dist/rmg-service/src/services/responses/{OrchestrationActivityInputStoreSummaryResponseResponse.d.ts → OrchestrationProcessInputSummaryResponseResponse.d.ts} +3 -3
- package/dist/rmg-service/src/services/responses/OrchestrationProcessInputSummaryResponseResponse.js +1 -0
- package/dist/rmg-service/src/services/responses/UpdateOrchestrationActivityResponseResponse.d.ts +10 -0
- package/dist/rmg-service/src/services/responses/UpdateOrchestrationActivityResponseResponse.js +4 -0
- package/dist/rmg-service/src/services/responses/UpdateOrchestrationProcessInputResponseResponse.d.ts +14 -0
- package/dist/rmg-service/src/services/responses/UpdateOrchestrationProcessInputResponseResponse.js +4 -0
- package/dist/rmg-service/src/services/responses/UpdateOrchestrationProcessResponseResponse.d.ts +10 -0
- package/dist/rmg-service/src/services/responses/UpdateOrchestrationProcessResponseResponse.js +4 -0
- package/dist/rmg-service/src/services/schemas/ActivityInputYaml.d.ts +12 -0
- package/dist/rmg-service/src/services/schemas/ActivityInputYaml.js +4 -0
- package/dist/rmg-service/src/services/schemas/ActivityInputsResponse.d.ts +9 -0
- package/dist/rmg-service/src/services/schemas/ActivityInputsResponse.js +4 -0
- package/dist/rmg-service/src/services/schemas/AttachedReleaseGroupDto.d.ts +26 -0
- package/dist/rmg-service/src/services/schemas/AttachedReleaseGroupDto.js +4 -0
- package/dist/rmg-service/src/services/schemas/Error.d.ts +4 -0
- package/dist/rmg-service/src/services/schemas/FreezeDetailsDto.d.ts +41 -0
- package/dist/rmg-service/src/services/schemas/FreezeDetailsDto.js +1 -0
- package/dist/rmg-service/src/services/schemas/FreezeEntitiesDto.d.ts +29 -0
- package/dist/rmg-service/src/services/schemas/FreezeEntitiesDto.js +4 -0
- package/dist/rmg-service/src/services/schemas/FreezeListItemDto.d.ts +31 -0
- package/dist/rmg-service/src/services/schemas/FreezeListItemDto.js +4 -0
- package/dist/rmg-service/src/services/schemas/FreezeListResponseDto.d.ts +16 -0
- package/dist/rmg-service/src/services/schemas/FreezeListResponseDto.js +1 -0
- package/dist/rmg-service/src/services/schemas/GetReleaseGroupResponse.d.ts +9 -1
- package/dist/rmg-service/src/services/schemas/GlobalReleaseInputYaml.d.ts +8 -0
- package/dist/rmg-service/src/services/schemas/GlobalReleaseInputYaml.js +4 -0
- package/dist/rmg-service/src/services/schemas/InputVariable.d.ts +12 -0
- package/dist/rmg-service/src/services/schemas/InputVariable.js +1 -0
- package/dist/rmg-service/src/services/schemas/InputVariableType.d.ts +4 -0
- package/dist/rmg-service/src/services/schemas/InputVariableType.js +4 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityPipelineYaml.d.ts +15 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityPipelineYaml.js +4 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityProcessYaml.d.ts +22 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityProcessYaml.js +4 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityYaml.d.ts +23 -16
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityYaml.js +0 -3
- package/dist/rmg-service/src/services/schemas/OrchestrationPhaseYaml.d.ts +24 -22
- package/dist/rmg-service/src/services/schemas/OrchestrationProcessDto.d.ts +4 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationProcessInputYaml.d.ts +31 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationProcessInputYaml.js +1 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationReleaseProcessYaml.d.ts +15 -13
- package/dist/rmg-service/src/services/schemas/PhaseInputYaml.d.ts +18 -0
- package/dist/rmg-service/src/services/schemas/PhaseInputYaml.js +1 -0
- package/dist/rmg-service/src/services/schemas/PhaseReleaseInputYaml.d.ts +12 -0
- package/dist/rmg-service/src/services/schemas/PhaseReleaseInputYaml.js +4 -0
- package/dist/rmg-service/src/services/schemas/ProcessInputSummaryDto.d.ts +25 -0
- package/dist/rmg-service/src/services/schemas/ProcessInputSummaryDto.js +1 -0
- package/dist/rmg-service/src/services/schemas/ReleaseDto.d.ts +9 -1
- package/dist/rmg-service/src/services/schemas/ReleaseGroupDto.d.ts +8 -0
- package/dist/rmg-service/src/services/schemas/ReleaseInputYaml.d.ts +9 -0
- package/dist/rmg-service/src/services/schemas/ReleaseInputYaml.js +1 -0
- package/package.json +1 -1
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputStoreQuery.d.ts +0 -33
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputStoreQuery.js +0 -14
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputStoreSummaryQuery.d.ts +0 -25
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputStoreSummaryQuery.js +0 -14
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessInputStoreSummaryQuery.d.ts +0 -25
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessInputStoreSummaryQuery.js +0 -14
- package/dist/rmg-service/src/services/hooks/usePostOrchestrationActivityInputStoreMutation.d.ts +0 -25
- package/dist/rmg-service/src/services/hooks/usePostOrchestrationActivityInputStoreMutation.js +0 -14
- package/dist/rmg-service/src/services/hooks/usePostOrchestrationProcessInputStoreMutation.d.ts +0 -41
- package/dist/rmg-service/src/services/hooks/usePutOrchestrationActivityInputStoreMutation.d.ts +0 -31
- package/dist/rmg-service/src/services/hooks/usePutOrchestrationActivityInputStoreMutation.js +0 -14
- package/dist/rmg-service/src/services/hooks/usePutOrchestrationProcessInputStoreMutation.d.ts +0 -39
- package/dist/rmg-service/src/services/requestBodies/CreateOrchestrationActivityInputStoreRequestRequestBody.d.ts +0 -6
- package/dist/rmg-service/src/services/responses/CreateOrchestrationActivityInputStoreResponseResponse.d.ts +0 -10
- package/dist/rmg-service/src/services/responses/CreateOrchestrationProcessInputStoreResponseResponse.d.ts +0 -6
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityInputStoreDto.d.ts +0 -8
- package/dist/rmg-service/src/services/schemas/OrchestrationProcessInputStoreDto.d.ts +0 -9
- package/dist/rmg-service/src/services/schemas/PipelineOrchestrationActivityYaml.d.ts +0 -62
- /package/dist/rmg-service/src/services/requestBodies/{CreateOrchestrationActivityInputStoreRequestRequestBody.js → CreateOrchestrationProcessInputRequestRequestBody.js} +0 -0
- /package/dist/rmg-service/src/services/{responses/CreateOrchestrationActivityInputStoreResponseResponse.js → requestBodies/OrchestrationProcessAttachedReleaseGroupsRequestRequestBody.js} +0 -0
- /package/dist/rmg-service/src/services/{responses/CreateOrchestrationProcessInputStoreResponseResponse.js → requestBodies/UpdateOrchestrationProcessInputRequestRequestBody.js} +0 -0
- /package/dist/rmg-service/src/services/responses/{OrchestrationActivityInputStoreSummaryResponseResponse.js → ActivityInputsResponseResponse.js} +0 -0
- /package/dist/rmg-service/src/services/{schemas/PipelineOrchestrationActivityYaml.js → responses/CreateOrchestrationProcessInputResponseResponse.js} +0 -0
- /package/dist/rmg-service/src/services/responses/{OrchestrationProcessInputStoreSummaryResponseResponse.js → FreezeDetailsResponseResponse.js} +0 -0
- /package/dist/rmg-service/src/services/{schemas/OrchestrationActivityInputStoreDto.js → responses/FreezeListResponseResponse.js} +0 -0
- /package/dist/rmg-service/src/services/{schemas/OrchestrationProcessInputStoreDto.js → responses/OrchestrationProcessAttachedReleaseGroupsResponseResponse.js} +0 -0
|
@@ -1,22 +1,26 @@
|
|
|
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 { GetFreezeDetailsErrorResponse, GetFreezeDetailsOkResponse, GetFreezeDetailsProps, GetFreezeDetailsQueryPathParams, GetFreezeDetailsQueryQueryParams, } from './hooks/useGetFreezeDetailsQuery';
|
|
5
|
+
export { getFreezeDetails, useGetFreezeDetailsQuery } from './hooks/useGetFreezeDetailsQuery';
|
|
6
|
+
export type { GetFreezeListErrorResponse, GetFreezeListOkResponse, GetFreezeListProps, GetFreezeListQueryQueryParams, } from './hooks/useGetFreezeListQuery';
|
|
7
|
+
export { getFreezeList, useGetFreezeListQuery } from './hooks/useGetFreezeListQuery';
|
|
4
8
|
export type { GetOrchestrationActivitiesByAcitivityRefsErrorResponse, GetOrchestrationActivitiesByAcitivityRefsMutationQueryParams, GetOrchestrationActivitiesByAcitivityRefsOkResponse, GetOrchestrationActivitiesByAcitivityRefsProps, GetOrchestrationActivitiesByAcitivityRefsRequestBody, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
|
|
5
9
|
export { getOrchestrationActivitiesByAcitivityRefs, useGetOrchestrationActivitiesByAcitivityRefsMutation, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
|
|
6
10
|
export type { GetOrchestrationActivitiesByProcessIdentifierErrorResponse, GetOrchestrationActivitiesByProcessIdentifierOkResponse, GetOrchestrationActivitiesByProcessIdentifierProps, GetOrchestrationActivitiesByProcessIdentifierQueryPathParams, GetOrchestrationActivitiesByProcessIdentifierQueryQueryParams, } from './hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery';
|
|
7
11
|
export { getOrchestrationActivitiesByProcessIdentifier, useGetOrchestrationActivitiesByProcessIdentifierQuery, } from './hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery';
|
|
8
|
-
export type {
|
|
9
|
-
export {
|
|
10
|
-
export type { GetOrchestrationActivityInputStoreSummaryErrorResponse, GetOrchestrationActivityInputStoreSummaryOkResponse, GetOrchestrationActivityInputStoreSummaryProps, GetOrchestrationActivityInputStoreSummaryQueryQueryParams, } from './hooks/useGetOrchestrationActivityInputStoreSummaryQuery';
|
|
11
|
-
export { getOrchestrationActivityInputStoreSummary, useGetOrchestrationActivityInputStoreSummaryQuery, } from './hooks/useGetOrchestrationActivityInputStoreSummaryQuery';
|
|
12
|
+
export type { GetOrchestrationActivityInputsErrorResponse, GetOrchestrationActivityInputsOkResponse, GetOrchestrationActivityInputsProps, GetOrchestrationActivityInputsQueryPathParams, GetOrchestrationActivityInputsQueryQueryParams, } from './hooks/useGetOrchestrationActivityInputsQuery';
|
|
13
|
+
export { getOrchestrationActivityInputs, useGetOrchestrationActivityInputsQuery, } from './hooks/useGetOrchestrationActivityInputsQuery';
|
|
12
14
|
export type { GetOrchestrationActivityErrorResponse, GetOrchestrationActivityOkResponse, GetOrchestrationActivityProps, GetOrchestrationActivityQueryPathParams, GetOrchestrationActivityQueryQueryParams, } from './hooks/useGetOrchestrationActivityQuery';
|
|
13
15
|
export { getOrchestrationActivity, useGetOrchestrationActivityQuery, } from './hooks/useGetOrchestrationActivityQuery';
|
|
14
16
|
export type { GetOrchestrationExecutionActivitiesErrorResponse, GetOrchestrationExecutionActivitiesOkResponse, GetOrchestrationExecutionActivitiesProps, GetOrchestrationExecutionActivitiesQueryPathParams, GetOrchestrationExecutionActivitiesQueryQueryParams, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
|
|
15
17
|
export { getOrchestrationExecutionActivities, useGetOrchestrationExecutionActivitiesQuery, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
|
|
16
18
|
export type { GetOrchestrationExecutionPhasesErrorResponse, GetOrchestrationExecutionPhasesOkResponse, GetOrchestrationExecutionPhasesProps, GetOrchestrationExecutionPhasesQueryPathParams, GetOrchestrationExecutionPhasesQueryQueryParams, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
|
|
17
19
|
export { getOrchestrationExecutionPhases, useGetOrchestrationExecutionPhasesQuery, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
|
|
18
|
-
export type {
|
|
19
|
-
export {
|
|
20
|
+
export type { GetOrchestrationProcessInputErrorResponse, GetOrchestrationProcessInputOkResponse, GetOrchestrationProcessInputProps, GetOrchestrationProcessInputQueryPathParams, GetOrchestrationProcessInputQueryQueryParams, } from './hooks/useGetOrchestrationProcessInputQuery';
|
|
21
|
+
export { getOrchestrationProcessInput, useGetOrchestrationProcessInputQuery, } from './hooks/useGetOrchestrationProcessInputQuery';
|
|
22
|
+
export type { GetOrchestrationProcessInputSummaryErrorResponse, GetOrchestrationProcessInputSummaryOkResponse, GetOrchestrationProcessInputSummaryProps, GetOrchestrationProcessInputSummaryQueryPathParams, GetOrchestrationProcessInputSummaryQueryQueryParams, } from './hooks/useGetOrchestrationProcessInputSummaryQuery';
|
|
23
|
+
export { getOrchestrationProcessInputSummary, useGetOrchestrationProcessInputSummaryQuery, } from './hooks/useGetOrchestrationProcessInputSummaryQuery';
|
|
20
24
|
export type { GetOrchestrationProcessErrorResponse, GetOrchestrationProcessOkResponse, GetOrchestrationProcessProps, GetOrchestrationProcessQueryPathParams, GetOrchestrationProcessQueryQueryParams, } from './hooks/useGetOrchestrationProcessQuery';
|
|
21
25
|
export { getOrchestrationProcess, useGetOrchestrationProcessQuery, } from './hooks/useGetOrchestrationProcessQuery';
|
|
22
26
|
export type { GetOrchestrationProcessSummaryErrorResponse, GetOrchestrationProcessSummaryOkResponse, GetOrchestrationProcessSummaryProps, GetOrchestrationProcessSummaryQueryQueryParams, } from './hooks/useGetOrchestrationProcessSummaryQuery';
|
|
@@ -41,58 +45,61 @@ export type { GetReleaseReleaseIdEnvironmentDashboardErrorResponse, GetReleaseRe
|
|
|
41
45
|
export { getReleaseReleaseIdEnvironmentDashboard, useGetReleaseReleaseIdEnvironmentDashboardQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentDashboardQuery';
|
|
42
46
|
export type { GetReleaseReleaseIdEnvironmentsErrorResponse, GetReleaseReleaseIdEnvironmentsOkResponse, GetReleaseReleaseIdEnvironmentsProps, GetReleaseReleaseIdEnvironmentsQueryPathParams, GetReleaseReleaseIdEnvironmentsQueryQueryParams, } from './hooks/useGetReleaseReleaseIdEnvironmentsQuery';
|
|
43
47
|
export { getReleaseReleaseIdEnvironments, useGetReleaseReleaseIdEnvironmentsQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentsQuery';
|
|
44
|
-
export type { PostOrchestrationActivityInputStoreErrorResponse, PostOrchestrationActivityInputStoreMutationQueryParams, PostOrchestrationActivityInputStoreOkResponse, PostOrchestrationActivityInputStoreProps, PostOrchestrationActivityInputStoreRequestBody, } from './hooks/usePostOrchestrationActivityInputStoreMutation';
|
|
45
|
-
export { postOrchestrationActivityInputStore, usePostOrchestrationActivityInputStoreMutation, } from './hooks/usePostOrchestrationActivityInputStoreMutation';
|
|
46
48
|
export type { PostOrchestrationActivityErrorResponse, PostOrchestrationActivityMutationQueryParams, PostOrchestrationActivityOkResponse, PostOrchestrationActivityProps, PostOrchestrationActivityRequestBody, } from './hooks/usePostOrchestrationActivityMutation';
|
|
47
49
|
export { postOrchestrationActivity, usePostOrchestrationActivityMutation, } from './hooks/usePostOrchestrationActivityMutation';
|
|
48
|
-
export type {
|
|
49
|
-
export {
|
|
50
|
+
export type { PostOrchestrationProcessAttachedReleaseGroupsErrorResponse, PostOrchestrationProcessAttachedReleaseGroupsMutationPathParams, PostOrchestrationProcessAttachedReleaseGroupsMutationQueryParams, PostOrchestrationProcessAttachedReleaseGroupsOkResponse, PostOrchestrationProcessAttachedReleaseGroupsProps, PostOrchestrationProcessAttachedReleaseGroupsRequestBody, } from './hooks/usePostOrchestrationProcessAttachedReleaseGroupsMutation';
|
|
51
|
+
export { postOrchestrationProcessAttachedReleaseGroups, usePostOrchestrationProcessAttachedReleaseGroupsMutation, } from './hooks/usePostOrchestrationProcessAttachedReleaseGroupsMutation';
|
|
52
|
+
export type { PostOrchestrationProcessInputErrorResponse, PostOrchestrationProcessInputMutationPathParams, PostOrchestrationProcessInputMutationQueryParams, PostOrchestrationProcessInputOkResponse, PostOrchestrationProcessInputProps, PostOrchestrationProcessInputRequestBody, } from './hooks/usePostOrchestrationProcessInputMutation';
|
|
53
|
+
export { postOrchestrationProcessInput, usePostOrchestrationProcessInputMutation, } from './hooks/usePostOrchestrationProcessInputMutation';
|
|
50
54
|
export type { PostOrchestrationProcessErrorResponse, PostOrchestrationProcessMutationQueryParams, PostOrchestrationProcessOkResponse, PostOrchestrationProcessProps, PostOrchestrationProcessRequestBody, } from './hooks/usePostOrchestrationProcessMutation';
|
|
51
55
|
export { postOrchestrationProcess, usePostOrchestrationProcessMutation, } from './hooks/usePostOrchestrationProcessMutation';
|
|
52
56
|
export type { PostReleaseGroupErrorResponse, PostReleaseGroupMutationQueryParams, PostReleaseGroupOkResponse, PostReleaseGroupProps, PostReleaseGroupRequestBody, } from './hooks/usePostReleaseGroupMutation';
|
|
53
57
|
export { postReleaseGroup, usePostReleaseGroupMutation } from './hooks/usePostReleaseGroupMutation';
|
|
54
58
|
export type { PostReleaseSummaryErrorResponse, PostReleaseSummaryMutationQueryParams, PostReleaseSummaryOkResponse, PostReleaseSummaryProps, PostReleaseSummaryRequestBody, } from './hooks/usePostReleaseSummaryMutation';
|
|
55
59
|
export { postReleaseSummary, usePostReleaseSummaryMutation, } from './hooks/usePostReleaseSummaryMutation';
|
|
56
|
-
export type { PutOrchestrationActivityInputStoreErrorResponse, PutOrchestrationActivityInputStoreMutationPathParams, PutOrchestrationActivityInputStoreMutationQueryParams, PutOrchestrationActivityInputStoreOkResponse, PutOrchestrationActivityInputStoreProps, PutOrchestrationActivityInputStoreRequestBody, } from './hooks/usePutOrchestrationActivityInputStoreMutation';
|
|
57
|
-
export { putOrchestrationActivityInputStore, usePutOrchestrationActivityInputStoreMutation, } from './hooks/usePutOrchestrationActivityInputStoreMutation';
|
|
58
60
|
export type { PutOrchestrationActivityErrorResponse, PutOrchestrationActivityMutationPathParams, PutOrchestrationActivityMutationQueryParams, PutOrchestrationActivityOkResponse, PutOrchestrationActivityProps, PutOrchestrationActivityRequestBody, } from './hooks/usePutOrchestrationActivityMutation';
|
|
59
61
|
export { putOrchestrationActivity, usePutOrchestrationActivityMutation, } from './hooks/usePutOrchestrationActivityMutation';
|
|
60
|
-
export type {
|
|
61
|
-
export {
|
|
62
|
+
export type { PutOrchestrationProcessInputErrorResponse, PutOrchestrationProcessInputMutationPathParams, PutOrchestrationProcessInputMutationQueryParams, PutOrchestrationProcessInputOkResponse, PutOrchestrationProcessInputProps, PutOrchestrationProcessInputRequestBody, } from './hooks/usePutOrchestrationProcessInputMutation';
|
|
63
|
+
export { putOrchestrationProcessInput, usePutOrchestrationProcessInputMutation, } from './hooks/usePutOrchestrationProcessInputMutation';
|
|
62
64
|
export type { PutOrchestrationProcessErrorResponse, PutOrchestrationProcessMutationPathParams, PutOrchestrationProcessMutationQueryParams, PutOrchestrationProcessOkResponse, PutOrchestrationProcessProps, PutOrchestrationProcessRequestBody, } from './hooks/usePutOrchestrationProcessMutation';
|
|
63
65
|
export { putOrchestrationProcess, usePutOrchestrationProcessMutation, } from './hooks/usePutOrchestrationProcessMutation';
|
|
64
66
|
export type { PutReleaseGroupErrorResponse, PutReleaseGroupMutationPathParams, PutReleaseGroupMutationQueryParams, PutReleaseGroupOkResponse, PutReleaseGroupProps, PutReleaseGroupRequestBody, } from './hooks/usePutReleaseGroupMutation';
|
|
65
67
|
export { putReleaseGroup, usePutReleaseGroupMutation } from './hooks/usePutReleaseGroupMutation';
|
|
66
68
|
export type { PutReleaseReleaseIdErrorResponse, PutReleaseReleaseIdMutationPathParams, PutReleaseReleaseIdOkResponse, PutReleaseReleaseIdProps, PutReleaseReleaseIdRequestBody, } from './hooks/usePutReleaseReleaseIdMutation';
|
|
67
69
|
export { putReleaseReleaseId, usePutReleaseReleaseIdMutation, } from './hooks/usePutReleaseReleaseIdMutation';
|
|
68
|
-
export type { StartReleaseExecutionErrorResponse, StartReleaseExecutionMutationPathParams, StartReleaseExecutionMutationQueryParams, StartReleaseExecutionOkResponse, StartReleaseExecutionProps, } from './hooks/useStartReleaseExecutionMutation';
|
|
70
|
+
export type { StartReleaseExecutionErrorResponse, StartReleaseExecutionMutationPathParams, StartReleaseExecutionMutationQueryParams, StartReleaseExecutionOkResponse, StartReleaseExecutionProps, StartReleaseExecutionRequestBody, } from './hooks/useStartReleaseExecutionMutation';
|
|
69
71
|
export { startReleaseExecution, useStartReleaseExecutionMutation, } from './hooks/useStartReleaseExecutionMutation';
|
|
70
72
|
export type { UpdateReleaseConflictErrorResponse, UpdateReleaseConflictMutationPathParams, UpdateReleaseConflictOkResponse, UpdateReleaseConflictProps, UpdateReleaseConflictRequestBody, } from './hooks/useUpdateReleaseConflictMutation';
|
|
71
73
|
export { updateReleaseConflict, useUpdateReleaseConflictMutation, } from './hooks/useUpdateReleaseConflictMutation';
|
|
72
|
-
export type { CreateOrchestrationActivityInputStoreRequestRequestBody } from './requestBodies/CreateOrchestrationActivityInputStoreRequestRequestBody';
|
|
73
74
|
export type { CreateOrchestrationActivityRequestRequestBody } from './requestBodies/CreateOrchestrationActivityRequestRequestBody';
|
|
75
|
+
export type { CreateOrchestrationProcessInputRequestRequestBody } from './requestBodies/CreateOrchestrationProcessInputRequestRequestBody';
|
|
74
76
|
export type { CreateOrchestrationProcessRequestRequestBody } from './requestBodies/CreateOrchestrationProcessRequestRequestBody';
|
|
75
77
|
export type { CreateReleaseGroupRequestRequestBody } from './requestBodies/CreateReleaseGroupRequestRequestBody';
|
|
78
|
+
export type { OrchestrationProcessAttachedReleaseGroupsRequestRequestBody } from './requestBodies/OrchestrationProcessAttachedReleaseGroupsRequestRequestBody';
|
|
76
79
|
export type { ReleaseSummaryRequestRequestBody } from './requestBodies/ReleaseSummaryRequestRequestBody';
|
|
77
80
|
export type { UpdateOrchestrationActivityRequestRequestBody } from './requestBodies/UpdateOrchestrationActivityRequestRequestBody';
|
|
81
|
+
export type { UpdateOrchestrationProcessInputRequestRequestBody } from './requestBodies/UpdateOrchestrationProcessInputRequestRequestBody';
|
|
78
82
|
export type { UpdateOrchestrationProcessRequestRequestBody } from './requestBodies/UpdateOrchestrationProcessRequestRequestBody';
|
|
79
83
|
export type { UpdateReleaseGroupRequestRequestBody } from './requestBodies/UpdateReleaseGroupRequestRequestBody';
|
|
80
84
|
export type { UpdateReleaseRequestRequestBody } from './requestBodies/UpdateReleaseRequestRequestBody';
|
|
81
|
-
export type {
|
|
85
|
+
export type { ActivityInputsResponseResponse } from './responses/ActivityInputsResponseResponse';
|
|
82
86
|
export type { CreateOrchestrationActivityResponseResponse } from './responses/CreateOrchestrationActivityResponseResponse';
|
|
83
|
-
export type {
|
|
87
|
+
export type { CreateOrchestrationProcessInputResponseResponse } from './responses/CreateOrchestrationProcessInputResponseResponse';
|
|
84
88
|
export type { CreateOrchestrationProcessResponseResponse } from './responses/CreateOrchestrationProcessResponseResponse';
|
|
85
89
|
export type { CreateReleaseGroupResponseResponse } from './responses/CreateReleaseGroupResponseResponse';
|
|
86
90
|
export type { DeleteReleaseGroupResponseResponse } from './responses/DeleteReleaseGroupResponseResponse';
|
|
87
91
|
export type { EnvironmentDashboardResponseResponse } from './responses/EnvironmentDashboardResponseResponse';
|
|
88
92
|
export type { EnvironmentListPerReleaseResponseResponse } from './responses/EnvironmentListPerReleaseResponseResponse';
|
|
89
93
|
export type { ErrorResponseResponse } from './responses/ErrorResponseResponse';
|
|
94
|
+
export type { FreezeDetailsResponseResponse } from './responses/FreezeDetailsResponseResponse';
|
|
95
|
+
export type { FreezeListResponseResponse } from './responses/FreezeListResponseResponse';
|
|
90
96
|
export type { GetOrchestrationActivityResponseResponse } from './responses/GetOrchestrationActivityResponseResponse';
|
|
97
|
+
export type { GetOrchestrationProcessInputResponseResponse } from './responses/GetOrchestrationProcessInputResponseResponse';
|
|
91
98
|
export type { GetOrchestrationProcessResponseResponse } from './responses/GetOrchestrationProcessResponseResponse';
|
|
92
99
|
export type { GetReleaseGroupResponseResponse } from './responses/GetReleaseGroupResponseResponse';
|
|
93
|
-
export type { OrchestrationActivityInputStoreSummaryResponseResponse } from './responses/OrchestrationActivityInputStoreSummaryResponseResponse';
|
|
94
100
|
export type { OrchestrationActivityListByProcessIdentifierResponseResponse } from './responses/OrchestrationActivityListByProcessIdentifierResponseResponse';
|
|
95
|
-
export type {
|
|
101
|
+
export type { OrchestrationProcessAttachedReleaseGroupsResponseResponse } from './responses/OrchestrationProcessAttachedReleaseGroupsResponseResponse';
|
|
102
|
+
export type { OrchestrationProcessInputSummaryResponseResponse } from './responses/OrchestrationProcessInputSummaryResponseResponse';
|
|
96
103
|
export type { OrchestrationProcessSummaryResponseResponse } from './responses/OrchestrationProcessSummaryResponseResponse';
|
|
97
104
|
export type { ReleaseActivitiesResponseResponse } from './responses/ReleaseActivitiesResponseResponse';
|
|
98
105
|
export type { ReleaseApprovalsResponseResponse } from './responses/ReleaseApprovalsResponseResponse';
|
|
@@ -101,12 +108,18 @@ export type { ReleaseDetailsResponseResponse } from './responses/ReleaseDetailsR
|
|
|
101
108
|
export type { ReleaseGroupComponentResponseResponse } from './responses/ReleaseGroupComponentResponseResponse';
|
|
102
109
|
export type { ReleaseGroupSummaryResponseResponse } from './responses/ReleaseGroupSummaryResponseResponse';
|
|
103
110
|
export type { ReleaseSummaryResponseResponse } from './responses/ReleaseSummaryResponseResponse';
|
|
111
|
+
export type { UpdateOrchestrationActivityResponseResponse } from './responses/UpdateOrchestrationActivityResponseResponse';
|
|
112
|
+
export type { UpdateOrchestrationProcessInputResponseResponse } from './responses/UpdateOrchestrationProcessInputResponseResponse';
|
|
113
|
+
export type { UpdateOrchestrationProcessResponseResponse } from './responses/UpdateOrchestrationProcessResponseResponse';
|
|
104
114
|
export type { UpdateReleaseConflictResponseResponse } from './responses/UpdateReleaseConflictResponseResponse';
|
|
105
115
|
export type { UpdateReleaseGroupResponseResponse } from './responses/UpdateReleaseGroupResponseResponse';
|
|
106
116
|
export type { UpdateReleaseResponseResponse } from './responses/UpdateReleaseResponseResponse';
|
|
117
|
+
export type { ActivityInputYaml } from './schemas/ActivityInputYaml';
|
|
118
|
+
export type { ActivityInputsResponse } from './schemas/ActivityInputsResponse';
|
|
107
119
|
export type { ActivityType } from './schemas/ActivityType';
|
|
108
120
|
export type { ApprovalInfoDto } from './schemas/ApprovalInfoDto';
|
|
109
121
|
export type { ApprovedByDto } from './schemas/ApprovedByDto';
|
|
122
|
+
export type { AttachedReleaseGroupDto } from './schemas/AttachedReleaseGroupDto';
|
|
110
123
|
export type { ConflictStatus } from './schemas/ConflictStatus';
|
|
111
124
|
export type { CreateOrchestrationActivityInputSetRequestType } from './schemas/CreateOrchestrationActivityInputSetRequestType';
|
|
112
125
|
export type { CreateOrchestrationActivityRequestType } from './schemas/CreateOrchestrationActivityRequestType';
|
|
@@ -115,22 +128,32 @@ export type { EnvironmentDto } from './schemas/EnvironmentDto';
|
|
|
115
128
|
export type { EnvironmentType } from './schemas/EnvironmentType';
|
|
116
129
|
export type { Error } from './schemas/Error';
|
|
117
130
|
export type { ExecutionConflict } from './schemas/ExecutionConflict';
|
|
131
|
+
export type { FreezeDetailsDto } from './schemas/FreezeDetailsDto';
|
|
132
|
+
export type { FreezeEntitiesDto } from './schemas/FreezeEntitiesDto';
|
|
133
|
+
export type { FreezeListItemDto } from './schemas/FreezeListItemDto';
|
|
134
|
+
export type { FreezeListResponseDto } from './schemas/FreezeListResponseDto';
|
|
118
135
|
export type { Freq } from './schemas/Freq';
|
|
119
136
|
export type { GetReleaseGroupResponse } from './schemas/GetReleaseGroupResponse';
|
|
137
|
+
export type { GlobalReleaseInputYaml } from './schemas/GlobalReleaseInputYaml';
|
|
138
|
+
export type { InputVariable } from './schemas/InputVariable';
|
|
139
|
+
export type { InputVariableType } from './schemas/InputVariableType';
|
|
120
140
|
export type { LastUpdatedByDto } from './schemas/LastUpdatedByDto';
|
|
121
141
|
export type { NextRequest } from './schemas/NextRequest';
|
|
122
|
-
export type {
|
|
142
|
+
export type { OrchestrationActivityPipelineYaml } from './schemas/OrchestrationActivityPipelineYaml';
|
|
143
|
+
export type { OrchestrationActivityProcessYaml } from './schemas/OrchestrationActivityProcessYaml';
|
|
123
144
|
export type { OrchestrationActivityYaml } from './schemas/OrchestrationActivityYaml';
|
|
124
145
|
export type { OrchestrationActivityYamlDto } from './schemas/OrchestrationActivityYamlDto';
|
|
125
146
|
export type { OrchestrationExecutionActivity } from './schemas/OrchestrationExecutionActivity';
|
|
126
147
|
export type { OrchestrationExecutionPhase } from './schemas/OrchestrationExecutionPhase';
|
|
127
148
|
export type { OrchestrationPhaseYaml } from './schemas/OrchestrationPhaseYaml';
|
|
128
149
|
export type { OrchestrationProcessDto } from './schemas/OrchestrationProcessDto';
|
|
129
|
-
export type {
|
|
150
|
+
export type { OrchestrationProcessInputYaml } from './schemas/OrchestrationProcessInputYaml';
|
|
130
151
|
export type { OrchestrationReleaseProcessYaml } from './schemas/OrchestrationReleaseProcessYaml';
|
|
131
152
|
export type { Pageable } from './schemas/Pageable';
|
|
132
153
|
export type { PageableSort } from './schemas/PageableSort';
|
|
133
|
-
export type {
|
|
154
|
+
export type { PhaseInputYaml } from './schemas/PhaseInputYaml';
|
|
155
|
+
export type { PhaseReleaseInputYaml } from './schemas/PhaseReleaseInputYaml';
|
|
156
|
+
export type { ProcessInputSummaryDto } from './schemas/ProcessInputSummaryDto';
|
|
134
157
|
export type { ReleaseActivity } from './schemas/ReleaseActivity';
|
|
135
158
|
export type { ReleaseApprovalDto } from './schemas/ReleaseApprovalDto';
|
|
136
159
|
export type { ReleaseApprovalType } from './schemas/ReleaseApprovalType';
|
|
@@ -141,6 +164,7 @@ export type { ReleaseDto } from './schemas/ReleaseDto';
|
|
|
141
164
|
export type { ReleaseFrequency } from './schemas/ReleaseFrequency';
|
|
142
165
|
export type { ReleaseGroupDto } from './schemas/ReleaseGroupDto';
|
|
143
166
|
export type { ReleaseGroupYaml } from './schemas/ReleaseGroupYaml';
|
|
167
|
+
export type { ReleaseInputYaml } from './schemas/ReleaseInputYaml';
|
|
144
168
|
export type { ReleaseType } from './schemas/ReleaseType';
|
|
145
169
|
export type { RepeatUnit } from './schemas/RepeatUnit';
|
|
146
170
|
export type { ServiceInfoDto } from './schemas/ServiceInfoDto';
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
export { deleteReleaseGroup, useDeleteReleaseGroupMutation, } from './hooks/useDeleteReleaseGroupMutation';
|
|
2
|
+
export { getFreezeDetails, useGetFreezeDetailsQuery } from './hooks/useGetFreezeDetailsQuery';
|
|
3
|
+
export { getFreezeList, useGetFreezeListQuery } from './hooks/useGetFreezeListQuery';
|
|
2
4
|
export { getOrchestrationActivitiesByAcitivityRefs, useGetOrchestrationActivitiesByAcitivityRefsMutation, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
|
|
3
5
|
export { getOrchestrationActivitiesByProcessIdentifier, useGetOrchestrationActivitiesByProcessIdentifierQuery, } from './hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery';
|
|
4
|
-
export {
|
|
5
|
-
export { getOrchestrationActivityInputStoreSummary, useGetOrchestrationActivityInputStoreSummaryQuery, } from './hooks/useGetOrchestrationActivityInputStoreSummaryQuery';
|
|
6
|
+
export { getOrchestrationActivityInputs, useGetOrchestrationActivityInputsQuery, } from './hooks/useGetOrchestrationActivityInputsQuery';
|
|
6
7
|
export { getOrchestrationActivity, useGetOrchestrationActivityQuery, } from './hooks/useGetOrchestrationActivityQuery';
|
|
7
8
|
export { getOrchestrationExecutionActivities, useGetOrchestrationExecutionActivitiesQuery, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
|
|
8
9
|
export { getOrchestrationExecutionPhases, useGetOrchestrationExecutionPhasesQuery, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
|
|
9
|
-
export {
|
|
10
|
+
export { getOrchestrationProcessInput, useGetOrchestrationProcessInputQuery, } from './hooks/useGetOrchestrationProcessInputQuery';
|
|
11
|
+
export { getOrchestrationProcessInputSummary, useGetOrchestrationProcessInputSummaryQuery, } from './hooks/useGetOrchestrationProcessInputSummaryQuery';
|
|
10
12
|
export { getOrchestrationProcess, useGetOrchestrationProcessQuery, } from './hooks/useGetOrchestrationProcessQuery';
|
|
11
13
|
export { getOrchestrationProcessSummary, useGetOrchestrationProcessSummaryQuery, } from './hooks/useGetOrchestrationProcessSummaryQuery';
|
|
12
14
|
export { getReleaseActivities, useGetReleaseActivitiesQuery, } from './hooks/useGetReleaseActivitiesQuery';
|
|
@@ -19,15 +21,14 @@ export { getRelease, useGetReleaseQuery } from './hooks/useGetReleaseQuery';
|
|
|
19
21
|
export { getReleaseReleaseIdApprovals, useGetReleaseReleaseIdApprovalsQuery, } from './hooks/useGetReleaseReleaseIdApprovalsQuery';
|
|
20
22
|
export { getReleaseReleaseIdEnvironmentDashboard, useGetReleaseReleaseIdEnvironmentDashboardQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentDashboardQuery';
|
|
21
23
|
export { getReleaseReleaseIdEnvironments, useGetReleaseReleaseIdEnvironmentsQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentsQuery';
|
|
22
|
-
export { postOrchestrationActivityInputStore, usePostOrchestrationActivityInputStoreMutation, } from './hooks/usePostOrchestrationActivityInputStoreMutation';
|
|
23
24
|
export { postOrchestrationActivity, usePostOrchestrationActivityMutation, } from './hooks/usePostOrchestrationActivityMutation';
|
|
24
|
-
export {
|
|
25
|
+
export { postOrchestrationProcessAttachedReleaseGroups, usePostOrchestrationProcessAttachedReleaseGroupsMutation, } from './hooks/usePostOrchestrationProcessAttachedReleaseGroupsMutation';
|
|
26
|
+
export { postOrchestrationProcessInput, usePostOrchestrationProcessInputMutation, } from './hooks/usePostOrchestrationProcessInputMutation';
|
|
25
27
|
export { postOrchestrationProcess, usePostOrchestrationProcessMutation, } from './hooks/usePostOrchestrationProcessMutation';
|
|
26
28
|
export { postReleaseGroup, usePostReleaseGroupMutation } from './hooks/usePostReleaseGroupMutation';
|
|
27
29
|
export { postReleaseSummary, usePostReleaseSummaryMutation, } from './hooks/usePostReleaseSummaryMutation';
|
|
28
|
-
export { putOrchestrationActivityInputStore, usePutOrchestrationActivityInputStoreMutation, } from './hooks/usePutOrchestrationActivityInputStoreMutation';
|
|
29
30
|
export { putOrchestrationActivity, usePutOrchestrationActivityMutation, } from './hooks/usePutOrchestrationActivityMutation';
|
|
30
|
-
export {
|
|
31
|
+
export { putOrchestrationProcessInput, usePutOrchestrationProcessInputMutation, } from './hooks/usePutOrchestrationProcessInputMutation';
|
|
31
32
|
export { putOrchestrationProcess, usePutOrchestrationProcessMutation, } from './hooks/usePutOrchestrationProcessMutation';
|
|
32
33
|
export { putReleaseGroup, usePutReleaseGroupMutation } from './hooks/usePutReleaseGroupMutation';
|
|
33
34
|
export { putReleaseReleaseId, usePutReleaseReleaseIdMutation, } from './hooks/usePutReleaseReleaseIdMutation';
|
package/dist/rmg-service/src/services/requestBodies/CreateReleaseGroupRequestRequestBody.d.ts
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
1
|
export interface CreateReleaseGroupRequestRequestBody {
|
|
2
|
-
|
|
2
|
+
/**
|
|
3
|
+
* Identifier of the orchestration process
|
|
4
|
+
*/
|
|
5
|
+
processIdentifier?: string;
|
|
6
|
+
/**
|
|
7
|
+
* Identifier of the orchestration process input
|
|
8
|
+
*/
|
|
9
|
+
processInputIdentifier?: string;
|
|
10
|
+
yaml: string;
|
|
3
11
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface OrchestrationProcessAttachedReleaseGroupsRequestRequestBody {
|
|
2
|
+
/**
|
|
3
|
+
* Optional organization identifier to filter processes
|
|
4
|
+
*/
|
|
5
|
+
filterOrgIdentifier?: string;
|
|
6
|
+
/**
|
|
7
|
+
* Optional project identifier to filter processes
|
|
8
|
+
*/
|
|
9
|
+
filterProjectIdentifier?: string;
|
|
10
|
+
}
|
package/dist/rmg-service/src/services/requestBodies/UpdateReleaseGroupRequestRequestBody.d.ts
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
1
|
export interface UpdateReleaseGroupRequestRequestBody {
|
|
2
|
-
|
|
2
|
+
/**
|
|
3
|
+
* Identifier of the orchestration process
|
|
4
|
+
*/
|
|
5
|
+
processIdentifier?: string;
|
|
6
|
+
/**
|
|
7
|
+
* Identifier of the orchestration process input
|
|
8
|
+
*/
|
|
9
|
+
processInputIdentifier?: string;
|
|
10
|
+
yaml: string;
|
|
3
11
|
}
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
export interface UpdateReleaseRequestRequestBody {
|
|
2
2
|
duration: string;
|
|
3
|
+
/**
|
|
4
|
+
* Identifier of the orchestration process
|
|
5
|
+
*/
|
|
6
|
+
processIdentifier?: string;
|
|
7
|
+
/**
|
|
8
|
+
* Identifier of the orchestration process input
|
|
9
|
+
*/
|
|
10
|
+
processInputIdentifier?: string;
|
|
3
11
|
startTs: number;
|
|
4
12
|
yaml: string;
|
|
5
13
|
}
|
package/dist/rmg-service/src/services/responses/GetOrchestrationProcessInputResponseResponse.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface GetOrchestrationProcessInputResponseResponse {
|
|
2
|
+
/**
|
|
3
|
+
* Identifier of the orchestration process input
|
|
4
|
+
*/
|
|
5
|
+
identifier: string;
|
|
6
|
+
/**
|
|
7
|
+
* Identifier of the orchestration process
|
|
8
|
+
*/
|
|
9
|
+
processIdentifier: string;
|
|
10
|
+
/**
|
|
11
|
+
* YAML configuration of the orchestration process input
|
|
12
|
+
*/
|
|
13
|
+
yaml: string;
|
|
14
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { AttachedReleaseGroupDto } from '../schemas/AttachedReleaseGroupDto';
|
|
2
2
|
import type { Pageable } from '../schemas/Pageable';
|
|
3
3
|
import type { PageableSort } from '../schemas/PageableSort';
|
|
4
|
-
export interface
|
|
5
|
-
content:
|
|
4
|
+
export interface OrchestrationProcessAttachedReleaseGroupsResponseResponse {
|
|
5
|
+
content: AttachedReleaseGroupDto[];
|
|
6
6
|
empty: boolean;
|
|
7
7
|
first: boolean;
|
|
8
8
|
last: boolean;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ProcessInputSummaryDto } from '../schemas/ProcessInputSummaryDto';
|
|
2
2
|
import type { Pageable } from '../schemas/Pageable';
|
|
3
3
|
import type { PageableSort } from '../schemas/PageableSort';
|
|
4
|
-
export interface
|
|
5
|
-
content:
|
|
4
|
+
export interface OrchestrationProcessInputSummaryResponseResponse {
|
|
5
|
+
content: ProcessInputSummaryDto[];
|
|
6
6
|
empty: boolean;
|
|
7
7
|
first: boolean;
|
|
8
8
|
last: boolean;
|
package/dist/rmg-service/src/services/responses/OrchestrationProcessInputSummaryResponseResponse.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/rmg-service/src/services/responses/UpdateOrchestrationProcessInputResponseResponse.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface UpdateOrchestrationProcessInputResponseResponse {
|
|
2
|
+
/**
|
|
3
|
+
* Identifier of the updated orchestration process input
|
|
4
|
+
*/
|
|
5
|
+
identifier: string;
|
|
6
|
+
/**
|
|
7
|
+
* Identifier of the orchestration process
|
|
8
|
+
*/
|
|
9
|
+
processIdentifier: string;
|
|
10
|
+
/**
|
|
11
|
+
* YAML configuration of the updated orchestration process input
|
|
12
|
+
*/
|
|
13
|
+
yaml: string;
|
|
14
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export interface AttachedReleaseGroupDto {
|
|
2
|
+
/**
|
|
3
|
+
* Account identifier of the release group
|
|
4
|
+
*/
|
|
5
|
+
accountIdentifier: string;
|
|
6
|
+
/**
|
|
7
|
+
* Unique identifier of the release group
|
|
8
|
+
*/
|
|
9
|
+
id: string;
|
|
10
|
+
/**
|
|
11
|
+
* Release group identifier
|
|
12
|
+
*/
|
|
13
|
+
identifier: string;
|
|
14
|
+
/**
|
|
15
|
+
* Name of the release group
|
|
16
|
+
*/
|
|
17
|
+
name: string;
|
|
18
|
+
/**
|
|
19
|
+
* Organization identifier of the release group
|
|
20
|
+
*/
|
|
21
|
+
orgIdentifier?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Project identifier of the release group
|
|
24
|
+
*/
|
|
25
|
+
projectIdentifier?: string;
|
|
26
|
+
}
|
|
@@ -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 @@
|
|
|
1
|
+
export {};
|
|
@@ -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
|
+
}
|