@shieldiot/ngx-pulseiot-lib 2.18.1286 → 2.18.1293

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.
@@ -4186,6 +4186,7 @@ function GetIntegrationColumnsDef() {
4186
4186
  result.push(new ColumnDef("", "templateId", "string", ""));
4187
4187
  result.push(new ColumnDef("", "parameterValues", "any", ""));
4188
4188
  result.push(new ColumnDef("", "collectionId", "string", ""));
4189
+ result.push(new ColumnDef("", "isSystem", "boolean", ""));
4189
4190
  return result;
4190
4191
  }
4191
4192
 
@@ -4261,6 +4262,7 @@ function GetIntegrationTemplateColumnsDef() {
4261
4262
  result.push(new ColumnDef("", "logo", "string", ""));
4262
4263
  result.push(new ColumnDef("", "favicon", "string", ""));
4263
4264
  result.push(new ColumnDef("", "singleton", "boolean", ""));
4265
+ result.push(new ColumnDef("", "isSystem", "boolean", ""));
4264
4266
  return result;
4265
4267
  }
4266
4268
 
@@ -5279,24 +5281,6 @@ class UsrIntegrationsService {
5279
5281
  test(body) {
5280
5282
  return this.rest.post(`${this.baseUrl}/test`, typeof body === 'object' ? JSON.stringify(body) : body);
5281
5283
  }
5282
- /**
5283
- * Issues a bearer token for the STIX/TAXII collection. Call once after
5284
- * provisioning to mint the initial token; call again to rotate. The raw
5285
- * token is returned only in this response; only its bcrypt hash is
5286
- * persisted, so the caller MUST capture it immediately.
5287
- */
5288
- rotateToken(id) {
5289
- return this.rest.post(`${this.baseUrl}/${id}/rotate-token`, '');
5290
- }
5291
- /**
5292
- * Get the StixCollection metadata associated with a STIX/TAXII integration.
5293
- * Used by the UI to display the firewall-polling URL and collection details
5294
- * alongside the integration form. Returns 404 if the integration is not of
5295
- * type STIX_TAXII or has no associated collection.
5296
- */
5297
- getCollection(id) {
5298
- return this.rest.get(`${this.baseUrl}/${id}/collection`);
5299
- }
5300
5284
  /**
5301
5285
  * Find available integration templates (read-only for users).
5302
5286
  */
@@ -9071,7 +9055,7 @@ class SysIntegrationTemplatesService {
9071
9055
  /**
9072
9056
  * Find integration templates by query.
9073
9057
  */
9074
- find(search, trigger, sort, page, size) {
9058
+ find(search, trigger, isSystem, sort, page, size) {
9075
9059
  const params = [];
9076
9060
  if (search != null) {
9077
9061
  params.push(`search=${search}`);
@@ -9079,6 +9063,9 @@ class SysIntegrationTemplatesService {
9079
9063
  if (trigger != null) {
9080
9064
  params.push(`trigger=${trigger}`);
9081
9065
  }
9066
+ if (isSystem != null) {
9067
+ params.push(`isSystem=${isSystem}`);
9068
+ }
9082
9069
  if (sort != null) {
9083
9070
  params.push(`sort=${sort}`);
9084
9071
  }
@@ -9534,6 +9521,136 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImpor
9534
9521
  args: [APP_CONFIG]
9535
9522
  }] }, { type: RestUtils }] });
9536
9523
 
