@harnessio/react-rmg-service-client 0.21.0 → 0.23.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/useGetOrchestrationExecutionActivitiesQuery.d.ts +2 -1
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionActivitiesQuery.js +2 -2
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionPhasesQuery.d.ts +1 -1
- 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/index.d.ts +31 -22
- package/dist/rmg-service/src/services/index.js +5 -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/CreateOrchestrationProcessInputResponseResponse.d.ts +10 -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/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/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/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 +20 -0
- package/dist/rmg-service/src/services/schemas/InputVariable.js +4 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityPipelineYaml.d.ts +11 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityPipelineYaml.js +4 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityProcessYaml.d.ts +38 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityProcessYaml.js +4 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityYaml.d.ts +43 -16
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityYaml.js +0 -3
- package/dist/rmg-service/src/services/schemas/OrchestrationExecutionActivity.d.ts +10 -2
- package/dist/rmg-service/src/services/schemas/OrchestrationExecutionPhase.d.ts +3 -3
- package/dist/rmg-service/src/services/schemas/OrchestrationPhaseYaml.d.ts +15 -3
- package/dist/rmg-service/src/services/schemas/OrchestrationProcessDto.d.ts +4 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationProcessInputYaml.d.ts +17 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationReleaseProcessYaml.d.ts +19 -13
- package/dist/rmg-service/src/services/schemas/PhaseInputYaml.d.ts +16 -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 +21 -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/{schemas/PipelineOrchestrationActivityYaml.js → responses/CreateOrchestrationProcessInputResponseResponse.js} +0 -0
- /package/dist/rmg-service/src/services/responses/{OrchestrationActivityInputStoreSummaryResponseResponse.js → OrchestrationProcessAttachedReleaseGroupsResponseResponse.js} +0 -0
- /package/dist/rmg-service/src/services/responses/{OrchestrationProcessInputStoreSummaryResponseResponse.js → OrchestrationProcessInputSummaryResponseResponse.js} +0 -0
- /package/dist/rmg-service/src/services/schemas/{OrchestrationActivityInputStoreDto.js → OrchestrationProcessInputYaml.js} +0 -0
- /package/dist/rmg-service/src/services/schemas/{OrchestrationProcessInputStoreDto.js → PhaseInputYaml.js} +0 -0
package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionActivitiesQuery.d.ts
CHANGED
|
@@ -5,9 +5,10 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
5
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
6
|
export interface GetOrchestrationExecutionActivitiesQueryPathParams {
|
|
7
7
|
releaseId: string;
|
|
8
|
-
|
|
8
|
+
phaseIdentifier: string;
|
|
9
9
|
}
|
|
10
10
|
export interface GetOrchestrationExecutionActivitiesQueryQueryParams {
|
|
11
|
+
phaseExecutionId?: string;
|
|
11
12
|
orgIdentifier?: string;
|
|
12
13
|
projectIdentifier?: string;
|
|
13
14
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { useQuery } from '@tanstack/react-query';
|
|
5
5
|
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
6
|
export function getOrchestrationExecutionActivities(props) {
|
|
7
|
-
return fetcher(Object.assign({ url: `/orchestration/execution/${props.releaseId}/phase/${props.
|
|
7
|
+
return fetcher(Object.assign({ url: `/orchestration/execution/${props.releaseId}/phase/${props.phaseIdentifier}/activities`, method: 'GET' }, props));
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* Retrieve all activities for a specific release and phase execution. If no activities exist in the database, it will fetch them from the phase YAML configuration.
|
|
@@ -13,7 +13,7 @@ export function useGetOrchestrationExecutionActivitiesQuery(props, options) {
|
|
|
13
13
|
return useQuery([
|
|
14
14
|
'get-orchestration-execution-activities',
|
|
15
15
|
props.releaseId,
|
|
16
|
-
props.
|
|
16
|
+
props.phaseIdentifier,
|
|
17
17
|
props.queryParams,
|
|
18
18
|
], ({ signal }) => getOrchestrationExecutionActivities(Object.assign(Object.assign({}, props), { signal })), options);
|
|
19
19
|
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { GetOrchestrationProcessInputResponseResponse } from '../responses/GetOrchestrationProcessInputResponseResponse';
|
|
3
|
+
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface GetOrchestrationProcessInputQueryPathParams {
|
|
7
|
+
processIdentifier: string;
|
|
8
|
+
identifier: string;
|
|
9
|
+
}
|
|
10
|
+
export interface GetOrchestrationProcessInputQueryQueryParams {
|
|
11
|
+
orgIdentifier?: string;
|
|
12
|
+
projectIdentifier?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface GetOrchestrationProcessInputQueryHeaderParams {
|
|
15
|
+
'Harness-Account': string;
|
|
16
|
+
}
|
|
17
|
+
export type GetOrchestrationProcessInputOkResponse = ResponseWithPagination<GetOrchestrationProcessInputResponseResponse>;
|
|
18
|
+
export type GetOrchestrationProcessInputErrorResponse = ErrorResponseResponse;
|
|
19
|
+
export interface GetOrchestrationProcessInputProps extends GetOrchestrationProcessInputQueryPathParams, Omit<FetcherOptions<GetOrchestrationProcessInputQueryQueryParams, unknown, GetOrchestrationProcessInputQueryHeaderParams>, 'url'> {
|
|
20
|
+
queryParams: GetOrchestrationProcessInputQueryQueryParams;
|
|
21
|
+
}
|
|
22
|
+
export declare function getOrchestrationProcessInput(props: GetOrchestrationProcessInputProps): Promise<GetOrchestrationProcessInputOkResponse>;
|
|
23
|
+
/**
|
|
24
|
+
* Get an orchestration process input by process identifier and input identifier
|
|
25
|
+
*/
|
|
26
|
+
export declare function useGetOrchestrationProcessInputQuery(props: GetOrchestrationProcessInputProps, options?: Omit<UseQueryOptions<GetOrchestrationProcessInputOkResponse, GetOrchestrationProcessInputErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<GetOrchestrationProcessInputOkResponse, import("..").Error>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function getOrchestrationProcessInput(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/orchestration/process/${props.processIdentifier}/input/${props.identifier}`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get an orchestration process input by process identifier and input identifier
|
|
11
|
+
*/
|
|
12
|
+
export function useGetOrchestrationProcessInputQuery(props, options) {
|
|
13
|
+
return useQuery([
|
|
14
|
+
'get-orchestration-process-input',
|
|
15
|
+
props.processIdentifier,
|
|
16
|
+
props.identifier,
|
|
17
|
+
props.queryParams,
|
|
18
|
+
], ({ signal }) => getOrchestrationProcessInput(Object.assign(Object.assign({}, props), { signal })), options);
|
|
19
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { OrchestrationProcessInputSummaryResponseResponse } from '../responses/OrchestrationProcessInputSummaryResponseResponse';
|
|
3
|
+
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface GetOrchestrationProcessInputSummaryQueryPathParams {
|
|
7
|
+
processIdentifier: string;
|
|
8
|
+
}
|
|
9
|
+
export interface GetOrchestrationProcessInputSummaryQueryQueryParams {
|
|
10
|
+
orgIdentifier?: string;
|
|
11
|
+
projectIdentifier?: string;
|
|
12
|
+
page?: number;
|
|
13
|
+
size?: number;
|
|
14
|
+
sort?: string[];
|
|
15
|
+
searchTerm?: string;
|
|
16
|
+
}
|
|
17
|
+
export interface GetOrchestrationProcessInputSummaryQueryHeaderParams {
|
|
18
|
+
'Harness-Account': string;
|
|
19
|
+
}
|
|
20
|
+
export type GetOrchestrationProcessInputSummaryOkResponse = ResponseWithPagination<OrchestrationProcessInputSummaryResponseResponse>;
|
|
21
|
+
export type GetOrchestrationProcessInputSummaryErrorResponse = ErrorResponseResponse;
|
|
22
|
+
export interface GetOrchestrationProcessInputSummaryProps extends GetOrchestrationProcessInputSummaryQueryPathParams, Omit<FetcherOptions<GetOrchestrationProcessInputSummaryQueryQueryParams, unknown, GetOrchestrationProcessInputSummaryQueryHeaderParams>, 'url'> {
|
|
23
|
+
queryParams: GetOrchestrationProcessInputSummaryQueryQueryParams;
|
|
24
|
+
}
|
|
25
|
+
export declare function getOrchestrationProcessInputSummary(props: GetOrchestrationProcessInputSummaryProps): Promise<GetOrchestrationProcessInputSummaryOkResponse>;
|
|
26
|
+
/**
|
|
27
|
+
* Retrieve a paginated list of orchestration process inputs for a specific process
|
|
28
|
+
*/
|
|
29
|
+
export declare function useGetOrchestrationProcessInputSummaryQuery(props: GetOrchestrationProcessInputSummaryProps, options?: Omit<UseQueryOptions<GetOrchestrationProcessInputSummaryOkResponse, GetOrchestrationProcessInputSummaryErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<GetOrchestrationProcessInputSummaryOkResponse, import("..").Error>;
|
|
@@ -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 { useQuery } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function getOrchestrationProcessInputSummary(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/orchestration/process/${props.processIdentifier}/input/summary`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Retrieve a paginated list of orchestration process inputs for a specific process
|
|
11
|
+
*/
|
|
12
|
+
export function useGetOrchestrationProcessInputSummaryQuery(props, options) {
|
|
13
|
+
return useQuery(['get-orchestration-process-input-summary', props.processIdentifier, props.queryParams], ({ signal }) => getOrchestrationProcessInputSummary(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { OrchestrationProcessAttachedReleaseGroupsResponseResponse } from '../responses/OrchestrationProcessAttachedReleaseGroupsResponseResponse';
|
|
3
|
+
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
4
|
+
import type { OrchestrationProcessAttachedReleaseGroupsRequestRequestBody } from '../requestBodies/OrchestrationProcessAttachedReleaseGroupsRequestRequestBody';
|
|
5
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
6
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
|
+
export interface PostOrchestrationProcessAttachedReleaseGroupsMutationPathParams {
|
|
8
|
+
identifier: string;
|
|
9
|
+
}
|
|
10
|
+
export interface PostOrchestrationProcessAttachedReleaseGroupsMutationQueryParams {
|
|
11
|
+
orgIdentifier?: string;
|
|
12
|
+
projectIdentifier?: string;
|
|
13
|
+
page?: number;
|
|
14
|
+
size?: number;
|
|
15
|
+
sort?: string[];
|
|
16
|
+
searchTerm?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface PostOrchestrationProcessAttachedReleaseGroupsMutationHeaderParams {
|
|
19
|
+
'Harness-Account': string;
|
|
20
|
+
}
|
|
21
|
+
export type PostOrchestrationProcessAttachedReleaseGroupsRequestBody = OrchestrationProcessAttachedReleaseGroupsRequestRequestBody;
|
|
22
|
+
export type PostOrchestrationProcessAttachedReleaseGroupsOkResponse = ResponseWithPagination<OrchestrationProcessAttachedReleaseGroupsResponseResponse>;
|
|
23
|
+
export type PostOrchestrationProcessAttachedReleaseGroupsErrorResponse = ErrorResponseResponse;
|
|
24
|
+
export interface PostOrchestrationProcessAttachedReleaseGroupsProps extends PostOrchestrationProcessAttachedReleaseGroupsMutationPathParams, Omit<FetcherOptions<PostOrchestrationProcessAttachedReleaseGroupsMutationQueryParams, PostOrchestrationProcessAttachedReleaseGroupsRequestBody, PostOrchestrationProcessAttachedReleaseGroupsMutationHeaderParams>, 'url'> {
|
|
25
|
+
queryParams: PostOrchestrationProcessAttachedReleaseGroupsMutationQueryParams;
|
|
26
|
+
body: PostOrchestrationProcessAttachedReleaseGroupsRequestBody;
|
|
27
|
+
}
|
|
28
|
+
export declare function postOrchestrationProcessAttachedReleaseGroups(props: PostOrchestrationProcessAttachedReleaseGroupsProps): Promise<PostOrchestrationProcessAttachedReleaseGroupsOkResponse>;
|
|
29
|
+
/**
|
|
30
|
+
* Retrieve a paginated list of release groups attached to orchestration processes with optional filtering
|
|
31
|
+
*/
|
|
32
|
+
export declare function usePostOrchestrationProcessAttachedReleaseGroupsMutation(options?: Omit<UseMutationOptions<PostOrchestrationProcessAttachedReleaseGroupsOkResponse, PostOrchestrationProcessAttachedReleaseGroupsErrorResponse, PostOrchestrationProcessAttachedReleaseGroupsProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<PostOrchestrationProcessAttachedReleaseGroupsOkResponse, import("..").Error, PostOrchestrationProcessAttachedReleaseGroupsProps, 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 postOrchestrationProcessAttachedReleaseGroups(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/orchestration/process/${props.identifier}/attachedReleaseGroups`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Retrieve a paginated list of release groups attached to orchestration processes with optional filtering
|
|
11
|
+
*/
|
|
12
|
+
export function usePostOrchestrationProcessAttachedReleaseGroupsMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => postOrchestrationProcessAttachedReleaseGroups(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { CreateOrchestrationProcessInputResponseResponse } from '../responses/CreateOrchestrationProcessInputResponseResponse';
|
|
3
|
+
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
4
|
+
import type { CreateOrchestrationProcessInputRequestRequestBody } from '../requestBodies/CreateOrchestrationProcessInputRequestRequestBody';
|
|
5
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
6
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
|
+
export interface PostOrchestrationProcessInputMutationPathParams {
|
|
8
|
+
identifier: string;
|
|
9
|
+
}
|
|
10
|
+
export interface PostOrchestrationProcessInputMutationQueryParams {
|
|
11
|
+
orgIdentifier?: string;
|
|
12
|
+
projectIdentifier?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface PostOrchestrationProcessInputMutationHeaderParams {
|
|
15
|
+
'Harness-Account': string;
|
|
16
|
+
}
|
|
17
|
+
export type PostOrchestrationProcessInputRequestBody = CreateOrchestrationProcessInputRequestRequestBody;
|
|
18
|
+
export type PostOrchestrationProcessInputOkResponse = ResponseWithPagination<CreateOrchestrationProcessInputResponseResponse>;
|
|
19
|
+
export type PostOrchestrationProcessInputErrorResponse = ErrorResponseResponse;
|
|
20
|
+
export interface PostOrchestrationProcessInputProps extends PostOrchestrationProcessInputMutationPathParams, Omit<FetcherOptions<PostOrchestrationProcessInputMutationQueryParams, PostOrchestrationProcessInputRequestBody, PostOrchestrationProcessInputMutationHeaderParams>, 'url'> {
|
|
21
|
+
queryParams: PostOrchestrationProcessInputMutationQueryParams;
|
|
22
|
+
body: PostOrchestrationProcessInputRequestBody;
|
|
23
|
+
}
|
|
24
|
+
export declare function postOrchestrationProcessInput(props: PostOrchestrationProcessInputProps): Promise<PostOrchestrationProcessInputOkResponse>;
|
|
25
|
+
/**
|
|
26
|
+
* Create a new orchestration process input with the provided YAML configuration
|
|
27
|
+
*/
|
|
28
|
+
export declare function usePostOrchestrationProcessInputMutation(options?: Omit<UseMutationOptions<PostOrchestrationProcessInputOkResponse, PostOrchestrationProcessInputErrorResponse, PostOrchestrationProcessInputProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<PostOrchestrationProcessInputOkResponse, import("..").Error, PostOrchestrationProcessInputProps, unknown>;
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
// Please do not modify this code directly.
|
|
4
4
|
import { useMutation } from '@tanstack/react-query';
|
|
5
5
|
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
-
export function
|
|
7
|
-
return fetcher(Object.assign({ url: `/orchestration/process/
|
|
6
|
+
export function postOrchestrationProcessInput(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/orchestration/process/${props.identifier}/input`, method: 'POST' }, props));
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Create a new process input
|
|
10
|
+
* Create a new orchestration process input with the provided YAML configuration
|
|
11
11
|
*/
|
|
12
|
-
export function
|
|
13
|
-
return useMutation((mutateProps) =>
|
|
12
|
+
export function usePostOrchestrationProcessInputMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => postOrchestrationProcessInput(mutateProps), options);
|
|
14
14
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { UpdateOrchestrationActivityResponseResponse } from '../responses/UpdateOrchestrationActivityResponseResponse';
|
|
2
3
|
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
3
4
|
import type { UpdateOrchestrationActivityRequestRequestBody } from '../requestBodies/UpdateOrchestrationActivityRequestRequestBody';
|
|
4
5
|
import type { ResponseWithPagination } from '../helpers';
|
|
@@ -14,7 +15,7 @@ export interface PutOrchestrationActivityMutationHeaderParams {
|
|
|
14
15
|
'Harness-Account': string;
|
|
15
16
|
}
|
|
16
17
|
export type PutOrchestrationActivityRequestBody = UpdateOrchestrationActivityRequestRequestBody;
|
|
17
|
-
export type PutOrchestrationActivityOkResponse = ResponseWithPagination<
|
|
18
|
+
export type PutOrchestrationActivityOkResponse = ResponseWithPagination<UpdateOrchestrationActivityResponseResponse>;
|
|
18
19
|
export type PutOrchestrationActivityErrorResponse = ErrorResponseResponse;
|
|
19
20
|
export interface PutOrchestrationActivityProps extends PutOrchestrationActivityMutationPathParams, Omit<FetcherOptions<PutOrchestrationActivityMutationQueryParams, PutOrchestrationActivityRequestBody, PutOrchestrationActivityMutationHeaderParams>, 'url'> {
|
|
20
21
|
queryParams: PutOrchestrationActivityMutationQueryParams;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { UpdateOrchestrationProcessInputResponseResponse } from '../responses/UpdateOrchestrationProcessInputResponseResponse';
|
|
3
|
+
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
4
|
+
import type { UpdateOrchestrationProcessInputRequestRequestBody } from '../requestBodies/UpdateOrchestrationProcessInputRequestRequestBody';
|
|
5
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
6
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
|
+
export interface PutOrchestrationProcessInputMutationPathParams {
|
|
8
|
+
processIdentifier: string;
|
|
9
|
+
identifier: string;
|
|
10
|
+
}
|
|
11
|
+
export interface PutOrchestrationProcessInputMutationQueryParams {
|
|
12
|
+
orgIdentifier?: string;
|
|
13
|
+
projectIdentifier?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface PutOrchestrationProcessInputMutationHeaderParams {
|
|
16
|
+
'Harness-Account': string;
|
|
17
|
+
}
|
|
18
|
+
export type PutOrchestrationProcessInputRequestBody = UpdateOrchestrationProcessInputRequestRequestBody;
|
|
19
|
+
export type PutOrchestrationProcessInputOkResponse = ResponseWithPagination<UpdateOrchestrationProcessInputResponseResponse>;
|
|
20
|
+
export type PutOrchestrationProcessInputErrorResponse = ErrorResponseResponse;
|
|
21
|
+
export interface PutOrchestrationProcessInputProps extends PutOrchestrationProcessInputMutationPathParams, Omit<FetcherOptions<PutOrchestrationProcessInputMutationQueryParams, PutOrchestrationProcessInputRequestBody, PutOrchestrationProcessInputMutationHeaderParams>, 'url'> {
|
|
22
|
+
queryParams: PutOrchestrationProcessInputMutationQueryParams;
|
|
23
|
+
body: PutOrchestrationProcessInputRequestBody;
|
|
24
|
+
}
|
|
25
|
+
export declare function putOrchestrationProcessInput(props: PutOrchestrationProcessInputProps): Promise<PutOrchestrationProcessInputOkResponse>;
|
|
26
|
+
/**
|
|
27
|
+
* Update an orchestration process input with the provided YAML configuration
|
|
28
|
+
*/
|
|
29
|
+
export declare function usePutOrchestrationProcessInputMutation(options?: Omit<UseMutationOptions<PutOrchestrationProcessInputOkResponse, PutOrchestrationProcessInputErrorResponse, PutOrchestrationProcessInputProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<PutOrchestrationProcessInputOkResponse, import("..").Error, PutOrchestrationProcessInputProps, unknown>;
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
// Please do not modify this code directly.
|
|
4
4
|
import { useMutation } from '@tanstack/react-query';
|
|
5
5
|
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
-
export function
|
|
7
|
-
return fetcher(Object.assign({ url: `/orchestration/process/
|
|
6
|
+
export function putOrchestrationProcessInput(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/orchestration/process/${props.processIdentifier}/input/${props.identifier}`, method: 'PUT' }, props));
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Update
|
|
10
|
+
* Update an orchestration process input with the provided YAML configuration
|
|
11
11
|
*/
|
|
12
|
-
export function
|
|
13
|
-
return useMutation((mutateProps) =>
|
|
12
|
+
export function usePutOrchestrationProcessInputMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => putOrchestrationProcessInput(mutateProps), options);
|
|
14
14
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { UpdateOrchestrationProcessResponseResponse } from '../responses/UpdateOrchestrationProcessResponseResponse';
|
|
2
3
|
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
3
4
|
import type { UpdateOrchestrationProcessRequestRequestBody } from '../requestBodies/UpdateOrchestrationProcessRequestRequestBody';
|
|
4
5
|
import type { ResponseWithPagination } from '../helpers';
|
|
@@ -14,7 +15,7 @@ export interface PutOrchestrationProcessMutationHeaderParams {
|
|
|
14
15
|
'Harness-Account': string;
|
|
15
16
|
}
|
|
16
17
|
export type PutOrchestrationProcessRequestBody = UpdateOrchestrationProcessRequestRequestBody;
|
|
17
|
-
export type PutOrchestrationProcessOkResponse = ResponseWithPagination<
|
|
18
|
+
export type PutOrchestrationProcessOkResponse = ResponseWithPagination<UpdateOrchestrationProcessResponseResponse>;
|
|
18
19
|
export type PutOrchestrationProcessErrorResponse = ErrorResponseResponse;
|
|
19
20
|
export interface PutOrchestrationProcessProps extends PutOrchestrationProcessMutationPathParams, Omit<FetcherOptions<PutOrchestrationProcessMutationQueryParams, PutOrchestrationProcessRequestBody, PutOrchestrationProcessMutationHeaderParams>, 'url'> {
|
|
20
21
|
queryParams: PutOrchestrationProcessMutationQueryParams;
|
|
@@ -5,18 +5,16 @@ export type { GetOrchestrationActivitiesByAcitivityRefsErrorResponse, GetOrchest
|
|
|
5
5
|
export { getOrchestrationActivitiesByAcitivityRefs, useGetOrchestrationActivitiesByAcitivityRefsMutation, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
|
|
6
6
|
export type { GetOrchestrationActivitiesByProcessIdentifierErrorResponse, GetOrchestrationActivitiesByProcessIdentifierOkResponse, GetOrchestrationActivitiesByProcessIdentifierProps, GetOrchestrationActivitiesByProcessIdentifierQueryPathParams, GetOrchestrationActivitiesByProcessIdentifierQueryQueryParams, } from './hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery';
|
|
7
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
8
|
export type { GetOrchestrationActivityErrorResponse, GetOrchestrationActivityOkResponse, GetOrchestrationActivityProps, GetOrchestrationActivityQueryPathParams, GetOrchestrationActivityQueryQueryParams, } from './hooks/useGetOrchestrationActivityQuery';
|
|
13
9
|
export { getOrchestrationActivity, useGetOrchestrationActivityQuery, } from './hooks/useGetOrchestrationActivityQuery';
|
|
14
10
|
export type { GetOrchestrationExecutionActivitiesErrorResponse, GetOrchestrationExecutionActivitiesOkResponse, GetOrchestrationExecutionActivitiesProps, GetOrchestrationExecutionActivitiesQueryPathParams, GetOrchestrationExecutionActivitiesQueryQueryParams, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
|
|
15
11
|
export { getOrchestrationExecutionActivities, useGetOrchestrationExecutionActivitiesQuery, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
|
|
16
12
|
export type { GetOrchestrationExecutionPhasesErrorResponse, GetOrchestrationExecutionPhasesOkResponse, GetOrchestrationExecutionPhasesProps, GetOrchestrationExecutionPhasesQueryPathParams, GetOrchestrationExecutionPhasesQueryQueryParams, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
|
|
17
13
|
export { getOrchestrationExecutionPhases, useGetOrchestrationExecutionPhasesQuery, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
|
|
18
|
-
export type {
|
|
19
|
-
export {
|
|
14
|
+
export type { GetOrchestrationProcessInputErrorResponse, GetOrchestrationProcessInputOkResponse, GetOrchestrationProcessInputProps, GetOrchestrationProcessInputQueryPathParams, GetOrchestrationProcessInputQueryQueryParams, } from './hooks/useGetOrchestrationProcessInputQuery';
|
|
15
|
+
export { getOrchestrationProcessInput, useGetOrchestrationProcessInputQuery, } from './hooks/useGetOrchestrationProcessInputQuery';
|
|
16
|
+
export type { GetOrchestrationProcessInputSummaryErrorResponse, GetOrchestrationProcessInputSummaryOkResponse, GetOrchestrationProcessInputSummaryProps, GetOrchestrationProcessInputSummaryQueryPathParams, GetOrchestrationProcessInputSummaryQueryQueryParams, } from './hooks/useGetOrchestrationProcessInputSummaryQuery';
|
|
17
|
+
export { getOrchestrationProcessInputSummary, useGetOrchestrationProcessInputSummaryQuery, } from './hooks/useGetOrchestrationProcessInputSummaryQuery';
|
|
20
18
|
export type { GetOrchestrationProcessErrorResponse, GetOrchestrationProcessOkResponse, GetOrchestrationProcessProps, GetOrchestrationProcessQueryPathParams, GetOrchestrationProcessQueryQueryParams, } from './hooks/useGetOrchestrationProcessQuery';
|
|
21
19
|
export { getOrchestrationProcess, useGetOrchestrationProcessQuery, } from './hooks/useGetOrchestrationProcessQuery';
|
|
22
20
|
export type { GetOrchestrationProcessSummaryErrorResponse, GetOrchestrationProcessSummaryOkResponse, GetOrchestrationProcessSummaryProps, GetOrchestrationProcessSummaryQueryQueryParams, } from './hooks/useGetOrchestrationProcessSummaryQuery';
|
|
@@ -41,24 +39,22 @@ export type { GetReleaseReleaseIdEnvironmentDashboardErrorResponse, GetReleaseRe
|
|
|
41
39
|
export { getReleaseReleaseIdEnvironmentDashboard, useGetReleaseReleaseIdEnvironmentDashboardQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentDashboardQuery';
|
|
42
40
|
export type { GetReleaseReleaseIdEnvironmentsErrorResponse, GetReleaseReleaseIdEnvironmentsOkResponse, GetReleaseReleaseIdEnvironmentsProps, GetReleaseReleaseIdEnvironmentsQueryPathParams, GetReleaseReleaseIdEnvironmentsQueryQueryParams, } from './hooks/useGetReleaseReleaseIdEnvironmentsQuery';
|
|
43
41
|
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
42
|
export type { PostOrchestrationActivityErrorResponse, PostOrchestrationActivityMutationQueryParams, PostOrchestrationActivityOkResponse, PostOrchestrationActivityProps, PostOrchestrationActivityRequestBody, } from './hooks/usePostOrchestrationActivityMutation';
|
|
47
43
|
export { postOrchestrationActivity, usePostOrchestrationActivityMutation, } from './hooks/usePostOrchestrationActivityMutation';
|
|
48
|
-
export type {
|
|
49
|
-
export {
|
|
44
|
+
export type { PostOrchestrationProcessAttachedReleaseGroupsErrorResponse, PostOrchestrationProcessAttachedReleaseGroupsMutationPathParams, PostOrchestrationProcessAttachedReleaseGroupsMutationQueryParams, PostOrchestrationProcessAttachedReleaseGroupsOkResponse, PostOrchestrationProcessAttachedReleaseGroupsProps, PostOrchestrationProcessAttachedReleaseGroupsRequestBody, } from './hooks/usePostOrchestrationProcessAttachedReleaseGroupsMutation';
|
|
45
|
+
export { postOrchestrationProcessAttachedReleaseGroups, usePostOrchestrationProcessAttachedReleaseGroupsMutation, } from './hooks/usePostOrchestrationProcessAttachedReleaseGroupsMutation';
|
|
46
|
+
export type { PostOrchestrationProcessInputErrorResponse, PostOrchestrationProcessInputMutationPathParams, PostOrchestrationProcessInputMutationQueryParams, PostOrchestrationProcessInputOkResponse, PostOrchestrationProcessInputProps, PostOrchestrationProcessInputRequestBody, } from './hooks/usePostOrchestrationProcessInputMutation';
|
|
47
|
+
export { postOrchestrationProcessInput, usePostOrchestrationProcessInputMutation, } from './hooks/usePostOrchestrationProcessInputMutation';
|
|
50
48
|
export type { PostOrchestrationProcessErrorResponse, PostOrchestrationProcessMutationQueryParams, PostOrchestrationProcessOkResponse, PostOrchestrationProcessProps, PostOrchestrationProcessRequestBody, } from './hooks/usePostOrchestrationProcessMutation';
|
|
51
49
|
export { postOrchestrationProcess, usePostOrchestrationProcessMutation, } from './hooks/usePostOrchestrationProcessMutation';
|
|
52
50
|
export type { PostReleaseGroupErrorResponse, PostReleaseGroupMutationQueryParams, PostReleaseGroupOkResponse, PostReleaseGroupProps, PostReleaseGroupRequestBody, } from './hooks/usePostReleaseGroupMutation';
|
|
53
51
|
export { postReleaseGroup, usePostReleaseGroupMutation } from './hooks/usePostReleaseGroupMutation';
|
|
54
52
|
export type { PostReleaseSummaryErrorResponse, PostReleaseSummaryMutationQueryParams, PostReleaseSummaryOkResponse, PostReleaseSummaryProps, PostReleaseSummaryRequestBody, } from './hooks/usePostReleaseSummaryMutation';
|
|
55
53
|
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
54
|
export type { PutOrchestrationActivityErrorResponse, PutOrchestrationActivityMutationPathParams, PutOrchestrationActivityMutationQueryParams, PutOrchestrationActivityOkResponse, PutOrchestrationActivityProps, PutOrchestrationActivityRequestBody, } from './hooks/usePutOrchestrationActivityMutation';
|
|
59
55
|
export { putOrchestrationActivity, usePutOrchestrationActivityMutation, } from './hooks/usePutOrchestrationActivityMutation';
|
|
60
|
-
export type {
|
|
61
|
-
export {
|
|
56
|
+
export type { PutOrchestrationProcessInputErrorResponse, PutOrchestrationProcessInputMutationPathParams, PutOrchestrationProcessInputMutationQueryParams, PutOrchestrationProcessInputOkResponse, PutOrchestrationProcessInputProps, PutOrchestrationProcessInputRequestBody, } from './hooks/usePutOrchestrationProcessInputMutation';
|
|
57
|
+
export { putOrchestrationProcessInput, usePutOrchestrationProcessInputMutation, } from './hooks/usePutOrchestrationProcessInputMutation';
|
|
62
58
|
export type { PutOrchestrationProcessErrorResponse, PutOrchestrationProcessMutationPathParams, PutOrchestrationProcessMutationQueryParams, PutOrchestrationProcessOkResponse, PutOrchestrationProcessProps, PutOrchestrationProcessRequestBody, } from './hooks/usePutOrchestrationProcessMutation';
|
|
63
59
|
export { putOrchestrationProcess, usePutOrchestrationProcessMutation, } from './hooks/usePutOrchestrationProcessMutation';
|
|
64
60
|
export type { PutReleaseGroupErrorResponse, PutReleaseGroupMutationPathParams, PutReleaseGroupMutationQueryParams, PutReleaseGroupOkResponse, PutReleaseGroupProps, PutReleaseGroupRequestBody, } from './hooks/usePutReleaseGroupMutation';
|
|
@@ -69,18 +65,19 @@ export type { StartReleaseExecutionErrorResponse, StartReleaseExecutionMutationP
|
|
|
69
65
|
export { startReleaseExecution, useStartReleaseExecutionMutation, } from './hooks/useStartReleaseExecutionMutation';
|
|
70
66
|
export type { UpdateReleaseConflictErrorResponse, UpdateReleaseConflictMutationPathParams, UpdateReleaseConflictOkResponse, UpdateReleaseConflictProps, UpdateReleaseConflictRequestBody, } from './hooks/useUpdateReleaseConflictMutation';
|
|
71
67
|
export { updateReleaseConflict, useUpdateReleaseConflictMutation, } from './hooks/useUpdateReleaseConflictMutation';
|
|
72
|
-
export type { CreateOrchestrationActivityInputStoreRequestRequestBody } from './requestBodies/CreateOrchestrationActivityInputStoreRequestRequestBody';
|
|
73
68
|
export type { CreateOrchestrationActivityRequestRequestBody } from './requestBodies/CreateOrchestrationActivityRequestRequestBody';
|
|
69
|
+
export type { CreateOrchestrationProcessInputRequestRequestBody } from './requestBodies/CreateOrchestrationProcessInputRequestRequestBody';
|
|
74
70
|
export type { CreateOrchestrationProcessRequestRequestBody } from './requestBodies/CreateOrchestrationProcessRequestRequestBody';
|
|
75
71
|
export type { CreateReleaseGroupRequestRequestBody } from './requestBodies/CreateReleaseGroupRequestRequestBody';
|
|
72
|
+
export type { OrchestrationProcessAttachedReleaseGroupsRequestRequestBody } from './requestBodies/OrchestrationProcessAttachedReleaseGroupsRequestRequestBody';
|
|
76
73
|
export type { ReleaseSummaryRequestRequestBody } from './requestBodies/ReleaseSummaryRequestRequestBody';
|
|
77
74
|
export type { UpdateOrchestrationActivityRequestRequestBody } from './requestBodies/UpdateOrchestrationActivityRequestRequestBody';
|
|
75
|
+
export type { UpdateOrchestrationProcessInputRequestRequestBody } from './requestBodies/UpdateOrchestrationProcessInputRequestRequestBody';
|
|
78
76
|
export type { UpdateOrchestrationProcessRequestRequestBody } from './requestBodies/UpdateOrchestrationProcessRequestRequestBody';
|
|
79
77
|
export type { UpdateReleaseGroupRequestRequestBody } from './requestBodies/UpdateReleaseGroupRequestRequestBody';
|
|
80
78
|
export type { UpdateReleaseRequestRequestBody } from './requestBodies/UpdateReleaseRequestRequestBody';
|
|
81
|
-
export type { CreateOrchestrationActivityInputStoreResponseResponse } from './responses/CreateOrchestrationActivityInputStoreResponseResponse';
|
|
82
79
|
export type { CreateOrchestrationActivityResponseResponse } from './responses/CreateOrchestrationActivityResponseResponse';
|
|
83
|
-
export type {
|
|
80
|
+
export type { CreateOrchestrationProcessInputResponseResponse } from './responses/CreateOrchestrationProcessInputResponseResponse';
|
|
84
81
|
export type { CreateOrchestrationProcessResponseResponse } from './responses/CreateOrchestrationProcessResponseResponse';
|
|
85
82
|
export type { CreateReleaseGroupResponseResponse } from './responses/CreateReleaseGroupResponseResponse';
|
|
86
83
|
export type { DeleteReleaseGroupResponseResponse } from './responses/DeleteReleaseGroupResponseResponse';
|
|
@@ -88,11 +85,12 @@ export type { EnvironmentDashboardResponseResponse } from './responses/Environme
|
|
|
88
85
|
export type { EnvironmentListPerReleaseResponseResponse } from './responses/EnvironmentListPerReleaseResponseResponse';
|
|
89
86
|
export type { ErrorResponseResponse } from './responses/ErrorResponseResponse';
|
|
90
87
|
export type { GetOrchestrationActivityResponseResponse } from './responses/GetOrchestrationActivityResponseResponse';
|
|
88
|
+
export type { GetOrchestrationProcessInputResponseResponse } from './responses/GetOrchestrationProcessInputResponseResponse';
|
|
91
89
|
export type { GetOrchestrationProcessResponseResponse } from './responses/GetOrchestrationProcessResponseResponse';
|
|
92
90
|
export type { GetReleaseGroupResponseResponse } from './responses/GetReleaseGroupResponseResponse';
|
|
93
|
-
export type { OrchestrationActivityInputStoreSummaryResponseResponse } from './responses/OrchestrationActivityInputStoreSummaryResponseResponse';
|
|
94
91
|
export type { OrchestrationActivityListByProcessIdentifierResponseResponse } from './responses/OrchestrationActivityListByProcessIdentifierResponseResponse';
|
|
95
|
-
export type {
|
|
92
|
+
export type { OrchestrationProcessAttachedReleaseGroupsResponseResponse } from './responses/OrchestrationProcessAttachedReleaseGroupsResponseResponse';
|
|
93
|
+
export type { OrchestrationProcessInputSummaryResponseResponse } from './responses/OrchestrationProcessInputSummaryResponseResponse';
|
|
96
94
|
export type { OrchestrationProcessSummaryResponseResponse } from './responses/OrchestrationProcessSummaryResponseResponse';
|
|
97
95
|
export type { ReleaseActivitiesResponseResponse } from './responses/ReleaseActivitiesResponseResponse';
|
|
98
96
|
export type { ReleaseApprovalsResponseResponse } from './responses/ReleaseApprovalsResponseResponse';
|
|
@@ -101,12 +99,17 @@ export type { ReleaseDetailsResponseResponse } from './responses/ReleaseDetailsR
|
|
|
101
99
|
export type { ReleaseGroupComponentResponseResponse } from './responses/ReleaseGroupComponentResponseResponse';
|
|
102
100
|
export type { ReleaseGroupSummaryResponseResponse } from './responses/ReleaseGroupSummaryResponseResponse';
|
|
103
101
|
export type { ReleaseSummaryResponseResponse } from './responses/ReleaseSummaryResponseResponse';
|
|
102
|
+
export type { UpdateOrchestrationActivityResponseResponse } from './responses/UpdateOrchestrationActivityResponseResponse';
|
|
103
|
+
export type { UpdateOrchestrationProcessInputResponseResponse } from './responses/UpdateOrchestrationProcessInputResponseResponse';
|
|
104
|
+
export type { UpdateOrchestrationProcessResponseResponse } from './responses/UpdateOrchestrationProcessResponseResponse';
|
|
104
105
|
export type { UpdateReleaseConflictResponseResponse } from './responses/UpdateReleaseConflictResponseResponse';
|
|
105
106
|
export type { UpdateReleaseGroupResponseResponse } from './responses/UpdateReleaseGroupResponseResponse';
|
|
106
107
|
export type { UpdateReleaseResponseResponse } from './responses/UpdateReleaseResponseResponse';
|
|
108
|
+
export type { ActivityInputYaml } from './schemas/ActivityInputYaml';
|
|
107
109
|
export type { ActivityType } from './schemas/ActivityType';
|
|
108
110
|
export type { ApprovalInfoDto } from './schemas/ApprovalInfoDto';
|
|
109
111
|
export type { ApprovedByDto } from './schemas/ApprovedByDto';
|
|
112
|
+
export type { AttachedReleaseGroupDto } from './schemas/AttachedReleaseGroupDto';
|
|
110
113
|
export type { ConflictStatus } from './schemas/ConflictStatus';
|
|
111
114
|
export type { CreateOrchestrationActivityInputSetRequestType } from './schemas/CreateOrchestrationActivityInputSetRequestType';
|
|
112
115
|
export type { CreateOrchestrationActivityRequestType } from './schemas/CreateOrchestrationActivityRequestType';
|
|
@@ -117,20 +120,25 @@ export type { Error } from './schemas/Error';
|
|
|
117
120
|
export type { ExecutionConflict } from './schemas/ExecutionConflict';
|
|
118
121
|
export type { Freq } from './schemas/Freq';
|
|
119
122
|
export type { GetReleaseGroupResponse } from './schemas/GetReleaseGroupResponse';
|
|
123
|
+
export type { GlobalReleaseInputYaml } from './schemas/GlobalReleaseInputYaml';
|
|
124
|
+
export type { InputVariable } from './schemas/InputVariable';
|
|
120
125
|
export type { LastUpdatedByDto } from './schemas/LastUpdatedByDto';
|
|
121
126
|
export type { NextRequest } from './schemas/NextRequest';
|
|
122
|
-
export type {
|
|
127
|
+
export type { OrchestrationActivityPipelineYaml } from './schemas/OrchestrationActivityPipelineYaml';
|
|
128
|
+
export type { OrchestrationActivityProcessYaml } from './schemas/OrchestrationActivityProcessYaml';
|
|
123
129
|
export type { OrchestrationActivityYaml } from './schemas/OrchestrationActivityYaml';
|
|
124
130
|
export type { OrchestrationActivityYamlDto } from './schemas/OrchestrationActivityYamlDto';
|
|
125
131
|
export type { OrchestrationExecutionActivity } from './schemas/OrchestrationExecutionActivity';
|
|
126
132
|
export type { OrchestrationExecutionPhase } from './schemas/OrchestrationExecutionPhase';
|
|
127
133
|
export type { OrchestrationPhaseYaml } from './schemas/OrchestrationPhaseYaml';
|
|
128
134
|
export type { OrchestrationProcessDto } from './schemas/OrchestrationProcessDto';
|
|
129
|
-
export type {
|
|
135
|
+
export type { OrchestrationProcessInputYaml } from './schemas/OrchestrationProcessInputYaml';
|
|
130
136
|
export type { OrchestrationReleaseProcessYaml } from './schemas/OrchestrationReleaseProcessYaml';
|
|
131
137
|
export type { Pageable } from './schemas/Pageable';
|
|
132
138
|
export type { PageableSort } from './schemas/PageableSort';
|
|
133
|
-
export type {
|
|
139
|
+
export type { PhaseInputYaml } from './schemas/PhaseInputYaml';
|
|
140
|
+
export type { PhaseReleaseInputYaml } from './schemas/PhaseReleaseInputYaml';
|
|
141
|
+
export type { ProcessInputSummaryDto } from './schemas/ProcessInputSummaryDto';
|
|
134
142
|
export type { ReleaseActivity } from './schemas/ReleaseActivity';
|
|
135
143
|
export type { ReleaseApprovalDto } from './schemas/ReleaseApprovalDto';
|
|
136
144
|
export type { ReleaseApprovalType } from './schemas/ReleaseApprovalType';
|
|
@@ -141,6 +149,7 @@ export type { ReleaseDto } from './schemas/ReleaseDto';
|
|
|
141
149
|
export type { ReleaseFrequency } from './schemas/ReleaseFrequency';
|
|
142
150
|
export type { ReleaseGroupDto } from './schemas/ReleaseGroupDto';
|
|
143
151
|
export type { ReleaseGroupYaml } from './schemas/ReleaseGroupYaml';
|
|
152
|
+
export type { ReleaseInputYaml } from './schemas/ReleaseInputYaml';
|
|
144
153
|
export type { ReleaseType } from './schemas/ReleaseType';
|
|
145
154
|
export type { RepeatUnit } from './schemas/RepeatUnit';
|
|
146
155
|
export type { ServiceInfoDto } from './schemas/ServiceInfoDto';
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
export { deleteReleaseGroup, useDeleteReleaseGroupMutation, } from './hooks/useDeleteReleaseGroupMutation';
|
|
2
2
|
export { getOrchestrationActivitiesByAcitivityRefs, useGetOrchestrationActivitiesByAcitivityRefsMutation, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
|
|
3
3
|
export { getOrchestrationActivitiesByProcessIdentifier, useGetOrchestrationActivitiesByProcessIdentifierQuery, } from './hooks/useGetOrchestrationActivitiesByProcessIdentifierQuery';
|
|
4
|
-
export { getOrchestrationActivityInputStore, useGetOrchestrationActivityInputStoreQuery, } from './hooks/useGetOrchestrationActivityInputStoreQuery';
|
|
5
|
-
export { getOrchestrationActivityInputStoreSummary, useGetOrchestrationActivityInputStoreSummaryQuery, } from './hooks/useGetOrchestrationActivityInputStoreSummaryQuery';
|
|
6
4
|
export { getOrchestrationActivity, useGetOrchestrationActivityQuery, } from './hooks/useGetOrchestrationActivityQuery';
|
|
7
5
|
export { getOrchestrationExecutionActivities, useGetOrchestrationExecutionActivitiesQuery, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
|
|
8
6
|
export { getOrchestrationExecutionPhases, useGetOrchestrationExecutionPhasesQuery, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
|
|
9
|
-
export {
|
|
7
|
+
export { getOrchestrationProcessInput, useGetOrchestrationProcessInputQuery, } from './hooks/useGetOrchestrationProcessInputQuery';
|
|
8
|
+
export { getOrchestrationProcessInputSummary, useGetOrchestrationProcessInputSummaryQuery, } from './hooks/useGetOrchestrationProcessInputSummaryQuery';
|
|
10
9
|
export { getOrchestrationProcess, useGetOrchestrationProcessQuery, } from './hooks/useGetOrchestrationProcessQuery';
|
|
11
10
|
export { getOrchestrationProcessSummary, useGetOrchestrationProcessSummaryQuery, } from './hooks/useGetOrchestrationProcessSummaryQuery';
|
|
12
11
|
export { getReleaseActivities, useGetReleaseActivitiesQuery, } from './hooks/useGetReleaseActivitiesQuery';
|
|
@@ -19,15 +18,14 @@ export { getRelease, useGetReleaseQuery } from './hooks/useGetReleaseQuery';
|
|
|
19
18
|
export { getReleaseReleaseIdApprovals, useGetReleaseReleaseIdApprovalsQuery, } from './hooks/useGetReleaseReleaseIdApprovalsQuery';
|
|
20
19
|
export { getReleaseReleaseIdEnvironmentDashboard, useGetReleaseReleaseIdEnvironmentDashboardQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentDashboardQuery';
|
|
21
20
|
export { getReleaseReleaseIdEnvironments, useGetReleaseReleaseIdEnvironmentsQuery, } from './hooks/useGetReleaseReleaseIdEnvironmentsQuery';
|
|
22
|
-
export { postOrchestrationActivityInputStore, usePostOrchestrationActivityInputStoreMutation, } from './hooks/usePostOrchestrationActivityInputStoreMutation';
|
|
23
21
|
export { postOrchestrationActivity, usePostOrchestrationActivityMutation, } from './hooks/usePostOrchestrationActivityMutation';
|
|
24
|
-
export {
|
|
22
|
+
export { postOrchestrationProcessAttachedReleaseGroups, usePostOrchestrationProcessAttachedReleaseGroupsMutation, } from './hooks/usePostOrchestrationProcessAttachedReleaseGroupsMutation';
|
|
23
|
+
export { postOrchestrationProcessInput, usePostOrchestrationProcessInputMutation, } from './hooks/usePostOrchestrationProcessInputMutation';
|
|
25
24
|
export { postOrchestrationProcess, usePostOrchestrationProcessMutation, } from './hooks/usePostOrchestrationProcessMutation';
|
|
26
25
|
export { postReleaseGroup, usePostReleaseGroupMutation } from './hooks/usePostReleaseGroupMutation';
|
|
27
26
|
export { postReleaseSummary, usePostReleaseSummaryMutation, } from './hooks/usePostReleaseSummaryMutation';
|
|
28
|
-
export { putOrchestrationActivityInputStore, usePutOrchestrationActivityInputStoreMutation, } from './hooks/usePutOrchestrationActivityInputStoreMutation';
|
|
29
27
|
export { putOrchestrationActivity, usePutOrchestrationActivityMutation, } from './hooks/usePutOrchestrationActivityMutation';
|
|
30
|
-
export {
|
|
28
|
+
export { putOrchestrationProcessInput, usePutOrchestrationProcessInputMutation, } from './hooks/usePutOrchestrationProcessInputMutation';
|
|
31
29
|
export { putOrchestrationProcess, usePutOrchestrationProcessMutation, } from './hooks/usePutOrchestrationProcessMutation';
|
|
32
30
|
export { putReleaseGroup, usePutReleaseGroupMutation } from './hooks/usePutReleaseGroupMutation';
|
|
33
31
|
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
|
}
|