@harnessio/react-chaos-manager-client 1.28.1 → 1.29.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/index.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/PipelineonboardingInfrastructuresStatus.d.ts +3 -0
- package/dist/chaos-manager/src/services/schemas/PipelineonboardingInfrastructuresStatus.js +4 -0
- package/dist/chaos-manager/src/services/schemas/PipelineonboardingPipelineChaosOnboardingCheckResponse.d.ts +2 -3
- package/dist/chaos-manager/src/services/schemas/PipelineonboardingPipelineChaosOnboardingCheckResponse.js +0 -3
- package/dist/chaos-manager/src/services/schemas/PipelineonboardingPipelineChaosOnboardingStatusResponse.d.ts +8 -0
- package/dist/chaos-manager/src/services/schemas/PipelineonboardingPipelineChaosOnboardingTaskRequest.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/PipelineonboardingPipelineChaosOnboardingTaskRequest.js +0 -3
- package/dist/chaos-manager/src/services/schemas/PipelineonboardingPipelineOnboarding.d.ts +8 -0
- package/dist/chaos-manager/src/services/schemas/V2OnboardingChaosInfraAdvanceConfiguration.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/V2OnboardingV2OnboardingRequest.d.ts +1 -0
- package/package.json +1 -1
|
@@ -738,6 +738,7 @@ export type { NetworkmapRetryExperimentCreationRequest } from './schemas/Network
|
|
|
738
738
|
export type { NetworkmapRetryExperimentCreationResponse } from './schemas/NetworkmapRetryExperimentCreationResponse';
|
|
739
739
|
export type { NetworkmapTargetServiceDetails } from './schemas/NetworkmapTargetServiceDetails';
|
|
740
740
|
export type { PipelineonboardingInfrastructureOnboardingMapping } from './schemas/PipelineonboardingInfrastructureOnboardingMapping';
|
|
741
|
+
export type { PipelineonboardingInfrastructuresStatus } from './schemas/PipelineonboardingInfrastructuresStatus';
|
|
741
742
|
export type { PipelineonboardingListPipelineOnboardingResponse } from './schemas/PipelineonboardingListPipelineOnboardingResponse';
|
|
742
743
|
export type { PipelineonboardingPipelineChaosOnboardingCheckResponse } from './schemas/PipelineonboardingPipelineChaosOnboardingCheckResponse';
|
|
743
744
|
export type { PipelineonboardingPipelineChaosOnboardingStatusResponse } from './schemas/PipelineonboardingPipelineChaosOnboardingStatusResponse';
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
+
import type { PipelineonboardingInfrastructuresStatus } from '../schemas/PipelineonboardingInfrastructuresStatus';
|
|
1
2
|
export interface PipelineonboardingPipelineChaosOnboardingCheckResponse {
|
|
2
3
|
check?: boolean;
|
|
3
4
|
infrastructures?: {
|
|
4
5
|
[key: string]: {
|
|
5
|
-
[key: string]:
|
|
6
|
-
[key: string]: any;
|
|
7
|
-
};
|
|
6
|
+
[key: string]: PipelineonboardingInfrastructuresStatus;
|
|
8
7
|
};
|
|
9
8
|
};
|
|
10
9
|
message?: string;
|
|
@@ -1,10 +1,17 @@
|
|
|
1
|
+
import type { V2OnboardingChaosInfraAdvanceConfiguration } from '../schemas/V2OnboardingChaosInfraAdvanceConfiguration';
|
|
2
|
+
import type { DatabaseAgentConfiguration } from '../schemas/DatabaseAgentConfiguration';
|
|
1
3
|
import type { PipelineonboardingInfrastructureOnboardingMapping } from '../schemas/PipelineonboardingInfrastructureOnboardingMapping';
|
|
2
4
|
import type { PipelineonboardingSelectedExperiment } from '../schemas/PipelineonboardingSelectedExperiment';
|
|
3
5
|
import type { PipelineonboardingStatus } from '../schemas/PipelineonboardingStatus';
|
|
4
6
|
export interface PipelineonboardingPipelineChaosOnboardingStatusResponse {
|
|
5
7
|
accountID: string;
|
|
8
|
+
/**
|
|
9
|
+
* Advance Configurations
|
|
10
|
+
*/
|
|
11
|
+
chaosInfraAdvanceConfiguration?: V2OnboardingChaosInfraAdvanceConfiguration;
|
|
6
12
|
createdAt?: number;
|
|
7
13
|
createdBy?: string;
|
|
14
|
+
discoveryAdvanceConfiguration?: DatabaseAgentConfiguration;
|
|
8
15
|
infrastructureOnboardingMappings?: PipelineonboardingInfrastructureOnboardingMapping[];
|
|
9
16
|
infrastructures?: {
|
|
10
17
|
[key: string]: {
|
|
@@ -13,6 +20,7 @@ export interface PipelineonboardingPipelineChaosOnboardingStatusResponse {
|
|
|
13
20
|
};
|
|
14
21
|
};
|
|
15
22
|
};
|
|
23
|
+
isAiEnabled?: boolean;
|
|
16
24
|
isRemoved: boolean;
|
|
17
25
|
message?: string;
|
|
18
26
|
orgID?: string;
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
import type { V2OnboardingChaosInfraAdvanceConfiguration } from '../schemas/V2OnboardingChaosInfraAdvanceConfiguration';
|
|
2
|
+
import type { DatabaseAgentConfiguration } from '../schemas/DatabaseAgentConfiguration';
|
|
1
3
|
export interface PipelineonboardingPipelineChaosOnboardingTaskRequest {
|
|
4
|
+
chaosInfraAdvanceConfiguration?: V2OnboardingChaosInfraAdvanceConfiguration;
|
|
5
|
+
discoveryAdvanceConfiguration?: DatabaseAgentConfiguration;
|
|
6
|
+
isAIEnabled?: boolean;
|
|
2
7
|
pipelineIdentity?: string;
|
|
3
8
|
}
|
|
@@ -1,9 +1,16 @@
|
|
|
1
|
+
import type { V2OnboardingChaosInfraAdvanceConfiguration } from '../schemas/V2OnboardingChaosInfraAdvanceConfiguration';
|
|
2
|
+
import type { DatabaseAgentConfiguration } from '../schemas/DatabaseAgentConfiguration';
|
|
1
3
|
import type { PipelineonboardingSelectedExperiment } from '../schemas/PipelineonboardingSelectedExperiment';
|
|
2
4
|
import type { PipelineonboardingStatus } from '../schemas/PipelineonboardingStatus';
|
|
3
5
|
export interface PipelineonboardingPipelineOnboarding {
|
|
4
6
|
accountID: string;
|
|
7
|
+
/**
|
|
8
|
+
* Advance Configurations
|
|
9
|
+
*/
|
|
10
|
+
chaosInfraAdvanceConfiguration?: V2OnboardingChaosInfraAdvanceConfiguration;
|
|
5
11
|
createdAt?: number;
|
|
6
12
|
createdBy?: string;
|
|
13
|
+
discoveryAdvanceConfiguration?: DatabaseAgentConfiguration;
|
|
7
14
|
infrastructures?: {
|
|
8
15
|
[key: string]: {
|
|
9
16
|
[key: string]: {
|
|
@@ -11,6 +18,7 @@ export interface PipelineonboardingPipelineOnboarding {
|
|
|
11
18
|
};
|
|
12
19
|
};
|
|
13
20
|
};
|
|
21
|
+
isAiEnabled?: boolean;
|
|
14
22
|
isRemoved: boolean;
|
|
15
23
|
message?: string;
|
|
16
24
|
orgID?: string;
|
package/dist/chaos-manager/src/services/schemas/V2OnboardingChaosInfraAdvanceConfiguration.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export interface V2OnboardingChaosInfraAdvanceConfiguration {
|
|
|
10
10
|
[key: string]: string;
|
|
11
11
|
};
|
|
12
12
|
autopilotEnabled?: boolean;
|
|
13
|
-
|
|
13
|
+
containers?: string;
|
|
14
14
|
env?: InfraV2Env[];
|
|
15
15
|
imagePullPolicy?: V1PullPolicy;
|
|
16
16
|
insecureSkipVerify?: boolean;
|
package/package.json
CHANGED