@harnessio/react-rmg-service-client 0.37.0 → 0.38.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.
@@ -172,7 +172,7 @@ export type { UpdateReleaseConflictResponseResponse } from './responses/UpdateRe
172
172
  export type { UpdateReleaseGroupResponseResponse } from './responses/UpdateReleaseGroupResponseResponse';
173
173
  export type { UpdateReleaseResponseResponse } from './responses/UpdateReleaseResponseResponse';
174
174
  export type { UpdateTaskCommentResponseResponse } from './responses/UpdateTaskCommentResponseResponse';
175
- export type { ActivitiesCounts } from './schemas/ActivitiesCounts';
175
+ export type { ActivityCounts } from './schemas/ActivityCounts';
176
176
  export type { ActivityExecutionInputDto } from './schemas/ActivityExecutionInputDto';
177
177
  export type { ActivityInputYaml } from './schemas/ActivityInputYaml';
178
178
  export type { ActivityInputsResponse } from './schemas/ActivityInputsResponse';
@@ -245,6 +245,7 @@ export type { ReleaseFrequency } from './schemas/ReleaseFrequency';
245
245
  export type { ReleaseGroupDto } from './schemas/ReleaseGroupDto';
246
246
  export type { ReleaseGroupYaml } from './schemas/ReleaseGroupYaml';
247
247
  export type { ReleaseInputYaml } from './schemas/ReleaseInputYaml';
248
+ export type { ReleaseParentDto } from './schemas/ReleaseParentDto';
248
249
  export type { ReleaseType } from './schemas/ReleaseType';
249
250
  export type { RepeatUnit } from './schemas/RepeatUnit';
250
251
  export type { ServiceInfoDto } from './schemas/ServiceInfoDto';
@@ -1,5 +1,10 @@
1
+ import type { ReleaseParentDto } from '../schemas/ReleaseParentDto';
1
2
  import type { ReleaseDto } from '../schemas/ReleaseDto';
2
3
  export interface ReleaseDetailsResponseResponse {
4
+ /**
5
+ * Ancestor releases for this release, starting from the immediate parent up to 3 levels.
6
+ */
7
+ parentReleases?: ReleaseParentDto[];
3
8
  releaseInfo: ReleaseDto;
4
9
  yaml: string;
5
10
  }
@@ -2,7 +2,7 @@ import type { ActivityTypeCounts } from '../schemas/ActivityTypeCounts';
2
2
  /**
3
3
  * Activity counts grouped by type and status
4
4
  */
5
- export interface ActivitiesCounts {
5
+ export interface ActivityCounts {
6
6
  /**
7
7
  * Manual activity counts
8
8
  */
@@ -1,4 +1,4 @@
1
- import type { ActivitiesCounts } from '../schemas/ActivitiesCounts';
1
+ import type { ActivityCounts } from '../schemas/ActivityCounts';
2
2
  import type { FailureInfo } from '../schemas/FailureInfo';
3
3
  import type { Status } from '../schemas/Status';
4
4
  /**
@@ -8,7 +8,7 @@ export interface OrchestrationExecutionPhase {
8
8
  /**
9
9
  * Activity counts for this phase grouped by type and status
10
10
  */
11
- activitiesCounts: ActivitiesCounts;
11
+ activityCounts: ActivityCounts;
12
12
  /**
13
13
  * Number of completed activities in the phase
14
14
  */
@@ -0,0 +1,26 @@
1
+ export interface ReleaseParentDto {
2
+ /**
3
+ * Identifier of the subprocess activity that created this ancestor release (empty for roots)
4
+ */
5
+ activityIdentifier?: string;
6
+ /**
7
+ * Name of the subprocess activity that created this ancestor release (empty for roots)
8
+ */
9
+ activityName?: string;
10
+ /**
11
+ * Release id of the ancestor
12
+ */
13
+ id?: string;
14
+ /**
15
+ * Release identifier of the ancestor
16
+ */
17
+ identifier?: string;
18
+ /**
19
+ * Identifier of the orchestration process attached to this ancestor release
20
+ */
21
+ processIdentifier?: string;
22
+ /**
23
+ * Name of the orchestration process attached to this ancestor release
24
+ */
25
+ processName?: string;
26
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-rmg-service-client",
3
- "version": "0.37.0",
3
+ "version": "0.38.0",
4
4
  "description": "Harness Release Management Service APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",