clarion-shared-types 1.0.41 → 1.0.43
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/dist/cjs/modules/incident/enums/incident-emergency-type.enum.js +10 -0
- package/dist/cjs/modules/incident/enums/incident-emergency-type.enum.js.map +1 -0
- package/dist/cjs/modules/incident/index.js +1 -0
- package/dist/cjs/modules/incident/index.js.map +1 -1
- package/dist/esm/modules/incident/enums/incident-emergency-type.enum.js +7 -0
- package/dist/esm/modules/incident/enums/incident-emergency-type.enum.js.map +1 -0
- package/dist/esm/modules/incident/index.js +1 -0
- package/dist/esm/modules/incident/index.js.map +1 -1
- package/dist/types/modules/incident/enums/incident-emergency-type.enum.d.ts +5 -0
- package/dist/types/modules/incident/index.d.ts +1 -0
- package/dist/types/modules/incident/intefaces/incident.d.ts +7 -5
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IncidentEmergencyType = void 0;
|
|
4
|
+
var IncidentEmergencyType;
|
|
5
|
+
(function (IncidentEmergencyType) {
|
|
6
|
+
IncidentEmergencyType["EMERGENCY"] = "emergency";
|
|
7
|
+
IncidentEmergencyType["NON_EMERGENCY"] = "non-emergency";
|
|
8
|
+
IncidentEmergencyType["PANIC"] = "panic";
|
|
9
|
+
})(IncidentEmergencyType || (exports.IncidentEmergencyType = IncidentEmergencyType = {}));
|
|
10
|
+
//# sourceMappingURL=incident-emergency-type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"incident-emergency-type.enum.js","sourceRoot":"","sources":["../../../../../src/modules/incident/enums/incident-emergency-type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,qBAIX;AAJD,WAAY,qBAAqB;IAC7B,gDAAuB,CAAA;IACvB,wDAA+B,CAAA;IAC/B,wCAAe,CAAA;AACnB,CAAC,EAJW,qBAAqB,qCAArB,qBAAqB,QAIhC"}
|
|
@@ -22,6 +22,7 @@ __exportStar(require("./enums/incident-priority.enum"), exports);
|
|
|
22
22
|
__exportStar(require("./enums/incident-status.enum"), exports);
|
|
23
23
|
__exportStar(require("./enums/incident-actions.enum"), exports);
|
|
24
24
|
__exportStar(require("./enums/incident-workflow-queue-name.enum"), exports);
|
|
25
|
+
__exportStar(require("./enums/incident-emergency-type.enum"), exports);
|
|
25
26
|
//Interfaces
|
|
26
27
|
__exportStar(require("./intefaces/incident"), exports);
|
|
27
28
|
__exportStar(require("./intefaces/incident-action"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/incident/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,OAAO;AACP,+DAA6C;AAC7C,gEAA8C;AAC9C,8DAA4C;AAC5C,iEAA+C;AAC/C,+DAA6C;AAC7C,gEAA8C;AAC9C,4EAA0D;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/incident/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,OAAO;AACP,+DAA6C;AAC7C,gEAA8C;AAC9C,8DAA4C;AAC5C,iEAA+C;AAC/C,+DAA6C;AAC7C,gEAA8C;AAC9C,4EAA0D;AAC1D,uEAAqD;AAErD,YAAY;AACZ,uDAAqC;AACrC,8DAA4C;AAC5C,kEAAgD;AAChD,gEAA8C;AAC9C,gEAA8C;AAC9C,4DAA0C;AAC1C,kEAAgD;AAChD,gFAA8D;AAC9D,sEAAoD;AACpD,sEAAoD;AACpD,sEAAoD;AACpD,8DAA4C;AAC5C,wDAAsC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export var IncidentEmergencyType;
|
|
2
|
+
(function (IncidentEmergencyType) {
|
|
3
|
+
IncidentEmergencyType["EMERGENCY"] = "emergency";
|
|
4
|
+
IncidentEmergencyType["NON_EMERGENCY"] = "non-emergency";
|
|
5
|
+
IncidentEmergencyType["PANIC"] = "panic";
|
|
6
|
+
})(IncidentEmergencyType || (IncidentEmergencyType = {}));
|
|
7
|
+
//# sourceMappingURL=incident-emergency-type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"incident-emergency-type.enum.js","sourceRoot":"","sources":["../../../../../src/modules/incident/enums/incident-emergency-type.enum.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,qBAIX;AAJD,WAAY,qBAAqB;IAC7B,gDAAuB,CAAA;IACvB,wDAA+B,CAAA;IAC/B,wCAAe,CAAA;AACnB,CAAC,EAJW,qBAAqB,KAArB,qBAAqB,QAIhC"}
|
|
@@ -6,6 +6,7 @@ export * from './enums/incident-priority.enum';
|
|
|
6
6
|
export * from './enums/incident-status.enum';
|
|
7
7
|
export * from './enums/incident-actions.enum';
|
|
8
8
|
export * from './enums/incident-workflow-queue-name.enum';
|
|
9
|
+
export * from './enums/incident-emergency-type.enum';
|
|
9
10
|
//Interfaces
|
|
10
11
|
export * from './intefaces/incident';
|
|
11
12
|
export * from './intefaces/incident-action';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/incident/index.ts"],"names":[],"mappings":"AAAA,OAAO;AACP,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,2CAA2C,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/incident/index.ts"],"names":[],"mappings":"AAAA,OAAO;AACP,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,2CAA2C,CAAC;AAC1D,cAAc,sCAAsC,CAAC;AAErD,YAAY;AACZ,cAAc,sBAAsB,CAAC;AACrC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iCAAiC,CAAC;AAChD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,qCAAqC,CAAC;AACpD,cAAc,qCAAqC,CAAC;AACpD,cAAc,qCAAqC,CAAC;AACpD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,uBAAuB,CAAC"}
|
|
@@ -5,6 +5,7 @@ export * from './enums/incident-priority.enum';
|
|
|
5
5
|
export * from './enums/incident-status.enum';
|
|
6
6
|
export * from './enums/incident-actions.enum';
|
|
7
7
|
export * from './enums/incident-workflow-queue-name.enum';
|
|
8
|
+
export * from './enums/incident-emergency-type.enum';
|
|
8
9
|
export * from './intefaces/incident';
|
|
9
10
|
export * from './intefaces/incident-action';
|
|
10
11
|
export * from './intefaces/incident-attachment';
|
|
@@ -8,20 +8,22 @@ import { IncidentWorkflowTaskQueueName } from "../enums/incident-workflow-queue-
|
|
|
8
8
|
import { IncidentAction } from "./incident-action";
|
|
9
9
|
import { IncidentAssignment } from "./incident-assignment";
|
|
10
10
|
import { IncidentCategory } from "./incident-category";
|
|
11
|
-
import {
|
|
11
|
+
import { IncidentStatusDetails } from "./incident-status-details";
|
|
12
12
|
import { IncidentReporter } from "./incident-reporter";
|
|
13
13
|
import { IncidentResponseUnitAssignment } from "./incident-response-unit-assignment";
|
|
14
|
-
import { IncidentStatusDetails } from "./incident-status-details";
|
|
15
14
|
import { IncidentType } from "./incident-type";
|
|
15
|
+
import { IncidentReport } from "./incident-report";
|
|
16
|
+
import { IncidentEmergencyType } from "../enums/incident-emergency-type.enum";
|
|
16
17
|
export interface Incident {
|
|
17
18
|
id?: number;
|
|
18
19
|
appId: IncidentAppId;
|
|
19
20
|
class: IncidentClass;
|
|
21
|
+
emergencyType: IncidentEmergencyType;
|
|
20
22
|
reporter: IncidentReporter;
|
|
21
23
|
isAnonymous?: boolean;
|
|
22
24
|
channel: IncidentChannel;
|
|
23
|
-
categoryId
|
|
24
|
-
typeId
|
|
25
|
+
categoryId?: number;
|
|
26
|
+
typeId?: number;
|
|
25
27
|
description?: string;
|
|
26
28
|
status?: IncidentStatus;
|
|
27
29
|
statusDetails?: IncidentStatusDetails;
|
|
@@ -30,8 +32,8 @@ export interface Incident {
|
|
|
30
32
|
location?: MapLocation;
|
|
31
33
|
creatorId?: number;
|
|
32
34
|
assigneeIds?: number[];
|
|
33
|
-
responseUnitIds?: number[];
|
|
34
35
|
attachmentIds?: number[];
|
|
36
|
+
responseUnitIds?: number[];
|
|
35
37
|
workflowTaskQueueName: IncidentWorkflowTaskQueueName;
|
|
36
38
|
controlCentreId: number;
|
|
37
39
|
organizationId: number;
|