@harnessio/react-chaos-manager-client 1.79.0 → 1.80.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/useListScannedRiskOccurrencesQuery.d.ts +2 -0
- package/dist/chaos-manager/src/services/hooks/useListScannedRisksQuery.d.ts +1 -0
- package/dist/chaos-manager/src/services/index.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/RiskValidationType.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/RiskValidationType.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ScannedrisksOccurrenceDetail.d.ts +2 -0
- package/package.json +1 -1
|
@@ -24,7 +24,9 @@ export interface ListScannedRiskOccurrencesQueryQueryParams {
|
|
|
24
24
|
search?: string;
|
|
25
25
|
sortAscending?: boolean;
|
|
26
26
|
sortField?: 'experimentName' | 'lastExecuted' | 'lastUpdated' | 'name';
|
|
27
|
+
source?: 'DiscoveryAgent' | 'PipelineExecution' | 'ProbeExecution';
|
|
27
28
|
startTime?: number;
|
|
29
|
+
validationType?: string;
|
|
28
30
|
}
|
|
29
31
|
export type ListScannedRiskOccurrencesOkResponse = ScannedrisksOccurrencesResponse;
|
|
30
32
|
export type ListScannedRiskOccurrencesErrorResponse = SharedError;
|
|
@@ -26,6 +26,7 @@ export interface ListScannedRisksQueryQueryParams {
|
|
|
26
26
|
severity?: string;
|
|
27
27
|
sortAscending?: boolean;
|
|
28
28
|
sortField?: 'experimentName' | 'lastExecuted' | 'lastUpdated' | 'name';
|
|
29
|
+
source?: 'DiscoveryAgent' | 'PipelineExecution' | 'ProbeExecution';
|
|
29
30
|
startTime?: number;
|
|
30
31
|
tags?: string;
|
|
31
32
|
validationType?: string;
|
|
@@ -1260,6 +1260,7 @@ export type { RiskServiceDetails } from './schemas/RiskServiceDetails';
|
|
|
1260
1260
|
export type { RiskSeverity } from './schemas/RiskSeverity';
|
|
1261
1261
|
export type { RiskTargetService } from './schemas/RiskTargetService';
|
|
1262
1262
|
export type { RiskTargetServiceType } from './schemas/RiskTargetServiceType';
|
|
1263
|
+
export type { RiskValidationType } from './schemas/RiskValidationType';
|
|
1263
1264
|
export type { RiskoccurrencesProbeExecutionSource } from './schemas/RiskoccurrencesProbeExecutionSource';
|
|
1264
1265
|
export type { RiskrulesListResponse } from './schemas/RiskrulesListResponse';
|
|
1265
1266
|
export type { RiskrulesRiskRuleResponse } from './schemas/RiskrulesRiskRuleResponse';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type RiskValidationType = 'Confirmed' | 'Passive';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { RiskEvidenceResource } from '../schemas/RiskEvidenceResource';
|
|
2
2
|
import type { RiskoccurrencesProbeExecutionSource } from '../schemas/RiskoccurrencesProbeExecutionSource';
|
|
3
|
+
import type { RiskValidationType } from '../schemas/RiskValidationType';
|
|
3
4
|
export interface ScannedrisksOccurrenceDetail {
|
|
4
5
|
detectionRunId?: string;
|
|
5
6
|
evidence?: string[];
|
|
@@ -12,4 +13,5 @@ export interface ScannedrisksOccurrenceDetail {
|
|
|
12
13
|
scanType?: string;
|
|
13
14
|
source?: string;
|
|
14
15
|
timeDetected?: number;
|
|
16
|
+
validationType?: RiskValidationType;
|
|
15
17
|
}
|
package/package.json
CHANGED