/** * method-catalog-pairing.ts * * Per-pairing operator token verbs: every paired device holds its own named, * individually-revocable token. These verbs list the paired devices (never the * secret), rename one, revoke one (immediately), mint a fresh one, and migrate * a client off the legacy single shared token (and revoke that shared token). * * Like the other handler-registered verb groups (fleet.*, push.*, checkpoints.*) * these declare `transport: ['ws']` and carry NO dedicated REST `http` binding: * they are served by the registered in-process handler through the generic * `/api/control-plane/methods/{id}/invoke` endpoint. `mint`, `revoke`, `rename` * and `list` are the core CRUD tails; `migrate` (move a shared-token client to * its own per-device token) and `revokeShared` (turn the legacy token off) are * documented in the `pairing-tokens` exempt category in * packages/contracts/src/core-verbs.ts. */ import type { GatewayMethodDescriptor } from './method-catalog-shared.js'; export declare const builtinGatewayPairingMethodDescriptors: readonly GatewayMethodDescriptor[]; //# sourceMappingURL=method-catalog-pairing.d.ts.map