@shieldiot/ngx-pulseiot-lib 2.18.1338 → 2.18.1341
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/AICheckpoint.mjs +1 -1
- package/esm2022/lib/model/Account.mjs +1 -1
- package/esm2022/lib/model/AccountDTO.mjs +1 -1
- package/esm2022/lib/model/Action.mjs +1 -1
- package/esm2022/lib/model/Alert.mjs +1 -1
- package/esm2022/lib/model/ApiKey.mjs +1 -1
- package/esm2022/lib/model/ConfigParams.mjs +1 -1
- package/esm2022/lib/model/DataIngestion.mjs +1 -1
- package/esm2022/lib/model/DeploymentInfo.mjs +1 -1
- package/esm2022/lib/model/Device.mjs +1 -1
- package/esm2022/lib/model/DeviceScoreConfig.mjs +1 -1
- package/esm2022/lib/model/Event.mjs +1 -1
- package/esm2022/lib/model/Feature.mjs +1 -1
- package/esm2022/lib/model/InsightQuery.mjs +1 -1
- package/esm2022/lib/model/NetworkMap.mjs +1 -1
- package/esm2022/lib/model/Node.mjs +1 -1
- package/esm2022/lib/model/Notification.mjs +1 -1
- package/esm2022/lib/model/Report.mjs +1 -1
- package/esm2022/lib/model/Rule.mjs +1 -1
- package/esm2022/lib/model/RuleBasedSeverityConditionConfig.mjs +1 -1
- package/esm2022/lib/model/RuleTemplate.mjs +1 -1
- package/esm2022/lib/model/SeriesData.mjs +1 -1
- package/esm2022/lib/model/StreamAnalyticsConfig.mjs +1 -1
- package/esm2022/lib/model/StreamConfig.mjs +1 -1
- package/esm2022/lib/model/TimeSeries.mjs +1 -1
- package/esm2022/lib/model/TokenData.mjs +5 -5
- package/esm2022/lib/model/User.mjs +1 -1
- package/esm2022/lib/model/UserMemberships.mjs +1 -1
- package/esm2022/lib/services/SysFeaturesService.mjs +1 -1
- package/esm2022/lib/services/SysKeysService.mjs +1 -1
- package/esm2022/lib/services/SysMembersService.mjs +1 -1
- package/esm2022/lib/services/SysRulesService.mjs +1 -1
- package/esm2022/lib/services/SysStatisticsService.mjs +1 -1
- package/esm2022/lib/services/SysStreamsService.mjs +1 -1
- package/esm2022/lib/services/UsrMembersService.mjs +1 -1
- package/esm2022/lib/services/UsrNotificationMessagesService.mjs +1 -1
- package/esm2022/lib/services/UsrReportsService.mjs +1 -1
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs +4 -4
- package/fesm2022/shieldiot-ngx-pulseiot-lib.mjs.map +1 -1
- package/lib/model/AICheckpoint.d.ts +1 -1
- package/lib/model/Account.d.ts +1 -1
- package/lib/model/AccountDTO.d.ts +1 -1
- package/lib/model/Action.d.ts +1 -1
- package/lib/model/Alert.d.ts +4 -4
- package/lib/model/ApiKey.d.ts +1 -1
- package/lib/model/ConfigParams.d.ts +1 -1
- package/lib/model/DataIngestion.d.ts +1 -1
- package/lib/model/DeploymentInfo.d.ts +1 -1
- package/lib/model/Device.d.ts +2 -2
- package/lib/model/DeviceScoreConfig.d.ts +2 -2
- package/lib/model/Event.d.ts +5 -5
- package/lib/model/Feature.d.ts +1 -1
- package/lib/model/InsightQuery.d.ts +1 -1
- package/lib/model/NetworkMap.d.ts +1 -1
- package/lib/model/Node.d.ts +1 -1
- package/lib/model/Notification.d.ts +1 -1
- package/lib/model/Report.d.ts +1 -1
- package/lib/model/Rule.d.ts +3 -3
- package/lib/model/RuleBasedSeverityConditionConfig.d.ts +1 -1
- package/lib/model/RuleTemplate.d.ts +2 -2
- package/lib/model/SeriesData.d.ts +1 -1
- package/lib/model/StreamAnalyticsConfig.d.ts +1 -1
- package/lib/model/StreamConfig.d.ts +2 -2
- package/lib/model/TimeSeries.d.ts +1 -1
- package/lib/model/TokenData.d.ts +4 -7
- package/lib/model/User.d.ts +2 -2
- package/lib/model/UserMemberships.d.ts +1 -1
- package/lib/services/SysFeaturesService.d.ts +2 -2
- package/lib/services/SysKeysService.d.ts +1 -1
- package/lib/services/SysMembersService.d.ts +1 -1
- package/lib/services/SysRulesService.d.ts +1 -1
- package/lib/services/SysStatisticsService.d.ts +1 -1
- package/lib/services/SysStreamsService.d.ts +2 -2
- package/lib/services/UsrMembersService.d.ts +2 -2
- package/lib/services/UsrNotificationMessagesService.d.ts +1 -1
- package/lib/services/UsrReportsService.d.ts +1 -1
- package/package.json +1 -1
package/lib/model/Account.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { AccountSettings } from './AccountSettings';
|
|
2
1
|
import { BaseEntity } from './BaseEntity';
|
|
3
2
|
import { AccountTypeCode } from './AccountTypeCode';
|
|
4
3
|
import { AccountStatusCode } from './AccountStatusCode';
|
|
5
4
|
import { Tuple } from './Tuple';
|
|
5
|
+
import { AccountSettings } from './AccountSettings';
|
|
6
6
|
import { ColumnDef } from './ColumnDef';
|
|
7
7
|
export declare class Account extends BaseEntity {
|
|
8
8
|
name: string;
|
package/lib/model/Action.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DeviceActionCode } from './DeviceActionCode';
|
|
2
1
|
import { BaseEntity } from './BaseEntity';
|
|
2
|
+
import { DeviceActionCode } from './DeviceActionCode';
|
|
3
3
|
import { ColumnDef } from './ColumnDef';
|
|
4
4
|
export declare class Action extends BaseEntity {
|
|
5
5
|
accountId: string;
|
package/lib/model/Alert.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { EventTypeCode } from './EventTypeCode';
|
|
2
|
-
import { RuleTypeCode } from './RuleTypeCode';
|
|
3
|
-
import { EventCategoryCode } from './EventCategoryCode';
|
|
4
|
-
import { SeverityTypeCode } from './SeverityTypeCode';
|
|
5
2
|
import { EventStatusCode } from './EventStatusCode';
|
|
6
|
-
import {
|
|
3
|
+
import { RuleTypeCode } from './RuleTypeCode';
|
|
7
4
|
import { Tuple } from './Tuple';
|
|
8
5
|
import { TrafficDirectionCode } from './TrafficDirectionCode';
|
|
9
6
|
import { BaseEntityEx } from './BaseEntityEx';
|
|
7
|
+
import { SeverityTypeCode } from './SeverityTypeCode';
|
|
8
|
+
import { GeoData } from './GeoData';
|
|
9
|
+
import { EventCategoryCode } from './EventCategoryCode';
|
|
10
10
|
import { ColumnDef } from './ColumnDef';
|
|
11
11
|
export declare class Alert extends BaseEntityEx {
|
|
12
12
|
accountId: string;
|
package/lib/model/ApiKey.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Tuple } from './Tuple';
|
|
2
1
|
import { PermissionCode } from './PermissionCode';
|
|
3
2
|
import { BaseEntity } from './BaseEntity';
|
|
3
|
+
import { Tuple } from './Tuple';
|
|
4
4
|
import { ColumnDef } from './ColumnDef';
|
|
5
5
|
export declare class ApiKey extends BaseEntity {
|
|
6
6
|
name: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DeviceIdentityCode } from './DeviceIdentityCode';
|
|
2
1
|
import { DeviceTypeCode } from './DeviceTypeCode';
|
|
3
2
|
import { DeviceCreationCode } from './DeviceCreationCode';
|
|
3
|
+
import { DeviceIdentityCode } from './DeviceIdentityCode';
|
|
4
4
|
export declare class DataIngestion {
|
|
5
5
|
inputURI: string;
|
|
6
6
|
format: string;
|
package/lib/model/Device.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import { DeviceStatusCode } from './DeviceStatusCode';
|
|
2
|
+
import { Tuple } from './Tuple';
|
|
1
3
|
import { DeviceActionCode } from './DeviceActionCode';
|
|
2
4
|
import { SIM } from './SIM';
|
|
3
5
|
import { GeoData } from './GeoData';
|
|
4
6
|
import { BaseEntity } from './BaseEntity';
|
|
5
7
|
import { DeviceTypeCode } from './DeviceTypeCode';
|
|
6
|
-
import { DeviceStatusCode } from './DeviceStatusCode';
|
|
7
|
-
import { Tuple } from './Tuple';
|
|
8
8
|
import { ColumnDef } from './ColumnDef';
|
|
9
9
|
export declare class Device extends BaseEntity {
|
|
10
10
|
accountId: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { RuleCountThresholdConfig } from './RuleCountThresholdConfig';
|
|
2
|
-
import { RuleBasedSeverityConditionConfig } from './RuleBasedSeverityConditionConfig';
|
|
3
1
|
import { FloatInterval } from './FloatInterval';
|
|
4
2
|
import { Interval } from './Interval';
|
|
5
3
|
import { SeverityConditionConfig } from './SeverityConditionConfig';
|
|
4
|
+
import { RuleCountThresholdConfig } from './RuleCountThresholdConfig';
|
|
5
|
+
import { RuleBasedSeverityConditionConfig } from './RuleBasedSeverityConditionConfig';
|
|
6
6
|
export declare class DeviceScoreConfig {
|
|
7
7
|
deviceScoreAlphaFactor: number;
|
|
8
8
|
occurrenceThreshold: number;
|
package/lib/model/Event.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { EventTypeCode } from './EventTypeCode';
|
|
1
|
+
import { SeverityTypeCode } from './SeverityTypeCode';
|
|
3
2
|
import { RuleTypeCode } from './RuleTypeCode';
|
|
3
|
+
import { EventCategoryCode } from './EventCategoryCode';
|
|
4
|
+
import { TrafficDirectionCode } from './TrafficDirectionCode';
|
|
4
5
|
import { Indicator } from './Indicator';
|
|
5
|
-
import {
|
|
6
|
-
import { SeverityTypeCode } from './SeverityTypeCode';
|
|
6
|
+
import { EventTypeCode } from './EventTypeCode';
|
|
7
7
|
import { EventStatusCode } from './EventStatusCode';
|
|
8
8
|
import { GeoData } from './GeoData';
|
|
9
9
|
import { Tuple } from './Tuple';
|
|
10
|
-
import { EventCategoryCode } from './EventCategoryCode';
|
|
11
10
|
import { EventOccurrence } from './EventOccurrence';
|
|
11
|
+
import { BaseEntityEx } from './BaseEntityEx';
|
|
12
12
|
import { ColumnDef } from './ColumnDef';
|
|
13
13
|
export declare class Event extends BaseEntityEx {
|
|
14
14
|
accountId: string;
|
package/lib/model/Feature.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BaseEntity } from './BaseEntity';
|
|
2
1
|
import { InsightSourceCode } from './InsightSourceCode';
|
|
3
2
|
import { InsightTypeCode } from './InsightTypeCode';
|
|
4
3
|
import { DirectionContextCode } from './DirectionContextCode';
|
|
4
|
+
import { BaseEntity } from './BaseEntity';
|
|
5
5
|
import { ColumnDef } from './ColumnDef';
|
|
6
6
|
export declare class InsightQuery extends BaseEntity {
|
|
7
7
|
source: InsightSourceCode;
|
package/lib/model/Node.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { NotificationTypeCode } from './NotificationTypeCode';
|
|
2
1
|
import { BaseEntityEx } from './BaseEntityEx';
|
|
2
|
+
import { NotificationTypeCode } from './NotificationTypeCode';
|
|
3
3
|
import { ColumnDef } from './ColumnDef';
|
|
4
4
|
export declare class Notification extends BaseEntityEx {
|
|
5
5
|
accountId: string;
|
package/lib/model/Report.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { ReportTypeCode } from './ReportTypeCode';
|
|
1
2
|
import { TimeFrame } from './TimeFrame';
|
|
2
3
|
import { BaseEntity } from './BaseEntity';
|
|
3
|
-
import { ReportTypeCode } from './ReportTypeCode';
|
|
4
4
|
import { ColumnDef } from './ColumnDef';
|
|
5
5
|
export declare class Report extends BaseEntity {
|
|
6
6
|
accountId: string;
|
package/lib/model/Rule.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { BaseEntity } from './BaseEntity';
|
|
2
|
-
import { RuleTypeCode } from './RuleTypeCode';
|
|
3
|
-
import { DataSourceCode } from './DataSourceCode';
|
|
4
1
|
import { ConditionDescription } from './ConditionDescription';
|
|
5
2
|
import { DeviceTypeCode } from './DeviceTypeCode';
|
|
6
3
|
import { EventTypeCode } from './EventTypeCode';
|
|
7
4
|
import { SeverityTypeCode } from './SeverityTypeCode';
|
|
5
|
+
import { BaseEntity } from './BaseEntity';
|
|
6
|
+
import { RuleTypeCode } from './RuleTypeCode';
|
|
7
|
+
import { DataSourceCode } from './DataSourceCode';
|
|
8
8
|
import { ColumnDef } from './ColumnDef';
|
|
9
9
|
export declare class Rule extends BaseEntity {
|
|
10
10
|
accountId: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { SeverityTypeCode } from './SeverityTypeCode';
|
|
2
1
|
import { RuleCountThresholdConfig } from './RuleCountThresholdConfig';
|
|
2
|
+
import { SeverityTypeCode } from './SeverityTypeCode';
|
|
3
3
|
export declare class RuleBasedSeverityConditionConfig {
|
|
4
4
|
severityType: SeverityTypeCode;
|
|
5
5
|
bias: number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { EventTypeCode } from './EventTypeCode';
|
|
2
|
-
import { SeverityTypeCode } from './SeverityTypeCode';
|
|
3
1
|
import { BaseEntity } from './BaseEntity';
|
|
4
2
|
import { DataSourceCode } from './DataSourceCode';
|
|
3
|
+
import { EventTypeCode } from './EventTypeCode';
|
|
4
|
+
import { SeverityTypeCode } from './SeverityTypeCode';
|
|
5
5
|
import { ColumnDef } from './ColumnDef';
|
|
6
6
|
export declare class RuleTemplate extends BaseEntity {
|
|
7
7
|
name: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BaseEntity } from './BaseEntity';
|
|
2
1
|
import { Thresholds } from './Thresholds';
|
|
3
2
|
import { ShieldexConfig } from './ShieldexConfig';
|
|
4
3
|
import { EventSeverityConfig } from './EventSeverityConfig';
|
|
5
4
|
import { DeviceConfig } from './DeviceConfig';
|
|
5
|
+
import { BaseEntity } from './BaseEntity';
|
|
6
6
|
import { ColumnDef } from './ColumnDef';
|
|
7
7
|
export declare class StreamAnalyticsConfig extends BaseEntity {
|
|
8
8
|
accountId: string;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { DataIngestion } from './DataIngestion';
|
|
2
2
|
import { Thresholds } from './Thresholds';
|
|
3
|
+
import { ShieldexConfig } from './ShieldexConfig';
|
|
3
4
|
import { EventSeverityConfig } from './EventSeverityConfig';
|
|
4
5
|
import { DeviceActionCode } from './DeviceActionCode';
|
|
5
|
-
import { DeviceConfig } from './DeviceConfig';
|
|
6
6
|
import { IdsConfig } from './IdsConfig';
|
|
7
7
|
import { SessionTransform } from './SessionTransform';
|
|
8
8
|
import { UsageTransform } from './UsageTransform';
|
|
9
|
-
import {
|
|
9
|
+
import { DeviceConfig } from './DeviceConfig';
|
|
10
10
|
export declare class StreamConfig {
|
|
11
11
|
ingest: DataIngestion;
|
|
12
12
|
sessionTransform: SessionTransform;
|
package/lib/model/TokenData.d.ts
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { UserTypeCode } from './UserTypeCode';
|
|
2
|
-
import { MemberRoleCode } from './MemberRoleCode';
|
|
3
|
-
import { UserStatusCode } from './UserStatusCode';
|
|
4
1
|
export declare class TokenData {
|
|
5
2
|
accountId: string;
|
|
6
3
|
subjectId: string;
|
|
7
|
-
subjectType:
|
|
8
|
-
|
|
9
|
-
status:
|
|
4
|
+
subjectType: number;
|
|
5
|
+
subjectRole: number;
|
|
6
|
+
status: number;
|
|
10
7
|
expiresIn: number;
|
|
11
|
-
constructor(accountId?: string, subjectId?: string, subjectType?:
|
|
8
|
+
constructor(accountId?: string, subjectId?: string, subjectType?: number, subjectRole?: number, status?: number, expiresIn?: number);
|
|
12
9
|
}
|
package/lib/model/User.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { UserStatusCode } from './UserStatusCode';
|
|
2
|
-
import { Tuple } from './Tuple';
|
|
3
1
|
import { BaseEntityEx } from './BaseEntityEx';
|
|
4
2
|
import { UserTypeCode } from './UserTypeCode';
|
|
3
|
+
import { UserStatusCode } from './UserStatusCode';
|
|
4
|
+
import { Tuple } from './Tuple';
|
|
5
5
|
import { ColumnDef } from './ColumnDef';
|
|
6
6
|
export declare class User extends BaseEntityEx {
|
|
7
7
|
name: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { EntitiesResponse } from '../model';
|
|
4
|
+
import { Feature } from '../model';
|
|
3
5
|
import { FeaturesGroup } from '../model';
|
|
4
6
|
import { EntityResponse } from '../model';
|
|
5
7
|
import { ActionResponse } from '../model';
|
|
6
|
-
import { EntitiesResponse } from '../model';
|
|
7
|
-
import { Feature } from '../model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class SysFeaturesService {
|
|
10
10
|
private config;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
-
import { ApiKey } from '../model';
|
|
4
3
|
import { EntityResponse } from '../model';
|
|
5
4
|
import { ActionResponse } from '../model';
|
|
6
5
|
import { EntitiesResponse } from '../model';
|
|
7
6
|
import { StringIntValue } from '../model';
|
|
7
|
+
import { ApiKey } from '../model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class SysKeysService {
|
|
10
10
|
private config;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { EntitiesResponse } from '../model';
|
|
3
4
|
import { Member } from '../model';
|
|
4
5
|
import { EntityResponse } from '../model';
|
|
5
6
|
import { ActionResponse } from '../model';
|
|
6
7
|
import { MemberRoleCode } from '../model';
|
|
7
|
-
import { EntitiesResponse } from '../model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class SysMembersService {
|
|
10
10
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { TimeSeries } from '../model';
|
|
3
4
|
import { RuleWithSQL } from '../model';
|
|
4
5
|
import { Rule } from '../model';
|
|
5
6
|
import { EntityResponse } from '../model';
|
|
6
7
|
import { ActionResponse } from '../model';
|
|
7
8
|
import { EntitiesResponse } from '../model';
|
|
8
|
-
import { TimeSeries } from '../model';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class SysRulesService {
|
|
11
11
|
private config;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
-
import { EntityResponse } from '../model';
|
|
4
3
|
import { Distribution } from '../model';
|
|
4
|
+
import { EntityResponse } from '../model';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class SysStatisticsService {
|
|
7
7
|
private config;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
-
import { ActionResponse } from '../model';
|
|
4
|
-
import { EntitiesResponse } from '../model';
|
|
5
3
|
import { Stream } from '../model';
|
|
6
4
|
import { EntityResponse } from '../model';
|
|
5
|
+
import { ActionResponse } from '../model';
|
|
6
|
+
import { EntitiesResponse } from '../model';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class SysStreamsService {
|
|
9
9
|
private config;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { MemberRoleCode } from '../model';
|
|
4
|
+
import { EntitiesResponse } from '../model';
|
|
3
5
|
import { Member } from '../model';
|
|
4
6
|
import { EntityResponse } from '../model';
|
|
5
7
|
import { ActionResponse } from '../model';
|
|
6
|
-
import { MemberRoleCode } from '../model';
|
|
7
|
-
import { EntitiesResponse } from '../model';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class UsrMembersService {
|
|
10
10
|
private config;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
+
import { NotificationMessageDTO } from '../model';
|
|
3
4
|
import { EntitiesResponse } from '../model';
|
|
4
5
|
import { ActionResponse } from '../model';
|
|
5
6
|
import { EntityResponse } from '../model';
|
|
6
|
-
import { NotificationMessageDTO } from '../model';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class UsrNotificationMessagesService {
|
|
9
9
|
private config;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { RestUtils } from '../../rest-utils';
|
|
2
2
|
import { AppConfig } from '../../config';
|
|
3
|
-
import { Report } from '../model';
|
|
4
3
|
import { EntityResponse } from '../model';
|
|
5
4
|
import { ActionResponse } from '../model';
|
|
6
5
|
import { EntitiesResponse } from '../model';
|
|
7
6
|
import { TimeSeries } from '../model';
|
|
8
7
|
import { GraphSeries } from '../model';
|
|
8
|
+
import { Report } from '../model';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class UsrReportsService {
|
|
11
11
|
private config;
|