dt-common-device
Version: 
A secure and robust device management library for IoT applications
19 lines (18 loc) • 597 B
TypeScript
export declare const SERVICE_NAMES: {
    readonly CLOUD: "smart-cloud";
    readonly ACCESS: "smart-access";
    readonly ENERGY: "smart-energy";
    readonly SCHEDULE: "smart-schedule";
    readonly DEVICE: "smart-device";
    readonly ENTERTAINMENT: "smart-entertainment";
};
export type SERVICE_NAME = typeof SERVICE_NAMES[keyof typeof SERVICE_NAMES];
export declare enum Source {
    USER = "user",
    CLOUD_EVENT = "cloud-event",
    CLOUD_WEBHOOK = "cloud-webhook",
    HEARTBEAT = "heartbeat",
    CODE_ACTION = "code-action",
    DEVICE_ACTION = "device-action",
    SYSTEM = "system"
}