@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
|
@@ -4300,6 +4300,254 @@ class TemplateStep {
|
|
|
4300
4300
|
}
|
|
4301
4301
|
}
|
|
4302
4302
|
|
|
4303
|
+
// AIAttributionAssessment represents evidence for and against various attribution hypotheses
|
|
4304
|
+
class AIAttributionAssessment {
|
|
4305
|
+
constructor(evidenceAgainstLegitimateScannerHypothesis, evidenceSupportingMaliciousC2Infrastructure) {
|
|
4306
|
+
if (evidenceAgainstLegitimateScannerHypothesis !== undefined) {
|
|
4307
|
+
this.evidenceAgainstLegitimateScannerHypothesis = evidenceAgainstLegitimateScannerHypothesis;
|
|
4308
|
+
}
|
|
4309
|
+
if (evidenceSupportingMaliciousC2Infrastructure !== undefined) {
|
|
4310
|
+
this.evidenceSupportingMaliciousC2Infrastructure = evidenceSupportingMaliciousC2Infrastructure;
|
|
4311
|
+
}
|
|
4312
|
+
}
|
|
4313
|
+
}
|
|
4314
|
+
|
|
4315
|
+
// AIBehavioralPatterns represents observed behavioral patterns
|
|
4316
|
+
class AIBehavioralPatterns {
|
|
4317
|
+
constructor(timeline, peakActivity, deviceTypes, consistency) {
|
|
4318
|
+
if (timeline !== undefined) {
|
|
4319
|
+
this.timeline = timeline;
|
|
4320
|
+
}
|
|
4321
|
+
if (peakActivity !== undefined) {
|
|
4322
|
+
this.peakActivity = peakActivity;
|
|
4323
|
+
}
|
|
4324
|
+
if (deviceTypes !== undefined) {
|
|
4325
|
+
this.deviceTypes = deviceTypes;
|
|
4326
|
+
}
|
|
4327
|
+
if (consistency !== undefined) {
|
|
4328
|
+
this.consistency = consistency;
|
|
4329
|
+
}
|
|
4330
|
+
}
|
|
4331
|
+
}
|
|
4332
|
+
|
|
4333
|
+
// AIContextReasoning represents contextual reasoning with network and behavioral analysis
|
|
4334
|
+
class AIContextReasoning {
|
|
4335
|
+
constructor(networkPositionAndTrafficAnalysis, behavioralPatterns) {
|
|
4336
|
+
if (networkPositionAndTrafficAnalysis !== undefined) {
|
|
4337
|
+
this.networkPositionAndTrafficAnalysis = networkPositionAndTrafficAnalysis;
|
|
4338
|
+
}
|
|
4339
|
+
if (behavioralPatterns !== undefined) {
|
|
4340
|
+
this.behavioralPatterns = behavioralPatterns;
|
|
4341
|
+
}
|
|
4342
|
+
}
|
|
4343
|
+
}
|
|
4344
|
+
|
|
4345
|
+
// AICrossCorrelationAnalysis represents source cross-correlation findings
|
|
4346
|
+
class AICrossCorrelationAnalysis {
|
|
4347
|
+
constructor(infrastructureAnalysis, keyFindings) {
|
|
4348
|
+
if (infrastructureAnalysis !== undefined) {
|
|
4349
|
+
this.infrastructureAnalysis = infrastructureAnalysis;
|
|
4350
|
+
}
|
|
4351
|
+
if (keyFindings !== undefined) {
|
|
4352
|
+
this.keyFindings = keyFindings;
|
|
4353
|
+
}
|
|
4354
|
+
}
|
|
4355
|
+
}
|
|
4356
|
+
|
|
4357
|
+
// AIEventDetail represents the structured AI analysis result for an event
|
|
4358
|
+
class AIEventDetail {
|
|
4359
|
+
constructor(executiveSummary, crossCorrelationAnalysis, contextReasoning, attributionAssessment, hypothesisRanking, recommendedActions, conclusion) {
|
|
4360
|
+
if (executiveSummary !== undefined) {
|
|
4361
|
+
this.executiveSummary = executiveSummary;
|
|
4362
|
+
}
|
|
4363
|
+
if (crossCorrelationAnalysis !== undefined) {
|
|
4364
|
+
this.crossCorrelationAnalysis = crossCorrelationAnalysis;
|
|
4365
|
+
}
|
|
4366
|
+
if (contextReasoning !== undefined) {
|
|
4367
|
+
this.contextReasoning = contextReasoning;
|
|
4368
|
+
}
|
|
4369
|
+
if (attributionAssessment !== undefined) {
|
|
4370
|
+
this.attributionAssessment = attributionAssessment;
|
|
4371
|
+
}
|
|
4372
|
+
if (hypothesisRanking !== undefined) {
|
|
4373
|
+
this.hypothesisRanking = hypothesisRanking;
|
|
4374
|
+
}
|
|
4375
|
+
if (recommendedActions !== undefined) {
|
|
4376
|
+
this.recommendedActions = recommendedActions;
|
|
4377
|
+
}
|
|
4378
|
+
if (conclusion !== undefined) {
|
|
4379
|
+
this.conclusion = conclusion;
|
|
4380
|
+
}
|
|
4381
|
+
}
|
|
4382
|
+
}
|
|
4383
|
+
|
|
4384
|
+
// AIEvidenceAgainstLegitimateScannerHypothesis holds evidence points against a legitimate scanner classification
|
|
4385
|
+
class AIEvidenceAgainstLegitimateScannerHypothesis {
|
|
4386
|
+
constructor(multiFeedConsensus, persistentTargeting, infrastructureType, behavioralConsistency) {
|
|
4387
|
+
if (multiFeedConsensus !== undefined) {
|
|
4388
|
+
this.multiFeedConsensus = multiFeedConsensus;
|
|
4389
|
+
}
|
|
4390
|
+
if (persistentTargeting !== undefined) {
|
|
4391
|
+
this.persistentTargeting = persistentTargeting;
|
|
4392
|
+
}
|
|
4393
|
+
if (infrastructureType !== undefined) {
|
|
4394
|
+
this.infrastructureType = infrastructureType;
|
|
4395
|
+
}
|
|
4396
|
+
if (behavioralConsistency !== undefined) {
|
|
4397
|
+
this.behavioralConsistency = behavioralConsistency;
|
|
4398
|
+
}
|
|
4399
|
+
}
|
|
4400
|
+
}
|
|
4401
|
+
|
|
4402
|
+
// AIEvidenceSupportingMaliciousC2Infrastructure holds evidence points supporting malicious C2 classification
|
|
4403
|
+
class AIEvidenceSupportingMaliciousC2Infrastructure {
|
|
4404
|
+
constructor(targetedIndustry, outboundConnections, hostingProfile, geographicInconsistency) {
|
|
4405
|
+
if (targetedIndustry !== undefined) {
|
|
4406
|
+
this.targetedIndustry = targetedIndustry;
|
|
4407
|
+
}
|
|
4408
|
+
if (outboundConnections !== undefined) {
|
|
4409
|
+
this.outboundConnections = outboundConnections;
|
|
4410
|
+
}
|
|
4411
|
+
if (hostingProfile !== undefined) {
|
|
4412
|
+
this.hostingProfile = hostingProfile;
|
|
4413
|
+
}
|
|
4414
|
+
if (geographicInconsistency !== undefined) {
|
|
4415
|
+
this.geographicInconsistency = geographicInconsistency;
|
|
4416
|
+
}
|
|
4417
|
+
}
|
|
4418
|
+
}
|
|
4419
|
+
|
|
4420
|
+
// AIExecutiveSummary represents the executive summary section of AI event analysis
|
|
4421
|
+
class AIExecutiveSummary {
|
|
4422
|
+
constructor(finalClassification, confidence, riskScore, actionRequired, incidentVolume, deviceImpact) {
|
|
4423
|
+
if (finalClassification !== undefined) {
|
|
4424
|
+
this.finalClassification = finalClassification;
|
|
4425
|
+
}
|
|
4426
|
+
if (confidence !== undefined) {
|
|
4427
|
+
this.confidence = confidence;
|
|
4428
|
+
}
|
|
4429
|
+
if (riskScore !== undefined) {
|
|
4430
|
+
this.riskScore = riskScore;
|
|
4431
|
+
}
|
|
4432
|
+
if (actionRequired !== undefined) {
|
|
4433
|
+
this.ActionRequired = actionRequired;
|
|
4434
|
+
}
|
|
4435
|
+
if (incidentVolume !== undefined) {
|
|
4436
|
+
this.incidentVolume = incidentVolume;
|
|
4437
|
+
}
|
|
4438
|
+
if (deviceImpact !== undefined) {
|
|
4439
|
+
this.deviceImpact = deviceImpact;
|
|
4440
|
+
}
|
|
4441
|
+
}
|
|
4442
|
+
}
|
|
4443
|
+
|
|
4444
|
+
// AIHypothesis represents a single ranked hypothesis in the analysis
|
|
4445
|
+
class AIHypothesis {
|
|
4446
|
+
constructor(description, likelihood, justification) {
|
|
4447
|
+
if (description !== undefined) {
|
|
4448
|
+
this.description = description;
|
|
4449
|
+
}
|
|
4450
|
+
if (likelihood !== undefined) {
|
|
4451
|
+
this.likelihood = likelihood;
|
|
4452
|
+
}
|
|
4453
|
+
if (justification !== undefined) {
|
|
4454
|
+
this.justification = justification;
|
|
4455
|
+
}
|
|
4456
|
+
}
|
|
4457
|
+
}
|
|
4458
|
+
|
|
4459
|
+
// AIInfrastructureAnalysis represents infrastructure details of a source IP
|
|
4460
|
+
class AIInfrastructureAnalysis {
|
|
4461
|
+
constructor(iSP, usageType, geolocation, threatScore, probabilityRating) {
|
|
4462
|
+
if (iSP !== undefined) {
|
|
4463
|
+
this.isp = iSP;
|
|
4464
|
+
}
|
|
4465
|
+
if (usageType !== undefined) {
|
|
4466
|
+
this.usageType = usageType;
|
|
4467
|
+
}
|
|
4468
|
+
if (geolocation !== undefined) {
|
|
4469
|
+
this.geolocation = geolocation;
|
|
4470
|
+
}
|
|
4471
|
+
if (threatScore !== undefined) {
|
|
4472
|
+
this.threatScore = threatScore;
|
|
4473
|
+
}
|
|
4474
|
+
if (probabilityRating !== undefined) {
|
|
4475
|
+
this.probabilityRating = probabilityRating;
|
|
4476
|
+
}
|
|
4477
|
+
}
|
|
4478
|
+
}
|
|
4479
|
+
|
|
4480
|
+
// AINetworkPositionAndTrafficAnalysis represents network position and traffic analysis
|
|
4481
|
+
class AINetworkPositionAndTrafficAnalysis {
|
|
4482
|
+
constructor(trafficDirection, behindCGNAT, affectedNetworks) {
|
|
4483
|
+
if (trafficDirection !== undefined) {
|
|
4484
|
+
this.trafficDirection = trafficDirection;
|
|
4485
|
+
}
|
|
4486
|
+
if (behindCGNAT !== undefined) {
|
|
4487
|
+
this.behindCgNat = behindCGNAT;
|
|
4488
|
+
}
|
|
4489
|
+
if (affectedNetworks !== undefined) {
|
|
4490
|
+
this.affectedNetworks = affectedNetworks;
|
|
4491
|
+
}
|
|
4492
|
+
}
|
|
4493
|
+
}
|
|
4494
|
+
|
|
4495
|
+
// AIRecommendedActions represents tiered recommended actions (long-term actions excluded)
|
|
4496
|
+
class AIRecommendedActions {
|
|
4497
|
+
constructor(immediate, shortTerm, mediumTerm) {
|
|
4498
|
+
if (immediate !== undefined) {
|
|
4499
|
+
this.immediate = immediate;
|
|
4500
|
+
}
|
|
4501
|
+
if (shortTerm !== undefined) {
|
|
4502
|
+
this.shortTerm = shortTerm;
|
|
4503
|
+
}
|
|
4504
|
+
if (mediumTerm !== undefined) {
|
|
4505
|
+
this.mediumTerm = mediumTerm;
|
|
4506
|
+
}
|
|
4507
|
+
}
|
|
4508
|
+
}
|
|
4509
|
+
|
|
4510
|
+
// BatchItem represents an individual prompt within a batch job
|
|
4511
|
+
class BatchItem extends BaseEntity {
|
|
4512
|
+
}
|
|
4513
|
+
function GetBatchItemColumnsDef() {
|
|
4514
|
+
let result = [];
|
|
4515
|
+
result.push(new ColumnDef("", "id", "string", ""));
|
|
4516
|
+
result.push(new ColumnDef("", "createdOn", "number", "datetime"));
|
|
4517
|
+
result.push(new ColumnDef("", "updatedOn", "number", "datetime"));
|
|
4518
|
+
result.push(new ColumnDef("", "batchJobId", "string", ""));
|
|
4519
|
+
result.push(new ColumnDef("", "customId", "string", ""));
|
|
4520
|
+
result.push(new ColumnDef("", "prompt", "string", ""));
|
|
4521
|
+
result.push(new ColumnDef("", "scope", "any", ""));
|
|
4522
|
+
result.push(new ColumnDef("", "status", "string", ""));
|
|
4523
|
+
result.push(new ColumnDef("", "result", "any", ""));
|
|
4524
|
+
result.push(new ColumnDef("", "error", "string", ""));
|
|
4525
|
+
result.push(new ColumnDef("", "conversation", "", ""));
|
|
4526
|
+
result.push(new ColumnDef("", "iteration", "number", ""));
|
|
4527
|
+
result.push(new ColumnDef("", "retryCount", "number", ""));
|
|
4528
|
+
result.push(new ColumnDef("", "queuedAt", "number", "datetime"));
|
|
4529
|
+
return result;
|
|
4530
|
+
}
|
|
4531
|
+
|
|
4532
|
+
// BatchJob represents a batch processing job that groups multiple prompts
|
|
4533
|
+
class BatchJob extends BaseEntity {
|
|
4534
|
+
}
|
|
4535
|
+
function GetBatchJobColumnsDef() {
|
|
4536
|
+
let result = [];
|
|
4537
|
+
result.push(new ColumnDef("", "id", "string", ""));
|
|
4538
|
+
result.push(new ColumnDef("", "createdOn", "number", "datetime"));
|
|
4539
|
+
result.push(new ColumnDef("", "updatedOn", "number", "datetime"));
|
|
4540
|
+
result.push(new ColumnDef("", "anthropicId", "string", ""));
|
|
4541
|
+
result.push(new ColumnDef("", "status", "string", ""));
|
|
4542
|
+
result.push(new ColumnDef("", "pubsubTopic", "string", ""));
|
|
4543
|
+
result.push(new ColumnDef("", "completedAt", "number", "datetime"));
|
|
4544
|
+
result.push(new ColumnDef("", "retryCount", "number", ""));
|
|
4545
|
+
result.push(new ColumnDef("", "maxRetries", "number", ""));
|
|
4546
|
+
result.push(new ColumnDef("", "metadata", "any", ""));
|
|
4547
|
+
result.push(new ColumnDef("", "error", "string", ""));
|
|
4548
|
+
return result;
|
|
4549
|
+
}
|
|
4550
|
+
|
|
4303
4551
|
class AppConfig {
|
|
4304
4552
|
constructor() {
|
|
4305
4553
|
this.api = '';
|
|
@@ -8977,5 +9225,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImpor
|
|
|
8977
9225
|
* Generated bundle index. Do not edit.
|
|
8978
9226
|
*/
|
|
8979
9227
|
|
|
8980
|
-
export { AICheckpoint, AITasksCode, APP_CONFIG, Account, AccountDTO, AccountInfo, AccountReportDTO, AccountRole, AccountSettings, AccountStatusCode, AccountTypeCode, Action, ActionResponse, Alert, AlertWithDevice, ApiKey, AppConfig, AuditLog, BaseEntity, BaseEntityEx, BaseMessage, BaseRestResponse, BoolTypeCode, CheckPointStateCode, Checkpoint, ColumnDef, ConditionDescription, ConfigParam, ConfigParams, ConsumptionDataPoint, DNSRecord, DataIngestion, DataSourceCode, DeploymentInfo, Device, DeviceActionCode, DeviceConfig, DeviceCreationCode, DeviceIdentityCode, DeviceNode, DeviceReport, DeviceScoreConfig, DeviceStatusCode, DeviceTypeCode, DeviceWithEvents, DevicesAtRiskConfig, DevicesMap, DirectionContextCode, Distribution, Entities, EntitiesRequest, EntitiesResponse, EntityAction, EntityMessage, EntityRequest, EntityResponse, Event, EventCategoryCode, EventOccurrence, EventSeverityConfig, EventStatusCode, EventTypeCode, EventWithDevice, Feature, FeatureCode, FeaturesGroup, FloatInterval, FlowRecord, GeoData, GetAICheckpointColumnsDef, GetAITasksCodes, GetAccountColumnsDef, GetAccountDTOColumnsDef, GetAccountInfoColumnsDef, GetAccountReportDTOColumnsDef, GetAccountStatusCodes, GetAccountTypeCodes, GetActionColumnsDef, GetActionResponseColumnsDef, GetAlertColumnsDef, GetAlertWithDeviceColumnsDef, GetApiKeyColumnsDef, GetAuditLogColumnsDef, GetBoolTypeCodes, GetCheckPointStateCodes, GetCheckpointColumnsDef, GetConfigParamColumnsDef, GetConfigParamsColumnsDef, GetDNSRecordColumnsDef, GetDataSourceCodes, GetDeploymentInfoColumnsDef, GetDeviceActionCodes, GetDeviceColumnsDef, GetDeviceCreationCodes, GetDeviceIdentityCodes, GetDeviceReportColumnsDef, GetDeviceStatusCodes, GetDeviceTypeCodes, GetDeviceWithEventsColumnsDef, GetDirectionContextCodes, GetEntitiesResponseColumnsDef, GetEntityMessageColumnsDef, GetEntityResponseColumnsDef, GetEventCategoryCodes, GetEventColumnsDef, GetEventStatusCodes, GetEventTypeCodes, GetEventWithDeviceColumnsDef, GetFeatureCodes, GetFeatureColumnsDef, GetFeaturesGroupColumnsDef, GetGroupColumnsDef, GetHomePageViewCodes, GetHttpMethodCodes, GetIdsRuleColumnsDef, GetImageColumnsDef, GetInsightColumnsDef, GetInsightQueryColumnsDef, GetInsightSourceCodes, GetInsightSpecColumnsDef, GetInsightStatusCodes, GetInsightTypeCodes, GetIntegrationColumnsDef, GetIntegrationTemplateColumnsDef, GetIntegrationTriggerCodes, GetIntegrationTypeCodes, GetLlmPromptColumnsDef, GetMemberColumnsDef, GetMemberRoleCodes, GetMessageColumnsDef, GetNetworkMapTypeCodes, GetNetworkTopologyColumnsDef, GetNetworkTopologyReportColumnsDef, GetNotificationColumnsDef, GetNotificationMessageColumnsDef, GetNotificationMessageDTOColumnsDef, GetNotificationTypeCodes, GetOperatorCodes, GetParserTaskCompletionStatuss, GetPermissionCodes, GetRadiusColumnsDef, GetReportColumnsDef, GetReportInstanceColumnsDef, GetReportSourceCodes, GetReportTypeCodes, GetRuleActivityStatusCodes, GetRuleColumnsDef, GetRuleTemplateColumnsDef, GetRuleTypeCodes, GetRuleWithSQLColumnsDef, GetServiceStatusColumnsDef, GetSessionRecordColumnsDef, GetSeverityTypeCodes, GetShieldexColumnsDef, GetStreamAnalyticsConfigColumnsDef, GetStreamColumnsDef, GetTimePeriodCodes, GetTrafficDirectionCodes, GetUsageRecordColumnsDef, GetUserColumnsDef, GetUserMembershipColumnsDef, GetUserMembershipsColumnsDef, GetUserNotificationMessageColumnsDef, GetUserStatusCodes, GetUserTypeCodes, GetWSOpCodes, GraphSeries, Group, HomePageViewCode, HttpMethodCode, IdsConfig, IdsList, IdsRule, Image, Indicator, Insight, InsightQuery, InsightSourceCode, InsightSpec, InsightStatusCode, InsightTypeCode, IntFloatValue, IntKeyValue, Integration, IntegrationContext, IntegrationTemplate, IntegrationTriggerCode, IntegrationTypeCode, Interval, Json, JsonDoc, Link, LlmPrompt, LocalTime, Location, LoginParams, MaliciousIPData, MaliciousIpCard, MapAITasksCodes, MapAccountStatusCodes, MapAccountTypeCodes, MapBoolTypeCodes, MapBounds, MapCheckPointStateCodes, MapDataSourceCodes, MapDeviceActionCodes, MapDeviceCreationCodes, MapDeviceIdentityCodes, MapDeviceStatusCodes, MapDeviceTypeCodes, MapDirectionContextCodes, MapEventCategoryCodes, MapEventStatusCodes, MapEventTypeCodes, MapFeatureCodes, MapHomePageViewCodes, MapHttpMethodCodes, MapInsightSourceCodes, MapInsightStatusCodes, MapInsightTypeCodes, MapIntegrationTriggerCodes, MapIntegrationTypeCodes, MapMemberRoleCodes, MapNetworkMapTypeCodes, MapNotificationTypeCodes, MapOperatorCodes, MapParserTaskCompletionStatuss, MapPermissionCodes, MapReportSourceCodes, MapReportTypeCodes, MapRuleActivityStatusCodes, MapRuleTypeCodes, MapSeverityTypeCodes, MapTimePeriodCodes, MapTrafficDirectionCodes, MapUserStatusCodes, MapUserTypeCodes, MapWSOpCodes, McpToolsService, Member, MemberRoleCode, Message, MitreAttackCategory, NetworkEndpoint, NetworkMap, NetworkMapTypeCode, NetworkTopology, NetworkTopologyRecord, NetworkTopologyReport, NetworkTopologyReportKPIs, NetworkTopologyReportParams, NgxPulseiotLibModule, Node, Notification, NotificationMessage, NotificationMessageDTO, NotificationMessageStats, NotificationQueuePayload, NotificationTypeCode, OperatorCode, ParserTaskCompletionStatus, PermissionCode, Radius, RegulatoryViolation, Report, ReportInstance, ReportSourceCode, ReportTypeCode, ResponseExtraction, Rule, RuleActivityStatusCode, RuleBasedSeverityConditionConfig, RuleCountThresholdConfig, RuleTemplate, RuleTypeCode, RuleWithSQL, SIM, SeriesData, ServiceStatus, SessionRecord, SessionTransform, SeverityConditionConfig, SeverityIntervalTuple, SeverityTypeCode, Shieldex, ShieldexConfig, SimpleEntity, Stream, StreamAnalyticsConfig, StreamConfig, StringIntValue, StringKeyValue, SupportStreamAnalyticsConfigService, SysAccountsService, SysAuditLogService, SysCheckpointsService, SysConfigService, SysFeaturesService, SysGroupsService, SysIdsRulesService, SysInsightsService, SysIntegrationTemplatesService, SysKeysService, SysMembersService, SysRuleTemplatesService, SysRulesService, SysStatisticsService, SysStreamsService, SysUsersService, TemplateParameter, TemplateStep, Thresholds, TimeDataPoint, TimeFrame, TimePeriodCode, TimeSeries, TimeSeriesConsumption, Timestamp, TokenData, TrafficDirectionCode, Tuple, UsageRecord, UsageTransform, User, UserMembership, UserMemberships, UserNotificationMessage, UserStatusCode, UserTypeCode, UsrAlertsService, UsrDevicesService, UsrEventsService, UsrInsightsService, UsrIntegrationsService, UsrMembersService, UsrNetworkService, UsrNotificationMessagesService, UsrReportsInstanceService, UsrReportsService, UsrRulesService, UsrUserService, WSOpCode, ZScore, errorStruct, provideClientLib };
|
|
9228
|
+
export { AIAttributionAssessment, AIBehavioralPatterns, AICheckpoint, AIContextReasoning, AICrossCorrelationAnalysis, AIEventDetail, AIEvidenceAgainstLegitimateScannerHypothesis, AIEvidenceSupportingMaliciousC2Infrastructure, AIExecutiveSummary, AIHypothesis, AIInfrastructureAnalysis, AINetworkPositionAndTrafficAnalysis, AIRecommendedActions, AITasksCode, APP_CONFIG, Account, AccountDTO, AccountInfo, AccountReportDTO, AccountRole, AccountSettings, AccountStatusCode, AccountTypeCode, Action, ActionResponse, Alert, AlertWithDevice, ApiKey, AppConfig, AuditLog, BaseEntity, BaseEntityEx, BaseMessage, BaseRestResponse, BatchItem, BatchJob, BoolTypeCode, CheckPointStateCode, Checkpoint, ColumnDef, ConditionDescription, ConfigParam, ConfigParams, ConsumptionDataPoint, DNSRecord, DataIngestion, DataSourceCode, DeploymentInfo, Device, DeviceActionCode, DeviceConfig, DeviceCreationCode, DeviceIdentityCode, DeviceNode, DeviceReport, DeviceScoreConfig, DeviceStatusCode, DeviceTypeCode, DeviceWithEvents, DevicesAtRiskConfig, DevicesMap, DirectionContextCode, Distribution, Entities, EntitiesRequest, EntitiesResponse, EntityAction, EntityMessage, EntityRequest, EntityResponse, Event, EventCategoryCode, EventOccurrence, EventSeverityConfig, EventStatusCode, EventTypeCode, EventWithDevice, Feature, FeatureCode, FeaturesGroup, FloatInterval, FlowRecord, GeoData, GetAICheckpointColumnsDef, GetAITasksCodes, GetAccountColumnsDef, GetAccountDTOColumnsDef, GetAccountInfoColumnsDef, GetAccountReportDTOColumnsDef, GetAccountStatusCodes, GetAccountTypeCodes, GetActionColumnsDef, GetActionResponseColumnsDef, GetAlertColumnsDef, GetAlertWithDeviceColumnsDef, GetApiKeyColumnsDef, GetAuditLogColumnsDef, GetBatchItemColumnsDef, GetBatchJobColumnsDef, GetBoolTypeCodes, GetCheckPointStateCodes, GetCheckpointColumnsDef, GetConfigParamColumnsDef, GetConfigParamsColumnsDef, GetDNSRecordColumnsDef, GetDataSourceCodes, GetDeploymentInfoColumnsDef, GetDeviceActionCodes, GetDeviceColumnsDef, GetDeviceCreationCodes, GetDeviceIdentityCodes, GetDeviceReportColumnsDef, GetDeviceStatusCodes, GetDeviceTypeCodes, GetDeviceWithEventsColumnsDef, GetDirectionContextCodes, GetEntitiesResponseColumnsDef, GetEntityMessageColumnsDef, GetEntityResponseColumnsDef, GetEventCategoryCodes, GetEventColumnsDef, GetEventStatusCodes, GetEventTypeCodes, GetEventWithDeviceColumnsDef, GetFeatureCodes, GetFeatureColumnsDef, GetFeaturesGroupColumnsDef, GetGroupColumnsDef, GetHomePageViewCodes, GetHttpMethodCodes, GetIdsRuleColumnsDef, GetImageColumnsDef, GetInsightColumnsDef, GetInsightQueryColumnsDef, GetInsightSourceCodes, GetInsightSpecColumnsDef, GetInsightStatusCodes, GetInsightTypeCodes, GetIntegrationColumnsDef, GetIntegrationTemplateColumnsDef, GetIntegrationTriggerCodes, GetIntegrationTypeCodes, GetLlmPromptColumnsDef, GetMemberColumnsDef, GetMemberRoleCodes, GetMessageColumnsDef, GetNetworkMapTypeCodes, GetNetworkTopologyColumnsDef, GetNetworkTopologyReportColumnsDef, GetNotificationColumnsDef, GetNotificationMessageColumnsDef, GetNotificationMessageDTOColumnsDef, GetNotificationTypeCodes, GetOperatorCodes, GetParserTaskCompletionStatuss, GetPermissionCodes, GetRadiusColumnsDef, GetReportColumnsDef, GetReportInstanceColumnsDef, GetReportSourceCodes, GetReportTypeCodes, GetRuleActivityStatusCodes, GetRuleColumnsDef, GetRuleTemplateColumnsDef, GetRuleTypeCodes, GetRuleWithSQLColumnsDef, GetServiceStatusColumnsDef, GetSessionRecordColumnsDef, GetSeverityTypeCodes, GetShieldexColumnsDef, GetStreamAnalyticsConfigColumnsDef, GetStreamColumnsDef, GetTimePeriodCodes, GetTrafficDirectionCodes, GetUsageRecordColumnsDef, GetUserColumnsDef, GetUserMembershipColumnsDef, GetUserMembershipsColumnsDef, GetUserNotificationMessageColumnsDef, GetUserStatusCodes, GetUserTypeCodes, GetWSOpCodes, GraphSeries, Group, HomePageViewCode, HttpMethodCode, IdsConfig, IdsList, IdsRule, Image, Indicator, Insight, InsightQuery, InsightSourceCode, InsightSpec, InsightStatusCode, InsightTypeCode, IntFloatValue, IntKeyValue, Integration, IntegrationContext, IntegrationTemplate, IntegrationTriggerCode, IntegrationTypeCode, Interval, Json, JsonDoc, Link, LlmPrompt, LocalTime, Location, LoginParams, MaliciousIPData, MaliciousIpCard, MapAITasksCodes, MapAccountStatusCodes, MapAccountTypeCodes, MapBoolTypeCodes, MapBounds, MapCheckPointStateCodes, MapDataSourceCodes, MapDeviceActionCodes, MapDeviceCreationCodes, MapDeviceIdentityCodes, MapDeviceStatusCodes, MapDeviceTypeCodes, MapDirectionContextCodes, MapEventCategoryCodes, MapEventStatusCodes, MapEventTypeCodes, MapFeatureCodes, MapHomePageViewCodes, MapHttpMethodCodes, MapInsightSourceCodes, MapInsightStatusCodes, MapInsightTypeCodes, MapIntegrationTriggerCodes, MapIntegrationTypeCodes, MapMemberRoleCodes, MapNetworkMapTypeCodes, MapNotificationTypeCodes, MapOperatorCodes, MapParserTaskCompletionStatuss, MapPermissionCodes, MapReportSourceCodes, MapReportTypeCodes, MapRuleActivityStatusCodes, MapRuleTypeCodes, MapSeverityTypeCodes, MapTimePeriodCodes, MapTrafficDirectionCodes, MapUserStatusCodes, MapUserTypeCodes, MapWSOpCodes, McpToolsService, Member, MemberRoleCode, Message, MitreAttackCategory, NetworkEndpoint, NetworkMap, NetworkMapTypeCode, NetworkTopology, NetworkTopologyRecord, NetworkTopologyReport, NetworkTopologyReportKPIs, NetworkTopologyReportParams, NgxPulseiotLibModule, Node, Notification, NotificationMessage, NotificationMessageDTO, NotificationMessageStats, NotificationQueuePayload, NotificationTypeCode, OperatorCode, ParserTaskCompletionStatus, PermissionCode, Radius, RegulatoryViolation, Report, ReportInstance, ReportSourceCode, ReportTypeCode, ResponseExtraction, Rule, RuleActivityStatusCode, RuleBasedSeverityConditionConfig, RuleCountThresholdConfig, RuleTemplate, RuleTypeCode, RuleWithSQL, SIM, SeriesData, ServiceStatus, SessionRecord, SessionTransform, SeverityConditionConfig, SeverityIntervalTuple, SeverityTypeCode, Shieldex, ShieldexConfig, SimpleEntity, Stream, StreamAnalyticsConfig, StreamConfig, StringIntValue, StringKeyValue, SupportStreamAnalyticsConfigService, SysAccountsService, SysAuditLogService, SysCheckpointsService, SysConfigService, SysFeaturesService, SysGroupsService, SysIdsRulesService, SysInsightsService, SysIntegrationTemplatesService, SysKeysService, SysMembersService, SysRuleTemplatesService, SysRulesService, SysStatisticsService, SysStreamsService, SysUsersService, TemplateParameter, TemplateStep, Thresholds, TimeDataPoint, TimeFrame, TimePeriodCode, TimeSeries, TimeSeriesConsumption, Timestamp, TokenData, TrafficDirectionCode, Tuple, UsageRecord, UsageTransform, User, UserMembership, UserMemberships, UserNotificationMessage, UserStatusCode, UserTypeCode, UsrAlertsService, UsrDevicesService, UsrEventsService, UsrInsightsService, UsrIntegrationsService, UsrMembersService, UsrNetworkService, UsrNotificationMessagesService, UsrReportsInstanceService, UsrReportsService, UsrRulesService, UsrUserService, WSOpCode, ZScore, errorStruct, provideClientLib };
|
|
8981
9229
|
//# sourceMappingURL=shieldiot-ngx-pulseiot-lib.mjs.map
|