@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.
@@ -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
  */
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Type of the stage (e.g., CD, custom)
3
3
  */
4
- export type StageInfoType = 'CD' | 'Custom';
4
+ export type StageInfoType = 'Approval' | 'CD' | 'Custom' | 'GITOPS';
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-rmg-service-client",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
4
  "description": "Harness Release Management Service APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",