@harnessio/react-rmg-service-client 0.13.0 → 0.14.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/usePostReleaseSummaryMutation.d.ts +1 -0
- package/dist/rmg-service/src/services/schemas/StageInfoDto.d.ts +8 -0
- package/dist/rmg-service/src/services/schemas/StageInfoType.d.ts +1 -1
- package/dist/rmg-service/src/services/schemas/StepInfoDto.d.ts +12 -0
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
|
7
7
|
export interface PostReleaseSummaryMutationQueryParams {
|
|
8
8
|
orgIdentifier?: string;
|
|
9
9
|
searchTerm?: string;
|
|
10
|
+
releaseGroupIds?: string[];
|
|
10
11
|
}
|
|
11
12
|
export interface PostReleaseSummaryMutationHeaderParams {
|
|
12
13
|
'Harness-Account': string;
|
|
@@ -18,6 +18,14 @@ export interface StageInfoDto {
|
|
|
18
18
|
* Name of the stage.
|
|
19
19
|
*/
|
|
20
20
|
name: string;
|
|
21
|
+
/**
|
|
22
|
+
* Stage execution Id.
|
|
23
|
+
*/
|
|
24
|
+
stageExecutionId?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Node Id of the stage.
|
|
27
|
+
*/
|
|
28
|
+
stageNodeId?: string;
|
|
21
29
|
/**
|
|
22
30
|
* Start timestamp of the stage.
|
|
23
31
|
*/
|
|
@@ -18,10 +18,22 @@ export interface StepInfoDto {
|
|
|
18
18
|
* Name of the step.
|
|
19
19
|
*/
|
|
20
20
|
name: string;
|
|
21
|
+
/**
|
|
22
|
+
* Stage Execution Id
|
|
23
|
+
*/
|
|
24
|
+
stageExecutionId?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Node Id of the stage.
|
|
27
|
+
*/
|
|
28
|
+
stageNodeId?: string;
|
|
21
29
|
/**
|
|
22
30
|
* Start timestamp of the step.
|
|
23
31
|
*/
|
|
24
32
|
startTs: number;
|
|
25
33
|
status: Status;
|
|
34
|
+
/**
|
|
35
|
+
* Step execution identifier.
|
|
36
|
+
*/
|
|
37
|
+
stepExecutionId?: string;
|
|
26
38
|
type: StepInfoType;
|
|
27
39
|
}
|