@prisma-next/sql-contract 0.12.0-dev.4 → 0.12.0-dev.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/canonicalization-hooks.mjs +10 -5
  2. package/dist/canonicalization-hooks.mjs.map +1 -1
  3. package/dist/factories.d.mts +3 -2
  4. package/dist/factories.d.mts.map +1 -1
  5. package/dist/factories.mjs +3 -2
  6. package/dist/factories.mjs.map +1 -1
  7. package/dist/index-type-validation.d.mts +2 -2
  8. package/dist/index-type-validation.mjs +1 -1
  9. package/dist/index-type-validation.mjs.map +1 -1
  10. package/dist/{index-types-B1cf5N0F.d.mts → index-types-DqVqGHwg.d.mts} +1 -1
  11. package/dist/{index-types-B1cf5N0F.d.mts.map → index-types-DqVqGHwg.d.mts.map} +1 -1
  12. package/dist/index-types.d.mts +1 -1
  13. package/dist/resolve-storage-table.d.mts +17 -0
  14. package/dist/resolve-storage-table.d.mts.map +1 -0
  15. package/dist/resolve-storage-table.mjs +26 -0
  16. package/dist/resolve-storage-table.mjs.map +1 -0
  17. package/dist/{types-Cx_5A_L0.d.mts → sql-storage-CV7Tc9Vh.d.mts} +27 -208
  18. package/dist/sql-storage-CV7Tc9Vh.d.mts.map +1 -0
  19. package/dist/{types-YQrDHy-b.mjs → types-ByD-iN24.mjs} +25 -26
  20. package/dist/types-ByD-iN24.mjs.map +1 -0
  21. package/dist/types-ZwTLmfx4.d.mts +201 -0
  22. package/dist/types-ZwTLmfx4.d.mts.map +1 -0
  23. package/dist/types.d.mts +3 -2
  24. package/dist/types.mjs +2 -2
  25. package/dist/validators.d.mts +3 -3
  26. package/dist/validators.d.mts.map +1 -1
  27. package/dist/validators.mjs +16 -16
  28. package/dist/validators.mjs.map +1 -1
  29. package/package.json +8 -7
  30. package/src/canonicalization-hooks.ts +5 -5
  31. package/src/exports/resolve-storage-table.ts +1 -0
  32. package/src/exports/types.ts +1 -0
  33. package/src/factories.ts +2 -1
  34. package/src/index-type-validation.ts +1 -1
  35. package/src/ir/build-sql-namespace.ts +28 -23
  36. package/src/ir/sql-storage.ts +41 -50
  37. package/src/ir/sql-unbound-namespace.ts +11 -4
  38. package/src/resolve-storage-table.ts +41 -0
  39. package/src/types.ts +2 -0
  40. package/src/validators.ts +30 -27
  41. package/dist/types-Cx_5A_L0.d.mts.map +0 -1
  42. package/dist/types-YQrDHy-b.mjs.map +0 -1
@@ -16,9 +16,10 @@ import { asNamespaceId } from "@prisma-next/contract/types";
16
16
  * envelope and runtime walk are honest at every layer.
17
17
  *
18
18
  * The `kind` discriminator is installed as a non-enumerable own property
19
- * so the JSON envelope reads `{ "id": "__unbound__" }` — symmetric
20
- * with the family-level non-enumerable `kind` on `SqlNode` and bounded
21
- * to the minimum data the framework `Namespace` interface promises.
19
+ * so the JSON envelope reads `{ "id": "__unbound__", "entries": { … } }`
20
+ * — symmetric with the family-level non-enumerable `kind` on `SqlNode`
21
+ * and bounded to the minimum data the framework `Namespace` interface
22
+ * promises.
22
23
  *
23
24
  * **Freeze-trap warning.** The leaf constructor calls
24
25
  * `freezeNode(this)` after installing `kind`. The leaf-class shape
@@ -35,7 +36,7 @@ import { asNamespaceId } from "@prisma-next/contract/types";
35
36
  var SqlUnboundNamespace = class SqlUnboundNamespace extends NamespaceBase {
36
37
  static instance = new SqlUnboundNamespace();
37
38
  id = UNBOUND_NAMESPACE_ID;
38
- tables = Object.freeze({});
39
+ entries = Object.freeze({ table: Object.freeze({}) });
39
40
  constructor() {
40
41
  super();
41
42
  Object.defineProperty(this, "kind", {
@@ -46,6 +47,9 @@ var SqlUnboundNamespace = class SqlUnboundNamespace extends NamespaceBase {
46
47
  });
47
48
  freezeNode(this);
48
49
  }
50
+ qualifyTable(tableName) {
51
+ return `"${tableName}"`;
52
+ }
49
53
  };
50
54
  //#endregion
51
55
  //#region src/ir/sql-node.ts
@@ -266,23 +270,16 @@ function isMaterializedSqlNamespace(ns) {
266
270
  }
267
271
  var SqlBoundNamespace = class SqlBoundNamespace extends NamespaceBase {
268
272
  id;
269
- tables;
273
+ entries;
270
274
  static fromTablesInput(input) {
271
- const tableCount = Object.keys(input.tables ?? {}).length;
272
- const enumCount = Object.keys(input.enum ?? {}).length;
273
- if (input.id === UNBOUND_NAMESPACE_ID && tableCount === 0 && enumCount === 0) return castAs(SqlUnboundNamespace.instance);
275
+ const tableCount = Object.keys(input.entries.table).length;
276
+ if (input.id === UNBOUND_NAMESPACE_ID && tableCount === 0) return castAs(SqlUnboundNamespace.instance);
274
277
  return castAs(new SqlBoundNamespace(input));
275
278
  }
276
279
  constructor(input) {
277
280
  super();
278
281
  this.id = input.id;
279
- this.tables = Object.freeze(Object.fromEntries(Object.entries(input.tables ?? {}).map(([name, t]) => [name, t instanceof StorageTable ? t : new StorageTable(t)])));
280
- if (input.enum !== void 0 && Object.keys(input.enum).length > 0) Object.defineProperty(this, "enum", {
281
- value: Object.freeze({ ...input.enum }),
282
- writable: false,
283
- enumerable: true,
284
- configurable: false
285
- });
282
+ this.entries = Object.freeze({ table: Object.freeze(Object.fromEntries(Object.entries(input.entries.table).map(([k, v]) => [k, v instanceof StorageTable ? v : new StorageTable(v)]))) });
286
283
  Object.defineProperty(this, "kind", {
287
284
  value: SQL_NAMESPACE_KIND,
288
285
  writable: false,
@@ -291,12 +288,16 @@ var SqlBoundNamespace = class SqlBoundNamespace extends NamespaceBase {
291
288
  });
292
289
  freezeNode(this);
293
290
  }
291
+ qualifyTable(tableName) {
292
+ if (this.id === UNBOUND_NAMESPACE_ID) return `"${tableName}"`;
293
+ return `"${this.id}"."${tableName}"`;
294
+ }
294
295
  };
295
296
  function buildSqlNamespace(input) {
296
297
  return SqlBoundNamespace.fromTablesInput(input);
297
298
  }
298
299
  function buildSqlNamespaceMap(namespaces) {
299
- return Object.fromEntries(Object.entries(namespaces).map(([nsKey, ns]) => [nsKey, isMaterializedSqlNamespace(ns) ? blindCast(ns) : SqlBoundNamespace.fromTablesInput(ns)]));
300
+ return Object.fromEntries(Object.entries(namespaces).map(([nsKey, ns]) => [nsKey, isMaterializedSqlNamespace(ns) ? blindCast(ns) : SqlBoundNamespace.fromTablesInput(blindCast(ns))]));
300
301
  }
301
302
  //#endregion
302
303
  //#region src/ir/postgres-enum-storage-entry.ts
@@ -370,11 +371,13 @@ var SqlStorage = class extends SqlNode {
370
371
  freezeNode(this);
371
372
  }
372
373
  };
374
+ function storageTableAt(storage, namespaceId, tableName) {
375
+ return storage.namespaces[namespaceId]?.entries.table[tableName];
376
+ }
373
377
  /**
374
378
  * Strict polymorphic-slot dispatch for `SqlStorage.types` entries.
375
- * Every entry must carry a recognised `kind` discriminator — either
376
- * `'codec-instance'` (codec triple, family-shared) or
377
- * `'postgres-enum'` (target-specific IR class). Untagged or
379
+ * Every entry must carry a `kind: 'codec-instance'` discriminator or
380
+ * be an already-constructed `StorageTypeInstance`. Untagged or
378
381
  * unrecognised inputs throw a diagnostic naming the entry and its
379
382
  * `kind`, so format drift surfaces loudly at the deserializer
380
383
  * boundary instead of slipping past the seam and corrupting
@@ -388,14 +391,10 @@ var SqlStorage = class extends SqlNode {
388
391
  * only fires for in-memory authoring bugs.
389
392
  */
390
393
  function normaliseTypeEntry(name, entry) {
391
- if (isPostgresEnumStorageEntry(entry)) {
392
- if (entry instanceof SqlNode) return entry;
393
- throw new Error(`Encountered raw postgres-enum JSON in storage.types[${JSON.stringify(name)}] without serializer hydration; use a target ContractSerializer that registers the matching entity-type factory.`);
394
- }
395
394
  if (isStorageTypeInstance(entry)) return entry;
396
395
  const rawKind = entry.kind;
397
396
  const kindDescription = rawKind === void 0 ? "missing `kind` discriminator" : `unrecognised \`kind\` discriminator ${JSON.stringify(rawKind)}`;
398
- throw new Error(`storage.types[${JSON.stringify(name)}] has ${kindDescription}; expected ${JSON.stringify("codec-instance")} or ${JSON.stringify("postgres-enum")}. Untagged codec triples should be wrapped with toStorageTypeInstance(...) before construction.`);
397
+ throw new Error(`storage.types[${JSON.stringify(name)}] has ${kindDescription}; expected ${JSON.stringify("codec-instance")}. Untagged codec triples should be wrapped with toStorageTypeInstance(...) before construction.`);
399
398
  }
400
399
  //#endregion
401
400
  //#region src/types.ts
@@ -408,6 +407,6 @@ function applyFkDefaults(fk, overrideDefaults) {
408
407
  };
409
408
  }
410
409
  //#endregion
