@shieldiot/ngx-pulseiot-lib 2.18.1267 → 2.18.1269

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.
@@ -31,5 +31,6 @@ export declare class Integration extends BaseEntity {
31
31
  preventiveAction: DeviceActionCode;
32
32
  templateId: string;
33
33
  parameterValues: any;
34
+ collectionId: string;
34
35
  }
35
36
  export declare function GetIntegrationColumnsDef(): ColumnDef[];
@@ -11,5 +11,9 @@ export declare class IntegrationTemplate extends BaseEntity {
11
11
  parameters: TemplateParameter[];
12
12
  steps: TemplateStep[];
13
13
  mainStepIndex: number;
14
+ version: string;
15
+ logo: string;
16
+ favicon: string;
17
+ singleton: boolean;
14
18
  }
15
19
  export declare function GetIntegrationTemplateColumnsDef(): ColumnDef[];
@@ -2,7 +2,8 @@ import { Tuple } from '.';
2
2
  export declare enum IntegrationTriggerCode {
3
3
  UNDEFINED = 0,
4
4
  EVENT = 1,
5
- ACTION = 2
5
+ ACTION = 2,
6
+ COLLECTION = 3
6
7
  }
7
8
  export declare function GetIntegrationTriggerCodes(): Tuple<IntegrationTriggerCode, string>[];
8
9
  export declare function MapIntegrationTriggerCodes(): Map<IntegrationTriggerCode, string>;
@@ -4,7 +4,8 @@ export declare enum IntegrationTypeCode {
4
4
  HTTP = 1,
5
5
  SMTP = 2,
6
6
  EMAIL = 3,
7
- SMS = 4
7
+ SMS = 4,
8
+ STIX_TAXII = 5
8
9
  }
9
10
  export declare function GetIntegrationTypeCodes(): Tuple<IntegrationTypeCode, string>[];
10
11
  export declare function MapIntegrationTypeCodes(): Map<IntegrationTypeCode, string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shieldiot/ngx-pulseiot-lib",
3
- "version": "2.18.1267",
3
+ "version": "2.18.1269",
4
4
  "description": "Angular client library for PulseIoT backend",
5
5
  "publishConfig": {
6
6
  "access": "public"