dt-common-device 7.10.10 → 7.10.11
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/constants/Event.d.ts +19 -0
- package/dist/constants/Event.js +31 -12
- package/package.json +1 -1
|
@@ -239,6 +239,25 @@ export declare const DT_EVENT_TYPES: {
|
|
|
239
239
|
HEARTBEAT: {
|
|
240
240
|
DISABLED: string;
|
|
241
241
|
STARTED: string;
|
|
242
|
+
DEVICE: {
|
|
243
|
+
IN_ACTIVE: string;
|
|
244
|
+
OFFLINE: string;
|
|
245
|
+
OFFLINE_HUB: string;
|
|
246
|
+
FURTHER_CHECKS_SKIPPED: string;
|
|
247
|
+
};
|
|
248
|
+
HUB: {
|
|
249
|
+
IN_ACTIVE: string;
|
|
250
|
+
OFFLINE: string;
|
|
251
|
+
};
|
|
252
|
+
LOCK: {
|
|
253
|
+
LOCAL_CODES_EXCLUDING_SET: string;
|
|
254
|
+
CLOUD_CODES: string;
|
|
255
|
+
MISSING_CODES: string;
|
|
256
|
+
ADDITIONAL_CODES: string;
|
|
257
|
+
SCHEDULE_CODES: string;
|
|
258
|
+
MARKED_TO_DELETE_CODES: string;
|
|
259
|
+
UNSET_CODES: string;
|
|
260
|
+
};
|
|
242
261
|
STOPPED: string;
|
|
243
262
|
COMPLETED: string;
|
|
244
263
|
FAILED: string;
|
package/dist/constants/Event.js
CHANGED
|
@@ -240,19 +240,38 @@ exports.DT_EVENT_TYPES = {
|
|
|
240
240
|
},
|
|
241
241
|
},
|
|
242
242
|
HEARTBEAT: {
|
|
243
|
-
DISABLED:
|
|
244
|
-
STARTED:
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
243
|
+
DISABLED: "heartbeat.disabled",
|
|
244
|
+
STARTED: "heartbeat.started",
|
|
245
|
+
DEVICE: {
|
|
246
|
+
IN_ACTIVE: "heartbeat.device.in_active",
|
|
247
|
+
OFFLINE: "heartbeat.device.offline",
|
|
248
|
+
OFFLINE_HUB: "heartbeat.device.offline_hub",
|
|
249
|
+
FURTHER_CHECKS_SKIPPED: "heartbeat.device.further_checks_skipped",
|
|
250
|
+
},
|
|
251
|
+
HUB: {
|
|
252
|
+
IN_ACTIVE: "heartbeat.hub.in_active",
|
|
253
|
+
OFFLINE: "heartbeat.hub.offline",
|
|
254
|
+
},
|
|
255
|
+
LOCK: {
|
|
256
|
+
LOCAL_CODES_EXCLUDING_SET: "heartbeat.lock.local_codes_excluding_set",
|
|
257
|
+
CLOUD_CODES: "heartbeat.lock.cloud_codes",
|
|
258
|
+
MISSING_CODES: "heartbeat.lock.missing_codes",
|
|
259
|
+
ADDITIONAL_CODES: "heartbeat.lock.additional_codes",
|
|
260
|
+
SCHEDULE_CODES: "heartbeat.lock.schedule_codes",
|
|
261
|
+
MARKED_TO_DELETE_CODES: "heartbeat.lock.marked_to_delete_codes",
|
|
262
|
+
UNSET_CODES: "heartbeat.lock.unset_codes",
|
|
263
|
+
},
|
|
264
|
+
STOPPED: "heartbeat.stopped",
|
|
265
|
+
COMPLETED: "heartbeat.completed",
|
|
266
|
+
FAILED: "heartbeat.failed",
|
|
267
|
+
EVENT_PUBLISHED: "heartbeat.event_published",
|
|
268
|
+
EVENT_RECEIVED: "heartbeat.event_received",
|
|
269
|
+
ERROR: "heartbeat.error",
|
|
251
270
|
},
|
|
252
271
|
ACCOUNT: {
|
|
253
272
|
DEVICE: {
|
|
254
|
-
NEW:
|
|
255
|
-
MISSING:
|
|
256
|
-
}
|
|
257
|
-
}
|
|
273
|
+
NEW: "account.device.new",
|
|
274
|
+
MISSING: "account.device.missing",
|
|
275
|
+
},
|
|
276
|
+
},
|
|
258
277
|
};
|