grm-shared-library 1.0.187 → 1.0.189
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/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/kafka/topics.d.ts +5 -0
- package/dist/kafka/topics.js +5 -0
- package/dist/modules/workflow/index.d.ts +1 -0
- package/dist/modules/workflow/index.js +17 -0
- package/dist/modules/workflow/interfaces/workflow-resolution-expiration-info.d.ts +4 -0
- package/dist/modules/workflow/interfaces/workflow-resolution-expiration-info.js +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export * from './modules/control-centre/index';
|
|
|
8
8
|
export * from './modules/email/index';
|
|
9
9
|
export * from './modules/response-unit/index';
|
|
10
10
|
export * from './modules/incident/index';
|
|
11
|
+
export * from './modules/workflow/index';
|
|
11
12
|
export * from './interfaces/server-message';
|
|
12
13
|
export * from './kafka/index';
|
|
13
14
|
export * from './decorators/case-decorators';
|
package/dist/index.js
CHANGED
|
@@ -25,6 +25,7 @@ __exportStar(require("./modules/control-centre/index"), exports);
|
|
|
25
25
|
__exportStar(require("./modules/email/index"), exports);
|
|
26
26
|
__exportStar(require("./modules/response-unit/index"), exports);
|
|
27
27
|
__exportStar(require("./modules/incident/index"), exports);
|
|
28
|
+
__exportStar(require("./modules/workflow/index"), exports);
|
|
28
29
|
// Interfaces
|
|
29
30
|
__exportStar(require("./interfaces/server-message"), exports);
|
|
30
31
|
// Kafka
|
package/dist/kafka/topics.d.ts
CHANGED
|
@@ -14,6 +14,11 @@ export declare const KAFKA_TOPICS: {
|
|
|
14
14
|
INCIDENT_CREATED: string;
|
|
15
15
|
INCIDENT_UPDATED: string;
|
|
16
16
|
INCIDENT_STATUS_CHANGED: string;
|
|
17
|
+
INCIDENT_STATUS_ONHOLD: string;
|
|
18
|
+
INCIDENT_STATUS_ESCALATED: string;
|
|
19
|
+
INCIDENT_STATUS_RESOLVED: string;
|
|
20
|
+
INCIDENT_STATUS_UNRESOLVED: string;
|
|
21
|
+
INCIDENT_STATUS_CLOSED: string;
|
|
17
22
|
INCIDENT_ASSIGNED: string;
|
|
18
23
|
INCIDENT_ASSIGNMENT_CREATED: string;
|
|
19
24
|
INCIDENT_RESPONSE_UNIT_ASSIGNMENT_CREATED: string;
|
package/dist/kafka/topics.js
CHANGED
|
@@ -23,6 +23,11 @@ exports.KAFKA_TOPICS = {
|
|
|
23
23
|
INCIDENT_CREATED: 'incident.created',
|
|
24
24
|
INCIDENT_UPDATED: 'incident.updated',
|
|
25
25
|
INCIDENT_STATUS_CHANGED: 'incident.status.changed',
|
|
26
|
+
INCIDENT_STATUS_ONHOLD: 'incident.status.onhold',
|
|
27
|
+
INCIDENT_STATUS_ESCALATED: 'incident.status.escalated',
|
|
28
|
+
INCIDENT_STATUS_RESOLVED: 'incident.status.resolved',
|
|
29
|
+
INCIDENT_STATUS_UNRESOLVED: 'incident.status.unresolved',
|
|
30
|
+
INCIDENT_STATUS_CLOSED: 'incident.status.closed',
|
|
26
31
|
INCIDENT_ASSIGNED: 'incident.assigned',
|
|
27
32
|
INCIDENT_ASSIGNMENT_CREATED: 'incident.assignment.created',
|
|
28
33
|
INCIDENT_RESPONSE_UNIT_ASSIGNMENT_CREATED: 'incident.response.unit.assignment.created'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './interfaces/workflow-resolution-expiration-info';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./interfaces/workflow-resolution-expiration-info"), exports);
|