@harnessio/react-chaos-manager-client 1.54.1-beta.0 → 1.55.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.
@@ -15,6 +15,7 @@ export interface ChaosfaultCreateFaultRequest {
15
15
  infraType?: string;
16
16
  infras?: string[];
17
17
  inputs?: TemplateInput[];
18
+ isRemoved?: boolean;
18
19
  kind?: string;
19
20
  links?: FaultLink[];
20
21
  managedBy?: MongodbManagedBy;
@@ -16,6 +16,7 @@ export interface ChaosfaultCreateFaultResponse {
16
16
  infraType?: string;
17
17
  infras?: string[];
18
18
  inputs?: TemplateInput[];
19
+ isRemoved?: boolean;
19
20
  kind?: string;
20
21
  links?: FaultLink[];
21
22
  name: string;
@@ -17,6 +17,7 @@ export interface ChaosfaultGetFaultResponse {
17
17
  infras?: string[];
18
18
  inputs?: TemplateInput[];
19
19
  isEnterprise?: boolean;
20
+ isRemoved?: boolean;
20
21
  kind?: string;
21
22
  links?: FaultLink[];
22
23
  managedBy?: MongodbManagedBy;
@@ -14,6 +14,7 @@ export interface ChaosfaultUpdateFaultRequest {
14
14
  infraType?: string;
15
15
  infras?: string[];
16
16
  inputs?: TemplateInput[];
17
+ isRemoved?: boolean;
17
18
  kind?: string;
18
19
  links?: FaultLink[];
19
20
  name: string;
@@ -15,6 +15,7 @@ export interface ChaosfaultUpdateFaultResponse {
15
15
  infraType?: string;
16
16
  infras?: string[];
17
17
  inputs?: TemplateInput[];
18
+ isRemoved?: boolean;
18
19
  kind?: string;
19
20
  links?: FaultLink[];
20
21
  name: string;
@@ -11,6 +11,7 @@ export interface ChaosfaulttemplateCreateFaultTemplateRequest {
11
11
  infras?: string[];
12
12
  inputs?: TemplateInput[];
13
13
  isDefault?: boolean;
14
+ isRemoved?: boolean;
14
15
  keywords?: string[];
15
16
  kind?: string;
16
17
  links?: FaulttemplateLink[];
@@ -13,6 +13,7 @@ export interface ChaosfaulttemplateCreateFaultTemplateResponse {
13
13
  infras?: string[];
14
14
  inputs?: TemplateInput[];
15
15
  isDefault?: boolean;
16
+ isRemoved?: boolean;
16
17
  keywords?: string[];
17
18
  kind?: string;
18
19
  links?: FaulttemplateLink[];
@@ -13,6 +13,7 @@ export interface ChaosfaulttemplateUpdateFaultTemplateResponse {
13
13
  infras?: string[];
14
14
  inputs?: TemplateInput[];
15
15
  isDefault?: boolean;
16
+ isRemoved?: boolean;
16
17
  keywords?: string[];
17
18
  kind?: string;
18
19
  links?: FaulttemplateLink[];
@@ -11,6 +11,7 @@ export interface FaulttemplateFaultTemplate {
11
11
  infras?: string[];
12
12
  inputs?: TemplateInput[];
13
13
  isDefault?: boolean;
14
+ isRemoved?: boolean;
14
15
  keywords?: string[];
15
16
  kind?: string;
16
17
  links?: FaulttemplateLink[];
@@ -66,6 +66,7 @@ export interface GithubComHarnessHceSaasHceSdkTypesApiMachineInfraInfra {
66
66
  * Status of the infrastructure
67
67
  */
68
68
  status?: InfraInfraStatus;
69
+ supportsLoad?: boolean;
69
70
  /**
70
71
  * Tags of the infra
71
72
  */
@@ -1,6 +1,7 @@
1
1
  export interface InfraUpdateInfraRequest {
2
2
  description?: string;
3
3
  environmentID?: string;
4
+ loadEnabled?: boolean;
4
5
  name?: string;
5
6
  tags?: string[];
6
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-chaos-manager-client",
3
- "version": "1.54.1-beta.0",
3
+ "version": "1.55.0",
4
4
  "description": "Harness React Chaos Manager Service Client - APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",