/** * `createPostgresTurnTraceStore` — implements the SDK's `TurnTraceStore` * contract against the `turn_trace` table (responder-trace-admin C3). * * `turn_trace` is the kernel-shaped, redacted per-LLM-call store the adopter * (ibatexas) writes; the console reads it domain-agnostically here. The * completion is REDACTED at write time, so this read surface returns * already-redacted text. `@adjudicate/admin-sdk` is an OPTIONAL peer dependency * — adopters who only WRITE turn_trace don't pay for the SDK at runtime. */ import type { TurnTraceStore } from "@adjudicate/admin-sdk"; import type { PostgresReader } from "./pg-reader.js"; export interface CreatePostgresTurnTraceStoreDeps { readonly reader: PostgresReader; } export declare function createPostgresTurnTraceStore(deps: CreatePostgresTurnTraceStoreDeps): TurnTraceStore; //# sourceMappingURL=turn-trace-store.d.ts.map