9524
+ // SysIntegrationEndPoint is the system-administrator view of integration
9525
+ // management. It mirrors the user-facing /integrations endpoint (CRUD + find,
9526
+ // validate, test, templates) and additionally exposes the system-level
9527
+ // STIX/TAXII feed actions (rotate-token, collection) — replacing the dedicated
9528
+ // /sys/stix-taxii endpoint.
9529
+ class SysIntegrationsService {
9530
+ // Class constructor
9531
+ constructor(config, rest) {
9532
+ this.config = config;
9533
+ this.rest = rest;
9534
+ // URL to web api
9535
+ this.baseUrl = '/sys/integration';
9536
+ this.baseUrl = this.config.api + this.baseUrl;
9537
+ }
9538
+ /**
9539
+ * Create new integration configuration
9540
+ */
9541
+ create(body) {
9542
+ return this.rest.put(`${this.baseUrl}`, typeof body === 'object' ? JSON.stringify(body) : body);
9543
+ }
9544
+ /**
9545
+ * Update existing integration configuration
9546
+ */
9547
+ update(body) {
9548
+ return this.rest.patch(`${this.baseUrl}`, typeof body === 'object' ? JSON.stringify(body) : body);
9549
+ }
9550
+ /**
9551
+ * Delete integration configuration
9552
+ */
9553
+ delete(id) {
9554
+ return this.rest.delete(`${this.baseUrl}/${id}`);
9555
+ }
9556
+ /**
9557
+ * Get a single Integration by id
9558
+ */
9559
+ get(id) {
9560
+ return this.rest.get(`${this.baseUrl}/${id}`);
9561
+ }
9562
+ /**
9563
+ * Find integrations by query
9564
+ */
9565
+ find(accountId, streamId, search, sort, page, size) {
9566
+ const params = [];
9567
+ if (accountId != null) {
9568
+ params.push(`accountId=${accountId}`);
9569
+ }
9570
+ if (streamId != null) {
9571
+ params.push(`streamId=${streamId}`);
9572
+ }
9573
+ if (search != null) {
9574
+ params.push(`search=${search}`);
9575
+ }
9576
+ if (sort != null) {
9577
+ params.push(`sort=${sort}`);
9578
+ }
9579
+ if (page != null) {
9580
+ params.push(`page=${page}`);
9581
+ }
9582
+ if (size != null) {
9583
+ params.push(`size=${size}`);
9584
+ }
9585
+ return this.rest.get(`${this.baseUrl}`, ...params);
9586
+ }
9587
+ /**
9588
+ * Validate format of the templates in the fields
9589
+ */
9590
+ validate(body) {
9591
+ return this.rest.post(`${this.baseUrl}/validate`, typeof body === 'object' ? JSON.stringify(body) : body);
9592
+ }
9593
+ /**
9594
+ * Test the integration with pseudo data
9595
+ */
9596
+ test(body) {
9597
+ return this.rest.post(`${this.baseUrl}/test`, typeof body === 'object' ? JSON.stringify(body) : body);
9598
+ }
9599
+ /**
9600
+ * Mint or rotate the system STIX/TAXII bearer token. The raw token is returned
9601
+ * exactly once; only its bcrypt hash is persisted, so the caller MUST capture
9602
+ * it immediately.
9603
+ */
9604
+ rotateToken() {
9605
+ return this.rest.post(`${this.baseUrl}/rotate-token`, '');
9606
+ }
9607
+ /**
9608
+ * Get the system STIX/TAXII collection view, including the firewall-polling URL.
9609
+ */
9610
+ getCollection() {
9611
+ return this.rest.get(`${this.baseUrl}/collection`);
9612
+ }
9613
+ /**
9614
+ * Find available integration templates.
9615
+ */
9616
+ findTemplates(search, trigger, sort, page, size) {
9617
+ const params = [];
9618
+ if (search != null) {
9619
+ params.push(`search=${search}`);
9620
+ }
9621
+ if (trigger != null) {
9622
+ params.push(`trigger=${trigger}`);
9623
+ }
9624
+ if (sort != null) {
9625
+ params.push(`sort=${sort}`);
9626
+ }
9627
+ if (page != null) {
9628
+ params.push(`page=${page}`);
9629
+ }
9630
+ if (size != null) {
9631
+ params.push(`size=${size}`);
9632
+ }
9633
+ return this.rest.get(`${this.baseUrl}/templates`, ...params);
9634
+ }
9635
+ /**
9636
+ * Get a single integration template by id.
9637
+ */
9638
+ getTemplate(id) {
9639
+ return this.rest.get(`${this.baseUrl}/templates/:id`);
9640
+ }
9641
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: SysIntegrationsService, deps: [{ token: APP_CONFIG }, { token: RestUtils }], target: i0.ɵɵFactoryTarget.Injectable }); }
9642
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: SysIntegrationsService, providedIn: 'root' }); }
9643
+ }
9644
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: SysIntegrationsService, decorators: [{
9645
+ type: Injectable,
9646
+ args: [{
9647
+ providedIn: 'root'
9648
+ }]
9649
+ }], ctorParameters: () => [{ type: AppConfig, decorators: [{
9650
+ type: Inject,
9651
+ args: [APP_CONFIG]
9652
+ }] }, { type: RestUtils }] });
9653
+
9537
9654
  class NgxPulseiotLibModule {
9538
9655
  static forRoot(config) {
9539
9656
  return {
@@ -9563,5 +9680,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImpor
9563
9680
  * Generated bundle index. Do not edit.
9564
9681
  */
9565
9682
 
9566
- 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, ConfigService, 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, GetAIEventDetailColumnsDef, 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, GetStixCollectionColumnsDef, GetStixCollectionViewColumnsDef, GetStixIndicatorColumnsDef, 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, StixCollection, StixCollectionView, StixIndicator, Stream, StreamAnalyticsConfig, StreamConfig, StringIntValue, StringKeyValue, SupportStreamAnalyticsConfigService, SysAccountsService, SysAuditLogService, SysCheckpointsService, SysConfigService, SysFeaturesService, SysGroupsService, SysIdsRulesService, SysInsightsService, SysIntegrationTemplatesService, SysKeysService, SysMembersService, SysRuleTemplatesService, SysRulesService, SysStatisticsService, SysStreamsService, SysUsersService, TaxiiApiRootService, TaxiiCollectionsService, TaxiiDiscoveryService, TaxiiManifestService, TaxiiObjectsService, TemplateParameter, TemplateStep, Thresholds, TimeDataPoint, TimeFrame, TimePeriodCode, TimeSeries, TimeSeriesConsumption, Timestamp, TokenData, TrafficDirectionCode, Tuple, UsageRecord, UsageTransform, User, UserMembership, UserMemberships, UserNotificationMessage, UserStatusCode, UserTypeCode, UsrAiExplainService, UsrAlertsService, UsrDevicesService, UsrEventsService, UsrInsightsService, UsrIntegrationsService, UsrMembersService, UsrNetworkService, UsrNotificationMessagesService, UsrReportsInstanceService, UsrReportsService, UsrRulesService, UsrUserService, WSOpCode, ZScore, errorStruct, provideClientLib };
9683
+ 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, ConfigService, 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, GetAIEventDetailColumnsDef, 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, GetStixCollectionColumnsDef, GetStixCollectionViewColumnsDef, GetStixIndicatorColumnsDef, 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, StixCollection, StixCollectionView, StixIndicator, Stream, StreamAnalyticsConfig, StreamConfig, StringIntValue, StringKeyValue, SupportStreamAnalyticsConfigService, SysAccountsService, SysAuditLogService, SysCheckpointsService, SysConfigService, SysFeaturesService, SysGroupsService, SysIdsRulesService, SysInsightsService, SysIntegrationTemplatesService, SysIntegrationsService, SysKeysService, SysMembersService, SysRuleTemplatesService, SysRulesService, SysStatisticsService, SysStreamsService, SysUsersService, TaxiiApiRootService, TaxiiCollectionsService, TaxiiDiscoveryService, TaxiiManifestService, TaxiiObjectsService, TemplateParameter, TemplateStep, Thresholds, TimeDataPoint, TimeFrame, TimePeriodCode, TimeSeries, TimeSeriesConsumption, Timestamp, TokenData, TrafficDirectionCode, Tuple, UsageRecord, UsageTransform, User, UserMembership, UserMemberships, UserNotificationMessage, UserStatusCode, UserTypeCode, UsrAiExplainService, UsrAlertsService, UsrDevicesService, UsrEventsService, UsrInsightsService, UsrIntegrationsService, UsrMembersService, UsrNetworkService, UsrNotificationMessagesService, UsrReportsInstanceService, UsrReportsService, UsrRulesService, UsrUserService, WSOpCode, ZScore, errorStruct, provideClientLib };
9567
9684
  //# sourceMappingURL=shieldiot-ngx-pulseiot-lib.mjs.map