@harnessio/react-rmg-service-client 0.51.0 → 0.52.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/useDeleteReleaseGroupMutation.d.ts +1 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessSummaryQuery.d.ts +1 -0
- package/dist/rmg-service/src/services/hooks/useGetReleaseActivitiesQuery.d.ts +1 -0
- package/dist/rmg-service/src/services/hooks/useGetReleaseDayActivitiesQuery.d.ts +1 -0
- package/dist/rmg-service/src/services/hooks/useGetReleaseGroupQuery.d.ts +1 -0
- package/dist/rmg-service/src/services/hooks/useGetReleaseGroupSummaryQuery.d.ts +1 -0
- package/dist/rmg-service/src/services/hooks/useGetReleaseReleaseIdApprovalsQuery.d.ts +1 -0
- package/dist/rmg-service/src/services/hooks/useGetReleaseTasksQuery.d.ts +1 -0
- package/dist/rmg-service/src/services/hooks/usePatchReleaseGroupMutation.d.ts +1 -0
- package/dist/rmg-service/src/services/hooks/usePostReleaseGroupMutation.d.ts +1 -0
- package/dist/rmg-service/src/services/hooks/usePostReleaseSummaryMutation.d.ts +1 -0
- package/dist/rmg-service/src/services/hooks/usePutReleaseGroupMutation.d.ts +1 -0
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ export interface DeleteReleaseGroupMutationPathParams {
|
|
|
8
8
|
}
|
|
9
9
|
export interface DeleteReleaseGroupMutationQueryParams {
|
|
10
10
|
orgIdentifier?: string;
|
|
11
|
+
projectIdentifier?: string;
|
|
11
12
|
}
|
|
12
13
|
export interface DeleteReleaseGroupMutationHeaderParams {
|
|
13
14
|
'Harness-Account': string;
|
|
@@ -5,6 +5,7 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
5
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
6
|
export interface GetOrchestrationProcessSummaryQueryQueryParams {
|
|
7
7
|
orgIdentifier?: string;
|
|
8
|
+
projectIdentifier?: string;
|
|
8
9
|
searchTerm?: string;
|
|
9
10
|
page?: number;
|
|
10
11
|
size?: number;
|
|
@@ -5,6 +5,7 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
5
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
6
|
export interface GetReleaseGroupSummaryQueryQueryParams {
|
|
7
7
|
orgIdentifier?: string;
|
|
8
|
+
projectIdentifier?: string;
|
|
8
9
|
searchTerm?: string;
|
|
9
10
|
status?: string[];
|
|
10
11
|
type?: 'Orchestration' | 'Tracking';
|
|
@@ -9,6 +9,7 @@ export interface PatchReleaseGroupMutationPathParams {
|
|
|
9
9
|
}
|
|
10
10
|
export interface PatchReleaseGroupMutationQueryParams {
|
|
11
11
|
orgIdentifier?: string;
|
|
12
|
+
projectIdentifier?: string;
|
|
12
13
|
}
|
|
13
14
|
export interface PatchReleaseGroupMutationHeaderParams {
|
|
14
15
|
'Harness-Account': string;
|
|
@@ -6,6 +6,7 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
6
6
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
7
|
export interface PostReleaseGroupMutationQueryParams {
|
|
8
8
|
orgIdentifier?: string;
|
|
9
|
+
projectIdentifier?: string;
|
|
9
10
|
}
|
|
10
11
|
export interface PostReleaseGroupMutationHeaderParams {
|
|
11
12
|
'Harness-Account': string;
|
|
@@ -6,6 +6,7 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
6
6
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
7
|
export interface PostReleaseSummaryMutationQueryParams {
|
|
8
8
|
orgIdentifier?: string;
|
|
9
|
+
projectIdentifier?: string;
|
|
9
10
|
searchTerm?: string;
|
|
10
11
|
releaseGroupIds?: string[];
|
|
11
12
|
type?: 'Orchestration' | 'Tracking';
|