411
- export { ForeignKey as _, CODEC_INSTANCE_KIND as a, SqlUnboundNamespace as b, POSTGRES_ENUM_KIND as c, buildSqlNamespaceMap as d, StorageTable as f, PrimaryKey as g, Index as h, SqlStorage as i, isPostgresEnumStorageEntry as l, StorageColumn as m, DEFAULT_FK_INDEX as n, isStorageTypeInstance as o, UniqueConstraint as p, applyFkDefaults as r, toStorageTypeInstance as s, DEFAULT_FK_CONSTRAINT as t, buildSqlNamespace as u, ForeignKeyReference as v, SqlNode as y };
410
+ export { PrimaryKey as _, storageTableAt as a, SqlNode as b, toStorageTypeInstance as c, buildSqlNamespace as d, buildSqlNamespaceMap as f, Index as g, StorageColumn as h, SqlStorage as i, POSTGRES_ENUM_KIND as l, UniqueConstraint as m, DEFAULT_FK_INDEX as n, CODEC_INSTANCE_KIND as o, StorageTable as p, applyFkDefaults as r, isStorageTypeInstance as s, DEFAULT_FK_CONSTRAINT as t, isPostgresEnumStorageEntry as u, ForeignKey as v, SqlUnboundNamespace as x, ForeignKeyReference as y };
412
411
 
