@fdm-monster/server
Version:
FDM Monster is a bulk OctoPrint, Klipper, PrusaLink and BambuLab manager to set up, configure and monitor 3D printers. Our aim is to provide neat overview over your farm.
34 lines (33 loc) • 1.57 kB
JavaScript
//#region src/services/moonraker/dto/websocket/methods.ts
const klipperEvents = {
notify_gcode_response: "notify_gcode_response",
notify_status_update: "notify_status_update",
notify_klippy_ready: "notify_klippy_ready",
notify_klippy_shutdown: "notify_klippy_shutdown",
notify_klippy_disconnected: "notify_klippy_disconnected",
notify_filelist_changed: "notify_filelist_changed",
notify_update_response: "notify_update_response",
notify_update_refreshed: "notify_update_refreshed",
notify_cpu_throttled: "notify_cpu_throttled",
notify_proc_stat_update: "notify_proc_stat_update",
notify_history_changed: "notify_history_changed",
notify_user_created: "notify_user_created",
notify_user_deleted: "notify_user_deleted",
notify_user_logged_out: "notify_user_logged_out",
notify_service_state_changed: "notify_service_state_changed",
notify_job_queue_changed: "notify_job_queue_changed",
notify_button_event: "notify_button_event",
notify_announcement_update: "notify_announcement_update",
notify_announcement_dismissed: "notify_announcement_dismissed",
notify_announcement_wake: "notify_announcement_wake",
notify_sudo_alert: "notify_sudo_alert",
notify_webcams_changed: "notify_webcams_changed",
notify_active_spool_set: "notify_active_spool_set",
notify_spoolman_status_changed: "notify_spoolman_status_changed",
notify_agent_event: "notify_agent_event",
"sensors:sensor_update": "sensors:sensor_update"
};
const wsEventsList = Object.keys(klipperEvents);
//#endregion
export { klipperEvents, wsEventsList };
//# sourceMappingURL=methods.js.map