@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.
- package/dist/chaos-manager/src/services/hooks/useListFaultQuery.d.ts +1 -0
- package/dist/chaos-manager/src/services/index.d.ts +0 -2
- package/dist/chaos-manager/src/services/schemas/ChaosExecutionNodesChaosExecutionNode.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaoshubresourcesPermissionLevel.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ExecutionChaosExecutionNode.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ExecutionFaultData.d.ts +8 -4
- package/package.json +1 -1
- package/dist/chaos-manager/src/services/schemas/ExecutionKubernetesFaultData.d.ts +0 -10
- package/dist/chaos-manager/src/services/schemas/ExecutionKubernetesFaultData.js +0 -1
- package/dist/chaos-manager/src/services/schemas/ExecutionMachineChaosFaultData.d.ts +0 -3
- package/dist/chaos-manager/src/services/schemas/ExecutionMachineChaosFaultData.js +0 -4
|
@@ -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';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type ChaoshubresourcesPermissionLevel = '
|
|
1
|
+
export type ChaoshubresourcesPermissionLevel = 'advanced' | 'basic';
|
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type {
|
|
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
|
-
|
|
5
|
-
|
|
5
|
+
helperPodDetails?: ExecutionHelperPodDetails[];
|
|
6
|
+
name?: string;
|
|
7
|
+
namespace?: string;
|
|
8
|
+
targetChaosStatus?: V1alpha1TargetDetails[];
|
|
9
|
+
targets?: V1alpha1Targets[];
|
|
6
10
|
}
|
package/package.json
CHANGED
|
@@ -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 +0,0 @@
|
|
|
1
|
-
export {};
|