@shieldiot/ngx-pulseiot-lib 2.18.1332 → 2.18.1336
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/DeviceActionCode.mjs +5 -1
- package/esm2022/lib/model/Insight.mjs +1 -1
- package/esm2022/lib/model/Integration.mjs +3 -1
- package/esm2022/lib/model/IntegrationTemplate.mjs +7 -1
- package/esm2022/lib/model/IntegrationTriggerCode.mjs +2 -2
- package/esm2022/lib/model/IntegrationTypeCode.mjs +6 -2
- package/esm2022/lib/model/StixCollection.mjs +21 -0
- package/esm2022/lib/model/StixCollectionView.mjs +21 -0
- package/esm2022/lib/model/StixIndicator.mjs +32 -0
- package/esm2022/lib/model/index.mjs +4 -1
- package/esm2022/lib/services/ConfigService.mjs +36 -0
- package/esm2022/lib/services/SysIntegrationTemplatesService.mjs +5 -2
- package/esm2022/lib/services/SysIntegrationsService.mjs +132 -0
- package/esm2022/lib/services/TaxiiApiRootService.mjs +36 -0
- package/esm2022/lib/services/TaxiiCollectionsService.mjs +42 -0
- package/esm2022/lib/services/TaxiiDiscoveryService.mjs +35 -0
- package/esm2022/lib/services/TaxiiManifestService.mjs +49 -0
- package/esm2022/lib/services/TaxiiObjectsService.mjs +62 -0
- package/esm2022/lib/services/UsrDevicesService.mjs +1 -4
- package/esm2022/lib/services/UsrIntegrationsService.mjs +2 -2
- package/esm2022/lib/services/index.mjs +8 -1
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs +449 -8
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs.map +1 -1
- package/lib/model/DeviceActionCode.d.ts +2 -1
- package/lib/model/Insight.d.ts +2 -2
- package/lib/model/Integration.d.ts +4 -2
- package/lib/model/IntegrationTemplate.d.ts +7 -0
- package/lib/model/IntegrationTypeCode.d.ts +2 -1
- package/lib/model/StixCollection.d.ts +12 -0
- package/lib/model/StixCollectionView.d.ts +11 -0
- package/lib/model/StixIndicator.d.ts +22 -0
- package/lib/model/index.d.ts +3 -0
- package/lib/services/ConfigService.d.ts +16 -0
- package/lib/services/SysIntegrationTemplatesService.d.ts +1 -1
- package/lib/services/SysIntegrationsService.d.ts +63 -0
- package/lib/services/TaxiiApiRootService.d.ts +15 -0
- package/lib/services/TaxiiCollectionsService.d.ts +19 -0
- package/lib/services/TaxiiDiscoveryService.d.ts +15 -0
- package/lib/services/TaxiiManifestService.d.ts +17 -0
- package/lib/services/TaxiiObjectsService.d.ts +20 -0
- package/lib/services/UsrIntegrationsService.d.ts +1 -1
- package/lib/services/index.d.ts +7 -0
- package/package.json +1 -1
|
@@ -862,7 +862,7 @@ function MapDeviceTypeCodes() {
|
|
|
862
862
|
return result;
|
|
863
863
|
}
|
|
864
864
|
|
|
865
|
-
// IntegrationTypeCode represents integration types: HTTP | SMTP | EMAIL | SMS
|
|
865
|
+
// IntegrationTypeCode represents integration types: HTTP | SMTP | EMAIL | SMS | STIX_TAXII
|
|
866
866
|
var IntegrationTypeCode;
|
|
867
867
|
(function (IntegrationTypeCode) {
|
|
868
868
|
// Undefined [0]
|
|
@@ -875,6 +875,8 @@ var IntegrationTypeCode;
|
|
|
875
875
|
IntegrationTypeCode[IntegrationTypeCode["EMAIL"] = 3] = "EMAIL";
|
|
876
876
|
// Internal SMS service integration [4]
|
|
877
877
|
IntegrationTypeCode[IntegrationTypeCode["SMS"] = 4] = "SMS";
|
|
878
|
+
// STIX 2.1 / TAXII 2.1 pull-based threat-intel feed [5]
|
|
879
|
+
IntegrationTypeCode[IntegrationTypeCode["STIX_TAXII"] = 5] = "STIX_TAXII";
|
|
878
880
|
})(IntegrationTypeCode || (IntegrationTypeCode = {}));
|
|
879
881
|
// Return list of IntegrationTypeCode values and their display names
|
|
880
882
|
function GetIntegrationTypeCodes() {
|
|
@@ -883,6 +885,7 @@ function GetIntegrationTypeCodes() {
|
|
|
883
885
|
result.push(new Tuple(IntegrationTypeCode.SMTP, 'IntegrationTypeCode.SMTP'));
|
|
884
886
|
result.push(new Tuple(IntegrationTypeCode.EMAIL, 'IntegrationTypeCode.EMAIL'));
|
|
885
887
|
result.push(new Tuple(IntegrationTypeCode.SMS, 'IntegrationTypeCode.SMS'));
|
|
888
|
+
result.push(new Tuple(IntegrationTypeCode.STIX_TAXII, 'IntegrationTypeCode.STIX_TAXII'));
|
|
886
889
|
return result;
|
|
887
890
|
}
|
|
888
891
|
// Return map of IntegrationTypeCode values and their display names
|
|
@@ -893,6 +896,7 @@ function MapIntegrationTypeCodes() {
|
|
|
893
896
|
result.set(IntegrationTypeCode.SMTP, 'Smtp');
|
|
894
897
|
result.set(IntegrationTypeCode.EMAIL, 'Email');
|
|
895
898
|
result.set(IntegrationTypeCode.SMS, 'Sms');
|
|
899
|
+
result.set(IntegrationTypeCode.STIX_TAXII, 'Stix Taxii');
|
|
896
900
|
return result;
|
|
897
901
|
}
|
|
898
902
|
|
|
@@ -1305,6 +1309,8 @@ var DeviceActionCode;
|
|
|
1305
1309
|
DeviceActionCode[DeviceActionCode["BLOCK_IP"] = 4] = "BLOCK_IP";
|
|
1306
1310
|
// Unsuspend device [5]
|
|
1307
1311
|
DeviceActionCode[DeviceActionCode["UNSUSPEND"] = 5] = "UNSUSPEND";
|
|
1312
|
+
// Unblock previously-blocked IP [6]
|
|
1313
|
+
DeviceActionCode[DeviceActionCode["UNBLOCK_IP"] = 6] = "UNBLOCK_IP";
|
|
1308
1314
|
})(DeviceActionCode || (DeviceActionCode = {}));
|
|
1309
1315
|
// Return list of DeviceActionCode values and their display names
|
|
1310
1316
|
function GetDeviceActionCodes() {
|
|
@@ -1314,6 +1320,7 @@ function GetDeviceActionCodes() {
|
|
|
1314
1320
|
result.push(new Tuple(DeviceActionCode.THROTTLE, 'DeviceActionCode.THROTTLE'));
|
|
1315
1321
|
result.push(new Tuple(DeviceActionCode.BLOCK_IP, 'DeviceActionCode.BLOCK_IP'));
|
|
1316
1322
|
result.push(new Tuple(DeviceActionCode.UNSUSPEND, 'DeviceActionCode.UNSUSPEND'));
|
|
1323
|
+
result.push(new Tuple(DeviceActionCode.UNBLOCK_IP, 'DeviceActionCode.UNBLOCK_IP'));
|
|
1317
1324
|
return result;
|
|
1318
1325
|
}
|
|
1319
1326
|
// Return map of DeviceActionCode values and their display names
|
|
@@ -1325,6 +1332,7 @@ function MapDeviceActionCodes() {
|
|
|
1325
1332
|
result.set(DeviceActionCode.THROTTLE, 'Throttle');
|
|
1326
1333
|
result.set(DeviceActionCode.BLOCK_IP, 'Block Ip');
|
|
1327
1334
|
result.set(DeviceActionCode.UNSUSPEND, 'Unsuspend');
|
|
1335
|
+
result.set(DeviceActionCode.UNBLOCK_IP, 'Unblock Ip');
|
|
1328
1336
|
return result;
|
|
1329
1337
|
}
|
|
1330
1338
|
|
|
@@ -1528,7 +1536,7 @@ function MapEventCategoryCodes() {
|
|
|
1528
1536
|
return result;
|
|
1529
1537
|
}
|
|
1530
1538
|
|
|
1531
|
-
// IntegrationTriggerCode represents
|
|
1539
|
+
// IntegrationTriggerCode represents the trigger origin: EVENT | ACTION
|
|
1532
1540
|
var IntegrationTriggerCode;
|
|
1533
1541
|
(function (IntegrationTriggerCode) {
|
|
1534
1542
|
// Undefined [0]
|
|
@@ -4177,6 +4185,8 @@ function GetIntegrationColumnsDef() {
|
|
|
4177
4185
|
result.push(new ColumnDef("", "preventiveAction", "DeviceActionCode", ""));
|
|
4178
4186
|
result.push(new ColumnDef("", "templateId", "string", ""));
|
|
4179
4187
|
result.push(new ColumnDef("", "parameterValues", "any", ""));
|
|
4188
|
+
result.push(new ColumnDef("", "collectionId", "string", ""));
|
|
4189
|
+
result.push(new ColumnDef("", "isSystem", "boolean", ""));
|
|
4180
4190
|
return result;
|
|
4181
4191
|
}
|
|
4182
4192
|
|
|
@@ -4242,11 +4252,17 @@ function GetIntegrationTemplateColumnsDef() {
|
|
|
4242
4252
|
result.push(new ColumnDef("", "updatedOn", "number", "datetime"));
|
|
4243
4253
|
result.push(new ColumnDef("", "name", "string", ""));
|
|
4244
4254
|
result.push(new ColumnDef("", "vendor", "string", ""));
|
|
4255
|
+
result.push(new ColumnDef("", "type", "IntegrationTypeCode", ""));
|
|
4245
4256
|
result.push(new ColumnDef("", "trigger", "IntegrationTriggerCode", ""));
|
|
4246
4257
|
result.push(new ColumnDef("", "description", "string", ""));
|
|
4247
4258
|
result.push(new ColumnDef("", "parameters", "TemplateParameter", ""));
|
|
4248
4259
|
result.push(new ColumnDef("", "steps", "TemplateStep", ""));
|
|
4249
4260
|
result.push(new ColumnDef("", "mainStepIndex", "number", ""));
|
|
4261
|
+
result.push(new ColumnDef("", "version", "string", ""));
|
|
4262
|
+
result.push(new ColumnDef("", "logo", "string", ""));
|
|
4263
|
+
result.push(new ColumnDef("", "favicon", "string", ""));
|
|
4264
|
+
result.push(new ColumnDef("", "singleton", "boolean", ""));
|
|
4265
|
+
result.push(new ColumnDef("", "isSystem", "boolean", ""));
|
|
4250
4266
|
return result;
|
|
4251
4267
|
}
|
|
4252
4268
|
|
|
@@ -4563,6 +4579,74 @@ function GetBatchJobColumnsDef() {
|
|
|
4563
4579
|
return result;
|
|
4564
4580
|
}
|
|
4565
4581
|
|
|
4582
|
+
// StixCollection represents a per-account TAXII 2.1 collection of STIX indicators.
|
|
4583
|
+
// One collection is created per STIX_TAXII Integration instance.
|
|
4584
|
+
class StixCollection extends BaseEntity {
|
|
4585
|
+
}
|
|
4586
|
+
function GetStixCollectionColumnsDef() {
|
|
4587
|
+
let result = [];
|
|
4588
|
+
result.push(new ColumnDef("", "id", "string", ""));
|
|
4589
|
+
result.push(new ColumnDef("", "createdOn", "number", "datetime"));
|
|
4590
|
+
result.push(new ColumnDef("", "updatedOn", "number", "datetime"));
|
|
4591
|
+
result.push(new ColumnDef("", "accountId", "string", ""));
|
|
4592
|
+
result.push(new ColumnDef("", "title", "string", ""));
|
|
4593
|
+
result.push(new ColumnDef("", "description", "string", ""));
|
|
4594
|
+
result.push(new ColumnDef("", "mediaTypes", "string", ""));
|
|
4595
|
+
result.push(new ColumnDef("", "bearerTokenHash", "string", ""));
|
|
4596
|
+
result.push(new ColumnDef("", "tokenPrefix", "string", ""));
|
|
4597
|
+
result.push(new ColumnDef("", "apiRoot", "string", ""));
|
|
4598
|
+
return result;
|
|
4599
|
+
}
|
|
4600
|
+
|
|
4601
|
+
// StixIndicator represents a single STIX 2.1 indicator (malicious IP) stored
|
|
4602
|
+
// in a StixCollection. Polled by customer firewalls via TAXII 2.1 Get Objects.
|
|
4603
|
+
// The entity Id follows STIX format: "indicator--<uuid v4>".
|
|
4604
|
+
class StixIndicator extends BaseEntity {
|
|
4605
|
+
}
|
|
4606
|
+
function GetStixIndicatorColumnsDef() {
|
|
4607
|
+
let result = [];
|
|
4608
|
+
result.push(new ColumnDef("", "id", "string", ""));
|
|
4609
|
+
result.push(new ColumnDef("", "createdOn", "number", "datetime"));
|
|
4610
|
+
result.push(new ColumnDef("", "updatedOn", "number", "datetime"));
|
|
4611
|
+
result.push(new ColumnDef("", "accountId", "string", ""));
|
|
4612
|
+
result.push(new ColumnDef("", "collectionId", "string", ""));
|
|
4613
|
+
result.push(new ColumnDef("", "ipValue", "string", ""));
|
|
4614
|
+
result.push(new ColumnDef("", "ipVersion", "number", ""));
|
|
4615
|
+
result.push(new ColumnDef("", "pattern", "string", ""));
|
|
4616
|
+
result.push(new ColumnDef("", "sourceEventId", "string", ""));
|
|
4617
|
+
result.push(new ColumnDef("", "sourceDeviceId", "string", ""));
|
|
4618
|
+
result.push(new ColumnDef("", "dateAdded", "number", "datetime"));
|
|
4619
|
+
result.push(new ColumnDef("", "modified", "number", "datetime"));
|
|
4620
|
+
result.push(new ColumnDef("", "validFrom", "number", "datetime"));
|
|
4621
|
+
result.push(new ColumnDef("", "validUntil", "number", "datetime"));
|
|
4622
|
+
result.push(new ColumnDef("", "revoked", "boolean", ""));
|
|
4623
|
+
result.push(new ColumnDef("", "revokedAt", "number", "datetime"));
|
|
4624
|
+
result.push(new ColumnDef("", "version", "number", "datetime"));
|
|
4625
|
+
result.push(new ColumnDef("", "name", "string", ""));
|
|
4626
|
+
result.push(new ColumnDef("", "description", "string", ""));
|
|
4627
|
+
result.push(new ColumnDef("", "indicatorTypes", "string", ""));
|
|
4628
|
+
return result;
|
|
4629
|
+
}
|
|
4630
|
+
|
|
4631
|
+
// StixCollectionView is the safe-to-expose projection of StixCollection for
|
|
4632
|
+
// the user-facing UI. Omits BearerTokenHash and TokenPrefix; includes a
|
|
4633
|
+
// derived PublicUrl (built server-side from configured base URL + ApiRoot + Id).
|
|
4634
|
+
class StixCollectionView extends BaseEntity {
|
|
4635
|
+
}
|
|
4636
|
+
function GetStixCollectionViewColumnsDef() {
|
|
4637
|
+
let result = [];
|
|
4638
|
+
result.push(new ColumnDef("", "id", "string", ""));
|
|
4639
|
+
result.push(new ColumnDef("", "createdOn", "number", "datetime"));
|
|
4640
|
+
result.push(new ColumnDef("", "updatedOn", "number", "datetime"));
|
|
4641
|
+
result.push(new ColumnDef("", "accountId", "string", ""));
|
|
4642
|
+
result.push(new ColumnDef("", "title", "string", ""));
|
|
4643
|
+
result.push(new ColumnDef("", "description", "string", ""));
|
|
4644
|
+
result.push(new ColumnDef("", "mediaTypes", "string", ""));
|
|
4645
|
+
result.push(new ColumnDef("", "apiRoot", "string", ""));
|
|
4646
|
+
result.push(new ColumnDef("", "publicUrl", "string", ""));
|
|
4647
|
+
return result;
|
|
4648
|
+
}
|
|
4649
|
+
|
|
4566
4650
|
class AppConfig {
|
|
4567
4651
|
constructor() {
|
|
4568
4652
|
this.api = '';
|
|
@@ -5223,7 +5307,7 @@ class UsrIntegrationsService {
|
|
|
5223
5307
|
* Get a single integration template by id (read-only for users).
|
|
5224
5308
|
*/
|
|
5225
5309
|
getTemplate(id) {
|
|
5226
|
-
return this.rest.get(`${this.baseUrl}/templates
|
|
5310
|
+
return this.rest.get(`${this.baseUrl}/templates/${id}`);
|
|
5227
5311
|
}
|
|
5228
5312
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: UsrIntegrationsService, deps: [{ token: APP_CONFIG }, { token: RestUtils }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
5229
5313
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: UsrIntegrationsService, providedIn: 'root' }); }
|
|
@@ -7781,9 +7865,6 @@ class UsrDevicesService {
|
|
|
7781
7865
|
if (risk != null) {
|
|
7782
7866
|
params.push(`risk=${risk}`);
|
|
7783
7867
|
}
|
|
7784
|
-
if (scoreRange != null) {
|
|
7785
|
-
params.push(`scoreRange=${scoreRange}`);
|
|
7786
|
-
}
|
|
7787
7868
|
return this.rest.get(`${this.baseUrl}/count/by-risk`, ...params);
|
|
7788
7869
|
}
|
|
7789
7870
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: UsrDevicesService, deps: [{ token: APP_CONFIG }, { token: RestUtils }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
@@ -8971,7 +9052,7 @@ class SysIntegrationTemplatesService {
|
|
|
8971
9052
|
/**
|
|
8972
9053
|
* Find integration templates by query.
|
|
8973
9054
|
*/
|
|
8974
|
-
find(search, trigger, sort, page, size) {
|
|
9055
|
+
find(search, trigger, isSystem, sort, page, size) {
|
|
8975
9056
|
const params = [];
|
|
8976
9057
|
if (search != null) {
|
|
8977
9058
|
params.push(`search=${search}`);
|
|
@@ -8979,6 +9060,9 @@ class SysIntegrationTemplatesService {
|
|
|
8979
9060
|
if (trigger != null) {
|
|
8980
9061
|
params.push(`trigger=${trigger}`);
|
|
8981
9062
|
}
|
|
9063
|
+
if (isSystem != null) {
|
|
9064
|
+
params.push(`isSystem=${isSystem}`);
|
|
9065
|
+
}
|
|
8982
9066
|
if (sort != null) {
|
|
8983
9067
|
params.push(`sort=${sort}`);
|
|
8984
9068
|
}
|
|
@@ -9204,6 +9288,363 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImpor
|
|
|
9204
9288
|
args: [APP_CONFIG]
|
|
9205
9289
|
}] }, { type: RestUtils }] });
|
|
9206
9290
|
|
|
9291
|
+
// SupportLogoEndPoint serves the telco logo image for use in HTML emails
|
|
9292
|
+
// This endpoint is public (no API key or token required) to allow embedding in emails
|
|
9293
|
+
class ConfigService {
|
|
9294
|
+
// Class constructor
|
|
9295
|
+
constructor(config, rest) {
|
|
9296
|
+
this.config = config;
|
|
9297
|
+
this.rest = rest;
|
|
9298
|
+
// URL to web api
|
|
9299
|
+
this.baseUrl = '/support/logo';
|
|
9300
|
+
this.baseUrl = this.config.api + this.baseUrl;
|
|
9301
|
+
}
|
|
9302
|
+
/**
|
|
9303
|
+
* getLogoImage returns the telco logo image as PNG
|
|
9304
|
+
* Fallback logic: TELCO_LOGO -> TELCO_LOGO_DARK -> default system logo
|
|
9305
|
+
*/
|
|
9306
|
+
getLogoImage() {
|
|
9307
|
+
return this.rest.get(`${this.baseUrl}`);
|
|
9308
|
+
}
|
|
9309
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: ConfigService, deps: [{ token: APP_CONFIG }, { token: RestUtils }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9310
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: ConfigService, providedIn: 'root' }); }
|
|
9311
|
+
}
|
|
9312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: ConfigService, decorators: [{
|
|
9313
|
+
type: Injectable,
|
|
9314
|
+
args: [{
|
|
9315
|
+
providedIn: 'root'
|
|
9316
|
+
}]
|
|
9317
|
+
}], ctorParameters: () => [{ type: AppConfig, decorators: [{
|
|
9318
|
+
type: Inject,
|
|
9319
|
+
args: [APP_CONFIG]
|
|
9320
|
+
}] }, { type: RestUtils }] });
|
|
9321
|
+
|
|
9322
|
+
// TaxiiApiRootEndPoint serves the TAXII 2.1 API Root information resource.
|
|
9323
|
+
// Unauthenticated — clients fetch this to discover the supported versions
|
|
9324
|
+
// before sending an authenticated request to a collection.
|
|
9325
|
+
class TaxiiApiRootService {
|
|
9326
|
+
// Class constructor
|
|
9327
|
+
constructor(config, rest) {
|
|
9328
|
+
this.config = config;
|
|
9329
|
+
this.rest = rest;
|
|
9330
|
+
// URL to web api
|
|
9331
|
+
this.baseUrl = '/taxii2/default';
|
|
9332
|
+
this.baseUrl = this.config.api + this.baseUrl;
|
|
9333
|
+
}
|
|
9334
|
+
/**
|
|
9335
|
+
* apiRoot returns the TAXII 2.1 API Root information resource.
|
|
9336
|
+
*/
|
|
9337
|
+
apiRoot() {
|
|
9338
|
+
return this.rest.get(`${this.baseUrl}`);
|
|
9339
|
+
}
|
|
9340
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiApiRootService, deps: [{ token: APP_CONFIG }, { token: RestUtils }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9341
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiApiRootService, providedIn: 'root' }); }
|
|
9342
|
+
}
|
|
9343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiApiRootService, decorators: [{
|
|
9344
|
+
type: Injectable,
|
|
9345
|
+
args: [{
|
|
9346
|
+
providedIn: 'root'
|
|
9347
|
+
}]
|
|
9348
|
+
}], ctorParameters: () => [{ type: AppConfig, decorators: [{
|
|
9349
|
+
type: Inject,
|
|
9350
|
+
args: [APP_CONFIG]
|
|
9351
|
+
}] }, { type: RestUtils }] });
|
|
9352
|
+
|
|
9353
|
+
// TaxiiDiscoveryEndPoint serves the TAXII 2.1 Discovery resource.
|
|
9354
|
+
// Unauthenticated — any caller may discover the server's api_roots.
|
|
9355
|
+
class TaxiiDiscoveryService {
|
|
9356
|
+
// Class constructor
|
|
9357
|
+
constructor(config, rest) {
|
|
9358
|
+
this.config = config;
|
|
9359
|
+
this.rest = rest;
|
|
9360
|
+
// URL to web api
|
|
9361
|
+
this.baseUrl = '/taxii2';
|
|
9362
|
+
this.baseUrl = this.config.api + this.baseUrl;
|
|
9363
|
+
}
|
|
9364
|
+
/**
|
|
9365
|
+
* discovery returns the TAXII 2.1 Discovery resource.
|
|
9366
|
+
*/
|
|
9367
|
+
discovery() {
|
|
9368
|
+
return this.rest.get(`${this.baseUrl}`);
|
|
9369
|
+
}
|
|
9370
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiDiscoveryService, deps: [{ token: APP_CONFIG }, { token: RestUtils }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9371
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiDiscoveryService, providedIn: 'root' }); }
|
|
9372
|
+
}
|
|
9373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiDiscoveryService, decorators: [{
|
|
9374
|
+
type: Injectable,
|
|
9375
|
+
args: [{
|
|
9376
|
+
providedIn: 'root'
|
|
9377
|
+
}]
|
|
9378
|
+
}], ctorParameters: () => [{ type: AppConfig, decorators: [{
|
|
9379
|
+
type: Inject,
|
|
9380
|
+
args: [APP_CONFIG]
|
|
9381
|
+
}] }, { type: RestUtils }] });
|
|
9382
|
+
|
|
9383
|
+
// TaxiiManifestEndPoint serves the TAXII 2.1 Get Manifest resource — a
|
|
9384
|
+
// lightweight metadata view (id, date_added, version, media_type) of the
|
|
9385
|
+
// indicators visible to the caller, used by clients for diffing without
|
|
9386
|
+
// downloading object bodies.
|
|
9387
|
+
class TaxiiManifestService {
|
|
9388
|
+
// Class constructor
|
|
9389
|
+
constructor(config, rest) {
|
|
9390
|
+
this.config = config;
|
|
9391
|
+
this.rest = rest;
|
|
9392
|
+
// URL to web api
|
|
9393
|
+
this.baseUrl = '/taxii2/default/collections/:id/manifest';
|
|
9394
|
+
this.baseUrl = this.config.api + this.baseUrl;
|
|
9395
|
+
}
|
|
9396
|
+
/**
|
|
9397
|
+
* list returns the TAXII 2.1 manifest envelope for the indicators in this
|
|
9398
|
+
* collection that match the given `added_after`, `limit`, `next`, and
|
|
9399
|
+
* `match[*]` filters.
|
|
9400
|
+
*/
|
|
9401
|
+
list(id, added_after, limit, next) {
|
|
9402
|
+
const params = [];
|
|
9403
|
+
if (added_after != null) {
|
|
9404
|
+
params.push(`added_after=${added_after}`);
|
|
9405
|
+
}
|
|
9406
|
+
if (limit != null) {
|
|
9407
|
+
params.push(`limit=${limit}`);
|
|
9408
|
+
}
|
|
9409
|
+
if (next != null) {
|
|
9410
|
+
params.push(`next=${next}`);
|
|
9411
|
+
}
|
|
9412
|
+
return this.rest.get(`${this.baseUrl}`, ...params);
|
|
9413
|
+
}
|
|
9414
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiManifestService, deps: [{ token: APP_CONFIG }, { token: RestUtils }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9415
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiManifestService, providedIn: 'root' }); }
|
|
9416
|
+
}
|
|
9417
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiManifestService, decorators: [{
|
|
9418
|
+
type: Injectable,
|
|
9419
|
+
args: [{
|
|
9420
|
+
providedIn: 'root'
|
|
9421
|
+
}]
|
|
9422
|
+
}], ctorParameters: () => [{ type: AppConfig, decorators: [{
|
|
9423
|
+
type: Inject,
|
|
9424
|
+
args: [APP_CONFIG]
|
|
9425
|
+
}] }, { type: RestUtils }] });
|
|
9426
|
+
|
|
9427
|
+
// TaxiiCollectionsEndPoint serves the TAXII 2.1 Collections + Get Collection
|
|
9428
|
+
// resources. Authenticated — each request must carry a bearer token resolving
|
|
9429
|
+
// to a collection owned by the caller.
|
|
9430
|
+
class TaxiiCollectionsService {
|
|
9431
|
+
// Class constructor
|
|
9432
|
+
constructor(config, rest) {
|
|
9433
|
+
this.config = config;
|
|
9434
|
+
this.rest = rest;
|
|
9435
|
+
// URL to web api
|
|
9436
|
+
this.baseUrl = '/taxii2/default/collections';
|
|
9437
|
+
this.baseUrl = this.config.api + this.baseUrl;
|
|
9438
|
+
}
|
|
9439
|
+
/**
|
|
9440
|
+
* list returns all collections visible to the authenticated caller (one in v1).
|
|
9441
|
+
*/
|
|
9442
|
+
list() {
|
|
9443
|
+
return this.rest.get(`${this.baseUrl}`);
|
|
9444
|
+
}
|
|
9445
|
+
/**
|
|
9446
|
+
* get returns the metadata for a single collection identified by id.
|
|
9447
|
+
*/
|
|
9448
|
+
get(id) {
|
|
9449
|
+
return this.rest.get(`${this.baseUrl}/${id}`);
|
|
9450
|
+
}
|
|
9451
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiCollectionsService, deps: [{ token: APP_CONFIG }, { token: RestUtils }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9452
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiCollectionsService, providedIn: 'root' }); }
|
|
9453
|
+
}
|
|
9454
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiCollectionsService, decorators: [{
|
|
9455
|
+
type: Injectable,
|
|
9456
|
+
args: [{
|
|
9457
|
+
providedIn: 'root'
|
|
9458
|
+
}]
|
|
9459
|
+
}], ctorParameters: () => [{ type: AppConfig, decorators: [{
|
|
9460
|
+
type: Inject,
|
|
9461
|
+
args: [APP_CONFIG]
|
|
9462
|
+
}] }, { type: RestUtils }] });
|
|
9463
|
+
|
|
9464
|
+
// TaxiiObjectsEndPoint serves the TAXII 2.1 Get Objects + Get Object resources.
|
|
9465
|
+
// This is the hot path that customer firewalls poll on their configured
|
|
9466
|
+
// interval (typically 1–15 min).
|
|
9467
|
+
class TaxiiObjectsService {
|
|
9468
|
+
// Class constructor
|
|
9469
|
+
constructor(config, rest) {
|
|
9470
|
+
this.config = config;
|
|
9471
|
+
this.rest = rest;
|
|
9472
|
+
// URL to web api
|
|
9473
|
+
this.baseUrl = '/taxii2/default/collections/:id/objects';
|
|
9474
|
+
this.baseUrl = this.config.api + this.baseUrl;
|
|
9475
|
+
}
|
|
9476
|
+
/**
|
|
9477
|
+
* list returns a TAXII 2.1 envelope of STIX indicators added or modified
|
|
9478
|
+
* after the given `added_after` timestamp, paginated via `limit` + `next`.
|
|
9479
|
+
*/
|
|
9480
|
+
list(id, added_after, limit, next, matchType, matchId, matchSpecVersion) {
|
|
9481
|
+
const params = [];
|
|
9482
|
+
if (added_after != null) {
|
|
9483
|
+
params.push(`added_after=${added_after}`);
|
|
9484
|
+
}
|
|
9485
|
+
if (limit != null) {
|
|
9486
|
+
params.push(`limit=${limit}`);
|
|
9487
|
+
}
|
|
9488
|
+
if (next != null) {
|
|
9489
|
+
params.push(`next=${next}`);
|
|
9490
|
+
}
|
|
9491
|
+
if (matchType != null) {
|
|
9492
|
+
params.push(`match[type]=${encodeURIComponent(matchType)}`);
|
|
9493
|
+
}
|
|
9494
|
+
if (matchId != null) {
|
|
9495
|
+
params.push(`match[id]=${encodeURIComponent(matchId)}`);
|
|
9496
|
+
}
|
|
9497
|
+
if (matchSpecVersion != null) {
|
|
9498
|
+
params.push(`match[spec_version]=${encodeURIComponent(matchSpecVersion)}`);
|
|
9499
|
+
}
|
|
9500
|
+
return this.rest.get(`${this.baseUrl}`, ...params);
|
|
9501
|
+
}
|
|
9502
|
+
/**
|
|
9503
|
+
* get returns a single STIX object by id.
|
|
9504
|
+
*/
|
|
9505
|
+
get(id, objectId) {
|
|
9506
|
+
return this.rest.get(`${this.baseUrl}/${objectId}`);
|
|
9507
|
+
}
|
|
9508
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiObjectsService, deps: [{ token: APP_CONFIG }, { token: RestUtils }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9509
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiObjectsService, providedIn: 'root' }); }
|
|
9510
|
+
}
|
|
9511
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiObjectsService, decorators: [{
|
|
9512
|
+
type: Injectable,
|
|
9513
|
+
args: [{
|
|
9514
|
+
providedIn: 'root'
|
|
9515
|
+
}]
|
|
9516
|
+
}], ctorParameters: () => [{ type: AppConfig, decorators: [{
|
|
9517
|
+
type: Inject,
|
|
9518
|
+
args: [APP_CONFIG]
|
|
9519
|
+
}] }, { type: RestUtils }] });
|
|
9520
|
+
|
|
9521
|
+
// SysIntegrationEndPoint is the system-administrator view of integration
|
|
9522
|
+
// management. It mirrors the user-facing /integrations endpoint (CRUD + find,
|
|
9523
|
+
// validate, test, templates) and additionally exposes the system-level
|
|
9524
|
+
// STIX/TAXII feed actions (rotate-token, collection) — replacing the dedicated
|
|
9525
|
+
// /sys/stix-taxii endpoint.
|
|
9526
|
+
class SysIntegrationsService {
|
|
9527
|
+
// Class constructor
|
|
9528
|
+
constructor(config, rest) {
|
|
9529
|
+
this.config = config;
|
|
9530
|
+
this.rest = rest;
|
|
9531
|
+
// URL to web api
|
|
9532
|
+
this.baseUrl = '/sys/integration';
|
|
9533
|
+
this.baseUrl = this.config.api + this.baseUrl;
|
|
9534
|
+
}
|
|
9535
|
+
/**
|
|
9536
|
+
* Create new integration configuration
|
|
9537
|
+
*/
|
|
9538
|
+
create(body) {
|
|
9539
|
+
return this.rest.put(`${this.baseUrl}`, typeof body === 'object' ? JSON.stringify(body) : body);
|
|
9540
|
+
}
|
|
9541
|
+
/**
|
|
9542
|
+
* Update existing integration configuration
|
|
9543
|
+
*/
|
|
9544
|
+
update(body) {
|
|
9545
|
+
return this.rest.patch(`${this.baseUrl}`, typeof body === 'object' ? JSON.stringify(body) : body);
|
|
9546
|
+
}
|
|
9547
|
+
/**
|
|
9548
|
+
* Delete integration configuration
|
|
9549
|
+
*/
|
|
9550
|
+
delete(id) {
|
|
9551
|
+
return this.rest.delete(`${this.baseUrl}/${id}`);
|
|
9552
|
+
}
|
|
9553
|
+
/**
|
|
9554
|
+
* Get a single Integration by id
|
|
9555
|
+
*/
|
|
9556
|
+
get(id) {
|
|
9557
|
+
return this.rest.get(`${this.baseUrl}/${id}`);
|
|
9558
|
+
}
|
|
9559
|
+
/**
|
|
9560
|
+
* Find integrations by query
|
|
9561
|
+
*/
|
|
9562
|
+
find(streamId, search, sort, page, size) {
|
|
9563
|
+
const params = [];
|
|
9564
|
+
if (streamId != null) {
|
|
9565
|
+
params.push(`streamId=${streamId}`);
|
|
9566
|
+
}
|
|
9567
|
+
if (search != null) {
|
|
9568
|
+
params.push(`search=${search}`);
|
|
9569
|
+
}
|
|
9570
|
+
if (sort != null) {
|
|
9571
|
+
params.push(`sort=${sort}`);
|
|
9572
|
+
}
|
|
9573
|
+
if (page != null) {
|
|
9574
|
+
params.push(`page=${page}`);
|
|
9575
|
+
}
|
|
9576
|
+
if (size != null) {
|
|
9577
|
+
params.push(`size=${size}`);
|
|
9578
|
+
}
|
|
9579
|
+
return this.rest.get(`${this.baseUrl}`, ...params);
|
|
9580
|
+
}
|
|
9581
|
+
/**
|
|
9582
|
+
* Validate format of the templates in the fields
|
|
9583
|
+
*/
|
|
9584
|
+
validate(body) {
|
|
9585
|
+
return this.rest.post(`${this.baseUrl}/validate`, typeof body === 'object' ? JSON.stringify(body) : body);
|
|
9586
|
+
}
|
|
9587
|
+
/**
|
|
9588
|
+
* Test the integration with pseudo data
|
|
9589
|
+
*/
|
|
9590
|
+
test(body) {
|
|
9591
|
+
return this.rest.post(`${this.baseUrl}/test`, typeof body === 'object' ? JSON.stringify(body) : body);
|
|
9592
|
+
}
|
|
9593
|
+
/**
|
|
9594
|
+
* Mint or rotate the system STIX/TAXII bearer token. The raw token is returned
|
|
9595
|
+
* exactly once; only its bcrypt hash is persisted, so the caller MUST capture
|
|
9596
|
+
* it immediately.
|
|
9597
|
+
*/
|
|
9598
|
+
rotateToken() {
|
|
9599
|
+
return this.rest.post(`${this.baseUrl}/rotate-token`, '');
|
|
9600
|
+
}
|
|
9601
|
+
/**
|
|
9602
|
+
* Get the system STIX/TAXII collection view, including the firewall-polling URL.
|
|
9603
|
+
*/
|
|
9604
|
+
getCollection() {
|
|
9605
|
+
return this.rest.get(`${this.baseUrl}/collection`);
|
|
9606
|
+
}
|
|
9607
|
+
/**
|
|
9608
|
+
* Find available integration templates.
|
|
9609
|
+
*/
|
|
9610
|
+
findTemplates(search, trigger, sort, page, size) {
|
|
9611
|
+
const params = [];
|
|
9612
|
+
if (search != null) {
|
|
9613
|
+
params.push(`search=${search}`);
|
|
9614
|
+
}
|
|
9615
|
+
if (trigger != null) {
|
|
9616
|
+
params.push(`trigger=${trigger}`);
|
|
9617
|
+
}
|
|
9618
|
+
if (sort != null) {
|
|
9619
|
+
params.push(`sort=${sort}`);
|
|
9620
|
+
}
|
|
9621
|
+
if (page != null) {
|
|
9622
|
+
params.push(`page=${page}`);
|
|
9623
|
+
}
|
|
9624
|
+
if (size != null) {
|
|
9625
|
+
params.push(`size=${size}`);
|
|
9626
|
+
}
|
|
9627
|
+
return this.rest.get(`${this.baseUrl}/templates`, ...params);
|
|
9628
|
+
}
|
|
9629
|
+
/**
|
|
9630
|
+
* Get a single integration template by id.
|
|
9631
|
+
*/
|
|
9632
|
+
getTemplate(id) {
|
|
9633
|
+
return this.rest.get(`${this.baseUrl}/templates/${id}`);
|
|
9634
|
+
}
|
|
9635
|
+
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 }); }
|
|
9636
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: SysIntegrationsService, providedIn: 'root' }); }
|
|
9637
|
+
}
|
|
9638
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: SysIntegrationsService, decorators: [{
|
|
9639
|
+
type: Injectable,
|
|
9640
|
+
args: [{
|
|
9641
|
+
providedIn: 'root'
|
|
9642
|
+
}]
|
|
9643
|
+
}], ctorParameters: () => [{ type: AppConfig, decorators: [{
|
|
9644
|
+
type: Inject,
|
|
9645
|
+
args: [APP_CONFIG]
|
|
9646
|
+
}] }, { type: RestUtils }] });
|
|
9647
|
+
|
|
9207
9648
|
class NgxPulseiotLibModule {
|
|
9208
9649
|
static forRoot(config) {
|
|
9209
9650
|
return {
|
|
@@ -9233,5 +9674,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImpor
|
|
|
9233
9674
|
* Generated bundle index. Do not edit.
|
|
9234
9675
|
*/
|
|
9235
9676
|
|
|
9236
|
-
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, 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, 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, UsrAiExplainService, UsrAlertsService, UsrDevicesService, UsrEventsService, UsrInsightsService, UsrIntegrationsService, UsrMembersService, UsrNetworkService, UsrNotificationMessagesService, UsrReportsInstanceService, UsrReportsService, UsrRulesService, UsrUserService, WSOpCode, ZScore, errorStruct, provideClientLib };
|
|
9677
|
+
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 };
|
|
9237
9678
|
//# sourceMappingURL=shieldiot-ngx-pulseiot-lib.mjs.map
|