@shieldiot/ngx-pulseiot-lib 2.18.1213 → 2.18.1219
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/AIAttributionAssessment.mjs +12 -0
- package/esm2022/lib/model/AIBehavioralPatterns.mjs +18 -0
- package/esm2022/lib/model/AIContextReasoning.mjs +12 -0
- package/esm2022/lib/model/AICrossCorrelationAnalysis.mjs +12 -0
- package/esm2022/lib/model/AIEventDetail.mjs +27 -0
- package/esm2022/lib/model/AIEvidenceAgainstLegitimateScannerHypothesis.mjs +18 -0
- package/esm2022/lib/model/AIEvidenceSupportingMaliciousC2Infrastructure.mjs +18 -0
- package/esm2022/lib/model/AIExecutiveSummary.mjs +24 -0
- package/esm2022/lib/model/AIHypothesis.mjs +15 -0
- package/esm2022/lib/model/AIInfrastructureAnalysis.mjs +21 -0
- package/esm2022/lib/model/AINetworkPositionAndTrafficAnalysis.mjs +15 -0
- package/esm2022/lib/model/AIRecommendedActions.mjs +15 -0
- package/esm2022/lib/model/BatchItem.mjs +24 -0
- package/esm2022/lib/model/BatchJob.mjs +21 -0
- package/esm2022/lib/model/index.mjs +16 -1
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs +249 -1
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs.map +1 -1
- package/lib/model/AIAttributionAssessment.d.ts +7 -0
- package/lib/model/AIBehavioralPatterns.d.ts +7 -0
- package/lib/model/AIContextReasoning.d.ts +7 -0
- package/lib/model/AICrossCorrelationAnalysis.d.ts +6 -0
- package/lib/model/AIEventDetail.d.ts +16 -0
- package/lib/model/AIEvidenceAgainstLegitimateScannerHypothesis.d.ts +7 -0
- package/lib/model/AIEvidenceSupportingMaliciousC2Infrastructure.d.ts +7 -0
- package/lib/model/AIExecutiveSummary.d.ts +9 -0
- package/lib/model/AIHypothesis.d.ts +6 -0
- package/lib/model/AIInfrastructureAnalysis.d.ts +8 -0
- package/lib/model/AINetworkPositionAndTrafficAnalysis.d.ts +6 -0
- package/lib/model/AIRecommendedActions.d.ts +6 -0
- package/lib/model/BatchItem.d.ts +16 -0
- package/lib/model/BatchJob.d.ts +13 -0
- package/lib/model/index.d.ts +15 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AIEvidenceAgainstLegitimateScannerHypothesis } from './AIEvidenceAgainstLegitimateScannerHypothesis';
|
|
2
|
+
import { AIEvidenceSupportingMaliciousC2Infrastructure } from './AIEvidenceSupportingMaliciousC2Infrastructure';
|
|
3
|
+
export declare class AIAttributionAssessment {
|
|
4
|
+
evidenceAgainstLegitimateScannerHypothesis: AIEvidenceAgainstLegitimateScannerHypothesis;
|
|
5
|
+
evidenceSupportingMaliciousC2Infrastructure: AIEvidenceSupportingMaliciousC2Infrastructure;
|
|
6
|
+
constructor(evidenceAgainstLegitimateScannerHypothesis?: AIEvidenceAgainstLegitimateScannerHypothesis, evidenceSupportingMaliciousC2Infrastructure?: AIEvidenceSupportingMaliciousC2Infrastructure);
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AINetworkPositionAndTrafficAnalysis } from './AINetworkPositionAndTrafficAnalysis';
|
|
2
|
+
import { AIBehavioralPatterns } from './AIBehavioralPatterns';
|
|
3
|
+
export declare class AIContextReasoning {
|
|
4
|
+
networkPositionAndTrafficAnalysis: AINetworkPositionAndTrafficAnalysis;
|
|
5
|
+
behavioralPatterns: AIBehavioralPatterns;
|
|
6
|
+
constructor(networkPositionAndTrafficAnalysis?: AINetworkPositionAndTrafficAnalysis, behavioralPatterns?: AIBehavioralPatterns);
|
|
7
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AIInfrastructureAnalysis } from './AIInfrastructureAnalysis';
|
|
2
|
+
export declare class AICrossCorrelationAnalysis {
|
|
3
|
+
infrastructureAnalysis: AIInfrastructureAnalysis;
|
|
4
|
+
keyFindings: string;
|
|
5
|
+
constructor(infrastructureAnalysis?: AIInfrastructureAnalysis, keyFindings?: string);
|
|
6
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AIExecutiveSummary } from './AIExecutiveSummary';
|
|
2
|
+
import { AICrossCorrelationAnalysis } from './AICrossCorrelationAnalysis';
|
|
3
|
+
import { AIContextReasoning } from './AIContextReasoning';
|
|
4
|
+
import { AIAttributionAssessment } from './AIAttributionAssessment';
|
|
5
|
+
import { AIHypothesis } from './AIHypothesis';
|
|
6
|
+
import { AIRecommendedActions } from './AIRecommendedActions';
|
|
7
|
+
export declare class AIEventDetail {
|
|
8
|
+
executiveSummary: AIExecutiveSummary;
|
|
9
|
+
crossCorrelationAnalysis: AICrossCorrelationAnalysis;
|
|
10
|
+
contextReasoning: AIContextReasoning;
|
|
11
|
+
attributionAssessment: AIAttributionAssessment;
|
|
12
|
+
hypothesisRanking: AIHypothesis[];
|
|
13
|
+
recommendedActions: AIRecommendedActions;
|
|
14
|
+
conclusion: string;
|
|
15
|
+
constructor(executiveSummary?: AIExecutiveSummary, crossCorrelationAnalysis?: AICrossCorrelationAnalysis, contextReasoning?: AIContextReasoning, attributionAssessment?: AIAttributionAssessment, hypothesisRanking?: AIHypothesis[], recommendedActions?: AIRecommendedActions, conclusion?: string);
|
|
16
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare class AIEvidenceAgainstLegitimateScannerHypothesis {
|
|
2
|
+
multiFeedConsensus: string;
|
|
3
|
+
persistentTargeting: string;
|
|
4
|
+
infrastructureType: string;
|
|
5
|
+
behavioralConsistency: string;
|
|
6
|
+
constructor(multiFeedConsensus?: string, persistentTargeting?: string, infrastructureType?: string, behavioralConsistency?: string);
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare class AIEvidenceSupportingMaliciousC2Infrastructure {
|
|
2
|
+
targetedIndustry: string;
|
|
3
|
+
outboundConnections: string;
|
|
4
|
+
hostingProfile: string;
|
|
5
|
+
geographicInconsistency: string;
|
|
6
|
+
constructor(targetedIndustry?: string, outboundConnections?: string, hostingProfile?: string, geographicInconsistency?: string);
|
|
7
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare class AIExecutiveSummary {
|
|
2
|
+
finalClassification: string;
|
|
3
|
+
confidence: string;
|
|
4
|
+
riskScore: number;
|
|
5
|
+
ActionRequired: string;
|
|
6
|
+
incidentVolume: string;
|
|
7
|
+
deviceImpact: string;
|
|
8
|
+
constructor(finalClassification?: string, confidence?: string, riskScore?: number, actionRequired?: string, incidentVolume?: string, deviceImpact?: string);
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare class AIInfrastructureAnalysis {
|
|
2
|
+
isp: string;
|
|
3
|
+
usageType: string;
|
|
4
|
+
geolocation: string;
|
|
5
|
+
threatScore: number;
|
|
6
|
+
probabilityRating: number;
|
|
7
|
+
constructor(iSP?: string, usageType?: string, geolocation?: string, threatScore?: number, probabilityRating?: number);
|
|
8
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { BaseEntity } from './BaseEntity';
|
|
2
|
+
import { ColumnDef } from './ColumnDef';
|
|
3
|
+
export declare class BatchItem extends BaseEntity {
|
|
4
|
+
batchJobId: string;
|
|
5
|
+
customId: string;
|
|
6
|
+
prompt: string;
|
|
7
|
+
scope: any;
|
|
8
|
+
status: string;
|
|
9
|
+
result: any;
|
|
10
|
+
error: string;
|
|
11
|
+
conversation: [];
|
|
12
|
+
iteration: number;
|
|
13
|
+
retryCount: number;
|
|
14
|
+
queuedAt: number;
|
|
15
|
+
}
|
|
16
|
+
export declare function GetBatchItemColumnsDef(): ColumnDef[];
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { BaseEntity } from './BaseEntity';
|
|
2
|
+
import { ColumnDef } from './ColumnDef';
|
|
3
|
+
export declare class BatchJob extends BaseEntity {
|
|
4
|
+
anthropicId: string;
|
|
5
|
+
status: string;
|
|
6
|
+
pubsubTopic: string;
|
|
7
|
+
completedAt: number;
|
|
8
|
+
retryCount: number;
|
|
9
|
+
maxRetries: number;
|
|
10
|
+
metadata: any;
|
|
11
|
+
error: string;
|
|
12
|
+
}
|
|
13
|
+
export declare function GetBatchJobColumnsDef(): ColumnDef[];
|
package/lib/model/index.d.ts
CHANGED
|
@@ -173,3 +173,18 @@ export * from './IntegrationTemplate';
|
|
|
173
173
|
export * from './ResponseExtraction';
|
|
174
174
|
export * from './TemplateParameter';
|
|
175
175
|
export * from './TemplateStep';
|
|
176
|
+
export * from './AIAttributionAssessment';
|
|
177
|
+
export * from './AIBehavioralPatterns';
|
|
178
|
+
export * from './AIContextReasoning';
|
|
179
|
+
export * from './AICrossCorrelationAnalysis';
|
|
180
|
+
export * from './AIEventDetail';
|
|
181
|
+
export * from './AIEvidenceAgainstLegitimateScannerHypothesis';
|
|
182
|
+
export * from './AIEvidenceSupportingMaliciousC2Infrastructure';
|
|
183
|
+
export * from './AIExecutiveSummary';
|
|
184
|
+
export * from './AIHypothesis';
|
|
185
|
+
export * from './AIInfrastructureAnalysis';
|
|
186
|
+
export * from './AINetworkPositionAndTrafficAnalysis';
|
|
187
|
+
export * from './AIRecommendedActions';
|
|
188
|
+
export * from './BatchItem';
|
|
189
|
+
export * from './AIRecommendedActions';
|
|
190
|
+
export * from './BatchJob';
|