@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.
@@ -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';
@@ -4,4 +4,5 @@ export interface DrComponentProbeData {
4
4
  iterations?: DrComponentProbeIterations[];
5
5
  name?: string;
6
6
  probeType?: string;
7
+ risks?: string[];
7
8
  }
@@ -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
- experimentID?: string;
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';
@@ -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-chaos-manager-client",
3
- "version": "1.49.1-beta.0",
3
+ "version": "1.49.1-beta.1",
4
4
  "description": "Harness React Chaos Manager Service Client - APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",