@kuriousdesign/machine-sdk
Version:
Shared data types and helpers for machine-related repositories
12 lines (11 loc) • 337 B
text/typescript
export interface TopicData {
timestamp: number;
payload: unknown; // Placeholder until cfg, status, data schemas provided
}
export const MqttTopics = {
BRIDGE_STATUS: 'bridge/status',
BRIDGE_CMD: 'bridge/cmd',
DEVICE_MAP: 'deviceMap',
HMI_ACTION_REQ: 'hmi/action_req',
EXT_SERVICE: 'ext_service',
} as const;