@shieldiot/ngx-pulseiot-lib 2.18.1264 → 2.18.1267
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/StixCollection.mjs +21 -0
- package/esm2022/lib/model/StixIndicator.mjs +32 -0
- package/esm2022/lib/model/index.mjs +3 -1
- package/esm2022/lib/services/ConfigService.mjs +36 -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/UsrIntegrationsService.mjs +9 -1
- package/esm2022/lib/services/index.mjs +7 -1
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs +288 -1
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs.map +1 -1
- package/lib/model/StixCollection.d.ts +12 -0
- package/lib/model/StixIndicator.d.ts +22 -0
- package/lib/model/index.d.ts +2 -0
- package/lib/services/ConfigService.d.ts +16 -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 +6 -0
- package/lib/services/index.d.ts +6 -0
- package/package.json +1 -1
|
@@ -4563,6 +4563,55 @@ function GetBatchJobColumnsDef() {
|
|
|
4563
4563
|
return result;
|
|
4564
4564
|
}
|
|
4565
4565
|
|
|
4566
|
+
// StixCollection represents a per-account TAXII 2.1 collection of STIX indicators.
|
|
4567
|
+
// One collection is created per STIX_TAXII Integration instance.
|
|
4568
|
+
class StixCollection extends BaseEntity {
|
|
4569
|
+
}
|
|
4570
|
+
function GetStixCollectionColumnsDef() {
|
|
4571
|
+
let result = [];
|
|
4572
|
+
result.push(new ColumnDef("", "id", "string", ""));
|
|
4573
|
+
result.push(new ColumnDef("", "createdOn", "number", "datetime"));
|
|
4574
|
+
result.push(new ColumnDef("", "updatedOn", "number", "datetime"));
|
|
4575
|
+
result.push(new ColumnDef("", "accountId", "string", ""));
|
|
4576
|
+
result.push(new ColumnDef("", "title", "string", ""));
|
|
4577
|
+
result.push(new ColumnDef("", "description", "string", ""));
|
|
4578
|
+
result.push(new ColumnDef("", "mediaTypes", "string", ""));
|
|
4579
|
+
result.push(new ColumnDef("", "bearerTokenHash", "string", ""));
|
|
4580
|
+
result.push(new ColumnDef("", "tokenPrefix", "string", ""));
|
|
4581
|
+
result.push(new ColumnDef("", "apiRoot", "string", ""));
|
|
4582
|
+
return result;
|
|
4583
|
+
}
|
|
4584
|
+
|
|
4585
|
+
// StixIndicator represents a single STIX 2.1 indicator (malicious IP) stored
|
|
4586
|
+
// in a StixCollection. Polled by customer firewalls via TAXII 2.1 Get Objects.
|
|
4587
|
+
// The entity Id follows STIX format: "indicator--<uuid v4>".
|
|
4588
|
+
class StixIndicator extends BaseEntity {
|
|
4589
|
+
}
|
|
4590
|
+
function GetStixIndicatorColumnsDef() {
|
|
4591
|
+
let result = [];
|
|
4592
|
+
result.push(new ColumnDef("", "id", "string", ""));
|
|
4593
|
+
result.push(new ColumnDef("", "createdOn", "number", "datetime"));
|
|
4594
|
+
result.push(new ColumnDef("", "updatedOn", "number", "datetime"));
|
|
4595
|
+
result.push(new ColumnDef("", "accountId", "string", ""));
|
|
4596
|
+
result.push(new ColumnDef("", "collectionId", "string", ""));
|
|
4597
|
+
result.push(new ColumnDef("", "ipValue", "string", ""));
|
|
4598
|
+
result.push(new ColumnDef("", "ipVersion", "number", ""));
|
|
4599
|
+
result.push(new ColumnDef("", "pattern", "string", ""));
|
|
4600
|
+
result.push(new ColumnDef("", "sourceEventId", "string", ""));
|
|
4601
|
+
result.push(new ColumnDef("", "sourceDeviceId", "string", ""));
|
|
4602
|
+
result.push(new ColumnDef("", "dateAdded", "number", "datetime"));
|
|
4603
|
+
result.push(new ColumnDef("", "modified", "number", "datetime"));
|
|
4604
|
+
result.push(new ColumnDef("", "validFrom", "number", "datetime"));
|
|
4605
|
+
result.push(new ColumnDef("", "validUntil", "number", "datetime"));
|
|
4606
|
+
result.push(new ColumnDef("", "revoked", "boolean", ""));
|
|
4607
|
+
result.push(new ColumnDef("", "revokedAt", "number", "datetime"));
|
|
4608
|
+
result.push(new ColumnDef("", "version", "number", "datetime"));
|
|
4609
|
+
result.push(new ColumnDef("", "name", "string", ""));
|
|
4610
|
+
result.push(new ColumnDef("", "description", "string", ""));
|
|
4611
|
+
result.push(new ColumnDef("", "indicatorTypes", "string", ""));
|
|
4612
|
+
return result;
|
|
4613
|
+
}
|
|
4614
|
+
|
|
4566
4615
|
class AppConfig {
|
|
4567
4616
|
constructor() {
|
|
4568
4617
|
this.api = '';
|
|
@@ -5197,6 +5246,14 @@ class UsrIntegrationsService {
|
|
|
5197
5246
|
test(body) {
|
|
5198
5247
|
return this.rest.post(`${this.baseUrl}/test`, typeof body === 'object' ? JSON.stringify(body) : body);
|
|
5199
5248
|
}
|
|
5249
|
+
/**
|
|
5250
|
+
* Rotate the bearer token for a STIX/TAXII integration. Returns the new raw
|
|
5251
|
+
* token in the response — the caller MUST capture it immediately because it
|
|
5252
|
+
* is never re-readable from the server (only the bcrypt hash is stored).
|
|
5253
|
+
*/
|
|
5254
|
+
rotateToken(id) {
|
|
5255
|
+
return this.rest.post(`${this.baseUrl}/${id}/rotate-token`, '');
|
|
5256
|
+
}
|
|
5200
5257
|
/**
|
|
5201
5258
|
* Find available integration templates (read-only for users).
|
|
5202
5259
|
*/
|
|
@@ -9204,6 +9261,236 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImpor
|
|
|
9204
9261
|
args: [APP_CONFIG]
|
|
9205
9262
|
}] }, { type: RestUtils }] });
|
|
9206
9263
|
|
|
9264
|
+
// SupportLogoEndPoint serves the telco logo image for use in HTML emails
|
|
9265
|
+
// This endpoint is public (no API key or token required) to allow embedding in emails
|
|
9266
|
+
class ConfigService {
|
|
9267
|
+
// Class constructor
|
|
9268
|
+
constructor(config, rest) {
|
|
9269
|
+
this.config = config;
|
|
9270
|
+
this.rest = rest;
|
|
9271
|
+
// URL to web api
|
|
9272
|
+
this.baseUrl = '/support/logo';
|
|
9273
|
+
this.baseUrl = this.config.api + this.baseUrl;
|
|
9274
|
+
}
|
|
9275
|
+
/**
|
|
9276
|
+
* getLogoImage returns the telco logo image as PNG
|
|
9277
|
+
* Fallback logic: TELCO_LOGO -> TELCO_LOGO_DARK -> default system logo
|
|
9278
|
+
*/
|
|
9279
|
+
getLogoImage() {
|
|
9280
|
+
return this.rest.get(`${this.baseUrl}`);
|
|
9281
|
+
}
|
|
9282
|
+
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 }); }
|
|
9283
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: ConfigService, providedIn: 'root' }); }
|
|
9284
|
+
}
|
|
9285
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: ConfigService, decorators: [{
|
|
9286
|
+
type: Injectable,
|
|
9287
|
+
args: [{
|
|
9288
|
+
providedIn: 'root'
|
|
9289
|
+
}]
|
|
9290
|
+
}], ctorParameters: () => [{ type: AppConfig, decorators: [{
|
|
9291
|
+
type: Inject,
|
|
9292
|
+
args: [APP_CONFIG]
|
|
9293
|
+
}] }, { type: RestUtils }] });
|
|
9294
|
+
|
|
9295
|
+
// TaxiiApiRootEndPoint serves the TAXII 2.1 API Root information resource.
|
|
9296
|
+
// Unauthenticated — clients fetch this to discover the supported versions
|
|
9297
|
+
// before sending an authenticated request to a collection.
|
|
9298
|
+
class TaxiiApiRootService {
|
|
9299
|
+
// Class constructor
|
|
9300
|
+
constructor(config, rest) {
|
|
9301
|
+
this.config = config;
|
|
9302
|
+
this.rest = rest;
|
|
9303
|
+
// URL to web api
|
|
9304
|
+
this.baseUrl = '/taxii2/default';
|
|
9305
|
+
this.baseUrl = this.config.api + this.baseUrl;
|
|
9306
|
+
}
|
|
9307
|
+
/**
|
|
9308
|
+
* apiRoot returns the TAXII 2.1 API Root information resource.
|
|
9309
|
+
*/
|
|
9310
|
+
apiRoot() {
|
|
9311
|
+
return this.rest.get(`${this.baseUrl}`);
|
|
9312
|
+
}
|
|
9313
|
+
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 }); }
|
|
9314
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiApiRootService, providedIn: 'root' }); }
|
|
9315
|
+
}
|
|
9316
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiApiRootService, decorators: [{
|
|
9317
|
+
type: Injectable,
|
|
9318
|
+
args: [{
|
|
9319
|
+
providedIn: 'root'
|
|
9320
|
+
}]
|
|
9321
|
+
}], ctorParameters: () => [{ type: AppConfig, decorators: [{
|
|
9322
|
+
type: Inject,
|
|
9323
|
+
args: [APP_CONFIG]
|
|
9324
|
+
}] }, { type: RestUtils }] });
|
|
9325
|
+
|
|
9326
|
+
// TaxiiDiscoveryEndPoint serves the TAXII 2.1 Discovery resource.
|
|
9327
|
+
// Unauthenticated — any caller may discover the server's api_roots.
|
|
9328
|
+
class TaxiiDiscoveryService {
|
|
9329
|
+
// Class constructor
|
|
9330
|
+
constructor(config, rest) {
|
|
9331
|
+
this.config = config;
|
|
9332
|
+
this.rest = rest;
|
|
9333
|
+
// URL to web api
|
|
9334
|
+
this.baseUrl = '/taxii2';
|
|
9335
|
+
this.baseUrl = this.config.api + this.baseUrl;
|
|
9336
|
+
}
|
|
9337
|
+
/**
|
|
9338
|
+
* discovery returns the TAXII 2.1 Discovery resource.
|
|
9339
|
+
*/
|
|
9340
|
+
discovery() {
|
|
9341
|
+
return this.rest.get(`${this.baseUrl}`);
|
|
9342
|
+
}
|
|
9343
|
+
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 }); }
|
|
9344
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiDiscoveryService, providedIn: 'root' }); }
|
|
9345
|
+
}
|
|
9346
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiDiscoveryService, decorators: [{
|
|
9347
|
+
type: Injectable,
|
|
9348
|
+
args: [{
|
|
9349
|
+
providedIn: 'root'
|
|
9350
|
+
}]
|
|
9351
|
+
}], ctorParameters: () => [{ type: AppConfig, decorators: [{
|
|
9352
|
+
type: Inject,
|
|
9353
|
+
args: [APP_CONFIG]
|
|
9354
|
+
}] }, { type: RestUtils }] });
|
|
9355
|
+
|
|
9356
|
+
// TaxiiManifestEndPoint serves the TAXII 2.1 Get Manifest resource — a
|
|
9357
|
+
// lightweight metadata view (id, date_added, version, media_type) of the
|
|
9358
|
+
// indicators visible to the caller, used by clients for diffing without
|
|
9359
|
+
// downloading object bodies.
|
|
9360
|
+
class TaxiiManifestService {
|
|
9361
|
+
// Class constructor
|
|
9362
|
+
constructor(config, rest) {
|
|
9363
|
+
this.config = config;
|
|
9364
|
+
this.rest = rest;
|
|
9365
|
+
// URL to web api
|
|
9366
|
+
this.baseUrl = '/taxii2/default/collections/:id/manifest';
|
|
9367
|
+
this.baseUrl = this.config.api + this.baseUrl;
|
|
9368
|
+
}
|
|
9369
|
+
/**
|
|
9370
|
+
* list returns the TAXII 2.1 manifest envelope for the indicators in this
|
|
9371
|
+
* collection that match the given `added_after`, `limit`, `next`, and
|
|
9372
|
+
* `match[*]` filters.
|
|
9373
|
+
*/
|
|
9374
|
+
list(id, added_after, limit, next) {
|
|
9375
|
+
const params = [];
|
|
9376
|
+
if (added_after != null) {
|
|
9377
|
+
params.push(`added_after=${added_after}`);
|
|
9378
|
+
}
|
|
9379
|
+
if (limit != null) {
|
|
9380
|
+
params.push(`limit=${limit}`);
|
|
9381
|
+
}
|
|
9382
|
+
if (next != null) {
|
|
9383
|
+
params.push(`next=${next}`);
|
|
9384
|
+
}
|
|
9385
|
+
return this.rest.get(`${this.baseUrl}`, ...params);
|
|
9386
|
+
}
|
|
9387
|
+
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 }); }
|
|
9388
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiManifestService, providedIn: 'root' }); }
|
|
9389
|
+
}
|
|
9390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiManifestService, decorators: [{
|
|
9391
|
+
type: Injectable,
|
|
9392
|
+
args: [{
|
|
9393
|
+
providedIn: 'root'
|
|
9394
|
+
}]
|
|
9395
|
+
}], ctorParameters: () => [{ type: AppConfig, decorators: [{
|
|
9396
|
+
type: Inject,
|
|
9397
|
+
args: [APP_CONFIG]
|
|
9398
|
+
}] }, { type: RestUtils }] });
|
|
9399
|
+
|
|
9400
|
+
// TaxiiCollectionsEndPoint serves the TAXII 2.1 Collections + Get Collection
|
|
9401
|
+
// resources. Authenticated — each request must carry a bearer token resolving
|
|
9402
|
+
// to a collection owned by the caller.
|
|
9403
|
+
class TaxiiCollectionsService {
|
|
9404
|
+
// Class constructor
|
|
9405
|
+
constructor(config, rest) {
|
|
9406
|
+
this.config = config;
|
|
9407
|
+
this.rest = rest;
|
|
9408
|
+
// URL to web api
|
|
9409
|
+
this.baseUrl = '/taxii2/default/collections';
|
|
9410
|
+
this.baseUrl = this.config.api + this.baseUrl;
|
|
9411
|
+
}
|
|
9412
|
+
/**
|
|
9413
|
+
* list returns all collections visible to the authenticated caller (one in v1).
|
|
9414
|
+
*/
|
|
9415
|
+
list() {
|
|
9416
|
+
return this.rest.get(`${this.baseUrl}`);
|
|
9417
|
+
}
|
|
9418
|
+
/**
|
|
9419
|
+
* get returns the metadata for a single collection identified by id.
|
|
9420
|
+
*/
|
|
9421
|
+
get(id) {
|
|
9422
|
+
return this.rest.get(`${this.baseUrl}/${id}`);
|
|
9423
|
+
}
|
|
9424
|
+
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 }); }
|
|
9425
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiCollectionsService, providedIn: 'root' }); }
|
|
9426
|
+
}
|
|
9427
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiCollectionsService, decorators: [{
|
|
9428
|
+
type: Injectable,
|
|
9429
|
+
args: [{
|
|
9430
|
+
providedIn: 'root'
|
|
9431
|
+
}]
|
|
9432
|
+
}], ctorParameters: () => [{ type: AppConfig, decorators: [{
|
|
9433
|
+
type: Inject,
|
|
9434
|
+
args: [APP_CONFIG]
|
|
9435
|
+
}] }, { type: RestUtils }] });
|
|
9436
|
+
|
|
9437
|
+
// TaxiiObjectsEndPoint serves the TAXII 2.1 Get Objects + Get Object resources.
|
|
9438
|
+
// This is the hot path that customer firewalls poll on their configured
|
|
9439
|
+
// interval (typically 1–15 min).
|
|
9440
|
+
class TaxiiObjectsService {
|
|
9441
|
+
// Class constructor
|
|
9442
|
+
constructor(config, rest) {
|
|
9443
|
+
this.config = config;
|
|
9444
|
+
this.rest = rest;
|
|
9445
|
+
// URL to web api
|
|
9446
|
+
this.baseUrl = '/taxii2/default/collections/:id/objects';
|
|
9447
|
+
this.baseUrl = this.config.api + this.baseUrl;
|
|
9448
|
+
}
|
|
9449
|
+
/**
|
|
9450
|
+
* list returns a TAXII 2.1 envelope of STIX indicators added or modified
|
|
9451
|
+
* after the given `added_after` timestamp, paginated via `limit` + `next`.
|
|
9452
|
+
*/
|
|
9453
|
+
list(id, added_after, limit, next, matchType, matchId, matchSpecVersion) {
|
|
9454
|
+
const params = [];
|
|
9455
|
+
if (added_after != null) {
|
|
9456
|
+
params.push(`added_after=${added_after}`);
|
|
9457
|
+
}
|
|
9458
|
+
if (limit != null) {
|
|
9459
|
+
params.push(`limit=${limit}`);
|
|
9460
|
+
}
|
|
9461
|
+
if (next != null) {
|
|
9462
|
+
params.push(`next=${next}`);
|
|
9463
|
+
}
|
|
9464
|
+
if (matchType != null) {
|
|
9465
|
+
params.push(`match[type]=${encodeURIComponent(matchType)}`);
|
|
9466
|
+
}
|
|
9467
|
+
if (matchId != null) {
|
|
9468
|
+
params.push(`match[id]=${encodeURIComponent(matchId)}`);
|
|
9469
|
+
}
|
|
9470
|
+
if (matchSpecVersion != null) {
|
|
9471
|
+
params.push(`match[spec_version]=${encodeURIComponent(matchSpecVersion)}`);
|
|
9472
|
+
}
|
|
9473
|
+
return this.rest.get(`${this.baseUrl}`, ...params);
|
|
9474
|
+
}
|
|
9475
|
+
/**
|
|
9476
|
+
* get returns a single STIX object by id.
|
|
9477
|
+
*/
|
|
9478
|
+
get(id, objectId) {
|
|
9479
|
+
return this.rest.get(`${this.baseUrl}/${objectId}`);
|
|
9480
|
+
}
|
|
9481
|
+
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 }); }
|
|
9482
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiObjectsService, providedIn: 'root' }); }
|
|
9483
|
+
}
|
|
9484
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: TaxiiObjectsService, decorators: [{
|
|
9485
|
+
type: Injectable,
|
|
9486
|
+
args: [{
|
|
9487
|
+
providedIn: 'root'
|
|
9488
|
+
}]
|
|
9489
|
+
}], ctorParameters: () => [{ type: AppConfig, decorators: [{
|
|
9490
|
+
type: Inject,
|
|
9491
|
+
args: [APP_CONFIG]
|
|
9492
|
+
}] }, { type: RestUtils }] });
|
|
9493
|
+
|
|
9207
9494
|
class NgxPulseiotLibModule {
|
|
9208
9495
|
static forRoot(config) {
|
|
9209
9496
|
return {
|
|
@@ -9233,5 +9520,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImpor
|
|
|
9233
9520
|
* Generated bundle index. Do not edit.
|
|
9234
9521
|
*/
|
|
9235
9522
|
|
|
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 };
|
|
9523
|
+
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, 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, 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 };
|
|
9237
9524
|
//# sourceMappingURL=shieldiot-ngx-pulseiot-lib.mjs.map
|