/** * IntakeSignal → ExternalScannerIngestRequest. * * The single mapping between the intake wire shape and the engine's ingest shape. Both accept * seams call it: the live route closure in `src/index.ts` and `buildIntakeMount`'s `onAccepted`. */ import type { ExternalScannerIngestRequest } from "../../scanners/external-scanner-receiver.js"; import type { ScannerId } from "../../scanners/types.js"; import type { IntakeSignal } from "./types.js"; /** * Narrow one accepted intake signal to the ingest request the engine takes. * * @param scannerName Configured scanner NAME resolved from the registry, not the wire `scanner_id`. * @param correlationId Intake-minted id of the acceptance row that admitted this signal. */ export declare function toIngestRequest(signal: IntakeSignal, correlationId: string, scannerName: ScannerId): ExternalScannerIngestRequest; //# sourceMappingURL=ingest-request.d.ts.map