/** * Manual adapter sync trigger. Uses the running adapter registry so it * picks up whatever config + secrets the server booted with. The * heartbeat tracks the run; the dashboard's Status page sees counters * update in real time. * * - POST /api/adapters/:id/sync */ import type { IncomingMessage, ServerResponse } from "node:http"; import type { RouteContext } from "../route-context.js"; export declare function handle(req: IncomingMessage, res: ServerResponse, ctx: RouteContext): Promise; //# sourceMappingURL=adapters.d.ts.map