/** * Daemon API route handlers for Beam. * * Thin HTTP wrapper around the daemon client RPCs — gives the Beam UI a * parallel surface to the `photon ps` CLI for observing and controlling * scheduled work. * * Endpoints: * GET /api/daemon/ps – full snapshot (active/declared/webhooks/sessions) * POST /api/daemon/schedules/enable – body: { photon, method } * POST /api/daemon/schedules/disable – body: { photon, method } * POST /api/daemon/schedules/pause – body: { photon, method } * POST /api/daemon/schedules/resume – body: { photon, method } * POST /api/daemon/schedules/add – body: { photon, method, cron } (manual schedule, no @scheduled tag required) * GET /api/daemon/history?photon=&method=&limit=&sinceTs= */ import type { RouteHandler } from '../types.js'; export declare const handleDaemonRoutes: RouteHandler; //# sourceMappingURL=api-daemon.d.ts.map