@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.
- package/dist/rmg-service/src/services/index.d.ts +2 -1
- package/dist/rmg-service/src/services/responses/ReleaseDetailsResponseResponse.d.ts +5 -0
- package/dist/rmg-service/src/services/schemas/{ActivitiesCounts.d.ts → ActivityCounts.d.ts} +1 -1
- package/dist/rmg-service/src/services/schemas/OrchestrationExecutionPhase.d.ts +2 -2
- package/dist/rmg-service/src/services/schemas/ReleaseParentDto.d.ts +26 -0
- package/dist/rmg-service/src/services/schemas/ReleaseParentDto.js +4 -0
- package/package.json +1 -1
- /package/dist/rmg-service/src/services/schemas/{ActivitiesCounts.js → ActivityCounts.js} +0 -0
|
@@ -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 {
|
|
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
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
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
|
-
|
|
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
|
+
}
|
package/package.json
CHANGED
|
File without changes
|