@harnessio/react-chaos-manager-client 1.30.0 → 1.30.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.
@@ -5,6 +5,7 @@ import { FetcherOptions } from '../../../../custom-fetcher/index.js';
5
5
  export interface ListConditionQueryQueryParams {
6
6
  accountIdentifier: string;
7
7
  correlationID?: string;
8
+ infrastructureType?: 'Kubernetes' | 'KubernetesV2' | 'Linux' | 'Windows';
8
9
  /**
9
10
  * @default 15
10
11
  */
@@ -5,6 +5,7 @@ import { FetcherOptions } from '../../../../custom-fetcher/index.js';
5
5
  export interface ListRuleQueryQueryParams {
6
6
  accountIdentifier: string;
7
7
  correlationID?: string;
8
+ infrastructureType?: 'Kubernetes' | 'KubernetesV2' | 'Linux' | 'Windows';
8
9
  /**
9
10
  * @default 15
10
11
  */
@@ -3,6 +3,10 @@ export interface InfraInfraFilterInput {
3
3
  * ID of the infra
4
4
  */
5
5
  description?: string;
6
+ /**
7
+ * Experiment version of the infra
8
+ */
9
+ experimentVersion?: string;
6
10
  /**
7
11
  * ID of the infra
8
12
  */
@@ -4,10 +4,26 @@ export interface InfraRegisterInfraUserInputs {
4
4
  * The interval at which abort is polled for a running task
5
5
  */
6
6
  abortPollInterval?: string;
7
+ /**
8
+ * Name of the log file directory
9
+ */
10
+ chaosInfrastructureLogFileDirectory?: string;
11
+ /**
12
+ * Maximum number of log file backups
13
+ */
14
+ chaosInfrastructureLogFileMaxBackups?: number;
15
+ /**
16
+ * Maximum size of log file in MB
17
+ */
18
+ chaosInfrastructureLogFileMaxSize?: number;
7
19
  /**
8
20
  * TLS certificate to be used with the infrastructure
9
21
  */
10
22
  customTlsCertificate?: string;
23
+ /**
24
+ * Maximum age of log file in days
25
+ */
26
+ experimentLogFileMaxAgeDays?: number;
11
27
  /**
12
28
  * The timeout duration for the infrastructure http client
13
29
  */
@@ -1,6 +1,7 @@
1
1
  import type { InfraV2InfraScope } from '../schemas/InfraV2InfraScope';
2
2
  import type { InfraV2InfraTypeFilter } from '../schemas/InfraV2InfraTypeFilter';
3
3
  export interface InfraV2KubernetesInfraV2FilterInput {
4
+ environmentIDs?: string[];
4
5
  infraScope?: InfraV2InfraScope;
5
6
  infraTypeFilter?: InfraV2InfraTypeFilter;
6
7
  status?: string;
@@ -8,7 +8,7 @@ export interface PipelineonboardingPipelineChaosOnboardingStatusResponse {
8
8
  /**
9
9
  * Advance Configurations
10
10
  */
11
- chaosInfraAdvanceConfiguration?: V2OnboardingChaosInfraAdvanceConfiguration;
11
+ chaosAdvanceConfiguration?: V2OnboardingChaosInfraAdvanceConfiguration;
12
12
  createdAt?: number;
13
13
  createdBy?: string;
14
14
  discoveryAdvanceConfiguration?: DatabaseAgentConfiguration;
@@ -1,7 +1,7 @@
1
1
  import type { V2OnboardingChaosInfraAdvanceConfiguration } from '../schemas/V2OnboardingChaosInfraAdvanceConfiguration';
2
2
  import type { DatabaseAgentConfiguration } from '../schemas/DatabaseAgentConfiguration';
3
3
  export interface PipelineonboardingPipelineChaosOnboardingTaskRequest {
4
- chaosInfraAdvanceConfiguration?: V2OnboardingChaosInfraAdvanceConfiguration;
4
+ chaosAdvanceConfiguration?: V2OnboardingChaosInfraAdvanceConfiguration;
5
5
  discoveryAdvanceConfiguration?: DatabaseAgentConfiguration;
6
6
  isAIEnabled?: boolean;
7
7
  pipelineIdentity?: string;
@@ -7,7 +7,7 @@ export interface PipelineonboardingPipelineOnboarding {
7
7
  /**
8
8
  * Advance Configurations
9
9
  */
10
- chaosInfraAdvanceConfiguration?: V2OnboardingChaosInfraAdvanceConfiguration;
10
+ chaosAdvanceConfiguration?: V2OnboardingChaosInfraAdvanceConfiguration;
11
11
  createdAt?: number;
12
12
  createdBy?: string;
13
13
  discoveryAdvanceConfiguration?: DatabaseAgentConfiguration;
@@ -1,3 +1,3 @@
1
1
  export interface ResourceQuantity {
2
- Format?: string;
2
+ Format?: 'BinarySI' | 'DecimalExponent' | 'DecimalSI';
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-chaos-manager-client",
3
- "version": "1.30.0",
3
+ "version": "1.30.1",
4
4
  "description": "Harness React Chaos Manager Service Client - APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",