/** Wire version shared by the CLI discovery file, HTTP API, state, and SSE. */ export const STANDALONE_PROTOCOL_VERSION = 1 as const; /** Stable control-plane endpoints exposed by StandaloneWorkflowServer. */ export const STANDALONE_API_PATHS = Object.freeze({ health: "/api/health", overview: "/api/overview", state: "/api/state", events: "/api/events", runs: "/api/runs", run: "/api/runs/:runId", pause: "/api/runs/:runId/pause", resume: "/api/runs/:runId/resume", stop: "/api/runs/:runId/stop", checkpointResponse: "/api/checkpoints/:checkpointId/respond", });