413
- //# sourceMappingURL=types-YQrDHy-b.mjs.map
412
+ //# sourceMappingURL=types-ByD-iN24.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types-ByD-iN24.mjs","names":[],"sources":["../src/ir/sql-unbound-namespace.ts","../src/ir/sql-node.ts","../src/ir/foreign-key-reference.ts","../src/ir/foreign-key.ts","../src/ir/primary-key.ts","../src/ir/sql-index.ts","../src/ir/storage-column.ts","../src/ir/unique-constraint.ts","../src/ir/storage-table.ts","../src/ir/build-sql-namespace.ts","../src/ir/postgres-enum-storage-entry.ts","../src/ir/storage-type-instance.ts","../src/ir/sql-storage.ts","../src/types.ts"],"sourcesContent":["import {\n freezeNode,\n NamespaceBase,\n UNBOUND_NAMESPACE_ID,\n} from '@prisma-next/framework-components/ir';\nimport type { StorageTable } from './storage-table';\n\n/**\n * Family-layer placeholder for the SQL unbound-namespace singleton —\n * the late-bound slot whose binding the target resolves at connection\n * time rather than at authoring time.\n *\n * SQL contracts honour the framework `Storage.namespaces` invariant from\n * the moment they appear in the IR. Today `SqlStorage` is family-shared\n * (Postgres + SQLite consume the same class); a per-target namespace\n * concretion (`PostgresSchema.unbound`, `SqliteUnboundDatabase.instance`)\n * earns its existence when each target's namespace shape lands. Until\n * then the family ships a single placeholder singleton so the JSON\n * envelope and runtime walk are honest at every layer.\n *\n * The `kind` discriminator is installed as a non-enumerable own property\n * so the JSON envelope reads `{ \"id\": \"__unbound__\", \"entries\": { … } }`\n * — symmetric with the family-level non-enumerable `kind` on `SqlNode`\n * and bounded to the minimum data the framework `Namespace` interface\n * promises.\n *\n * **Freeze-trap warning.** The leaf constructor calls\n * `freezeNode(this)` after installing `kind`. The leaf-class shape\n * works today only because `NamespaceBase` does NOT freeze in its\n * constructor — the `Object.defineProperty(this, 'kind', …)` call after\n * `super()` succeeds because the instance is still mutable at that\n * point. Subclasses that add instance fields will still hit the freeze\n * trap once leaf-class `freezeNode(this)` runs; and if a future\n * framework change lifts the freeze to `NamespaceBase`, even the\n * `defineProperty` here would silently fail. To add subclass instance\n * fields safely, lift `freezeNode` to a leaf-class `seal()` hook each\n * leaf calls explicitly at the end of its own constructor.\n */\nexport class SqlUnboundNamespace extends NamespaceBase {\n static readonly instance: SqlUnboundNamespace = new SqlUnboundNamespace();\n\n readonly id = UNBOUND_NAMESPACE_ID;\n readonly entries: Readonly<{\n readonly table: Readonly<Record<string, StorageTable>>;\n }> = Object.freeze({ table: Object.freeze({}) });\n declare readonly kind: string;\n\n private constructor() {\n super();\n Object.defineProperty(this, 'kind', {\n value: 'sql-namespace',\n writable: false,\n enumerable: false,\n configurable: true,\n });\n freezeNode(this);\n }\n\n qualifyTable(tableName: string): string {\n return `\"${tableName}\"`;\n }\n}\n","import { IRNodeBase } from '@prisma-next/framework-components/ir';\n\n/**\n * SQL family IR node base. Carries the family-level `kind` discriminator\n * `'sql'` and inherits the framework's `freezeNode` affordance.\n *\n * Single family-level discriminator (not per-leaf) reflects the fact that\n * SQL IR has no polymorphic dispatch today — verifiers and serializers\n * walk by structural position (`storage.tables[name].columns[name]`),\n * not by inspecting `kind`. The abstract bar for per-leaf discriminators\n * isn't earned until a future polymorphic consumer arrives.\n *\n * `kind` is installed as a non-enumerable own property on every instance,\n * which keeps three things clean simultaneously:\n *\n * - `JSON.stringify(node)` produces the canonical pre-lift JSON envelope\n * shape (no `kind` field), so emitted contract.json files and the\n * `validateSqlContractFully` arktype schemas stay unchanged.\n * - Test assertions that use `toEqual({...})` against the pre-lift flat\n * shape continue to pass — only enumerable own properties are\n * compared.\n * - Direct access (`node.kind`) and runtime narrowing\n * (`if (node.kind === 'sql')`) still work, so future polymorphic\n * dispatch can begin reading `kind` without a runtime change.\n *\n * Future per-leaf overrides land cleanly: a class that gains a\n * polymorphic-dispatch consumer (e.g. an enum type instance walked\n * alongside other types) overrides `kind` with its narrower literal\n * at that leaf level. Per-leaf overrides will use enumerable kind\n * (matching the Mongo per-class-discriminator precedent) because they\n * encode dispatch-relevant information that callers need to see in\n * JSON envelopes; the family-level `'sql'` is uniform across all SQL\n * IR and carries no dispatch-relevant information.\n */\nexport abstract class SqlNode extends IRNodeBase {\n readonly kind?: string;\n\n constructor() {\n super();\n Object.defineProperty(this, 'kind', {\n value: 'sql',\n writable: false,\n enumerable: false,\n // configurable so per-leaf subclasses (e.g. PostgresEnumType in\n // target-postgres) can override `kind` with their narrower\n // enumerable literal via a class-field initializer. SqlNode\n // itself never needs to mutate the property again, so\n // configurability has no surface impact at this layer.\n configurable: true,\n });\n }\n}\n","import { asNamespaceId, type NamespaceId } from '@prisma-next/contract/types';\nimport { freezeNode } from '@prisma-next/framework-components/ir';\nimport { SqlNode } from './sql-node';\n\nexport interface ForeignKeyReferenceInput {\n readonly namespaceId: string;\n readonly tableName: string;\n readonly columns: readonly string[];\n}\n\n/**\n * SQL Contract IR node for one side (source or target) of a foreign-key\n * declaration. Carries the full coordinate: namespace, table, and columns.\n *\n * Use `UNBOUND_NAMESPACE_ID` from `@prisma-next/framework-components/ir`\n * as the sentinel `namespaceId` for single-namespace (unbound) references.\n */\nexport class ForeignKeyReference extends SqlNode {\n readonly namespaceId: NamespaceId;\n readonly tableName: string;\n readonly columns: readonly string[];\n\n constructor(input: ForeignKeyReferenceInput) {\n super();\n this.namespaceId = asNamespaceId(input.namespaceId);\n this.tableName = input.tableName;\n this.columns = input.columns;\n freezeNode(this);\n }\n}\n","import { freezeNode } from '@prisma-next/framework-components/ir';\nimport { ForeignKeyReference, type ForeignKeyReferenceInput } from './foreign-key-reference';\nimport { SqlNode } from './sql-node';\n\nexport type ReferentialAction = 'noAction' | 'restrict' | 'cascade' | 'setNull' | 'setDefault';\n\nexport interface ForeignKeyInput {\n readonly source: ForeignKeyReference | ForeignKeyReferenceInput;\n readonly target: ForeignKeyReference | ForeignKeyReferenceInput;\n readonly name?: string;\n readonly onDelete?: ReferentialAction;\n readonly onUpdate?: ReferentialAction;\n /** Whether to emit FK constraint DDL (ALTER TABLE … ADD CONSTRAINT … FOREIGN KEY). */\n readonly constraint: boolean;\n /** Whether to emit a backing index for the FK columns. */\n readonly index: boolean;\n}\n\n/**\n * SQL Contract IR node for a table-level foreign-key declaration.\n *\n * Each FK carries explicit `source` and `target` {@link ForeignKeyReference}\n * coordinates (namespace, table, columns). For single-namespace contracts the\n * sentinel `UNBOUND_NAMESPACE_ID` appears on both sides.\n *\n * The nested references are normalised to {@link ForeignKeyReference}\n * instances inside the constructor so downstream walks see a uniform AST\n * regardless of whether the input was a JSON literal or an already-constructed\n * class instance.\n */\nexport class ForeignKey extends SqlNode {\n readonly source: ForeignKeyReference;\n readonly target: ForeignKeyReference;\n readonly constraint: boolean;\n readonly index: boolean;\n declare readonly name?: string;\n declare readonly onDelete?: ReferentialAction;\n declare readonly onUpdate?: ReferentialAction;\n\n constructor(input: ForeignKeyInput) {\n super();\n this.source =\n input.source instanceof ForeignKeyReference\n ? input.source\n : new ForeignKeyReference(input.source);\n this.target =\n input.target instanceof ForeignKeyReference\n ? input.target\n : new ForeignKeyReference(input.target);\n this.constraint = input.constraint;\n this.index = input.index;\n if (input.name !== undefined) this.name = input.name;\n if (input.onDelete !== undefined) this.onDelete = input.onDelete;\n if (input.onUpdate !== undefined) this.onUpdate = input.onUpdate;\n freezeNode(this);\n }\n}\n","import { freezeNode } from '@prisma-next/framework-components/ir';\nimport { SqlNode } from './sql-node';\n\nexport interface PrimaryKeyInput {\n readonly columns: readonly string[];\n readonly name?: string;\n}\n\n/**\n * SQL Contract IR node for a table's primary-key constraint.\n */\nexport class PrimaryKey extends SqlNode {\n readonly columns: readonly string[];\n declare readonly name?: string;\n\n constructor(input: PrimaryKeyInput) {\n super();\n this.columns = input.columns;\n if (input.name !== undefined) this.name = input.name;\n freezeNode(this);\n }\n}\n","import { freezeNode } from '@prisma-next/framework-components/ir';\nimport { SqlNode } from './sql-node';\n\nexport interface IndexInput {\n readonly columns: readonly string[];\n readonly name?: string;\n readonly type?: string;\n readonly options?: Record<string, unknown>;\n}\n\n/**\n * SQL Contract IR node for a table-level secondary index.\n *\n * Note that this class shadows the global TypeScript `Index` lib type\n * at the family-shared name; consumer files that need both should\n * alias one (e.g.\n * `import { Index as SqlIndexNode } from '@prisma-next/sql-contract/types'`).\n */\nexport class Index extends SqlNode {\n readonly columns: readonly string[];\n declare readonly name?: string;\n declare readonly type?: string;\n declare readonly options?: Record<string, unknown>;\n\n constructor(input: IndexInput) {\n super();\n this.columns = input.columns;\n if (input.name !== undefined) this.name = input.name;\n if (input.type !== undefined) this.type = input.type;\n if (input.options !== undefined) this.options = input.options;\n freezeNode(this);\n }\n}\n","import type { ColumnDefault, ControlPolicy } from '@prisma-next/contract/types';\nimport { freezeNode } from '@prisma-next/framework-components/ir';\nimport { SqlNode } from './sql-node';\n\n/**\n * Hydration / construction input shape for {@link StorageColumn}. Mirrors\n * the on-disk storage JSON envelope exactly so the family-base\n * serializer's hydration walker can hand an arktype-validated literal\n * straight to `new`.\n *\n * `typeParams` and `typeRef` remain mutually exclusive (one or the\n * other, not both); the constructor preserves whichever caller-side\n * choice the input encodes.\n */\nexport interface StorageColumnInput {\n readonly nativeType: string;\n readonly codecId: string;\n readonly nullable: boolean;\n readonly typeParams?: Record<string, unknown>;\n readonly typeRef?: string;\n readonly default?: ColumnDefault;\n readonly control?: ControlPolicy;\n}\n\n/**\n * SQL Contract IR node for a single column entry in `StorageTable.columns`.\n *\n * Single concrete family-shared class — every SQL target reads the\n * same column shape today, so there is no per-target subclass. The\n * class type accepts any caller that constructs via\n * `new StorageColumn(input)`; literal construction sites must pass\n * through the constructor or the family-base hydration walker.\n *\n * The column's `name` is not on the class — columns are keyed by name\n * in the parent `StorageTable.columns: Record<string, StorageColumn>`\n * map, so a `name` field would be redundant with the key.\n */\nexport class StorageColumn extends SqlNode {\n readonly nativeType: string;\n readonly codecId: string;\n readonly nullable: boolean;\n declare readonly typeParams?: Record<string, unknown>;\n declare readonly typeRef?: string;\n declare readonly default?: ColumnDefault;\n declare readonly control?: ControlPolicy;\n\n constructor(input: StorageColumnInput) {\n super();\n this.nativeType = input.nativeType;\n this.codecId = input.codecId;\n this.nullable = input.nullable;\n if (input.typeParams !== undefined) this.typeParams = input.typeParams;\n if (input.typeRef !== undefined) this.typeRef = input.typeRef;\n if (input.default !== undefined) this.default = input.default;\n if (input.control !== undefined) this.control = input.control;\n freezeNode(this);\n }\n}\n","import { freezeNode } from '@prisma-next/framework-components/ir';\nimport { SqlNode } from './sql-node';\n\nexport interface UniqueConstraintInput {\n readonly columns: readonly string[];\n readonly name?: string;\n}\n\n/**\n * SQL Contract IR node for a table-level unique constraint.\n */\nexport class UniqueConstraint extends SqlNode {\n readonly columns: readonly string[];\n declare readonly name?: string;\n\n constructor(input: UniqueConstraintInput) {\n super();\n this.columns = input.columns;\n if (input.name !== undefined) this.name = input.name;\n freezeNode(this);\n }\n}\n","import type { ControlPolicy } from '@prisma-next/contract/types';\nimport { freezeNode } from '@prisma-next/framework-components/ir';\nimport { ForeignKey, type ForeignKeyInput } from './foreign-key';\nimport { PrimaryKey, type PrimaryKeyInput } from './primary-key';\nimport { Index, type IndexInput } from './sql-index';\nimport { SqlNode } from './sql-node';\nimport { StorageColumn, type StorageColumnInput } from './storage-column';\nimport { UniqueConstraint, type UniqueConstraintInput } from './unique-constraint';\n\nexport interface StorageTableInput {\n readonly columns: Record<string, StorageColumn | StorageColumnInput>;\n readonly primaryKey?: PrimaryKey | PrimaryKeyInput;\n readonly uniques: ReadonlyArray<UniqueConstraint | UniqueConstraintInput>;\n readonly indexes: ReadonlyArray<Index | IndexInput>;\n readonly foreignKeys: ReadonlyArray<ForeignKey | ForeignKeyInput>;\n readonly control?: ControlPolicy;\n}\n\n/**\n * SQL Contract IR node for a single table entry in a namespace's\n * `tables` map.\n *\n * The constructor normalises nested IR-class fields (columns, primary\n * key, uniques, indexes, foreign keys) into the appropriate class\n * instances so downstream walks see a uniform AST regardless of whether\n * the input was a JSON literal or an already-constructed class.\n *\n * The table's `name` is not on the class — tables are keyed by name in\n * the parent namespace's `tables: Record<string, StorageTable>` map.\n */\nexport class StorageTable extends SqlNode {\n readonly columns: Readonly<Record<string, StorageColumn>>;\n readonly uniques: ReadonlyArray<UniqueConstraint>;\n readonly indexes: ReadonlyArray<Index>;\n readonly foreignKeys: ReadonlyArray<ForeignKey>;\n declare readonly primaryKey?: PrimaryKey;\n declare readonly control?: ControlPolicy;\n\n constructor(input: StorageTableInput) {\n super();\n this.columns = Object.freeze(\n Object.fromEntries(\n Object.entries(input.columns).map(([name, col]) => [\n name,\n col instanceof StorageColumn ? col : new StorageColumn(col),\n ]),\n ),\n );\n if (input.primaryKey !== undefined) {\n this.primaryKey =\n input.primaryKey instanceof PrimaryKey\n ? input.primaryKey\n : new PrimaryKey(input.primaryKey);\n }\n this.uniques = Object.freeze(\n input.uniques.map((u) => (u instanceof UniqueConstraint ? u : new UniqueConstraint(u))),\n );\n this.indexes = Object.freeze(input.indexes.map((i) => (i instanceof Index ? i : new Index(i))));\n this.foreignKeys = Object.freeze(\n input.foreignKeys.map((fk) => (fk instanceof ForeignKey ? fk : new ForeignKey(fk))),\n );\n if (input.control !== undefined) this.control = input.control;\n freezeNode(this);\n }\n}\n","import {\n freezeNode,\n type Namespace,\n NamespaceBase,\n UNBOUND_NAMESPACE_ID,\n} from '@prisma-next/framework-components/ir';\nimport { blindCast, castAs } from '@prisma-next/utils/casts';\nimport type { SqlNamespace, SqlNamespaceTablesInput } from './sql-storage';\nimport { SqlUnboundNamespace } from './sql-unbound-namespace';\nimport { StorageTable, type StorageTableInput } from './storage-table';\n\nconst SQL_NAMESPACE_KIND = 'sql-namespace' as const;\n\nfunction isMaterializedSqlNamespace(ns: Namespace | SqlNamespaceTablesInput): ns is SqlNamespace {\n if (typeof ns !== 'object' || ns === null) {\n return false;\n }\n const proto = Object.getPrototypeOf(ns);\n if (proto === Object.prototype || proto === null) {\n return false;\n }\n return (ns as Namespace).kind === SQL_NAMESPACE_KIND;\n}\n\nclass SqlBoundNamespace extends NamespaceBase {\n declare readonly kind: string;\n\n readonly id: string;\n readonly entries: Readonly<{\n readonly table: Readonly<Record<string, StorageTable>>;\n }>;\n\n static fromTablesInput(input: SqlNamespaceTablesInput): SqlNamespace {\n const tableCount = Object.keys(input.entries.table).length;\n if (input.id === UNBOUND_NAMESPACE_ID && tableCount === 0) {\n return castAs<SqlNamespace>(SqlUnboundNamespace.instance);\n }\n return castAs<SqlNamespace>(new SqlBoundNamespace(input));\n }\n\n private constructor(input: SqlNamespaceTablesInput) {\n super();\n this.id = input.id;\n this.entries = Object.freeze({\n table: Object.freeze(\n Object.fromEntries(\n Object.entries(input.entries.table).map(([k, v]) => [\n k,\n v instanceof StorageTable ? v : new StorageTable(v as StorageTableInput),\n ]),\n ),\n ),\n });\n Object.defineProperty(this, 'kind', {\n value: SQL_NAMESPACE_KIND,\n writable: false,\n enumerable: false,\n configurable: true,\n });\n freezeNode(this);\n }\n\n qualifyTable(tableName: string): string {\n if (this.id === UNBOUND_NAMESPACE_ID) {\n return `\"${tableName}\"`;\n }\n return `\"${this.id}\".\"${tableName}\"`;\n }\n}\n\nexport function buildSqlNamespace(input: SqlNamespaceTablesInput): SqlNamespace {\n return SqlBoundNamespace.fromTablesInput(input);\n}\n\nexport function buildSqlNamespaceMap(\n namespaces: Readonly<Record<string, Namespace | SqlNamespaceTablesInput>>,\n): Readonly<Record<string, SqlNamespace>> {\n return Object.fromEntries(\n Object.entries(namespaces).map(([nsKey, ns]) => [\n nsKey,\n isMaterializedSqlNamespace(ns)\n ? blindCast<\n SqlNamespace,\n 'a materialised SQL-family namespace entry in a namespace map is a SqlNamespace'\n >(ns)\n : SqlBoundNamespace.fromTablesInput(\n blindCast<\n SqlNamespaceTablesInput,\n 'non-materialized SQL namespace map entry is a SqlNamespaceTablesInput'\n >(ns),\n ),\n ]),\n );\n}\n","import type { ControlPolicy } from '@prisma-next/contract/types';\nimport type { StorageType } from '@prisma-next/framework-components/ir';\n\n/**\n * Discriminator literal for the Postgres-enum variant on the polymorphic\n * `SqlStorage.types` slot.\n *\n * Enums are a target-level concept: Postgres ships native\n * `CREATE TYPE … AS ENUM` while other SQL targets approximate enums via\n * constraints. The literal lives at the SQL family layer because every\n * SQL-family consumer (verifier, planner, lowering, …) needs to\n * discriminate enum-typed slot entries from codec-typed ones. The\n * concrete IR class (`PostgresEnumType`) lives in the target-postgres\n * package and implements this structural contract; cross-domain\n * layering rules forbid the SQL family from importing the concrete\n * target class directly, so the discriminator and structural interface\n * carry the dispatch.\n */\nexport const POSTGRES_ENUM_KIND = 'postgres-enum' as const;\n\n/**\n * Structural contract every Postgres-enum slot entry honours — both\n * the live `PostgresEnumType` IR-class instance and the raw JSON\n * envelope shape that survives `JSON.stringify` round-trips. SQL\n * family-layer dispatch narrows polymorphic `StorageType` slot\n * entries to this shape via `isPostgresEnumStorageEntry`.\n *\n * The `codecBinding` field is accessor-shaped (live class instance) on\n * the IR class and undefined on the raw JSON envelope; consumers that\n * need it must guard for its presence (the JSON path synthesises an\n * equivalent shape from `codecId` + `values`).\n */\nexport interface PostgresEnumStorageEntry extends StorageType {\n readonly kind: typeof POSTGRES_ENUM_KIND;\n readonly name: string;\n readonly nativeType: string;\n readonly values: readonly string[];\n /**\n * Enumerable own property on the persisted JSON envelope; the live\n * IR-class instance carries it too. Family-shared dispatch sites\n * read `codecId` directly rather than going through the IR-class\n * `codecBinding` accessor (which lives on the prototype and isn't\n * present on raw JSON envelopes).\n */\n readonly codecId: string;\n readonly control?: ControlPolicy;\n}\n\n/**\n * Narrow a polymorphic `StorageType` entry to the Postgres-enum shape\n * via its enumerable `kind` discriminator. Type guard returns true for\n * both live `PostgresEnumType` instances and raw JSON envelopes.\n */\nexport function isPostgresEnumStorageEntry(value: unknown): value is PostgresEnumStorageEntry {\n if (typeof value !== 'object' || value === null) return false;\n return (value as { kind?: unknown }).kind === POSTGRES_ENUM_KIND;\n}\n","import type { StorageType } from '@prisma-next/framework-components/ir';\n\n/**\n * Sentinel kind for the legacy codec-triple shape persisted under\n * `SqlStorage.types`. Plain JSON-clean object literals carry this\n * discriminator so the polymorphic slot dispatch can route them down\n * the codec path while target-specific IR class instances (e.g. the\n * Postgres enum class) keep their own narrower `kind` literal.\n */\nexport const CODEC_INSTANCE_KIND = 'codec-instance' as const;\n\n/**\n * Structural sub-interface of {@link StorageType} for codec-typed entries\n * in `SqlStorage.types`. These are plain object literals — there is no\n * runtime IR class, the JSON envelope round-trips through the slot\n * unchanged. The `kind: 'codec-instance'` discriminator is the dispatch\n * key that distinguishes codec-typed entries from class-instance entries\n * (e.g. `PostgresEnumType`) sharing the polymorphic slot.\n */\nexport interface StorageTypeInstance extends StorageType {\n readonly kind: typeof CODEC_INSTANCE_KIND;\n readonly codecId: string;\n readonly nativeType: string;\n readonly typeParams: Record<string, unknown>;\n}\n\n/**\n * Construction-time input for a codec-triple entry. Symmetric with the\n * structural runtime shape minus the `kind` discriminator — callers may\n * omit `kind`; the helper {@link toStorageTypeInstance} stamps it on.\n */\nexport interface StorageTypeInstanceInput {\n readonly codecId: string;\n readonly nativeType: string;\n readonly typeParams: Record<string, unknown>;\n}\n\n/**\n * Stamp the codec-instance `kind` discriminator on a caller-supplied\n * codec triple. Idempotent: input that already carries the discriminator\n * passes through unchanged.\n */\nexport function toStorageTypeInstance(input: StorageTypeInstanceInput): StorageTypeInstance {\n return {\n kind: CODEC_INSTANCE_KIND,\n codecId: input.codecId,\n nativeType: input.nativeType,\n typeParams: input.typeParams,\n };\n}\n\n/**\n * Type-guard for codec-typed entries on the polymorphic\n * `SqlStorage.types` slot. Distinguishes `StorageTypeInstance` from\n * class-instance kinds (e.g. `PostgresEnumType`).\n */\nexport function isStorageTypeInstance(value: unknown): value is StorageTypeInstance {\n if (typeof value !== 'object' || value === null) return false;\n return (value as { kind?: unknown }).kind === CODEC_INSTANCE_KIND;\n}\n","import type { StorageHashBase } from '@prisma-next/contract/types';\nimport { freezeNode, type Namespace, type Storage } from '@prisma-next/framework-components/ir';\nimport { SqlNode } from './sql-node';\nimport type { StorageTable, StorageTableInput } from './storage-table';\nimport {\n isStorageTypeInstance,\n type StorageTypeInstance,\n type StorageTypeInstanceInput,\n} from './storage-type-instance';\n\n/**\n * Polymorphic value type for document-scoped `SqlStorage.types` entries\n * (codec aliases / parameterised native type registrations).\n *\n * Postgres native enum registrations live under the postgres-specific\n * `entries.type` slot on `PostgresSchema` (target layer), not here.\n */\nexport type SqlStorageTypeEntry = StorageTypeInstance | StorageTypeInstanceInput;\n\nexport interface SqlNamespaceTablesInput {\n readonly id: string;\n readonly entries: {\n readonly table: Record<string, StorageTable | StorageTableInput>;\n };\n}\n\nexport interface SqlStorageInput<THash extends string = string> {\n readonly storageHash: StorageHashBase<THash>;\n readonly types?: Record<string, SqlStorageTypeEntry>;\n readonly namespaces: Readonly<Record<string, SqlNamespace>>;\n}\n\n/**\n * SQL Contract IR root node for the `storage` field.\n *\n * Single concrete family-shared class — both Postgres and SQLite\n * consume this class today. Per-target storage subclasses are\n * introduced when each target's namespace shape earns its\n * target-specific concretion (target-specific derived fields,\n * target-specific storage extensions).\n *\n * Honours the framework `Storage` interface: every SQL IR carries a\n * `namespaces` map keyed by namespace id. Callers must supply fully\n * constructed `Namespace` instances — construction discipline lives\n * in the authoring builders and deserializer hydration paths.\n *\n * The constructor normalises optional `types` into class instances.\n * `types` is polymorphic per Decision 18 Option B: codec-triple inputs\n * are stamped with `kind: 'codec-instance'`; hydration of raw JSON\n * class-instance entries (carrying their narrower `kind` literal) is\n * the per-target serializer's responsibility (so the family base does\n * not import target-specific subclasses).\n */\n// SQL concretions store `StorageTable` values under `entries.table`.\n// Mongo namespaces carry `entries.collection` instead. The wider\n// `Record<string, object>` on `StorageTable` is only there so emitted\n// `contract.d.ts` table literals (which lack the runtime `kind`\n// discriminator on `StorageTable`) structurally satisfy the slot without\n// a class-instance check.\nexport type SqlNamespace = Namespace & {\n readonly entries: Readonly<{\n readonly table: Readonly<Record<string, StorageTable>>;\n }>;\n /**\n * Render a dialect-qualified table reference for runtime SQL emission.\n * Present on materialised target concretions (`PostgresSchema`,\n * `SqliteDatabase`, …) and family placeholders; omitted on emitted\n * contract structural namespace literals (methods are not serialised).\n */\n qualifyTable?(tableName: string): string;\n};\n\nexport class SqlStorage<THash extends string = string> extends SqlNode implements Storage {\n readonly storageHash: StorageHashBase<THash>;\n readonly namespaces: Readonly<Record<string, SqlNamespace>>;\n declare readonly types?: Readonly<Record<string, StorageTypeInstance>>;\n\n constructor(input: SqlStorageInput<THash>) {\n super();\n this.storageHash = input.storageHash;\n this.namespaces = Object.freeze(input.namespaces);\n if (input.types !== undefined) {\n this.types = Object.freeze(\n Object.fromEntries(\n Object.entries(input.types).map(([name, ti]) => [name, normaliseTypeEntry(name, ti)]),\n ),\n );\n }\n freezeNode(this);\n }\n}\n\nexport function storageTableAt(\n storage: SqlStorage,\n namespaceId: string,\n tableName: string,\n): StorageTable | undefined {\n return storage.namespaces[namespaceId]?.entries.table[tableName];\n}\n\n/**\n * Strict polymorphic-slot dispatch for `SqlStorage.types` entries.\n * Every entry must carry a `kind: 'codec-instance'` discriminator or\n * be an already-constructed `StorageTypeInstance`. Untagged or\n * unrecognised inputs throw a diagnostic naming the entry and its\n * `kind`, so format drift surfaces loudly at the deserializer\n * boundary instead of slipping past the seam and corrupting\n * downstream IR walks.\n *\n * Codec-triple authors that have an untagged shape on hand can call\n * `toStorageTypeInstance(...)` (which stamps the `'codec-instance'`\n * discriminator) before constructing `SqlStorage`. On-disk reads\n * cross `familyInstance.deserializeContract` first; the structural\n * arktype schema rejects untagged entries earlier, so this throw\n * only fires for in-memory authoring bugs.\n */\nfunction normaliseTypeEntry(name: string, entry: SqlStorageTypeEntry): StorageTypeInstance {\n if (isStorageTypeInstance(entry)) {\n return entry;\n }\n const rawKind = (entry as { kind?: unknown }).kind;\n const kindDescription =\n rawKind === undefined\n ? 'missing `kind` discriminator'\n : `unrecognised \\`kind\\` discriminator ${JSON.stringify(rawKind)}`;\n throw new Error(\n `storage.types[${JSON.stringify(name)}] has ${kindDescription}; expected ${JSON.stringify('codec-instance')}. Untagged codec triples should be wrapped with toStorageTypeInstance(...) before construction.`,\n );\n}\n","import type { CodecTrait } from '@prisma-next/framework-components/codec';\nimport type { ReferentialAction } from './ir/foreign-key';\n\nexport { buildSqlNamespace, buildSqlNamespaceMap } from './ir/build-sql-namespace';\nexport {\n ForeignKey,\n type ForeignKeyInput,\n type ReferentialAction,\n} from './ir/foreign-key';\nexport {\n ForeignKeyReference,\n type ForeignKeyReferenceInput,\n} from './ir/foreign-key-reference';\nexport {\n isPostgresEnumStorageEntry,\n POSTGRES_ENUM_KIND,\n type PostgresEnumStorageEntry,\n} from './ir/postgres-enum-storage-entry';\nexport { PrimaryKey, type PrimaryKeyInput } from './ir/primary-key';\nexport { Index, type IndexInput } from './ir/sql-index';\nexport { SqlNode } from './ir/sql-node';\nexport {\n type SqlNamespaceTablesInput,\n SqlStorage,\n type SqlStorageInput,\n type SqlStorageTypeEntry,\n storageTableAt,\n} from './ir/sql-storage';\nexport { SqlUnboundNamespace } from './ir/sql-unbound-namespace';\nexport { StorageColumn, type StorageColumnInput } from './ir/storage-column';\nexport { StorageTable, type StorageTableInput } from './ir/storage-table';\nexport {\n CODEC_INSTANCE_KIND,\n isStorageTypeInstance,\n type StorageTypeInstance,\n type StorageTypeInstanceInput,\n toStorageTypeInstance,\n} from './ir/storage-type-instance';\nexport {\n UniqueConstraint,\n type UniqueConstraintInput,\n} from './ir/unique-constraint';\n\nexport type ForeignKeyOptions = {\n readonly name?: string;\n readonly onDelete?: ReferentialAction;\n readonly onUpdate?: ReferentialAction;\n};\n\nexport type SqlModelFieldStorage = {\n readonly column: string;\n readonly codecId?: string;\n readonly nullable?: boolean;\n};\n\nexport type SqlModelStorage = {\n readonly table: string;\n readonly namespaceId: string;\n readonly fields: Record<string, SqlModelFieldStorage>;\n};\n\nexport const DEFAULT_FK_CONSTRAINT = true;\nexport const DEFAULT_FK_INDEX = true;\n\nexport function applyFkDefaults(\n fk: { constraint?: boolean | undefined; index?: boolean | undefined },\n overrideDefaults?: { constraint?: boolean | undefined; index?: boolean | undefined },\n): { constraint: boolean; index: boolean } {\n return {\n constraint: fk.constraint ?? overrideDefaults?.constraint ?? DEFAULT_FK_CONSTRAINT,\n index: fk.index ?? overrideDefaults?.index ?? DEFAULT_FK_INDEX,\n };\n}\n\nexport type TypeMaps<\n TCodecTypes extends Record<string, { output: unknown }> = Record<string, never>,\n TQueryOperationTypes extends Record<string, unknown> = Record<string, never>,\n TFieldOutputTypes extends Record<string, Record<string, unknown>> = Record<string, never>,\n TFieldInputTypes extends Record<string, Record<string, unknown>> = Record<string, never>,\n> = {\n readonly codecTypes: TCodecTypes;\n readonly queryOperationTypes: TQueryOperationTypes;\n readonly fieldOutputTypes: TFieldOutputTypes;\n readonly fieldInputTypes: TFieldInputTypes;\n};\n\nexport type CodecTypesOf<T> = [T] extends [never]\n ? Record<string, never>\n : T extends { readonly codecTypes: infer C }\n ? C extends Record<string, { output: unknown }>\n ? C\n : Record<string, never>\n : Record<string, never>;\n\n/**\n * Dispatch hint identifying the first-argument target of an operation.\n *\n * Used by ORM column helpers to decide whether an operation is reachable on a\n * field. Either names a concrete codec identity or a set of capability traits\n * that the field's codec must carry.\n */\nexport type QueryOperationSelfSpec =\n | { readonly codecId: string; readonly traits?: never }\n | { readonly traits: readonly CodecTrait[]; readonly codecId?: never };\n\n/**\n * Structural shape an operation's impl must return: any value carrying a\n * codec-exact `returnType` descriptor. `Expression<T>` (from\n * `@prisma-next/sql-relational-core/expression`, with `T extends ScopeField`)\n * extends this. Trait-targeted returns are deliberately excluded — predicate\n * detection and result decoding both depend on knowing the concrete return\n * codec.\n */\nexport type QueryOperationReturn = {\n readonly returnType: { readonly codecId: string; readonly nullable: boolean };\n};\n\nexport type QueryOperationTypeEntry = {\n readonly self?: QueryOperationSelfSpec;\n readonly impl: (...args: never[]) => QueryOperationReturn;\n};\n\nexport type SqlQueryOperationTypes<\n _CT extends Record<string, { readonly input: unknown; readonly output: unknown }>,\n T extends Record<string, QueryOperationTypeEntry>,\n> = T;\n\nexport type QueryOperationTypesBase = Record<string, QueryOperationTypeEntry>;\n\nexport type QueryOperationTypesOf<T> = [T] extends [never]\n ? Record<string, never>\n : T extends { readonly queryOperationTypes: infer Q }\n ? Q extends Record<string, unknown>\n ? Q\n : Record<string, never>\n : Record<string, never>;\n\nexport type TypeMapsPhantomKey = '__@prisma-next/sql-contract/typeMaps@__';\n\nexport type ContractWithTypeMaps<TContract, TTypeMaps> = TContract & {\n readonly [K in TypeMapsPhantomKey]?: TTypeMaps;\n};\n\nexport type ExtractTypeMapsFromContract<T> = TypeMapsPhantomKey extends keyof T\n ? NonNullable<T[TypeMapsPhantomKey & keyof T]>\n : never;\n\nexport type FieldOutputTypesOf<T> = [T] extends [never]\n ? Record<string, never>\n : T extends { readonly fieldOutputTypes: infer F }\n ? F extends Record<string, Record<string, unknown>>\n ? F\n : Record<string, never>\n : Record<string, never>;\n\nexport type FieldInputTypesOf<T> = [T] extends [never]\n ? Record<string, never>\n : T extends { readonly fieldInputTypes: infer F }\n ? F extends Record<string, Record<string, unknown>>\n ? F\n : Record<string, never>\n : Record<string, never>;\n\nexport type ExtractCodecTypes<T> = CodecTypesOf<ExtractTypeMapsFromContract<T>>;\nexport type ExtractQueryOperationTypes<T> = QueryOperationTypesOf<ExtractTypeMapsFromContract<T>>;\nexport type ExtractFieldOutputTypes<T> = FieldOutputTypesOf<ExtractTypeMapsFromContract<T>>;\nexport type ExtractFieldInputTypes<T> = FieldInputTypesOf<ExtractTypeMapsFromContract<T>>;\n\nexport type ResolveCodecTypes<TContract, TTypeMaps> = [TTypeMaps] extends [never]\n ? ExtractCodecTypes<TContract>\n : CodecTypesOf<TTypeMaps>;\n"],"mappings":"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"}
@@ -0,0 +1,201 @@
1
+ import { f as StorageTable, n as SqlNamespaceTablesInput, t as SqlNamespace, w as ReferentialAction } from "./sql-storage-CV7Tc9Vh.mjs";
2
+ import { Namespace, NamespaceBase, StorageType } from "@prisma-next/framework-components/ir";
3
+ import { ControlPolicy } from "@prisma-next/contract/types";
4
+ import { CodecTrait } from "@prisma-next/framework-components/codec";
5
+
6
+ //#region src/ir/build-sql-namespace.d.ts
7
+ declare function buildSqlNamespace(input: SqlNamespaceTablesInput): SqlNamespace;
8
+ declare function buildSqlNamespaceMap(namespaces: Readonly<Record<string, Namespace | SqlNamespaceTablesInput>>): Readonly<Record<string, SqlNamespace>>;
9
+ //#endregion
10
+ //#region src/ir/postgres-enum-storage-entry.d.ts
11
+ /**
12
+ * Discriminator literal for the Postgres-enum variant on the polymorphic
13
+ * `SqlStorage.types` slot.
14
+ *
15
+ * Enums are a target-level concept: Postgres ships native
16
+ * `CREATE TYPE … AS ENUM` while other SQL targets approximate enums via
17
+ * constraints. The literal lives at the SQL family layer because every
18
+ * SQL-family consumer (verifier, planner, lowering, …) needs to
19
+ * discriminate enum-typed slot entries from codec-typed ones. The
20
+ * concrete IR class (`PostgresEnumType`) lives in the target-postgres
21
+ * package and implements this structural contract; cross-domain
22
+ * layering rules forbid the SQL family from importing the concrete
23
+ * target class directly, so the discriminator and structural interface
24
+ * carry the dispatch.
25
+ */
26
+ declare const POSTGRES_ENUM_KIND: "postgres-enum";
27
+ /**
28
+ * Structural contract every Postgres-enum slot entry honours — both
29
+ * the live `PostgresEnumType` IR-class instance and the raw JSON
30
+ * envelope shape that survives `JSON.stringify` round-trips. SQL
31
+ * family-layer dispatch narrows polymorphic `StorageType` slot
32
+ * entries to this shape via `isPostgresEnumStorageEntry`.
33
+ *
34
+ * The `codecBinding` field is accessor-shaped (live class instance) on
35
+ * the IR class and undefined on the raw JSON envelope; consumers that
36
+ * need it must guard for its presence (the JSON path synthesises an
37
+ * equivalent shape from `codecId` + `values`).
38
+ */
39
+ interface PostgresEnumStorageEntry extends StorageType {
40
+ readonly kind: typeof POSTGRES_ENUM_KIND;
41
+ readonly name: string;
42
+ readonly nativeType: string;
43
+ readonly values: readonly string[];
44
+ /**
45
+ * Enumerable own property on the persisted JSON envelope; the live
46
+ * IR-class instance carries it too. Family-shared dispatch sites
47
+ * read `codecId` directly rather than going through the IR-class
48
+ * `codecBinding` accessor (which lives on the prototype and isn't
49
+ * present on raw JSON envelopes).
50
+ */
51
+ readonly codecId: string;
52
+ readonly control?: ControlPolicy;
53
+ }
54
+ /**
55
+ * Narrow a polymorphic `StorageType` entry to the Postgres-enum shape
56
+ * via its enumerable `kind` discriminator. Type guard returns true for
57
+ * both live `PostgresEnumType` instances and raw JSON envelopes.
58
+ */
59
+ declare function isPostgresEnumStorageEntry(value: unknown): value is PostgresEnumStorageEntry;
60
+ //#endregion
61
+ //#region src/ir/sql-unbound-namespace.d.ts
62
+ /**
63
+ * Family-layer placeholder for the SQL unbound-namespace singleton —
64
+ * the late-bound slot whose binding the target resolves at connection
65
+ * time rather than at authoring time.
66
+ *
67
+ * SQL contracts honour the framework `Storage.namespaces` invariant from
68
+ * the moment they appear in the IR. Today `SqlStorage` is family-shared
69
+ * (Postgres + SQLite consume the same class); a per-target namespace
70
+ * concretion (`PostgresSchema.unbound`, `SqliteUnboundDatabase.instance`)
71
+ * earns its existence when each target's namespace shape lands. Until
72
+ * then the family ships a single placeholder singleton so the JSON
73
+ * envelope and runtime walk are honest at every layer.
74
+ *
75
+ * The `kind` discriminator is installed as a non-enumerable own property
76
+ * so the JSON envelope reads `{ "id": "__unbound__", "entries": { … } }`
77
+ * — symmetric with the family-level non-enumerable `kind` on `SqlNode`
78
+ * and bounded to the minimum data the framework `Namespace` interface
79
+ * promises.
80
+ *
81
+ * **Freeze-trap warning.** The leaf constructor calls
82
+ * `freezeNode(this)` after installing `kind`. The leaf-class shape
83
+ * works today only because `NamespaceBase` does NOT freeze in its
84
+ * constructor — the `Object.defineProperty(this, 'kind', …)` call after
85
+ * `super()` succeeds because the instance is still mutable at that
86
+ * point. Subclasses that add instance fields will still hit the freeze
87
+ * trap once leaf-class `freezeNode(this)` runs; and if a future
88
+ * framework change lifts the freeze to `NamespaceBase`, even the
89
+ * `defineProperty` here would silently fail. To add subclass instance
90
+ * fields safely, lift `freezeNode` to a leaf-class `seal()` hook each
91
+ * leaf calls explicitly at the end of its own constructor.
92
+ */
93
+ declare class SqlUnboundNamespace extends NamespaceBase {
94
+ static readonly instance: SqlUnboundNamespace;
95
+ readonly id: "__unbound__";
96
+ readonly entries: Readonly<{
97
+ readonly table: Readonly<Record<string, StorageTable>>;
98
+ }>;
99
+ readonly kind: string;
100
+ private constructor();
101
+ qualifyTable(tableName: string): string;
102
+ }
103
+ //#endregion
104
+ //#region src/types.d.ts
105
+ type ForeignKeyOptions = {
106
+ readonly name?: string;
107
+ readonly onDelete?: ReferentialAction;
108
+ readonly onUpdate?: ReferentialAction;
109
+ };
110
+ type SqlModelFieldStorage = {
111
+ readonly column: string;
112
+ readonly codecId?: string;
113
+ readonly nullable?: boolean;
114
+ };
115
+ type SqlModelStorage = {
116
+ readonly table: string;
117
+ readonly namespaceId: string;
118
+ readonly fields: Record<string, SqlModelFieldStorage>;
119
+ };
120
+ declare const DEFAULT_FK_CONSTRAINT = true;
121
+ declare const DEFAULT_FK_INDEX = true;
122
+ declare function applyFkDefaults(fk: {
123
+ constraint?: boolean | undefined;
124
+ index?: boolean | undefined;
125
+ }, overrideDefaults?: {
126
+ constraint?: boolean | undefined;
127
+ index?: boolean | undefined;
128
+ }): {
129
+ constraint: boolean;
130
+ index: boolean;
131
+ };
132
+ type TypeMaps<TCodecTypes extends Record<string, {
133
+ output: unknown;
134
+ }> = Record<string, never>, TQueryOperationTypes extends Record<string, unknown> = Record<string, never>, TFieldOutputTypes extends Record<string, Record<string, unknown>> = Record<string, never>, TFieldInputTypes extends Record<string, Record<string, unknown>> = Record<string, never>> = {
135
+ readonly codecTypes: TCodecTypes;
136
+ readonly queryOperationTypes: TQueryOperationTypes;
137
+ readonly fieldOutputTypes: TFieldOutputTypes;
138
+ readonly fieldInputTypes: TFieldInputTypes;
139
+ };
140
+ type CodecTypesOf<T> = [T] extends [never] ? Record<string, never> : T extends {
141
+ readonly codecTypes: infer C;
142
+ } ? C extends Record<string, {
143
+ output: unknown;
144
+ }> ? C : Record<string, never> : Record<string, never>;
145
+ /**
146
+ * Dispatch hint identifying the first-argument target of an operation.
147
+ *
148
+ * Used by ORM column helpers to decide whether an operation is reachable on a
149
+ * field. Either names a concrete codec identity or a set of capability traits
150
+ * that the field's codec must carry.
151
+ */
152
+ type QueryOperationSelfSpec = {
153
+ readonly codecId: string;
154
+ readonly traits?: never;
155
+ } | {
156
+ readonly traits: readonly CodecTrait[];
157
+ readonly codecId?: never;
158
+ };
159
+ /**
160
+ * Structural shape an operation's impl must return: any value carrying a
161
+ * codec-exact `returnType` descriptor. `Expression<T>` (from
162
+ * `@prisma-next/sql-relational-core/expression`, with `T extends ScopeField`)
163
+ * extends this. Trait-targeted returns are deliberately excluded — predicate
164
+ * detection and result decoding both depend on knowing the concrete return
165
+ * codec.
166
+ */
167
+ type QueryOperationReturn = {
168
+ readonly returnType: {
169
+ readonly codecId: string;
170
+ readonly nullable: boolean;
171
+ };
172
+ };
173
+ type QueryOperationTypeEntry = {
174
+ readonly self?: QueryOperationSelfSpec;
175
+ readonly impl: (...args: never[]) => QueryOperationReturn;
176
+ };
177
+ type SqlQueryOperationTypes<_CT extends Record<string, {
178
+ readonly input: unknown;
179
+ readonly output: unknown;
180
+ }>, T extends Record<string, QueryOperationTypeEntry>> = T;
181
+ type QueryOperationTypesBase = Record<string, QueryOperationTypeEntry>;
182
+ type QueryOperationTypesOf<T> = [T] extends [never] ? Record<string, never> : T extends {
183
+ readonly queryOperationTypes: infer Q;
184
+ } ? Q extends Record<string, unknown> ? Q : Record<string, never> : Record<string, never>;
185
+ type TypeMapsPhantomKey = '__@prisma-next/sql-contract/typeMaps@__';
186
+ type ContractWithTypeMaps<TContract, TTypeMaps> = TContract & { readonly [K in TypeMapsPhantomKey]?: TTypeMaps };
187
+ type ExtractTypeMapsFromContract<T> = TypeMapsPhantomKey extends keyof T ? NonNullable<T[TypeMapsPhantomKey & keyof T]> : never;
188
+ type FieldOutputTypesOf<T> = [T] extends [never] ? Record<string, never> : T extends {
189
+ readonly fieldOutputTypes: infer F;
190
+ } ? F extends Record<string, Record<string, unknown>> ? F : Record<string, never> : Record<string, never>;
191
+ type FieldInputTypesOf<T> = [T] extends [never] ? Record<string, never> : T extends {
192
+ readonly fieldInputTypes: infer F;
193
+ } ? F extends Record<string, Record<string, unknown>> ? F : Record<string, never> : Record<string, never>;
194
+ type ExtractCodecTypes<T> = CodecTypesOf<ExtractTypeMapsFromContract<T>>;
195
+ type ExtractQueryOperationTypes<T> = QueryOperationTypesOf<ExtractTypeMapsFromContract<T>>;
196
+ type ExtractFieldOutputTypes<T> = FieldOutputTypesOf<ExtractTypeMapsFromContract<T>>;
197
+ type ExtractFieldInputTypes<T> = FieldInputTypesOf<ExtractTypeMapsFromContract<T>>;
198
+ type ResolveCodecTypes<TContract, TTypeMaps> = [TTypeMaps] extends [never] ? ExtractCodecTypes<TContract> : CodecTypesOf<TTypeMaps>;
199
+ //#endregion
200
+ export { buildSqlNamespaceMap as A, TypeMapsPhantomKey as C, PostgresEnumStorageEntry as D, POSTGRES_ENUM_KIND as E, isPostgresEnumStorageEntry as O, TypeMaps as S, SqlUnboundNamespace as T, QueryOperationTypesOf as _, ExtractCodecTypes as a, SqlModelStorage as b, ExtractQueryOperationTypes as c, FieldOutputTypesOf as d, ForeignKeyOptions as f, QueryOperationTypesBase as g, QueryOperationTypeEntry as h, DEFAULT_FK_INDEX as i, buildSqlNamespace as k, ExtractTypeMapsFromContract as l, QueryOperationSelfSpec as m, ContractWithTypeMaps as n, ExtractFieldInputTypes as o, QueryOperationReturn as p, DEFAULT_FK_CONSTRAINT as r, ExtractFieldOutputTypes as s, CodecTypesOf as t, FieldInputTypesOf as u, ResolveCodecTypes as v, applyFkDefaults as w, SqlQueryOperationTypes as x, SqlModelFieldStorage as y };
201
+ //# sourceMappingURL=types-ZwTLmfx4.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types-ZwTLmfx4.d.mts","names":[],"sources":["../src/ir/build-sql-namespace.ts","../src/ir/postgres-enum-storage-entry.ts","../src/ir/sql-unbound-namespace.ts","../src/types.ts"],"mappings":"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"}
package/dist/types.d.mts CHANGED
@@ -1,2 +1,3 @@
1
- import { $ as ForeignKeyReference, A as SqlStorageInput, B as UniqueConstraintInput, C as TypeMapsPhantomKey, D as buildSqlNamespaceMap, E as buildSqlNamespace, F as isStorageTypeInstance, G as PrimaryKey, H as StorageColumnInput, I as toStorageTypeInstance, J as PostgresEnumStorageEntry, K as PrimaryKeyInput, L as StorageTable, M as CODEC_INSTANCE_KIND, N as StorageTypeInstance, O as SqlNamespaceTablesInput, P as StorageTypeInstanceInput, Q as ReferentialAction, R as StorageTableInput, S as TypeMaps, T as SqlUnboundNamespace, U as Index, V as StorageColumn, W as IndexInput, X as ForeignKey, Y as isPostgresEnumStorageEntry, Z as ForeignKeyInput, _ as QueryOperationTypesOf, a as ExtractCodecTypes, b as SqlModelStorage, c as ExtractQueryOperationTypes, d as FieldOutputTypesOf, et as ForeignKeyReferenceInput, f as ForeignKeyOptions, g as QueryOperationTypesBase, h as QueryOperationTypeEntry, i as DEFAULT_FK_INDEX, j as SqlStorageTypeEntry, k as SqlStorage, l as ExtractTypeMapsFromContract, m as QueryOperationSelfSpec, n as ContractWithTypeMaps, o as ExtractFieldInputTypes, p as QueryOperationReturn, q as POSTGRES_ENUM_KIND, r as DEFAULT_FK_CONSTRAINT, s as ExtractFieldOutputTypes, t as CodecTypesOf, tt as SqlNode, u as FieldInputTypesOf, v as ResolveCodecTypes, w as applyFkDefaults, x as SqlQueryOperationTypes, y as SqlModelFieldStorage, z as UniqueConstraint } from "./types-Cx_5A_L0.mjs";
2
- export { CODEC_INSTANCE_KIND, type CodecTypesOf, type ContractWithTypeMaps, DEFAULT_FK_CONSTRAINT, DEFAULT_FK_INDEX, type ExtractCodecTypes, type ExtractFieldInputTypes, type ExtractFieldOutputTypes, type ExtractQueryOperationTypes, type ExtractTypeMapsFromContract, type FieldInputTypesOf, type FieldOutputTypesOf, ForeignKey, type ForeignKeyInput, type ForeignKeyOptions, ForeignKeyReference, type ForeignKeyReferenceInput, Index, type IndexInput, POSTGRES_ENUM_KIND, type PostgresEnumStorageEntry, PrimaryKey, type PrimaryKeyInput, type QueryOperationReturn, type QueryOperationSelfSpec, type QueryOperationTypeEntry, type QueryOperationTypesBase, type QueryOperationTypesOf, type ReferentialAction, type ResolveCodecTypes, type SqlModelFieldStorage, type SqlModelStorage, type SqlNamespaceTablesInput, SqlNode, type SqlQueryOperationTypes, SqlStorage, type SqlStorageInput, type SqlStorageTypeEntry, SqlUnboundNamespace, StorageColumn, type StorageColumnInput, StorageTable, type StorageTableInput, type StorageTypeInstance, type StorageTypeInstanceInput, type TypeMaps, type TypeMapsPhantomKey, UniqueConstraint, type UniqueConstraintInput, applyFkDefaults, buildSqlNamespace, buildSqlNamespaceMap, isPostgresEnumStorageEntry, isStorageTypeInstance, toStorageTypeInstance };
1
+ import { C as ForeignKeyInput, D as SqlNode, E as ForeignKeyReferenceInput, S as ForeignKey, T as ForeignKeyReference, _ as StorageColumnInput, a as SqlStorageTypeEntry, b as PrimaryKey, c as StorageTypeInstance, d as toStorageTypeInstance, f as StorageTable, g as StorageColumn, h as UniqueConstraintInput, i as SqlStorageInput, l as StorageTypeInstanceInput, m as UniqueConstraint, n as SqlNamespaceTablesInput, o as storageTableAt, p as StorageTableInput, r as SqlStorage, s as CODEC_INSTANCE_KIND, u as isStorageTypeInstance, v as Index, w as ReferentialAction, x as PrimaryKeyInput, y as IndexInput } from "./sql-storage-CV7Tc9Vh.mjs";
2
+ import { A as buildSqlNamespaceMap, C as TypeMapsPhantomKey, D as PostgresEnumStorageEntry, E as POSTGRES_ENUM_KIND, O as isPostgresEnumStorageEntry, S as TypeMaps, T as SqlUnboundNamespace, _ as QueryOperationTypesOf, a as ExtractCodecTypes, b as SqlModelStorage, c as ExtractQueryOperationTypes, d as FieldOutputTypesOf, f as ForeignKeyOptions, g as QueryOperationTypesBase, h as QueryOperationTypeEntry, i as DEFAULT_FK_INDEX, k as buildSqlNamespace, l as ExtractTypeMapsFromContract, m as QueryOperationSelfSpec, n as ContractWithTypeMaps, o as ExtractFieldInputTypes, p as QueryOperationReturn, r as DEFAULT_FK_CONSTRAINT, s as ExtractFieldOutputTypes, t as CodecTypesOf, u as FieldInputTypesOf, v as ResolveCodecTypes, w as applyFkDefaults, x as SqlQueryOperationTypes, y as SqlModelFieldStorage } from "./types-ZwTLmfx4.mjs";
3
+ export { CODEC_INSTANCE_KIND, type CodecTypesOf, type ContractWithTypeMaps, DEFAULT_FK_CONSTRAINT, DEFAULT_FK_INDEX, type ExtractCodecTypes, type ExtractFieldInputTypes, type ExtractFieldOutputTypes, type ExtractQueryOperationTypes, type ExtractTypeMapsFromContract, type FieldInputTypesOf, type FieldOutputTypesOf, ForeignKey, type ForeignKeyInput, type ForeignKeyOptions, ForeignKeyReference, type ForeignKeyReferenceInput, Index, type IndexInput, POSTGRES_ENUM_KIND, type PostgresEnumStorageEntry, PrimaryKey, type PrimaryKeyInput, type QueryOperationReturn, type QueryOperationSelfSpec, type QueryOperationTypeEntry, type QueryOperationTypesBase, type QueryOperationTypesOf, type ReferentialAction, type ResolveCodecTypes, type SqlModelFieldStorage, type SqlModelStorage, type SqlNamespaceTablesInput, SqlNode, type SqlQueryOperationTypes, SqlStorage, type SqlStorageInput, type SqlStorageTypeEntry, SqlUnboundNamespace, StorageColumn, type StorageColumnInput, StorageTable, type StorageTableInput, type StorageTypeInstance, type StorageTypeInstanceInput, type TypeMaps, type TypeMapsPhantomKey, UniqueConstraint, type UniqueConstraintInput, applyFkDefaults, buildSqlNamespace, buildSqlNamespaceMap, isPostgresEnumStorageEntry, isStorageTypeInstance, storageTableAt, toStorageTypeInstance };
package/dist/types.mjs CHANGED
@@ -1,2 +1,2 @@
1
- import { _ as ForeignKey, a as CODEC_INSTANCE_KIND, b as SqlUnboundNamespace, c as POSTGRES_ENUM_KIND, d as buildSqlNamespaceMap, f as StorageTable, g as PrimaryKey, h as Index, i as SqlStorage, l as isPostgresEnumStorageEntry, m as StorageColumn, n as DEFAULT_FK_INDEX, o as isStorageTypeInstance, p as UniqueConstraint, r as applyFkDefaults, s as toStorageTypeInstance, t as DEFAULT_FK_CONSTRAINT, u as buildSqlNamespace, v as ForeignKeyReference, y as SqlNode } from "./types-YQrDHy-b.mjs";
2
- export { CODEC_INSTANCE_KIND, DEFAULT_FK_CONSTRAINT, DEFAULT_FK_INDEX, ForeignKey, ForeignKeyReference, Index, POSTGRES_ENUM_KIND, PrimaryKey, SqlNode, SqlStorage, SqlUnboundNamespace, StorageColumn, StorageTable, UniqueConstraint, applyFkDefaults, buildSqlNamespace, buildSqlNamespaceMap, isPostgresEnumStorageEntry, isStorageTypeInstance, toStorageTypeInstance };
1
+ import { _ as PrimaryKey, a as storageTableAt, b as SqlNode, c as toStorageTypeInstance, d as buildSqlNamespace, f as buildSqlNamespaceMap, g as Index, h as StorageColumn, i as SqlStorage, l as POSTGRES_ENUM_KIND, m as UniqueConstraint, n as DEFAULT_FK_INDEX, o as CODEC_INSTANCE_KIND, p as StorageTable, r as applyFkDefaults, s as isStorageTypeInstance, t as DEFAULT_FK_CONSTRAINT, u as isPostgresEnumStorageEntry, v as ForeignKey, x as SqlUnboundNamespace, y as ForeignKeyReference } from "./types-ByD-iN24.mjs";
2
+ export { CODEC_INSTANCE_KIND, DEFAULT_FK_CONSTRAINT, DEFAULT_FK_INDEX, ForeignKey, ForeignKeyReference, Index, POSTGRES_ENUM_KIND, PrimaryKey, SqlNode, SqlStorage, SqlUnboundNamespace, StorageColumn, StorageTable, UniqueConstraint, applyFkDefaults, buildSqlNamespace, buildSqlNamespaceMap, isPostgresEnumStorageEntry, isStorageTypeInstance, storageTableAt, toStorageTypeInstance };
@@ -1,4 +1,4 @@
1
- import { Q as ReferentialAction, Z as ForeignKeyInput, k as SqlStorage } from "./types-Cx_5A_L0.mjs";
1
+ import { C as ForeignKeyInput, r as SqlStorage, w as ReferentialAction } from "./sql-storage-CV7Tc9Vh.mjs";
2
2
  import { Contract } from "@prisma-next/contract/types";
