/** * unregistered-entity-write detector. * * Flags direct ORM writes against models that have no corresponding entity * in the Manifest entity registry. A governed application surface should * either expose those models as Manifest entities (so commands and policies * can be enforced) or route the write through a registered command. * * The detector deliberately does NOT pluralize entity names — irregular * plurals (Category → categories, Person → people) would produce false * positives. Match shape: Prisma's default model-to-client mapping, i.e. * model `User` → `prisma.user`, `Category` → `prisma.category`. */ import type { Detector } from './types.js'; export declare const unregisteredEntityWriteDetector: Detector; //# sourceMappingURL=unregistered-entity-write.d.ts.map