clarion-shared-types 1.0.5 → 1.0.6
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/workflow/index.js +1 -1
- package/dist/cjs/modules/workflow/index.js.map +1 -1
- package/dist/cjs/modules/workflow/interfaces/{workflow-query-info.js → incident-status-changed-payload.js} +1 -1
- package/dist/cjs/modules/workflow/interfaces/incident-status-changed-payload.js.map +1 -0
- package/dist/esm/modules/workflow/index.js +1 -1
- package/dist/esm/modules/workflow/index.js.map +1 -1
- package/dist/esm/modules/workflow/interfaces/incident-status-changed-payload.js +2 -0
- package/dist/esm/modules/workflow/interfaces/incident-status-changed-payload.js.map +1 -0
- package/dist/types/modules/workflow/index.d.ts +1 -1
- package/dist/types/modules/workflow/interfaces/incident-status-changed-payload.d.ts +6 -0
- package/package.json +1 -1
- package/dist/cjs/modules/workflow/interfaces/workflow-query-info.js.map +0 -1
- package/dist/esm/modules/workflow/interfaces/workflow-query-info.js +0 -2
- package/dist/esm/modules/workflow/interfaces/workflow-query-info.js.map +0 -1
- package/dist/types/modules/workflow/interfaces/workflow-query-info.d.ts +0 -27
|
@@ -14,6 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./interfaces/workflow-query-info"), exports);
|
|
18
17
|
__exportStar(require("./interfaces/workflow-state"), exports);
|
|
18
|
+
__exportStar(require("./interfaces/incident-status-changed-payload"), exports);
|
|
19
19
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/workflow/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/workflow/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAC5C,+EAA6D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"incident-status-changed-payload.js","sourceRoot":"","sources":["../../../../../src/modules/workflow/interfaces/incident-status-changed-payload.ts"],"names":[],"mappings":""}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/workflow/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/workflow/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8CAA8C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"incident-status-changed-payload.js","sourceRoot":"","sources":["../../../../../src/modules/workflow/interfaces/incident-status-changed-payload.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"workflow-query-info.js","sourceRoot":"","sources":["../../../../../src/modules/workflow/interfaces/workflow-query-info.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"workflow-query-info.js","sourceRoot":"","sources":["../../../../../src/modules/workflow/interfaces/workflow-query-info.ts"],"names":[],"mappings":""}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
export interface WorkflowQueryInfo {
|
|
2
|
-
expirationDescription: string;
|
|
3
|
-
expirationDate: string;
|
|
4
|
-
expirationTime: string;
|
|
5
|
-
durationToExpirationMs: number;
|
|
6
|
-
expirationTimestampMs: number;
|
|
7
|
-
effectiveElapsedTimeMs: number;
|
|
8
|
-
workflowStartTimeMs: number;
|
|
9
|
-
durationOnHoldMs: number;
|
|
10
|
-
durationRemainingToOnHoldExpirationMs: number;
|
|
11
|
-
onHoldStartDate: string;
|
|
12
|
-
onHoldStartTime: string;
|
|
13
|
-
onHoldStartTimestampMs: number;
|
|
14
|
-
onHoldExpiryDate: string;
|
|
15
|
-
onHoldExpiryTime: string;
|
|
16
|
-
onHoldDurationFormatted: string;
|
|
17
|
-
onHoldMaxDurationMs: number;
|
|
18
|
-
appealDeadlineDate?: string;
|
|
19
|
-
appealDeadlineTime?: string;
|
|
20
|
-
appealDeadlineTimestampMs?: number;
|
|
21
|
-
durationRemainingToAppealExpirationMs?: number;
|
|
22
|
-
appealPeriodDurationMs?: number;
|
|
23
|
-
closeDate?: string;
|
|
24
|
-
closeTime?: string;
|
|
25
|
-
closeTimestampMs?: number;
|
|
26
|
-
appealAvailable?: boolean;
|
|
27
|
-
}
|