/** * Direct-writes detector. * * Direct ORM writes (Prisma `receiver.model.create`, Drizzle `db.insert`, * Kysely `db.insertInto`, raw SQL DML templates) in routes, server actions, * jobs, etc. bypass the governed runtime command path. They are flagged * unless the path is explicitly listed in the approved bypass registry. * * This detector only finds the direct writes; the bypass-violations * detector composes this output with a bypass registry to determine which * writes are violations vs. approved bypasses. */ import type { Detector } from './types.js'; export declare const directWritesDetector: Detector; //# sourceMappingURL=direct-writes.d.ts.map