@shieldiot/ngx-pulseiot-lib 2.18.1228 → 2.18.1229
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/esm2022/lib/model/AIEventDetail.mjs +22 -26
- package/esm2022/lib/model/AIInfrastructureAnalysis.mjs +1 -1
- package/esm2022/lib/model/NotificationTypeCode.mjs +6 -2
- package/esm2022/lib/model/WSOpCode.mjs +9 -1
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs +33 -27
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs.map +1 -1
- package/lib/model/AIEventDetail.d.ts +8 -4
- package/lib/model/NotificationTypeCode.d.ts +2 -1
- package/lib/model/WSOpCode.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
import { AIExecutiveSummary } from './AIExecutiveSummary';
|
|
2
|
-
import { AICrossCorrelationAnalysis } from './AICrossCorrelationAnalysis';
|
|
3
1
|
import { AIContextReasoning } from './AIContextReasoning';
|
|
4
2
|
import { AIAttributionAssessment } from './AIAttributionAssessment';
|
|
5
3
|
import { AIHypothesis } from './AIHypothesis';
|
|
6
4
|
import { AIRecommendedActions } from './AIRecommendedActions';
|
|
7
|
-
|
|
5
|
+
import { BaseEntity } from './BaseEntity';
|
|
6
|
+
import { AIExecutiveSummary } from './AIExecutiveSummary';
|
|
7
|
+
import { AICrossCorrelationAnalysis } from './AICrossCorrelationAnalysis';
|
|
8
|
+
import { ColumnDef } from './ColumnDef';
|
|
9
|
+
export declare class AIEventDetail extends BaseEntity {
|
|
10
|
+
ip: string;
|
|
11
|
+
source: string;
|
|
8
12
|
executiveSummary: AIExecutiveSummary;
|
|
9
13
|
crossCorrelationAnalysis: AICrossCorrelationAnalysis;
|
|
10
14
|
contextReasoning: AIContextReasoning;
|
|
@@ -12,5 +16,5 @@ export declare class AIEventDetail {
|
|
|
12
16
|
hypothesisRanking: AIHypothesis[];
|
|
13
17
|
recommendedActions: AIRecommendedActions;
|
|
14
18
|
conclusion: string;
|
|
15
|
-
constructor(executiveSummary?: AIExecutiveSummary, crossCorrelationAnalysis?: AICrossCorrelationAnalysis, contextReasoning?: AIContextReasoning, attributionAssessment?: AIAttributionAssessment, hypothesisRanking?: AIHypothesis[], recommendedActions?: AIRecommendedActions, conclusion?: string);
|
|
16
19
|
}
|
|
20
|
+
export declare function GetAIEventDetailColumnsDef(): ColumnDef[];
|
|
@@ -6,7 +6,8 @@ export declare enum NotificationTypeCode {
|
|
|
6
6
|
REPORTS_COUNT_TO_SEND = 3,
|
|
7
7
|
REPORT = 4,
|
|
8
8
|
SYSTEM = 5,
|
|
9
|
-
DEVICE = 6
|
|
9
|
+
DEVICE = 6,
|
|
10
|
+
AI_EXPLAIN = 7
|
|
10
11
|
}
|
|
11
12
|
export declare function GetNotificationTypeCodes(): Tuple<NotificationTypeCode, string>[];
|
|
12
13
|
export declare function MapNotificationTypeCodes(): Map<NotificationTypeCode, string>;
|
package/lib/model/WSOpCode.d.ts
CHANGED
|
@@ -2,7 +2,9 @@ import { Tuple } from '.';
|
|
|
2
2
|
export declare enum WSOpCode {
|
|
3
3
|
PING = 0,
|
|
4
4
|
NOTIFICATION_MESSAGE = 10,
|
|
5
|
-
NOTIFICATION_MESSAGE_ACK = 11
|
|
5
|
+
NOTIFICATION_MESSAGE_ACK = 11,
|
|
6
|
+
SUSPICIOUS_IP_ANALYSIS_READY = 20,
|
|
7
|
+
SUSPICIOUS_IP_ANALYSIS_ERROR = 21
|
|
6
8
|
}
|
|
7
9
|
export declare function GetWSOpCodes(): Tuple<WSOpCode, string>[];
|
|
8
10
|
export declare function MapWSOpCodes(): Map<WSOpCode, string>;
|