/** * method-catalog-fleet.ts * * (see CHANGELOG 1.0.0), fleet.* + checkpoints.* method descriptors. Split out of * method-catalog-control-core.ts (which was already at the 800-line * source-file cap) rather than grown into it, mirroring how * method-catalog-control-automation.ts is a sibling split of the same file * merged back in by method-catalog-control.ts. * * Thin read (fleet) / checkpoint-lifecycle verbs over managers the daemon * ALREADY holds in-process (ProcessRegistry, WorkspaceCheckpointManager, * see routes/fleet.ts and routes/checkpoints.ts header comments). No `http` * REST path is bound: these are registered with a direct handler on the * catalog (RuntimeServices construction, ../runtime/services.ts). * `transport: ['ws']` with no `http` binding is the transport-parity gate's * (test/transport-parity.test.ts) own sanctioned category for a method * dispatchable ONLY via the generic invoke-by-id mechanism, see the * TRANSPORT NOTE above `sessions.search` in method-catalog-control-core.ts * for the full rationale (this block predates that comment only in file * position, not in reasoning). */ import type { GatewayMethodDescriptor } from './method-catalog-shared.js'; export declare const builtinGatewayFleetMethodDescriptors: readonly GatewayMethodDescriptor[]; //# sourceMappingURL=method-catalog-fleet.d.ts.map