@harnessio/react-rmg-service-client 0.17.0 → 0.19.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/useGetOrchestrationActivitiesByAcitivityRefsMutation.d.ts +34 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation.js +14 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery.d.ts +31 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery.js +14 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputStoreQuery.d.ts +33 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputStoreQuery.js +14 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputStoreSummaryQuery.d.ts +25 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityInputStoreSummaryQuery.js +14 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityQuery.d.ts +25 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationActivityQuery.js +14 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionActivitiesQuery.d.ts +39 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionActivitiesQuery.js +19 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionPhasesQuery.d.ts +38 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionPhasesQuery.js +14 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessInputStoreSummaryQuery.d.ts +25 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessInputStoreSummaryQuery.js +14 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessQuery.js +1 -1
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessSummaryQuery.js +1 -1
- package/dist/rmg-service/src/services/hooks/usePostOrchestrationActivityInputStoreMutation.d.ts +25 -0
- package/dist/rmg-service/src/services/hooks/usePostOrchestrationActivityInputStoreMutation.js +14 -0
- package/dist/rmg-service/src/services/hooks/usePostOrchestrationActivityMutation.js +1 -1
- package/dist/rmg-service/src/services/hooks/usePostOrchestrationProcessInputStoreMutation.d.ts +41 -0
- package/dist/rmg-service/src/services/hooks/usePostOrchestrationProcessInputStoreMutation.js +14 -0
- package/dist/rmg-service/src/services/hooks/usePostOrchestrationProcessMutation.js +1 -1
- package/dist/rmg-service/src/services/hooks/usePutOrchestrationActivityInputStoreMutation.d.ts +31 -0
- package/dist/rmg-service/src/services/hooks/usePutOrchestrationActivityInputStoreMutation.js +14 -0
- package/dist/rmg-service/src/services/hooks/usePutOrchestrationActivityMutation.d.ts +27 -0
- package/dist/rmg-service/src/services/hooks/usePutOrchestrationActivityMutation.js +14 -0
- package/dist/rmg-service/src/services/hooks/usePutOrchestrationProcessInputStoreMutation.d.ts +39 -0
- package/dist/rmg-service/src/services/hooks/usePutOrchestrationProcessInputStoreMutation.js +14 -0
- package/dist/rmg-service/src/services/hooks/usePutOrchestrationProcessMutation.d.ts +27 -0
- package/dist/rmg-service/src/services/hooks/usePutOrchestrationProcessMutation.js +14 -0
- package/dist/rmg-service/src/services/index.d.ts +47 -5
- package/dist/rmg-service/src/services/index.js +14 -1
- package/dist/rmg-service/src/services/requestBodies/CreateOrchestrationActivityInputStoreRequestRequestBody.d.ts +6 -0
- package/dist/rmg-service/src/services/requestBodies/UpdateOrchestrationActivityRequestRequestBody.d.ts +3 -0
- package/dist/rmg-service/src/services/requestBodies/UpdateOrchestrationProcessRequestRequestBody.d.ts +3 -0
- package/dist/rmg-service/src/services/responses/{CreateInputSetStoreResponseResponse.d.ts → CreateOrchestrationActivityInputStoreResponseResponse.d.ts} +1 -1
- package/dist/rmg-service/src/services/responses/CreateOrchestrationActivityInputStoreResponseResponse.js +4 -0
- package/dist/rmg-service/src/services/responses/CreateOrchestrationProcessInputStoreResponseResponse.d.ts +6 -0
- package/dist/rmg-service/src/services/responses/CreateOrchestrationProcessInputStoreResponseResponse.js +4 -0
- package/dist/rmg-service/src/services/responses/GetOrchestrationActivityResponseResponse.d.ts +10 -0
- package/dist/rmg-service/src/services/responses/GetOrchestrationActivityResponseResponse.js +4 -0
- package/dist/rmg-service/src/services/responses/OrchestrationActivityInputStoreSummaryResponseResponse.d.ts +16 -0
- package/dist/rmg-service/src/services/responses/OrchestrationActivityInputStoreSummaryResponseResponse.js +1 -0
- package/dist/rmg-service/src/services/responses/OrchestrationActivityListByProcessIdentifierResponseResponse.d.ts +10 -0
- package/dist/rmg-service/src/services/responses/OrchestrationActivityListByProcessIdentifierResponseResponse.js +1 -0
- package/dist/rmg-service/src/services/responses/OrchestrationProcessInputStoreSummaryResponseResponse.d.ts +16 -0
- package/dist/rmg-service/src/services/responses/OrchestrationProcessInputStoreSummaryResponseResponse.js +1 -0
- package/dist/rmg-service/src/services/schemas/CreateOrchestrationActivityInputSetRequestType.d.ts +4 -0
- package/dist/rmg-service/src/services/schemas/CreateOrchestrationActivityInputSetRequestType.js +4 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityInputStoreDto.d.ts +8 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityInputStoreDto.js +1 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityYaml.d.ts +18 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityYaml.js +4 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityYamlDto.d.ts +10 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityYamlDto.js +4 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationExecutionActivity.d.ts +33 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationExecutionActivity.js +1 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationExecutionPhase.d.ts +45 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationExecutionPhase.js +1 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationPhaseYaml.d.ts +24 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationPhaseYaml.js +1 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationProcessInputStoreDto.d.ts +9 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationProcessInputStoreDto.js +1 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationReleaseProcessYaml.d.ts +16 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationReleaseProcessYaml.js +1 -0
- package/dist/rmg-service/src/services/schemas/PipelineOrchestrationActivityYaml.d.ts +62 -0
- package/dist/rmg-service/src/services/schemas/PipelineOrchestrationActivityYaml.js +4 -0
- package/package.json +1 -1
- package/dist/rmg-service/src/services/hooks/usePostInputSetStoreMutation.d.ts +0 -25
- package/dist/rmg-service/src/services/hooks/usePostInputSetStoreMutation.js +0 -14
- package/dist/rmg-service/src/services/requestBodies/CreateInputSetStoreRequestRequestBody.d.ts +0 -6
- package/dist/rmg-service/src/services/schemas/CreateInputSetStoreRequestType.d.ts +0 -4
- /package/dist/rmg-service/src/services/requestBodies/{CreateInputSetStoreRequestRequestBody.js → CreateOrchestrationActivityInputStoreRequestRequestBody.js} +0 -0
- /package/dist/rmg-service/src/services/{responses/CreateInputSetStoreResponseResponse.js → requestBodies/UpdateOrchestrationActivityRequestRequestBody.js} +0 -0
- /package/dist/rmg-service/src/services/{schemas/CreateInputSetStoreRequestType.js → requestBodies/UpdateOrchestrationProcessRequestRequestBody.js} +0 -0
|
@@ -0,0 +1,14 @@
|
|
|
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 putOrchestrationActivity(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/orchestration/activity/${props.identifier}`, method: 'PUT' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Update an orchestration activity with the provided YAML configuration
|
|
11
|
+
*/
|
|
12
|
+
export function usePutOrchestrationActivityMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => putOrchestrationActivity(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface PutOrchestrationProcessInputStoreMutationPathParams {
|
|
6
|
+
identifier: string;
|
|
7
|
+
}
|
|
8
|
+
export interface PutOrchestrationProcessInputStoreMutationQueryParams {
|
|
9
|
+
orgIdentifier?: string;
|
|
10
|
+
projectIdentifier?: string;
|
|
11
|
+
}
|
|
12
|
+
export interface PutOrchestrationProcessInputStoreMutationHeaderParams {
|
|
13
|
+
'Harness-Account': string;
|
|
14
|
+
}
|
|
15
|
+
export type PutOrchestrationProcessInputStoreRequestBody = {
|
|
16
|
+
/**
|
|
17
|
+
* Identifier of the activity
|
|
18
|
+
*/
|
|
19
|
+
activityIdentifier: string;
|
|
20
|
+
/**
|
|
21
|
+
* Reference to the activity input
|
|
22
|
+
*/
|
|
23
|
+
activityInputRef: string;
|
|
24
|
+
/**
|
|
25
|
+
* Identifier of the phase
|
|
26
|
+
*/
|
|
27
|
+
phaseIdentifier: string;
|
|
28
|
+
};
|
|
29
|
+
export type PutOrchestrationProcessInputStoreOkResponse = ResponseWithPagination<unknown>;
|
|
30
|
+
export type PutOrchestrationProcessInputStoreErrorResponse = ErrorResponseResponse;
|
|
31
|
+
export interface PutOrchestrationProcessInputStoreProps extends PutOrchestrationProcessInputStoreMutationPathParams, Omit<FetcherOptions<PutOrchestrationProcessInputStoreMutationQueryParams, PutOrchestrationProcessInputStoreRequestBody, PutOrchestrationProcessInputStoreMutationHeaderParams>, 'url'> {
|
|
32
|
+
queryParams: PutOrchestrationProcessInputStoreMutationQueryParams;
|
|
33
|
+
body: PutOrchestrationProcessInputStoreRequestBody;
|
|
34
|
+
}
|
|
35
|
+
export declare function putOrchestrationProcessInputStore(props: PutOrchestrationProcessInputStoreProps): Promise<PutOrchestrationProcessInputStoreOkResponse>;
|
|
36
|
+
/**
|
|
37
|
+
* Update the process input store to patch activity ref to activity input ref
|
|
38
|
+
*/
|
|
39
|
+
export declare function usePutOrchestrationProcessInputStoreMutation(options?: Omit<UseMutationOptions<PutOrchestrationProcessInputStoreOkResponse, PutOrchestrationProcessInputStoreErrorResponse, PutOrchestrationProcessInputStoreProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<PutOrchestrationProcessInputStoreOkResponse, import("..").Error, PutOrchestrationProcessInputStoreProps, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
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 putOrchestrationProcessInputStore(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/orchestration/process/inputStore/${props.identifier}`, method: 'PUT' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Update the process input store to patch activity ref to activity input ref
|
|
11
|
+
*/
|
|
12
|
+
export function usePutOrchestrationProcessInputStoreMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => putOrchestrationProcessInputStore(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
3
|
+
import type { UpdateOrchestrationProcessRequestRequestBody } from '../requestBodies/UpdateOrchestrationProcessRequestRequestBody';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface PutOrchestrationProcessMutationPathParams {
|
|
7
|
+
identifier: string;
|
|
8
|
+
}
|
|
9
|
+
export interface PutOrchestrationProcessMutationQueryParams {
|
|
10
|
+
orgIdentifier?: string;
|
|
11
|
+
projectIdentifier?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface PutOrchestrationProcessMutationHeaderParams {
|
|
14
|
+
'Harness-Account': string;
|
|
15
|
+
}
|
|
16
|
+
export type PutOrchestrationProcessRequestBody = UpdateOrchestrationProcessRequestRequestBody;
|
|
17
|
+
export type PutOrchestrationProcessOkResponse = ResponseWithPagination<unknown>;
|
|
18
|
+
export type PutOrchestrationProcessErrorResponse = ErrorResponseResponse;
|
|
19
|
+
export interface PutOrchestrationProcessProps extends PutOrchestrationProcessMutationPathParams, Omit<FetcherOptions<PutOrchestrationProcessMutationQueryParams, PutOrchestrationProcessRequestBody, PutOrchestrationProcessMutationHeaderParams>, 'url'> {
|
|
20
|
+
queryParams: PutOrchestrationProcessMutationQueryParams;
|
|
21
|
+
body: PutOrchestrationProcessRequestBody;
|
|
22
|
+
}
|
|
23
|
+
export declare function putOrchestrationProcess(props: PutOrchestrationProcessProps): Promise<PutOrchestrationProcessOkResponse>;
|
|
24
|
+
/**
|
|
25
|
+
* Update an orchestration process with the provided YAML configuration
|
|
26
|
+
*/
|
|
27
|
+
export declare function usePutOrchestrationProcessMutation(options?: Omit<UseMutationOptions<PutOrchestrationProcessOkResponse, PutOrchestrationProcessErrorResponse, PutOrchestrationProcessProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<PutOrchestrationProcessOkResponse, import("..").Error, PutOrchestrationProcessProps, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
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 putOrchestrationProcess(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/orchestration/process/${props.identifier}`, method: 'PUT' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Update an orchestration process with the provided YAML configuration
|
|
11
|
+
*/
|
|
12
|
+
export function usePutOrchestrationProcessMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => putOrchestrationProcess(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -1,6 +1,22 @@
|
|
|
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, 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 { GetOrchestrationExecutionActivitiesErrorResponse, GetOrchestrationExecutionActivitiesOkResponse, GetOrchestrationExecutionActivitiesProps, GetOrchestrationExecutionActivitiesQueryPathParams, GetOrchestrationExecutionActivitiesQueryQueryParams, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
|
|
15
|
+
export { getOrchestrationExecutionActivities, useGetOrchestrationExecutionActivitiesQuery, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
|
|
16
|
+
export type { GetOrchestrationExecutionPhasesErrorResponse, GetOrchestrationExecutionPhasesOkResponse, GetOrchestrationExecutionPhasesProps, GetOrchestrationExecutionPhasesQueryPathParams, GetOrchestrationExecutionPhasesQueryQueryParams, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
|
|
17
|
+
export { getOrchestrationExecutionPhases, useGetOrchestrationExecutionPhasesQuery, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
|
|
18
|
+
export type { GetOrchestrationProcessInputStoreSummaryErrorResponse, GetOrchestrationProcessInputStoreSummaryOkResponse, GetOrchestrationProcessInputStoreSummaryProps, GetOrchestrationProcessInputStoreSummaryQueryQueryParams, } from './hooks/useGetOrchestrationProcessInputStoreSummaryQuery';
|
|
19
|
+
export { getOrchestrationProcessInputStoreSummary, useGetOrchestrationProcessInputStoreSummaryQuery, } from './hooks/useGetOrchestrationProcessInputStoreSummaryQuery';
|
|
4
20
|
export type { GetOrchestrationProcessErrorResponse, GetOrchestrationProcessOkResponse, GetOrchestrationProcessProps, GetOrchestrationProcessQueryPathParams, GetOrchestrationProcessQueryQueryParams, } from './hooks/useGetOrchestrationProcessQuery';
|
|
5
21
|
export { getOrchestrationProcess, useGetOrchestrationProcessQuery, } from './hooks/useGetOrchestrationProcessQuery';
|
|
6
22
|
export type { GetOrchestrationProcessSummaryErrorResponse, GetOrchestrationProcessSummaryOkResponse, GetOrchestrationProcessSummaryProps, GetOrchestrationProcessSummaryQueryQueryParams, } from './hooks/useGetOrchestrationProcessSummaryQuery';
|
|
@@ -25,39 +41,56 @@ export type { GetReleaseReleaseIdEnvironmentDashboardErrorResponse, GetReleaseRe
|
|
|
25
41
|
export { getReleaseReleaseIdEnvironmentDashboard, useGetReleaseReleaseIdEnvironmentDashboardQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentDashboardQuery';
|
|
26
42
|
export type { GetReleaseReleaseIdEnvironmentsErrorResponse, GetReleaseReleaseIdEnvironmentsOkResponse, GetReleaseReleaseIdEnvironmentsProps, GetReleaseReleaseIdEnvironmentsQueryPathParams, GetReleaseReleaseIdEnvironmentsQueryQueryParams, } from './hooks/useGetReleaseReleaseIdEnvironmentsQuery';
|
|
27
43
|
export { getReleaseReleaseIdEnvironments, useGetReleaseReleaseIdEnvironmentsQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentsQuery';
|
|
28
|
-
export type {
|
|
29
|
-
export {
|
|
44
|
+
export type { PostOrchestrationActivityInputStoreErrorResponse, PostOrchestrationActivityInputStoreMutationQueryParams, PostOrchestrationActivityInputStoreOkResponse, PostOrchestrationActivityInputStoreProps, PostOrchestrationActivityInputStoreRequestBody, } from './hooks/usePostOrchestrationActivityInputStoreMutation';
|
|
45
|
+
export { postOrchestrationActivityInputStore, usePostOrchestrationActivityInputStoreMutation, } from './hooks/usePostOrchestrationActivityInputStoreMutation';
|
|
30
46
|
export type { PostOrchestrationActivityErrorResponse, PostOrchestrationActivityMutationQueryParams, PostOrchestrationActivityOkResponse, PostOrchestrationActivityProps, PostOrchestrationActivityRequestBody, } from './hooks/usePostOrchestrationActivityMutation';
|
|
31
47
|
export { postOrchestrationActivity, usePostOrchestrationActivityMutation, } from './hooks/usePostOrchestrationActivityMutation';
|
|
48
|
+
export type { PostOrchestrationProcessInputStoreErrorResponse, PostOrchestrationProcessInputStoreMutationQueryParams, PostOrchestrationProcessInputStoreOkResponse, PostOrchestrationProcessInputStoreProps, PostOrchestrationProcessInputStoreRequestBody, } from './hooks/usePostOrchestrationProcessInputStoreMutation';
|
|
49
|
+
export { postOrchestrationProcessInputStore, usePostOrchestrationProcessInputStoreMutation, } from './hooks/usePostOrchestrationProcessInputStoreMutation';
|
|
32
50
|
export type { PostOrchestrationProcessErrorResponse, PostOrchestrationProcessMutationQueryParams, PostOrchestrationProcessOkResponse, PostOrchestrationProcessProps, PostOrchestrationProcessRequestBody, } from './hooks/usePostOrchestrationProcessMutation';
|
|
33
51
|
export { postOrchestrationProcess, usePostOrchestrationProcessMutation, } from './hooks/usePostOrchestrationProcessMutation';
|
|
34
52
|
export type { PostReleaseGroupErrorResponse, PostReleaseGroupMutationQueryParams, PostReleaseGroupOkResponse, PostReleaseGroupProps, PostReleaseGroupRequestBody, } from './hooks/usePostReleaseGroupMutation';
|
|
35
53
|
export { postReleaseGroup, usePostReleaseGroupMutation } from './hooks/usePostReleaseGroupMutation';
|
|
36
54
|
export type { PostReleaseSummaryErrorResponse, PostReleaseSummaryMutationQueryParams, PostReleaseSummaryOkResponse, PostReleaseSummaryProps, PostReleaseSummaryRequestBody, } from './hooks/usePostReleaseSummaryMutation';
|
|
37
55
|
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
|
+
export type { PutOrchestrationActivityErrorResponse, PutOrchestrationActivityMutationPathParams, PutOrchestrationActivityMutationQueryParams, PutOrchestrationActivityOkResponse, PutOrchestrationActivityProps, PutOrchestrationActivityRequestBody, } from './hooks/usePutOrchestrationActivityMutation';
|
|
59
|
+
export { putOrchestrationActivity, usePutOrchestrationActivityMutation, } from './hooks/usePutOrchestrationActivityMutation';
|
|
60
|
+
export type { PutOrchestrationProcessInputStoreErrorResponse, PutOrchestrationProcessInputStoreMutationPathParams, PutOrchestrationProcessInputStoreMutationQueryParams, PutOrchestrationProcessInputStoreOkResponse, PutOrchestrationProcessInputStoreProps, PutOrchestrationProcessInputStoreRequestBody, } from './hooks/usePutOrchestrationProcessInputStoreMutation';
|
|
61
|
+
export { putOrchestrationProcessInputStore, usePutOrchestrationProcessInputStoreMutation, } from './hooks/usePutOrchestrationProcessInputStoreMutation';
|
|
62
|
+
export type { PutOrchestrationProcessErrorResponse, PutOrchestrationProcessMutationPathParams, PutOrchestrationProcessMutationQueryParams, PutOrchestrationProcessOkResponse, PutOrchestrationProcessProps, PutOrchestrationProcessRequestBody, } from './hooks/usePutOrchestrationProcessMutation';
|
|
63
|
+
export { putOrchestrationProcess, usePutOrchestrationProcessMutation, } from './hooks/usePutOrchestrationProcessMutation';
|
|
38
64
|
export type { PutReleaseGroupErrorResponse, PutReleaseGroupMutationPathParams, PutReleaseGroupMutationQueryParams, PutReleaseGroupOkResponse, PutReleaseGroupProps, PutReleaseGroupRequestBody, } from './hooks/usePutReleaseGroupMutation';
|
|
39
65
|
export { putReleaseGroup, usePutReleaseGroupMutation } from './hooks/usePutReleaseGroupMutation';
|
|
40
66
|
export type { PutReleaseReleaseIdErrorResponse, PutReleaseReleaseIdMutationPathParams, PutReleaseReleaseIdOkResponse, PutReleaseReleaseIdProps, PutReleaseReleaseIdRequestBody, } from './hooks/usePutReleaseReleaseIdMutation';
|
|
41
67
|
export { putReleaseReleaseId, usePutReleaseReleaseIdMutation, } from './hooks/usePutReleaseReleaseIdMutation';
|
|
42
68
|
export type { UpdateReleaseConflictErrorResponse, UpdateReleaseConflictMutationPathParams, UpdateReleaseConflictOkResponse, UpdateReleaseConflictProps, UpdateReleaseConflictRequestBody, } from './hooks/useUpdateReleaseConflictMutation';
|
|
43
69
|
export { updateReleaseConflict, useUpdateReleaseConflictMutation, } from './hooks/useUpdateReleaseConflictMutation';
|
|
44
|
-
export type {
|
|
70
|
+
export type { CreateOrchestrationActivityInputStoreRequestRequestBody } from './requestBodies/CreateOrchestrationActivityInputStoreRequestRequestBody';
|
|
45
71
|
export type { CreateOrchestrationActivityRequestRequestBody } from './requestBodies/CreateOrchestrationActivityRequestRequestBody';
|
|
46
72
|
export type { CreateOrchestrationProcessRequestRequestBody } from './requestBodies/CreateOrchestrationProcessRequestRequestBody';
|
|
47
73
|
export type { CreateReleaseGroupRequestRequestBody } from './requestBodies/CreateReleaseGroupRequestRequestBody';
|
|
48
74
|
export type { ReleaseSummaryRequestRequestBody } from './requestBodies/ReleaseSummaryRequestRequestBody';
|
|
75
|
+
export type { UpdateOrchestrationActivityRequestRequestBody } from './requestBodies/UpdateOrchestrationActivityRequestRequestBody';
|
|
76
|
+
export type { UpdateOrchestrationProcessRequestRequestBody } from './requestBodies/UpdateOrchestrationProcessRequestRequestBody';
|
|
49
77
|
export type { UpdateReleaseGroupRequestRequestBody } from './requestBodies/UpdateReleaseGroupRequestRequestBody';
|
|
50
78
|
export type { UpdateReleaseRequestRequestBody } from './requestBodies/UpdateReleaseRequestRequestBody';
|
|
51
|
-
export type {
|
|
79
|
+
export type { CreateOrchestrationActivityInputStoreResponseResponse } from './responses/CreateOrchestrationActivityInputStoreResponseResponse';
|
|
52
80
|
export type { CreateOrchestrationActivityResponseResponse } from './responses/CreateOrchestrationActivityResponseResponse';
|
|
81
|
+
export type { CreateOrchestrationProcessInputStoreResponseResponse } from './responses/CreateOrchestrationProcessInputStoreResponseResponse';
|
|
53
82
|
export type { CreateOrchestrationProcessResponseResponse } from './responses/CreateOrchestrationProcessResponseResponse';
|
|
54
83
|
export type { CreateReleaseGroupResponseResponse } from './responses/CreateReleaseGroupResponseResponse';
|
|
55
84
|
export type { DeleteReleaseGroupResponseResponse } from './responses/DeleteReleaseGroupResponseResponse';
|
|
56
85
|
export type { EnvironmentDashboardResponseResponse } from './responses/EnvironmentDashboardResponseResponse';
|
|
57
86
|
export type { EnvironmentListPerReleaseResponseResponse } from './responses/EnvironmentListPerReleaseResponseResponse';
|
|
58
87
|
export type { ErrorResponseResponse } from './responses/ErrorResponseResponse';
|
|
88
|
+
export type { GetOrchestrationActivityResponseResponse } from './responses/GetOrchestrationActivityResponseResponse';
|
|
59
89
|
export type { GetOrchestrationProcessResponseResponse } from './responses/GetOrchestrationProcessResponseResponse';
|
|
60
90
|
export type { GetReleaseGroupResponseResponse } from './responses/GetReleaseGroupResponseResponse';
|
|
91
|
+
export type { OrchestrationActivityInputStoreSummaryResponseResponse } from './responses/OrchestrationActivityInputStoreSummaryResponseResponse';
|
|
92
|
+
export type { OrchestrationActivityListByProcessIdentifierResponseResponse } from './responses/OrchestrationActivityListByProcessIdentifierResponseResponse';
|
|
93
|
+
export type { OrchestrationProcessInputStoreSummaryResponseResponse } from './responses/OrchestrationProcessInputStoreSummaryResponseResponse';
|
|
61
94
|
export type { OrchestrationProcessSummaryResponseResponse } from './responses/OrchestrationProcessSummaryResponseResponse';
|
|
62
95
|
export type { ReleaseActivitiesResponseResponse } from './responses/ReleaseActivitiesResponseResponse';
|
|
63
96
|
export type { ReleaseApprovalsResponseResponse } from './responses/ReleaseApprovalsResponseResponse';
|
|
@@ -73,7 +106,7 @@ export type { ActivityType } from './schemas/ActivityType';
|
|
|
73
106
|
export type { ApprovalInfoDto } from './schemas/ApprovalInfoDto';
|
|
74
107
|
export type { ApprovedByDto } from './schemas/ApprovedByDto';
|
|
75
108
|
export type { ConflictStatus } from './schemas/ConflictStatus';
|
|
76
|
-
export type {
|
|
109
|
+
export type { CreateOrchestrationActivityInputSetRequestType } from './schemas/CreateOrchestrationActivityInputSetRequestType';
|
|
77
110
|
export type { CreateOrchestrationActivityRequestType } from './schemas/CreateOrchestrationActivityRequestType';
|
|
78
111
|
export type { EnvironmentDashboardDto } from './schemas/EnvironmentDashboardDto';
|
|
79
112
|
export type { EnvironmentDto } from './schemas/EnvironmentDto';
|
|
@@ -84,9 +117,18 @@ export type { Freq } from './schemas/Freq';
|
|
|
84
117
|
export type { GetReleaseGroupResponse } from './schemas/GetReleaseGroupResponse';
|
|
85
118
|
export type { LastUpdatedByDto } from './schemas/LastUpdatedByDto';
|
|
86
119
|
export type { NextRequest } from './schemas/NextRequest';
|
|
120
|
+
export type { OrchestrationActivityInputStoreDto } from './schemas/OrchestrationActivityInputStoreDto';
|
|
121
|
+
export type { OrchestrationActivityYaml } from './schemas/OrchestrationActivityYaml';
|
|
122
|
+
export type { OrchestrationActivityYamlDto } from './schemas/OrchestrationActivityYamlDto';
|
|
123
|
+
export type { OrchestrationExecutionActivity } from './schemas/OrchestrationExecutionActivity';
|
|
124
|
+
export type { OrchestrationExecutionPhase } from './schemas/OrchestrationExecutionPhase';
|
|
125
|
+
export type { OrchestrationPhaseYaml } from './schemas/OrchestrationPhaseYaml';
|
|
87
126
|
export type { OrchestrationProcessDto } from './schemas/OrchestrationProcessDto';
|
|
127
|
+
export type { OrchestrationProcessInputStoreDto } from './schemas/OrchestrationProcessInputStoreDto';
|
|
128
|
+
export type { OrchestrationReleaseProcessYaml } from './schemas/OrchestrationReleaseProcessYaml';
|
|
88
129
|
export type { Pageable } from './schemas/Pageable';
|
|
89
130
|
export type { PageableSort } from './schemas/PageableSort';
|
|
131
|
+
export type { PipelineOrchestrationActivityYaml } from './schemas/PipelineOrchestrationActivityYaml';
|
|
90
132
|
export type { ReleaseActivity } from './schemas/ReleaseActivity';
|
|
91
133
|
export type { ReleaseApprovalDto } from './schemas/ReleaseApprovalDto';
|
|
92
134
|
export type { ReleaseApprovalType } from './schemas/ReleaseApprovalType';
|
|
@@ -1,4 +1,12 @@
|
|
|
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 { getOrchestrationExecutionActivities, useGetOrchestrationExecutionActivitiesQuery, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
|
|
8
|
+
export { getOrchestrationExecutionPhases, useGetOrchestrationExecutionPhasesQuery, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
|
|
9
|
+
export { getOrchestrationProcessInputStoreSummary, useGetOrchestrationProcessInputStoreSummaryQuery, } from './hooks/useGetOrchestrationProcessInputStoreSummaryQuery';
|
|
2
10
|
export { getOrchestrationProcess, useGetOrchestrationProcessQuery, } from './hooks/useGetOrchestrationProcessQuery';
|
|
3
11
|
export { getOrchestrationProcessSummary, useGetOrchestrationProcessSummaryQuery, } from './hooks/useGetOrchestrationProcessSummaryQuery';
|
|
4
12
|
export { getReleaseActivities, useGetReleaseActivitiesQuery, } from './hooks/useGetReleaseActivitiesQuery';
|
|
@@ -11,11 +19,16 @@ export { getRelease, useGetReleaseQuery } from './hooks/useGetReleaseQuery';
|
|
|
11
19
|
export { getReleaseReleaseIdApprovals, useGetReleaseReleaseIdApprovalsQuery, } from './hooks/useGetReleaseReleaseIdApprovalsQuery';
|
|
12
20
|
export { getReleaseReleaseIdEnvironmentDashboard, useGetReleaseReleaseIdEnvironmentDashboardQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentDashboardQuery';
|
|
13
21
|
export { getReleaseReleaseIdEnvironments, useGetReleaseReleaseIdEnvironmentsQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentsQuery';
|
|
14
|
-
export {
|
|
22
|
+
export { postOrchestrationActivityInputStore, usePostOrchestrationActivityInputStoreMutation, } from './hooks/usePostOrchestrationActivityInputStoreMutation';
|
|
15
23
|
export { postOrchestrationActivity, usePostOrchestrationActivityMutation, } from './hooks/usePostOrchestrationActivityMutation';
|
|
24
|
+
export { postOrchestrationProcessInputStore, usePostOrchestrationProcessInputStoreMutation, } from './hooks/usePostOrchestrationProcessInputStoreMutation';
|
|
16
25
|
export { postOrchestrationProcess, usePostOrchestrationProcessMutation, } from './hooks/usePostOrchestrationProcessMutation';
|
|
17
26
|
export { postReleaseGroup, usePostReleaseGroupMutation } from './hooks/usePostReleaseGroupMutation';
|
|
18
27
|
export { postReleaseSummary, usePostReleaseSummaryMutation, } from './hooks/usePostReleaseSummaryMutation';
|
|
28
|
+
export { putOrchestrationActivityInputStore, usePutOrchestrationActivityInputStoreMutation, } from './hooks/usePutOrchestrationActivityInputStoreMutation';
|
|
29
|
+
export { putOrchestrationActivity, usePutOrchestrationActivityMutation, } from './hooks/usePutOrchestrationActivityMutation';
|
|
30
|
+
export { putOrchestrationProcessInputStore, usePutOrchestrationProcessInputStoreMutation, } from './hooks/usePutOrchestrationProcessInputStoreMutation';
|
|
31
|
+
export { putOrchestrationProcess, usePutOrchestrationProcessMutation, } from './hooks/usePutOrchestrationProcessMutation';
|
|
19
32
|
export { putReleaseGroup, usePutReleaseGroupMutation } from './hooks/usePutReleaseGroupMutation';
|
|
20
33
|
export { putReleaseReleaseId, usePutReleaseReleaseIdMutation, } from './hooks/usePutReleaseReleaseIdMutation';
|
|
21
34
|
export { updateReleaseConflict, useUpdateReleaseConflictMutation, } from './hooks/useUpdateReleaseConflictMutation';
|
|
@@ -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 @@
|
|
|
1
|
+
export {};
|
|
@@ -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 @@
|
|
|
1
|
+
export {};
|
|
@@ -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 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -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,33 @@
|
|
|
1
|
+
import type { Status } from '../schemas/Status';
|
|
2
|
+
/**
|
|
3
|
+
* Represents an activity in the orchestration execution
|
|
4
|
+
*/
|
|
5
|
+
export interface OrchestrationExecutionActivity {
|
|
6
|
+
/**
|
|
7
|
+
* End timestamp in milliseconds
|
|
8
|
+
* @format int64
|
|
9
|
+
*/
|
|
10
|
+
end_ts: number;
|
|
11
|
+
/**
|
|
12
|
+
* Identifier of the activity
|
|
13
|
+
*/
|
|
14
|
+
identifier: string;
|
|
15
|
+
/**
|
|
16
|
+
* Name of the activity
|
|
17
|
+
*/
|
|
18
|
+
name: string;
|
|
19
|
+
/**
|
|
20
|
+
* Identifier of the phase
|
|
21
|
+
*/
|
|
22
|
+
phase_identifier: string;
|
|
23
|
+
/**
|
|
24
|
+
* Name of the phase
|
|
25
|
+
*/
|
|
26
|
+
phase_name: string;
|
|
27
|
+
/**
|
|
28
|
+
* Start timestamp in milliseconds
|
|
29
|
+
* @format int64
|
|
30
|
+
*/
|
|
31
|
+
start_ts: number;
|
|
32
|
+
status: Status;
|
|
33
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { Status } from '../schemas/Status';
|
|
2
|
+
/**
|
|
3
|
+
* Represents a phase in the orchestration execution
|
|
4
|
+
*/
|
|
5
|
+
export interface OrchestrationExecutionPhase {
|
|
6
|
+
/**
|
|
7
|
+
* List of phase identifiers this phase depends on
|
|
8
|
+
*/
|
|
9
|
+
depends_on?: string[];
|
|
10
|
+
/**
|
|
11
|
+
* End timestamp in milliseconds
|
|
12
|
+
* @format int64
|
|
13
|
+
*/
|
|
14
|
+
end_ts: number;
|
|
15
|
+
/**
|
|
16
|
+
* Unique identifier of the phase
|
|
17
|
+
*/
|
|
18
|
+
identifier: string;
|
|
19
|
+
/**
|
|
20
|
+
* Name of the phase
|
|
21
|
+
*/
|
|
22
|
+
name: string;
|
|
23
|
+
/**
|
|
24
|
+
* List of owners for the phase
|
|
25
|
+
*/
|
|
26
|
+
owners?: string[];
|
|
27
|
+
/**
|
|
28
|
+
* ID of the phase execution
|
|
29
|
+
*/
|
|
30
|
+
phase_execution_id: string;
|
|
31
|
+
/**
|
|
32
|
+
* Number of currently running activities in the phase
|
|
33
|
+
*/
|
|
34
|
+
running_activities: number;
|
|
35
|
+
/**
|
|
36
|
+
* Start timestamp in milliseconds
|
|
37
|
+
* @format int64
|
|
38
|
+
*/
|
|
39
|
+
start_ts: number;
|
|
40
|
+
status: Status;
|
|
41
|
+
/**
|
|
42
|
+
* Total number of activities in the phase
|
|
43
|
+
*/
|
|
44
|
+
total_activities: number;
|
|
45
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
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 @@
|
|
|
1
|
+
export {};
|
|
@@ -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 @@
|
|
|
1
|
+
export {};
|
|
@@ -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 @@
|
|
|
1
|
+
export {};
|