@harnessio/react-chaos-manager-client 1.3.0 → 1.4.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.
@@ -8,6 +8,7 @@ export interface ListFaultQueryQueryParams {
8
8
  projectIdentifier: string;
9
9
  hubIdentity?: string;
10
10
  infraType?: string;
11
+ permissionsRequired?: string;
11
12
  entityType?: string;
12
13
  search: string;
13
14
  /**
@@ -392,8 +392,6 @@ export type { ExecutionFaultData } from './schemas/ExecutionFaultData';
392
392
  export type { ExecutionHelperPodDetails } from './schemas/ExecutionHelperPodDetails';
393
393
  export type { ExecutionHttpProbe } from './schemas/ExecutionHttpProbe';
394
394
  export type { ExecutionInfraType } from './schemas/ExecutionInfraType';
395
- export type { ExecutionKubernetesFaultData } from './schemas/ExecutionKubernetesFaultData';
396
- export type { ExecutionMachineChaosFaultData } from './schemas/ExecutionMachineChaosFaultData';
397
395
  export type { ExecutionProbeData } from './schemas/ExecutionProbeData';
398
396
  export type { ExecutionProbeIterations } from './schemas/ExecutionProbeIterations';
399
397
  export type { ExecutionPromProbe } from './schemas/ExecutionPromProbe';
@@ -15,6 +15,7 @@ export interface ChaosExecutionNodesChaosExecutionNode {
15
15
  lastUpdatedAt?: number;
16
16
  orgID?: string;
17
17
  projectID?: string;
18
+ spec?: string;
18
19
  startedAt?: number;
19
20
  status?: ChaosExecutionNodesChaosStepStatus;
20
21
  stepName?: string;
@@ -1 +1 @@
1
- export type ChaoshubresourcesPermissionLevel = 'advance' | 'basic';
1
+ export type ChaoshubresourcesPermissionLevel = 'advanced' | 'basic';
@@ -13,6 +13,7 @@ export interface ExecutionChaosExecutionNode {
13
13
  infraType?: ExecutionInfraType;
14
14
  isRemoved?: boolean;
15
15
  lastUpdatedAt?: number;
16
+ spec?: string;
16
17
  startedAt?: number;
17
18
  status?: ExecutionChaosStepStatus;
18
19
  stepName?: string;
@@ -1,6 +1,10 @@
1
- import type { ExecutionKubernetesFaultData } from '../schemas/ExecutionKubernetesFaultData';
2
- import type { ExecutionMachineChaosFaultData } from '../schemas/ExecutionMachineChaosFaultData';
1
+ import type { ExecutionHelperPodDetails } from '../schemas/ExecutionHelperPodDetails';
2
+ import type { V1alpha1TargetDetails } from '../schemas/V1alpha1TargetDetails';
3
+ import type { V1alpha1Targets } from '../schemas/V1alpha1Targets';
3
4
  export interface ExecutionFaultData {
4
- kubernetesFaultData?: ExecutionKubernetesFaultData;
5
- machineChaosFaultData?: ExecutionMachineChaosFaultData;
5
+ helperPodDetails?: ExecutionHelperPodDetails[];
6
+ name?: string;
7
+ namespace?: string;
8
+ targetChaosStatus?: V1alpha1TargetDetails[];
9
+ targets?: V1alpha1Targets[];
6
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-chaos-manager-client",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "Harness React Chaos Manager Service Client - APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",
@@ -1,10 +0,0 @@
1
- import type { ExecutionHelperPodDetails } from '../schemas/ExecutionHelperPodDetails';
2
- import type { V1alpha1TargetDetails } from '../schemas/V1alpha1TargetDetails';
3
- import type { V1alpha1Targets } from '../schemas/V1alpha1Targets';
4
- export interface ExecutionKubernetesFaultData {
5
- helperPodDetails?: ExecutionHelperPodDetails[];
6
- name?: string;
7
- namespace?: string;
8
- targetChaosStatus?: V1alpha1TargetDetails[];
9
- targets?: V1alpha1Targets[];
10
- }
@@ -1,3 +0,0 @@
1
- export interface ExecutionMachineChaosFaultData {
2
- name?: string;
3
- }
@@ -1,4 +0,0 @@
1
- /* eslint-disable */
2
- // This code is autogenerated using @harnessio/oats-cli.
3
- // Please do not modify this code directly.
4
- export {};