@harnessio/react-rmg-service-client 0.14.0 → 0.15.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.
|
@@ -10,6 +10,11 @@ export interface GetReleaseDayActivitiesQueryQueryParams {
|
|
|
10
10
|
orgIdentifier?: string;
|
|
11
11
|
startTs: number;
|
|
12
12
|
endTs: number;
|
|
13
|
+
/**
|
|
14
|
+
* @default 500
|
|
15
|
+
*/
|
|
16
|
+
limit?: number;
|
|
17
|
+
cursor?: string;
|
|
13
18
|
}
|
|
14
19
|
export interface GetReleaseDayActivitiesQueryHeaderParams {
|
|
15
20
|
'Harness-Account': string;
|
|
@@ -4,6 +4,7 @@ import type { ReleaseConflictInfo } from '../schemas/ReleaseConflictInfo';
|
|
|
4
4
|
import type { ConflictStatus } from '../schemas/ConflictStatus';
|
|
5
5
|
import type { TriggerType } from '../schemas/TriggerType';
|
|
6
6
|
import type { TriggeredByDto } from '../schemas/TriggeredByDto';
|
|
7
|
+
import type { ReleaseType } from '../schemas/ReleaseType';
|
|
7
8
|
export interface ExecutionConflict {
|
|
8
9
|
/**
|
|
9
10
|
* Comment associated with the conflict
|
|
@@ -67,4 +68,8 @@ export interface ExecutionConflict {
|
|
|
67
68
|
status: ConflictStatus;
|
|
68
69
|
triggerType: TriggerType;
|
|
69
70
|
triggeredBy: TriggeredByDto;
|
|
71
|
+
/**
|
|
72
|
+
* Type of the conflict (System, Beta, Hotfix, Patch)
|
|
73
|
+
*/
|
|
74
|
+
type?: ReleaseType;
|
|
70
75
|
}
|