3
3
  import { Type } from "arktype";
4
4
  import * as _$arktype_internal_variants_object_ts0 from "arktype/internal/variants/object.ts";
@@ -17,7 +17,7 @@ declare const ColumnDefaultLiteralSchema: _$arktype_internal_variants_object_ts0
17
17
  declare const ColumnDefaultFunctionSchema: _$arktype_internal_variants_object_ts0.ObjectType<ColumnDefaultFunction, {}>;
18
18
  declare const ColumnDefaultSchema: _$arktype_internal_variants_object_ts0.ObjectType<ColumnDefaultLiteral | ColumnDefaultFunction, {}>;
19
19
  /**
20
- * Postgres native enum entry under `storage.namespaces[namespaceId].enum[name]`.
20
+ * Postgres native enum entry under `storage.namespaces[namespaceId].entries.type[name]`.
21
21
  * Document-scoped `storage.types` carries codec aliases only
22
22
  * (`DocumentScopedStorageTypeSchema`).
23
23
  */
@@ -45,7 +45,7 @@ declare const ForeignKeySchema: _$arktype_internal_variants_object_ts0.ObjectTyp
45
45
  * Builds the per-namespace entry schema for `storage.namespaces[id]`.
46
46
  * Pack-contributed `validatorSchema` fragments — keyed by the
