@harnessio/react-chaos-manager-client 1.63.0 → 1.64.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.
@@ -9,7 +9,7 @@ export interface ExperimentActionRef {
9
9
  /**
10
10
  * Conditions to check if the action should be executed
11
11
  */
12
- conditions?: ExperimentConditions;
12
+ conditionsV2?: ExperimentConditions;
13
13
  /**
14
14
  * ContinueOnCompletion to continue on completion
15
15
  */
@@ -8,7 +8,7 @@ export interface ExperimentFaultRef {
8
8
  /**
9
9
  * Conditions to check if the action should be executed
10
10
  */
11
- conditions?: ExperimentConditions;
11
+ conditionsV2?: ExperimentConditions;
12
12
  /**
13
13
  * Identity of the fault reference
14
14
  */
@@ -9,7 +9,7 @@ export interface ExperimentProbeRef {
9
9
  /**
10
10
  * Conditions to check if the action should be executed
11
11
  */
12
- conditions?: ExperimentConditions;
12
+ conditionsV2?: ExperimentConditions;
13
13
  /**
14
14
  * Duration of the probe
15
15
  */
@@ -5,5 +5,6 @@ export interface ExperimentsRecentRunDetails {
5
5
  experimentRunId?: string;
6
6
  phase?: string;
7
7
  resiliencyScore?: number;
8
+ updatedAt?: number;
8
9
  updatedBy?: HcesdkUserDetails;
9
10
  }
@@ -1,7 +1,7 @@
1
1
  import type { ExperimentConditions } from '../schemas/ExperimentConditions';
2
2
  import type { TemplateInputMinimum } from '../schemas/TemplateInputMinimum';
3
3
  export interface ExperimenttemplateAction {
4
- conditions?: ExperimentConditions;
4
+ conditionsV2?: ExperimentConditions;
5
5
  continueOnCompletion?: boolean;
6
6
  identity?: string;
7
7
  infraId?: string;
@@ -2,7 +2,7 @@ import type { ExperimentConditions } from '../schemas/ExperimentConditions';
2
2
  import type { TemplateInputMinimum } from '../schemas/TemplateInputMinimum';
3
3
  export interface ExperimenttemplateFault {
4
4
  authEnabled?: boolean;
5
- conditions?: ExperimentConditions;
5
+ conditionsV2?: ExperimentConditions;
6
6
  identity?: string;
7
7
  infraId?: string;
8
8
  isEnterprise?: boolean;
@@ -1,7 +1,7 @@
1
1
  import type { ExperimentConditions } from '../schemas/ExperimentConditions';
2
2
  import type { TemplateInputMinimum } from '../schemas/TemplateInputMinimum';
3
3
  export interface ExperimenttemplateProbe {
4
- conditions?: ExperimentConditions;
4
+ conditionsV2?: ExperimentConditions;
5
5
  duration?: string;
6
6
  enableDataCollection?: boolean;
7
7
  identity?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-chaos-manager-client",
3
- "version": "1.63.0",
3
+ "version": "1.64.0",
4
4
  "description": "Harness React Chaos Manager Service Client - APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",