@harnessio/react-chaos-manager-client 1.49.1-beta.0 → 1.49.1-beta.1
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/chaos-manager/src/services/index.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/DrComponentProbeData.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/RisksActiveExecutionResponse.d.ts +5 -3
- package/dist/chaos-manager/src/services/schemas/RisksExecutionType.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/RisksExecutionType.js +4 -0
- package/package.json +1 -1
|
@@ -1015,6 +1015,7 @@ export type { RisksActiveExecutionResponse } from './schemas/RisksActiveExecutio
|
|
|
1015
1015
|
export type { RisksActiveRiskCounter } from './schemas/RisksActiveRiskCounter';
|
|
1016
1016
|
export type { RisksCreateRequest } from './schemas/RisksCreateRequest';
|
|
1017
1017
|
export type { RisksDeleteResponse } from './schemas/RisksDeleteResponse';
|
|
1018
|
+
export type { RisksExecutionType } from './schemas/RisksExecutionType';
|
|
1018
1019
|
export type { RisksInfrastructure } from './schemas/RisksInfrastructure';
|
|
1019
1020
|
export type { RisksListExecutionResponse } from './schemas/RisksListExecutionResponse';
|
|
1020
1021
|
export type { RisksListRiskResponse } from './schemas/RisksListRiskResponse';
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
import type { HcesdkUserDetails } from '../schemas/HcesdkUserDetails';
|
|
2
|
+
import type { RisksExecutionType } from '../schemas/RisksExecutionType';
|
|
2
3
|
import type { ExecutionChaosStepStatus } from '../schemas/ExecutionChaosStepStatus';
|
|
3
4
|
export interface RisksActiveExecutionResponse {
|
|
4
5
|
duration?: string;
|
|
5
6
|
executedBy?: HcesdkUserDetails;
|
|
6
7
|
executionID?: number;
|
|
7
|
-
|
|
8
|
-
experimentName?: string;
|
|
9
|
-
experimentRunID?: string;
|
|
8
|
+
executionType?: RisksExecutionType;
|
|
10
9
|
lastUpdatedAt?: number;
|
|
10
|
+
name?: string;
|
|
11
|
+
parentIdentity?: string;
|
|
11
12
|
probeID?: string;
|
|
12
13
|
probeName?: string;
|
|
14
|
+
runID?: string;
|
|
13
15
|
startedAt?: number;
|
|
14
16
|
status?: ExecutionChaosStepStatus;
|
|
15
17
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type RisksExecutionType = 'CHAOS_EXECUTION' | 'DR_EXECUTION';
|
package/package.json
CHANGED