47
47
  * descriptor's `discriminator` — validate each entry by matching the
48
- * entry's `kind` field on the `'enum?'` slot.
48
+ * entry's `kind` field on the `'entries.type'` slot.
49
49
  */
50
50
  declare function createNamespaceEntrySchema(fragments?: ReadonlyMap<string, Type<unknown>>): Type<unknown>;
51
51
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"validators.d.mts","names":[],"sources":["../src/validators.ts"],"mappings":";;;;;;;KA2BK,oBAAA;EAAA,SACM,IAAA;EAAA,SACA,KAAA,8BAAmC,MAAM;AAAA;AAAA,KAE/C,qBAAA;EAAA,SAAmC,IAAA;EAAA,SAA2B,UAAU;AAAA;AAAA,cAShE,0BAAA,EAA0B,sCAAA,CAAA,UAAA,CAAA,oBAAA;AAAA,cAK1B,2BAAA,EAA2B,sCAAA,CAAA,UAAA,CAAA,qBAAA;AAAA,cAK3B,mBAAA,EAAmB,sCAAA,CAAA,UAAA,CAAA,oBAAA,GAAA,qBAAA;;AArBoB;AAAA;;;cAsF9C,sBAAA,EAMJ,sCAAA,CAN0B,UAAA;;;;;;;cAqBf,WAAA,EAKX,sCAAA,CALsB,UAAA;;;;YAKtB,MAAA;AAAA;AAAA,cAEW,yBAAA,EAK8B,sCAAA,CALL,UAAA;;;;;cAOzB,uBAAA,EAAuB,sCAAA,CAAA,UAAA,CAAA,iBAAA;AAAA,cAIvB,gBAAA,EAAgB,sCAAA,CAAA,UAAA,CAAA,eAAA;;;;;;;iBA0Fb,0BAAA,CACd,SAAA,GAAY,WAAA,SAAoB,IAAA,aAC/B,IAAA;;;;AA9GH;;;iBAgIgB,sBAAA,CACd,SAAA,GAAY,WAAA,SAAoB,IAAA,aAC/B,IAAA;;;;;;iBAgJa,uBAAA,CACd,SAAA,GAAY,WAAA,SAAoB,IAAA,aAC/B,IAAA;;;AA7QH;;;;;iBAsTgB,eAAA,CAAgB,KAAA,YAAiB,UAAU;AAAA,iBA4B3C,aAAA,CAAc,KAAc;;;;AA3U5C;;;;AAAoC;AAIpC;;;;AAA6B;iBAqYb,wBAAA,CAAyB,OAAmB,EAAV,UAAU;;;;;;;iBAsJ5C,8BAAA,CAA+B,QAAA,EAAU,QAAQ,CAAC,UAAA;;;;;;AA/b3D;iBAmfS,6BAAA,CAA8B,QAAA,EAAU,QAAQ,CAAC,UAAA;AAAA,UA6FhD,+BAAA;;;;;;;;;WASN,cAAA,GAAiB,IAAI;AAAA;;AArkBzB;AAgJP;;;;;;iBAgcgB,wBAAA,WAAmC,QAAA,CAAS,UAAA,EAAA,CAC1D,KAAA,WACA,OAAA,GAAU,+BAAA,GACT,CAAA"}
1
+ {"version":3,"file":"validators.d.mts","names":[],"sources":["../src/validators.ts"],"mappings":";;;;;;;KA2BK,oBAAA;EAAA,SACM,IAAA;EAAA,SACA,KAAA,8BAAmC,MAAM;AAAA;AAAA,KAE/C,qBAAA;EAAA,SAAmC,IAAA;EAAA,SAA2B,UAAU;AAAA;AAAA,cAShE,0BAAA,EAA0B,sCAAA,CAAA,UAAA,CAAA,oBAAA;AAAA,cAK1B,2BAAA,EAA2B,sCAAA,CAAA,UAAA,CAAA,qBAAA;AAAA,cAK3B,mBAAA,EAAmB,sCAAA,CAAA,UAAA,CAAA,oBAAA,GAAA,qBAAA;;;AArBoB;AAAA;;cAsF9C,sBAAA,EAMJ,sCAAA,CAN0B,UAAA;;;;;;;cAqBf,WAAA,EAKX,sCAAA,CALsB,UAAA;;;;YAKtB,MAAA;AAAA;AAAA,cAEW,yBAAA,EAK8B,sCAAA,CALL,UAAA;;;;;cAOzB,uBAAA,EAAuB,sCAAA,CAAA,UAAA,CAAA,iBAAA;AAAA,cAIvB,gBAAA,EAAgB,sCAAA,CAAA,UAAA,CAAA,eAAA;;;;;;;iBA0Fb,0BAAA,CACd,SAAA,GAAY,WAAA,SAAoB,IAAA,aAC/B,IAAA;;;;;AA9GH;;iBAmIgB,sBAAA,CACd,SAAA,GAAY,WAAA,SAAoB,IAAA,aAC/B,IAAA;;;;;;iBAyIa,uBAAA,CACd,SAAA,GAAY,WAAA,SAAoB,IAAA,aAC/B,IAAA;;;;AAzQH;;;;iBAkTgB,eAAA,CAAgB,KAAA,YAAiB,UAAU;AAAA,iBA4B3C,aAAA,CAAc,KAAc;;;;;AAvU5C;;;;AAAoC;AAIpC;;;;iBAiYgB,wBAAA,CAAyB,OAAmB,EAAV,UAAU;AAvS5D;;;;;;AAAA,iBA6bgB,8BAAA,CAA+B,QAAA,EAAU,QAAQ,CAAC,UAAA;;;;;;;iBA2DlD,6BAAA,CAA8B,QAAA,EAAU,QAAQ,CAAC,UAAA;AAAA,UA6FhD,+BAAA;EA9jBqB;;;;;;;;EAAA,SAukB3B,cAAA,GAAiB,IAAI;AAAA;;;AArkBzB;AAyIP;;;;;iBAucgB,wBAAA,WAAmC,QAAA,CAAS,UAAA,EAAA,CAC1D,KAAA,WACA,OAAA,GAAU,+BAAA,GACT,CAAA"}
@@ -1,4 +1,4 @@
1
- import { b as SqlUnboundNamespace, d as buildSqlNamespaceMap, i as SqlStorage } from "./types-YQrDHy-b.mjs";
1
+ import { f as buildSqlNamespaceMap, i as SqlStorage, x as SqlUnboundNamespace } from "./types-ByD-iN24.mjs";
2
2
  import { UNBOUND_NAMESPACE_ID } from "@prisma-next/framework-components/ir";
