@shieldiot/ngx-pulseiot-lib 2.18.1201 → 2.18.1206
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/Integration.mjs +3 -1
- package/esm2022/lib/model/IntegrationTemplate.mjs +21 -0
- package/esm2022/lib/model/ResponseExtraction.mjs +16 -0
- package/esm2022/lib/model/TemplateParameter.mjs +22 -0
- package/esm2022/lib/model/TemplateStep.mjs +33 -0
- package/esm2022/lib/model/index.mjs +5 -1
- package/esm2022/lib/services/UsrDevicesService.mjs +47 -10
- package/esm2022/lib/services/UsrIntegrationsService.mjs +26 -1
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs +164 -10
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs.map +1 -1
- package/lib/model/Integration.d.ts +4 -2
- package/lib/model/IntegrationTemplate.d.ts +15 -0
- package/lib/model/ResponseExtraction.d.ts +6 -0
- package/lib/model/TemplateParameter.d.ts +8 -0
- package/lib/model/TemplateStep.d.ts +15 -0
- package/lib/model/index.d.ts +4 -0
- package/lib/services/UsrDevicesService.d.ts +13 -9
- package/lib/services/UsrIntegrationsService.d.ts +9 -0
- package/package.json +1 -1
|
@@ -4154,6 +4154,8 @@ function GetIntegrationColumnsDef() {
|
|
|
4154
4154
|
result.push(new ColumnDef("", "eventTypes", "EventTypeCode", ""));
|
|
4155
4155
|
result.push(new ColumnDef("", "eventSeverity", "SeverityTypeCode", ""));
|
|
4156
4156
|
result.push(new ColumnDef("", "preventiveAction", "DeviceActionCode", ""));
|
|
4157
|
+
result.push(new ColumnDef("", "templateId", "string", ""));
|
|
4158
|
+
result.push(new ColumnDef("", "parameterValues", "any", ""));
|
|
4157
4159
|
return result;
|
|
4158
4160
|
}
|
|
4159
4161
|
|
|
@@ -4208,6 +4210,96 @@ function GetAccountReportDTOColumnsDef() {
|
|
|
4208
4210
|
return result;
|
|
4209
4211
|
}
|
|
4210
4212
|
|
|
4213
|
+
// IntegrationTemplate defines a vendor's multi-step workflow for integration.
|
|
4214
|
+
// System-level entity: created and managed by system administrators only.
|
|
4215
|
+
class IntegrationTemplate extends BaseEntity {
|
|
4216
|
+
}
|
|
4217
|
+
function GetIntegrationTemplateColumnsDef() {
|
|
4218
|
+
let result = [];
|
|
4219
|
+
result.push(new ColumnDef("", "id", "string", ""));
|
|
4220
|
+
result.push(new ColumnDef("", "createdOn", "number", "datetime"));
|
|
4221
|
+
result.push(new ColumnDef("", "updatedOn", "number", "datetime"));
|
|
4222
|
+
result.push(new ColumnDef("", "name", "string", ""));
|
|
4223
|
+
result.push(new ColumnDef("", "vendor", "string", ""));
|
|
4224
|
+
result.push(new ColumnDef("", "trigger", "IntegrationTriggerCode", ""));
|
|
4225
|
+
result.push(new ColumnDef("", "description", "string", ""));
|
|
4226
|
+
result.push(new ColumnDef("", "parameters", "TemplateParameter", ""));
|
|
4227
|
+
result.push(new ColumnDef("", "steps", "TemplateStep", ""));
|
|
4228
|
+
result.push(new ColumnDef("", "mainStepIndex", "number", ""));
|
|
4229
|
+
return result;
|
|
4230
|
+
}
|
|
4231
|
+
|
|
4232
|
+
// ResponseExtraction defines how to extract a value from a step's HTTP response.
|
|
4233
|
+
// Path uses gjson syntax (e.g., "sid", "data.token"). Omit the leading "$.".
|
|
4234
|
+
class ResponseExtraction {
|
|
4235
|
+
constructor(name, path, required) {
|
|
4236
|
+
if (name !== undefined) {
|
|
4237
|
+
this.name = name;
|
|
4238
|
+
}
|
|
4239
|
+
if (path !== undefined) {
|
|
4240
|
+
this.path = path;
|
|
4241
|
+
}
|
|
4242
|
+
if (required !== undefined) {
|
|
4243
|
+
this.required = required;
|
|
4244
|
+
}
|
|
4245
|
+
}
|
|
4246
|
+
}
|
|
4247
|
+
|
|
4248
|
+
// TemplateParameter defines a parameter the user must provide when creating an
|
|
4249
|
+
// integration from this template (e.g., management_ip, username, password).
|
|
4250
|
+
class TemplateParameter {
|
|
4251
|
+
constructor(name, label, type, required, defaultVal) {
|
|
4252
|
+
if (name !== undefined) {
|
|
4253
|
+
this.name = name;
|
|
4254
|
+
}
|
|
4255
|
+
if (label !== undefined) {
|
|
4256
|
+
this.label = label;
|
|
4257
|
+
}
|
|
4258
|
+
if (type !== undefined) {
|
|
4259
|
+
this.type = type;
|
|
4260
|
+
}
|
|
4261
|
+
if (required !== undefined) {
|
|
4262
|
+
this.required = required;
|
|
4263
|
+
}
|
|
4264
|
+
if (defaultVal !== undefined) {
|
|
4265
|
+
this.defaultVal = defaultVal;
|
|
4266
|
+
}
|
|
4267
|
+
}
|
|
4268
|
+
}
|
|
4269
|
+
|
|
4270
|
+
// TemplateStep defines one HTTP call within an integration workflow.
|
|
4271
|
+
class TemplateStep {
|
|
4272
|
+
constructor(name, order, isMain, isCleanup, method, url, headers, body, extractions) {
|
|
4273
|
+
if (name !== undefined) {
|
|
4274
|
+
this.name = name;
|
|
4275
|
+
}
|
|
4276
|
+
if (order !== undefined) {
|
|
4277
|
+
this.order = order;
|
|
4278
|
+
}
|
|
4279
|
+
if (isMain !== undefined) {
|
|
4280
|
+
this.isMain = isMain;
|
|
4281
|
+
}
|
|
4282
|
+
if (isCleanup !== undefined) {
|
|
4283
|
+
this.isCleanup = isCleanup;
|
|
4284
|
+
}
|
|
4285
|
+
if (method !== undefined) {
|
|
4286
|
+
this.method = method;
|
|
4287
|
+
}
|
|
4288
|
+
if (url !== undefined) {
|
|
4289
|
+
this.url = url;
|
|
4290
|
+
}
|
|
4291
|
+
if (headers !== undefined) {
|
|
4292
|
+
this.headers = headers;
|
|
4293
|
+
}
|
|
4294
|
+
if (body !== undefined) {
|
|
4295
|
+
this.body = body;
|
|
4296
|
+
}
|
|
4297
|
+
if (extractions !== undefined) {
|
|
4298
|
+
this.extractions = extractions;
|
|
4299
|
+
}
|
|
4300
|
+
}
|
|
4301
|
+
}
|
|
4302
|
+
|
|
4211
4303
|
class AppConfig {
|
|
4212
4304
|
constructor() {
|
|
4213
4305
|
this.api = '';
|
|
@@ -4851,6 +4943,31 @@ class UsrIntegrationsService {
|
|
|
4851
4943
|
test(body) {
|
|
4852
4944
|
return this.rest.post(`${this.baseUrl}/test`, typeof body === 'object' ? JSON.stringify(body) : body);
|
|
4853
4945
|
}
|
|
4946
|
+
/**
|
|
4947
|
+
* Find available integration templates (read-only for users).
|
|
4948
|
+
*/
|
|
4949
|
+
findTemplates(search, trigger, page, size) {
|
|
4950
|
+
const params = [];
|
|
4951
|
+
if (search != null) {
|
|
4952
|
+
params.push(`search=${search}`);
|
|
4953
|
+
}
|
|
4954
|
+
if (trigger != null) {
|
|
4955
|
+
params.push(`trigger=${trigger}`);
|
|
4956
|
+
}
|
|
4957
|
+
if (page != null) {
|
|
4958
|
+
params.push(`page=${page}`);
|
|
4959
|
+
}
|
|
4960
|
+
if (size != null) {
|
|
4961
|
+
params.push(`size=${size}`);
|
|
4962
|
+
}
|
|
4963
|
+
return this.rest.get(`${this.baseUrl}/templates`, ...params);
|
|
4964
|
+
}
|
|
4965
|
+
/**
|
|
4966
|
+
* Get a single integration template by id (read-only for users).
|
|
4967
|
+
*/
|
|
4968
|
+
getTemplate(id) {
|
|
4969
|
+
return this.rest.get(`${this.baseUrl}/templates/:id`);
|
|
4970
|
+
}
|
|
4854
4971
|
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 }); }
|
|
4855
4972
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: UsrIntegrationsService, providedIn: 'root' }); }
|
|
4856
4973
|
}
|
|
@@ -6895,7 +7012,7 @@ class UsrDevicesService {
|
|
|
6895
7012
|
/**
|
|
6896
7013
|
* Find devices by query
|
|
6897
7014
|
*/
|
|
6898
|
-
find(streamId, search, from, to, type, status, risk, scoreRange, sort, page, size, ids) {
|
|
7015
|
+
find(streamId, search, from, to, type, status, risk, scoreRange, sort, page, size, ids, tag) {
|
|
6899
7016
|
const params = [];
|
|
6900
7017
|
if (streamId != null) {
|
|
6901
7018
|
params.push(`streamId=${streamId}`);
|
|
@@ -6933,12 +7050,15 @@ class UsrDevicesService {
|
|
|
6933
7050
|
if (ids != null) {
|
|
6934
7051
|
params.push(`ids=${ids}`);
|
|
6935
7052
|
}
|
|
7053
|
+
if (tag != null) {
|
|
7054
|
+
params.push(`tag=${tag}`);
|
|
7055
|
+
}
|
|
6936
7056
|
return this.rest.get(`${this.baseUrl}`, ...params);
|
|
6937
7057
|
}
|
|
6938
7058
|
/**
|
|
6939
7059
|
* Export devices by query to a file as a stream of CSV | JSON | XML | XLSX
|
|
6940
7060
|
*/
|
|
6941
|
-
export(format, streamId, search, from, to, type, status, risk, sort, page, size) {
|
|
7061
|
+
export(format, streamId, search, from, to, type, status, risk, sort, page, size, tag) {
|
|
6942
7062
|
const params = [];
|
|
6943
7063
|
if (streamId != null) {
|
|
6944
7064
|
params.push(`streamId=${streamId}`);
|
|
@@ -6970,6 +7090,9 @@ class UsrDevicesService {
|
|
|
6970
7090
|
if (size != null) {
|
|
6971
7091
|
params.push(`size=${size}`);
|
|
6972
7092
|
}
|
|
7093
|
+
if (tag != null) {
|
|
7094
|
+
params.push(`tag=${tag}`);
|
|
7095
|
+
}
|
|
6973
7096
|
return this.rest.download(`usr-devices`, `${this.baseUrl}/export/${format}`, ...params);
|
|
6974
7097
|
}
|
|
6975
7098
|
/**
|
|
@@ -7045,10 +7168,20 @@ class UsrDevicesService {
|
|
|
7045
7168
|
applyAction(id, action) {
|
|
7046
7169
|
return this.rest.post(`${this.baseUrl}/${id}/actions/${action}`, '');
|
|
7047
7170
|
}
|
|
7171
|
+
/**
|
|
7172
|
+
* Get all distinct tags on devices
|
|
7173
|
+
*/
|
|
7174
|
+
getTags(streamId) {
|
|
7175
|
+
const params = [];
|
|
7176
|
+
if (streamId != null) {
|
|
7177
|
+
params.push(`streamId=${streamId}`);
|
|
7178
|
+
}
|
|
7179
|
+
return this.rest.get(`${this.baseUrl}/tags`, ...params);
|
|
7180
|
+
}
|
|
7048
7181
|
/**
|
|
7049
7182
|
* Find top 10 devices by their score and filter criteria
|
|
7050
7183
|
*/
|
|
7051
|
-
findTop(streamId, search, from, to, type, status, risk, scoreRange, sort, page, size, ids) {
|
|
7184
|
+
findTop(streamId, search, from, to, type, status, risk, scoreRange, sort, page, size, ids, tag) {
|
|
7052
7185
|
const params = [];
|
|
7053
7186
|
if (streamId != null) {
|
|
7054
7187
|
params.push(`streamId=${streamId}`);
|
|
@@ -7086,12 +7219,15 @@ class UsrDevicesService {
|
|
|
7086
7219
|
if (ids != null) {
|
|
7087
7220
|
params.push(`ids=${ids}`);
|
|
7088
7221
|
}
|
|
7222
|
+
if (tag != null) {
|
|
7223
|
+
params.push(`tag=${tag}`);
|
|
7224
|
+
}
|
|
7089
7225
|
return this.rest.get(`${this.baseUrl}/top`, ...params);
|
|
7090
7226
|
}
|
|
7091
7227
|
/**
|
|
7092
7228
|
* Get device distribution by type filtered by query
|
|
7093
7229
|
*/
|
|
7094
|
-
countByType(streamId, search, from, to, type, status, risk, scoreRange) {
|
|
7230
|
+
countByType(streamId, search, from, to, type, status, risk, scoreRange, tag) {
|
|
7095
7231
|
const params = [];
|
|
7096
7232
|
if (streamId != null) {
|
|
7097
7233
|
params.push(`streamId=${streamId}`);
|
|
@@ -7117,12 +7253,15 @@ class UsrDevicesService {
|
|
|
7117
7253
|
if (scoreRange != null) {
|
|
7118
7254
|
params.push(`scoreRange=${scoreRange}`);
|
|
7119
7255
|
}
|
|
7256
|
+
if (tag != null) {
|
|
7257
|
+
params.push(`tag=${tag}`);
|
|
7258
|
+
}
|
|
7120
7259
|
return this.rest.get(`${this.baseUrl}/count/by-type`, ...params);
|
|
7121
7260
|
}
|
|
7122
7261
|
/**
|
|
7123
7262
|
* Get device distribution by status filtered by query
|
|
7124
7263
|
*/
|
|
7125
|
-
countByStatus(streamId, search, from, to, type, status, risk, scoreRange) {
|
|
7264
|
+
countByStatus(streamId, search, from, to, type, status, risk, scoreRange, tag) {
|
|
7126
7265
|
const params = [];
|
|
7127
7266
|
if (streamId != null) {
|
|
7128
7267
|
params.push(`streamId=${streamId}`);
|
|
@@ -7148,12 +7287,15 @@ class UsrDevicesService {
|
|
|
7148
7287
|
if (scoreRange != null) {
|
|
7149
7288
|
params.push(`scoreRange=${scoreRange}`);
|
|
7150
7289
|
}
|
|
7290
|
+
if (tag != null) {
|
|
7291
|
+
params.push(`tag=${tag}`);
|
|
7292
|
+
}
|
|
7151
7293
|
return this.rest.get(`${this.baseUrl}/count/by-status`, ...params);
|
|
7152
7294
|
}
|
|
7153
7295
|
/**
|
|
7154
7296
|
* Get device distribution by action filtered by query
|
|
7155
7297
|
*/
|
|
7156
|
-
countByAction(streamId, search, from, to, type, status, risk, scoreRange) {
|
|
7298
|
+
countByAction(streamId, search, from, to, type, status, risk, scoreRange, tag) {
|
|
7157
7299
|
const params = [];
|
|
7158
7300
|
if (streamId != null) {
|
|
7159
7301
|
params.push(`streamId=${streamId}`);
|
|
@@ -7179,6 +7321,9 @@ class UsrDevicesService {
|
|
|
7179
7321
|
if (scoreRange != null) {
|
|
7180
7322
|
params.push(`scoreRange=${scoreRange}`);
|
|
7181
7323
|
}
|
|
7324
|
+
if (tag != null) {
|
|
7325
|
+
params.push(`tag=${tag}`);
|
|
7326
|
+
}
|
|
7182
7327
|
return this.rest.get(`${this.baseUrl}/count/by-action`, ...params);
|
|
7183
7328
|
}
|
|
7184
7329
|
/**
|
|
@@ -7290,7 +7435,7 @@ class UsrDevicesService {
|
|
|
7290
7435
|
/**
|
|
7291
7436
|
* Find devices by insight id query
|
|
7292
7437
|
*/
|
|
7293
|
-
findByInsightContext(streamId, insightId, from, to, sort, page, size) {
|
|
7438
|
+
findByInsightContext(streamId, insightId, from, to, sort, page, size, tag) {
|
|
7294
7439
|
const params = [];
|
|
7295
7440
|
if (streamId != null) {
|
|
7296
7441
|
params.push(`streamId=${streamId}`);
|
|
@@ -7313,12 +7458,15 @@ class UsrDevicesService {
|
|
|
7313
7458
|
if (size != null) {
|
|
7314
7459
|
params.push(`size=${size}`);
|
|
7315
7460
|
}
|
|
7461
|
+
if (tag != null) {
|
|
7462
|
+
params.push(`tag=${tag}`);
|
|
7463
|
+
}
|
|
7316
7464
|
return this.rest.get(`${this.baseUrl}/find-by-insight-context`, ...params);
|
|
7317
7465
|
}
|
|
7318
7466
|
/**
|
|
7319
7467
|
* Find devices by query
|
|
7320
7468
|
*/
|
|
7321
|
-
findDevicesMap(streamId, search, type, status, risk, scoreRange, sort, page, size, mapBounds) {
|
|
7469
|
+
findDevicesMap(streamId, search, type, status, risk, scoreRange, sort, page, size, mapBounds, tag) {
|
|
7322
7470
|
const params = [];
|
|
7323
7471
|
if (streamId != null) {
|
|
7324
7472
|
params.push(`streamId=${streamId}`);
|
|
@@ -7347,12 +7495,15 @@ class UsrDevicesService {
|
|
|
7347
7495
|
if (size != null) {
|
|
7348
7496
|
params.push(`size=${size}`);
|
|
7349
7497
|
}
|
|
7498
|
+
if (tag != null) {
|
|
7499
|
+
params.push(`tag=${tag}`);
|
|
7500
|
+
}
|
|
7350
7501
|
return this.rest.put(`${this.baseUrl}/find-devices-map`, typeof mapBounds === 'object' ? JSON.stringify(mapBounds) : mapBounds, ...params);
|
|
7351
7502
|
}
|
|
7352
7503
|
/**
|
|
7353
7504
|
* Get device distribution by risk filtered by query
|
|
7354
7505
|
*/
|
|
7355
|
-
countByRisk(streamId, search, from, to, type, status, risk, scoreRange) {
|
|
7506
|
+
countByRisk(streamId, search, from, to, type, status, risk, scoreRange, tag) {
|
|
7356
7507
|
const params = [];
|
|
7357
7508
|
if (streamId != null) {
|
|
7358
7509
|
params.push(`streamId=${streamId}`);
|
|
@@ -7378,6 +7529,9 @@ class UsrDevicesService {
|
|
|
7378
7529
|
if (scoreRange != null) {
|
|
7379
7530
|
params.push(`scoreRange=${scoreRange}`);
|
|
7380
7531
|
}
|
|
7532
|
+
if (tag != null) {
|
|
7533
|
+
params.push(`tag=${tag}`);
|
|
7534
|
+
}
|
|
7381
7535
|
return this.rest.get(`${this.baseUrl}/count/by-risk`, ...params);
|
|
7382
7536
|
}
|
|
7383
7537
|
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 }); }
|
|
@@ -8754,5 +8908,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImpor
|
|
|
8754
8908
|
* Generated bundle index. Do not edit.
|
|
8755
8909
|
*/
|
|
8756
8910
|
|
|
8757
|
-
export { AICheckpoint, AITasksCode, APP_CONFIG, Account, AccountDTO, AccountInfo, AccountReportDTO, AccountRole, AccountSettings, AccountStatusCode, AccountTypeCode, Action, ActionResponse, Alert, AlertWithDevice, ApiKey, AppConfig, AuditLog, BaseEntity, BaseEntityEx, BaseMessage, BaseRestResponse, BoolTypeCode, CheckPointStateCode, Checkpoint, ColumnDef, ConditionDescription, ConfigParam, ConfigParams, ConsumptionDataPoint, DNSRecord, DataIngestion, DataSourceCode, DeploymentInfo, Device, DeviceActionCode, DeviceConfig, DeviceCreationCode, DeviceIdentityCode, DeviceNode, DeviceReport, DeviceScoreConfig, DeviceStatusCode, DeviceTypeCode, DeviceWithEvents, DevicesAtRiskConfig, DevicesMap, DirectionContextCode, Distribution, Entities, EntitiesRequest, EntitiesResponse, EntityAction, EntityMessage, EntityRequest, EntityResponse, Event, EventCategoryCode, EventOccurrence, EventSeverityConfig, EventStatusCode, EventTypeCode, EventWithDevice, Feature, FeatureCode, FeaturesGroup, FloatInterval, FlowRecord, GeoData, GetAICheckpointColumnsDef, GetAITasksCodes, GetAccountColumnsDef, GetAccountDTOColumnsDef, GetAccountInfoColumnsDef, GetAccountReportDTOColumnsDef, GetAccountStatusCodes, GetAccountTypeCodes, GetActionColumnsDef, GetActionResponseColumnsDef, GetAlertColumnsDef, GetAlertWithDeviceColumnsDef, GetApiKeyColumnsDef, GetAuditLogColumnsDef, GetBoolTypeCodes, GetCheckPointStateCodes, GetCheckpointColumnsDef, GetConfigParamColumnsDef, GetConfigParamsColumnsDef, GetDNSRecordColumnsDef, GetDataSourceCodes, GetDeploymentInfoColumnsDef, GetDeviceActionCodes, GetDeviceColumnsDef, GetDeviceCreationCodes, GetDeviceIdentityCodes, GetDeviceReportColumnsDef, GetDeviceStatusCodes, GetDeviceTypeCodes, GetDeviceWithEventsColumnsDef, GetDirectionContextCodes, GetEntitiesResponseColumnsDef, GetEntityMessageColumnsDef, GetEntityResponseColumnsDef, GetEventCategoryCodes, GetEventColumnsDef, GetEventStatusCodes, GetEventTypeCodes, GetEventWithDeviceColumnsDef, GetFeatureCodes, GetFeatureColumnsDef, GetFeaturesGroupColumnsDef, GetGroupColumnsDef, GetHomePageViewCodes, GetHttpMethodCodes, GetIdsRuleColumnsDef, GetImageColumnsDef, GetInsightColumnsDef, GetInsightQueryColumnsDef, GetInsightSourceCodes, GetInsightSpecColumnsDef, GetInsightStatusCodes, GetInsightTypeCodes, GetIntegrationColumnsDef, 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, 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, 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, SysKeysService, SysMembersService, SysRuleTemplatesService, SysRulesService, SysStatisticsService, SysStreamsService, SysUsersService, Thresholds, TimeDataPoint, TimeFrame, TimePeriodCode, TimeSeries, TimeSeriesConsumption, Timestamp, TokenData, TrafficDirectionCode, Tuple, UsageRecord, UsageTransform, User, UserMembership, UserMemberships, UserNotificationMessage, UserStatusCode, UserTypeCode, UsrAlertsService, UsrDevicesService, UsrEventsService, UsrInsightsService, UsrIntegrationsService, UsrMembersService, UsrNetworkService, UsrNotificationMessagesService, UsrReportsInstanceService, UsrReportsService, UsrRulesService, UsrUserService, WSOpCode, ZScore, errorStruct, provideClientLib };
|
|
8911
|
+
export { AICheckpoint, AITasksCode, APP_CONFIG, Account, AccountDTO, AccountInfo, AccountReportDTO, AccountRole, AccountSettings, AccountStatusCode, AccountTypeCode, Action, ActionResponse, Alert, AlertWithDevice, ApiKey, AppConfig, AuditLog, BaseEntity, BaseEntityEx, BaseMessage, BaseRestResponse, BoolTypeCode, CheckPointStateCode, Checkpoint, ColumnDef, ConditionDescription, ConfigParam, ConfigParams, ConsumptionDataPoint, DNSRecord, DataIngestion, DataSourceCode, DeploymentInfo, Device, DeviceActionCode, DeviceConfig, DeviceCreationCode, DeviceIdentityCode, DeviceNode, DeviceReport, DeviceScoreConfig, DeviceStatusCode, DeviceTypeCode, DeviceWithEvents, DevicesAtRiskConfig, DevicesMap, DirectionContextCode, Distribution, Entities, EntitiesRequest, EntitiesResponse, EntityAction, EntityMessage, EntityRequest, EntityResponse, Event, EventCategoryCode, EventOccurrence, EventSeverityConfig, EventStatusCode, EventTypeCode, EventWithDevice, Feature, FeatureCode, FeaturesGroup, FloatInterval, FlowRecord, GeoData, GetAICheckpointColumnsDef, GetAITasksCodes, GetAccountColumnsDef, GetAccountDTOColumnsDef, GetAccountInfoColumnsDef, GetAccountReportDTOColumnsDef, GetAccountStatusCodes, GetAccountTypeCodes, GetActionColumnsDef, GetActionResponseColumnsDef, GetAlertColumnsDef, GetAlertWithDeviceColumnsDef, GetApiKeyColumnsDef, GetAuditLogColumnsDef, GetBoolTypeCodes, GetCheckPointStateCodes, GetCheckpointColumnsDef, GetConfigParamColumnsDef, GetConfigParamsColumnsDef, GetDNSRecordColumnsDef, GetDataSourceCodes, GetDeploymentInfoColumnsDef, GetDeviceActionCodes, GetDeviceColumnsDef, GetDeviceCreationCodes, GetDeviceIdentityCodes, GetDeviceReportColumnsDef, GetDeviceStatusCodes, GetDeviceTypeCodes, GetDeviceWithEventsColumnsDef, GetDirectionContextCodes, GetEntitiesResponseColumnsDef, GetEntityMessageColumnsDef, GetEntityResponseColumnsDef, GetEventCategoryCodes, GetEventColumnsDef, GetEventStatusCodes, GetEventTypeCodes, GetEventWithDeviceColumnsDef, GetFeatureCodes, GetFeatureColumnsDef, GetFeaturesGroupColumnsDef, GetGroupColumnsDef, GetHomePageViewCodes, GetHttpMethodCodes, GetIdsRuleColumnsDef, GetImageColumnsDef, GetInsightColumnsDef, GetInsightQueryColumnsDef, GetInsightSourceCodes, GetInsightSpecColumnsDef, GetInsightStatusCodes, GetInsightTypeCodes, GetIntegrationColumnsDef, GetIntegrationTemplateColumnsDef, GetIntegrationTriggerCodes, GetIntegrationTypeCodes, GetLlmPromptColumnsDef, GetMemberColumnsDef, GetMemberRoleCodes, GetMessageColumnsDef, GetNetworkMapTypeCodes, GetNetworkTopologyColumnsDef, GetNetworkTopologyReportColumnsDef, GetNotificationColumnsDef, GetNotificationMessageColumnsDef, GetNotificationMessageDTOColumnsDef, GetNotificationTypeCodes, GetOperatorCodes, GetParserTaskCompletionStatuss, GetPermissionCodes, GetRadiusColumnsDef, GetReportColumnsDef, GetReportInstanceColumnsDef, GetReportSourceCodes, GetReportTypeCodes, GetRuleActivityStatusCodes, GetRuleColumnsDef, GetRuleTemplateColumnsDef, GetRuleTypeCodes, GetRuleWithSQLColumnsDef, GetServiceStatusColumnsDef, GetSessionRecordColumnsDef, GetSeverityTypeCodes, GetShieldexColumnsDef, GetStreamAnalyticsConfigColumnsDef, GetStreamColumnsDef, GetTimePeriodCodes, GetTrafficDirectionCodes, GetUsageRecordColumnsDef, GetUserColumnsDef, GetUserMembershipColumnsDef, GetUserMembershipsColumnsDef, GetUserNotificationMessageColumnsDef, GetUserStatusCodes, GetUserTypeCodes, GetWSOpCodes, GraphSeries, Group, HomePageViewCode, HttpMethodCode, IdsConfig, IdsList, IdsRule, Image, Indicator, Insight, InsightQuery, InsightSourceCode, InsightSpec, InsightStatusCode, InsightTypeCode, IntFloatValue, IntKeyValue, Integration, IntegrationContext, IntegrationTemplate, IntegrationTriggerCode, IntegrationTypeCode, Interval, Json, JsonDoc, Link, LlmPrompt, LocalTime, Location, LoginParams, MaliciousIPData, MaliciousIpCard, MapAITasksCodes, MapAccountStatusCodes, MapAccountTypeCodes, MapBoolTypeCodes, MapBounds, MapCheckPointStateCodes, MapDataSourceCodes, MapDeviceActionCodes, MapDeviceCreationCodes, MapDeviceIdentityCodes, MapDeviceStatusCodes, MapDeviceTypeCodes, MapDirectionContextCodes, MapEventCategoryCodes, MapEventStatusCodes, MapEventTypeCodes, MapFeatureCodes, MapHomePageViewCodes, MapHttpMethodCodes, MapInsightSourceCodes, MapInsightStatusCodes, MapInsightTypeCodes, MapIntegrationTriggerCodes, MapIntegrationTypeCodes, MapMemberRoleCodes, MapNetworkMapTypeCodes, MapNotificationTypeCodes, MapOperatorCodes, MapParserTaskCompletionStatuss, MapPermissionCodes, MapReportSourceCodes, MapReportTypeCodes, MapRuleActivityStatusCodes, MapRuleTypeCodes, MapSeverityTypeCodes, MapTimePeriodCodes, MapTrafficDirectionCodes, MapUserStatusCodes, MapUserTypeCodes, MapWSOpCodes, McpToolsService, Member, MemberRoleCode, Message, MitreAttackCategory, NetworkEndpoint, NetworkMap, NetworkMapTypeCode, NetworkTopology, NetworkTopologyRecord, NetworkTopologyReport, NetworkTopologyReportKPIs, NetworkTopologyReportParams, NgxPulseiotLibModule, Node, Notification, NotificationMessage, NotificationMessageDTO, NotificationMessageStats, NotificationQueuePayload, NotificationTypeCode, OperatorCode, ParserTaskCompletionStatus, PermissionCode, Radius, RegulatoryViolation, Report, ReportInstance, ReportSourceCode, ReportTypeCode, ResponseExtraction, Rule, RuleActivityStatusCode, RuleBasedSeverityConditionConfig, RuleCountThresholdConfig, RuleTemplate, RuleTypeCode, RuleWithSQL, SIM, SeriesData, ServiceStatus, SessionRecord, SessionTransform, SeverityConditionConfig, SeverityIntervalTuple, SeverityTypeCode, Shieldex, ShieldexConfig, SimpleEntity, Stream, StreamAnalyticsConfig, StreamConfig, StringIntValue, StringKeyValue, SupportStreamAnalyticsConfigService, SysAccountsService, SysAuditLogService, SysCheckpointsService, SysConfigService, SysFeaturesService, SysGroupsService, SysIdsRulesService, SysInsightsService, SysKeysService, SysMembersService, SysRuleTemplatesService, SysRulesService, SysStatisticsService, SysStreamsService, SysUsersService, TemplateParameter, TemplateStep, Thresholds, TimeDataPoint, TimeFrame, TimePeriodCode, TimeSeries, TimeSeriesConsumption, Timestamp, TokenData, TrafficDirectionCode, Tuple, UsageRecord, UsageTransform, User, UserMembership, UserMemberships, UserNotificationMessage, UserStatusCode, UserTypeCode, UsrAlertsService, UsrDevicesService, UsrEventsService, UsrInsightsService, UsrIntegrationsService, UsrMembersService, UsrNetworkService, UsrNotificationMessagesService, UsrReportsInstanceService, UsrReportsService, UsrRulesService, UsrUserService, WSOpCode, ZScore, errorStruct, provideClientLib };
|
|
8758
8912
|
//# sourceMappingURL=shieldiot-ngx-pulseiot-lib.mjs.map
|