3
3
  import { blindCast } from "@prisma-next/utils/casts";
4
4
  import { CrossReferenceSchema } from "@prisma-next/contract/types";
@@ -72,7 +72,7 @@ const StorageTypeInstanceSchema = type.declare().type({
72
72
  typeParams: "Record<string, unknown>"
73
73
  });
74
74
  /**
75
- * Postgres native enum entry under `storage.namespaces[namespaceId].enum[name]`.
75
+ * Postgres native enum entry under `storage.namespaces[namespaceId].entries.type[name]`.
76
76
  * Document-scoped `storage.types` carries codec aliases only
77
77
  * (`DocumentScopedStorageTypeSchema`).
78
78
  */
@@ -169,15 +169,18 @@ function namespaceSlotEntrySchema(fallback, fallbackKind, fragments) {
169
169
  * Builds the per-namespace entry schema for `storage.namespaces[id]`.
170
170
  * Pack-contributed `validatorSchema` fragments — keyed by the
171
171
  * descriptor's `discriminator` — validate each entry by matching the
172
- * entry's `kind` field on the `'enum?'` slot.
172
+ * entry's `kind` field on the `'entries.type'` slot.
173
173
  */
174
174
  function createNamespaceEntrySchema(fragments) {
175
175
  return type({
176
176
  "+": "reject",
177
177
  id: "string",
178
178
  "kind?": "string",
179
- "tables?": type({ "[string]": StorageTableSchema }),
180
- "enum?": type({ "[string]": namespaceSlotEntrySchema(PostgresEnumTypeSchema, "postgres-enum", fragments) })
179
+ entries: type({
180
+ "+": "reject",
181
+ "table?": type({ "[string]": StorageTableSchema }),
182
+ "type?": type({ "[string]": namespaceSlotEntrySchema(PostgresEnumTypeSchema, "postgres-enum", fragments) })
183
+ })
181
184
  });
182
185
  }
183
186
  /**
@@ -197,18 +200,12 @@ function createSqlStorageSchema(fragments) {
197
200
  }
198
201
  const StorageSchema = createSqlStorageSchema();
199
202
  function eachStorageTable(storage) {
200
- return Object.entries(storage.namespaces).flatMap(([namespaceId, ns]) => Object.entries(ns.tables ?? {}).map(([tableName, table]) => ({
203
+ return Object.entries(storage.namespaces).flatMap(([namespaceId, ns]) => Object.entries(ns.entries.table).map(([tableName, table]) => ({
201
204
  namespaceId,
202
205
  tableName,
203
206
  table
204
207
  })));
205
208
  }
206
- function findStorageTableByTableName(storage, tableName) {
207
- for (const ns of Object.values(storage.namespaces)) {
208
- const t = ns.tables?.[tableName];
209
- if (t !== void 0) return t;
210
- }
211
- }
212
209
  function isPlainRecord(value) {
213
210
  return typeof value === "object" && value !== null && !Array.isArray(value);
214
211
  }
@@ -245,6 +242,7 @@ const ModelFieldSchema = type({
245
242
  });
246
243
  const ModelStorageSchema = type({
247
244
  table: "string",
245
+ namespaceId: "string",
248
246
  fields: type({ "[string]": type({
249
247
  column: "string",
250
248
  "codecId?": "string",
@@ -293,7 +291,7 @@ function createSqlContractSchema(fragments) {
293
291
  "capabilities?": "Record<string, Record<string, boolean>>",
294
292
  "extensionPacks?": "Record<string, unknown>",
295
293
  "meta?": ContractMetaSchema,
296
- "defaultControl?": ControlPolicySchema,
294
+ "defaultControlPolicy?": ControlPolicySchema,
297
295
  "roots?": type({ "[string]": CrossReferenceSchema }),
298
296
  domain: type({ namespaces: type({ "[string]": type({
299
297
  models: type({ "[string]": ModelSchema }),
@@ -448,9 +446,11 @@ function validateModelStorageReferences(contract) {
448
446
  const models = namespace.models;
449
447
  for (const [modelName, model] of Object.entries(models)) {
450
448
  const qualifiedName = `${namespaceId}:${modelName}`;
449
+ const storageNamespaceId = model.storage.namespaceId;
450
+ if (storageNamespaceId !== namespaceId) throw new ContractValidationError(`Model "${qualifiedName}" storage.namespaceId "${storageNamespaceId}" does not match domain namespace "${namespaceId}"`, "storage");
451
451
  const storageTable = model.storage.table;
452
- const rawTable = findStorageTableByTableName(contract.storage, storageTable);
453
- if (rawTable === void 0) throw new ContractValidationError(`Model "${qualifiedName}" references non-existent table "${storageTable}"`, "storage");
452
+ const rawTable = contract.storage.namespaces[storageNamespaceId]?.entries.table[storageTable];
453
+ if (rawTable === void 0) throw new ContractValidationError(`Model "${qualifiedName}" references non-existent table "${storageNamespaceId}.${storageTable}"`, "storage");
454
454
  const table = rawTable;
455
455
  const columnNames = new Set(Object.keys(table.columns));
456
456
  for (const [fieldName, field] of Object.entries(model.storage.fields)) if (!columnNames.has(field.column)) throw new ContractValidationError(`Model "${qualifiedName}" field "${fieldName}" references non-existent column "${field.column}" in table "${storageTable}"`, "storage");
@@ -485,7 +485,7 @@ function validateSqlStorageConsistency(contract) {
485
485
  for (const fk of table.foreignKeys) {
486
486
  if (fk.source.namespaceId !== namespaceId || fk.source.tableName !== tableName) throw new ContractValidationError(`Namespace "${namespaceId}" table "${tableName}" contains foreignKey with mismatched source coordinates (${fk.source.namespaceId}.${fk.source.tableName})`, "storage");
487
487
  for (const colName of fk.source.columns) if (!columnNames.has(colName)) throw new ContractValidationError(`Namespace "${namespaceId}" table "${tableName}" foreignKey references non-existent column "${colName}"`, "storage");
488
- const referencedRaw = contract.storage.namespaces[fk.target.namespaceId]?.tables?.[fk.target.tableName];
488
+ const referencedRaw = contract.storage.namespaces[fk.target.namespaceId]?.entries.table[fk.target.tableName];
489
489
  if (referencedRaw === void 0) throw new ContractValidationError(`Namespace "${namespaceId}" table "${tableName}" foreignKey references non-existent table "${fk.target.namespaceId}.${fk.target.tableName}"`, "storage");
490
490
  const referencedColumnNames = new Set(Object.keys(referencedRaw.columns));
491
491
  for (const colName of fk.target.columns) if (!referencedColumnNames.has(colName)) throw new ContractValidationError(`Namespace "${namespaceId}" table "${tableName}" foreignKey references non-existent column "${colName}" in table "${fk.target.tableName}"`, "storage");