@prisma-next/framework-components 0.5.0-dev.30 → 0.5.0-dev.32

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.
package/README.md CHANGED
@@ -67,6 +67,23 @@ Aborts surface to the caller as `RUNTIME.ABORTED` with `details.phase ∈ { 'enc
67
67
 
68
68
  See [ADR 207 — Codec call context: per-query `AbortSignal` and column metadata](../../../../docs/architecture%20docs/adrs/ADR%20207%20-%20Codec%20call%20context%20per-query%20AbortSignal%20and%20column%20metadata.md) for the full design.
69
69
 
70
+ ## Higher-order codecs (`CodecDescriptor`, `CodecInstanceContext`, `synthesizeNonParameterizedDescriptor`)
71
+
72
+ Codec metadata, parameterized-codec registration, and runtime materialization live on a unified `CodecDescriptor<P>`:
73
+
74
+ ```ts
75
+ import type { CodecDescriptor, CodecInstanceContext } from '@prisma-next/framework-components/codec';
76
+ import { synthesizeNonParameterizedDescriptor, voidParamsSchema } from '@prisma-next/framework-components/codec';
77
+ ```
78
+
79
+ - `CodecDescriptor<P = void>` carries `codecId`, `traits`, `targetTypes`, `meta`, `paramsSchema: StandardSchemaV1<P>`, optional `renderOutputType`, and a curried `factory: (P) => (CodecInstanceContext) => Codec`. Non-parameterized codecs use `P = void` and a constant factory; parameterized codecs use a non-empty `P` (e.g. `{ length: number }` for pgvector).
80
+ - `CodecInstanceContext` (family-agnostic, `{ name }` only) is supplied by the runtime when materializing a per-instance codec. Pack authors close over it inside the factory; they never construct it. This is the **per-materialization** context, sibling to the **per-call** `CodecCallContext` documented above. Family-specific extensions augment it — the SQL family ships `SqlCodecInstanceContext extends CodecInstanceContext` in `@prisma-next/sql-relational-core/ast`, adding `usedAt: ReadonlyArray<{ table; column }>` for SQL-domain codecs that need column-set metadata.
81
+ - `synthesizeNonParameterizedDescriptor(codec)` wraps an existing `Codec` (with its async `encode`/`decode` per ADR 204) into a `CodecDescriptor<void>` whose constant factory returns the same shared codec instance for every column. The synthesis bridge keeps non-parameterized codec contributors on the legacy `codecs:` slot while the unified descriptor map remains the single read source for codec-id-keyed metadata.
82
+
83
+ `paramsSchema` is typed as Standard Schema (`StandardSchemaV1<P>`), not arktype-specific. arktype `Type`s satisfy the shape via their `~standard` getter, so existing arktype-typed descriptors satisfy the new shape transparently while `framework-components` itself takes no dependency on arktype.
84
+
85
+ See [ADR 208 — Higher-order codecs for parameterized types](../../../../../docs/architecture%20docs/adrs/ADR%20208%20-%20Higher-order%20codecs%20for%20parameterized%20types.md) for the full design.
86
+
70
87
  ## Why SPI types live here (dependency inversion)
71
88
 
72
89
  This package sits in the **core** layer — below the tooling layer where family-specific emitters and control implementations live. SPI interfaces like `EmissionSpi` define the contract between framework orchestration code (control-plane emission, CLI) and family-specific implementations (SQL emitter, Mongo emitter).
@@ -0,0 +1,207 @@
1
+ import { JsonValue } from "@prisma-next/contract/types";
2
+ import { StandardSchemaV1 } from "@standard-schema/spec";
3
+
4
+ //#region src/shared/codec-types.d.ts
5
+ type CodecTrait = 'equality' | 'order' | 'boolean' | 'numeric' | 'textual'
6
+ /**
7
+ * The codec carries a per-instance `validate(value: unknown) =>
8
+ * JsonSchemaValidationResult` function on the resolved codec object that
9
+ * the framework's `JsonSchemaValidatorRegistry` consults at runtime. The
10
+ * trait gates the `extractValidator` cast from structurally-typed
11
+ * `unknown` to a typed validator view.
12
+ *
13
+ * Retirement target. The unified `CodecDescriptor` model moves
14
+ * validation into the resolved codec's `decode` body; the parallel
15
+ * `JsonSchemaValidatorRegistry` (and this trait alongside it) retires
16
+ * under TML-2357 (T3.5.12). Per-library JSON extensions like
17
+ * `@prisma-next/extension-arktype-json` already follow the new pattern.
18
+ */ | 'json-validator';
19
+ /**
20
+ * Per-call context the runtime threads to every `codec.encode` /
21
+ * `codec.decode` invocation for a single `runtime.execute()` call.
22
+ *
23
+ * The framework-level shape is family-agnostic and carries one field:
24
+ *
25
+ * - `signal?: AbortSignal` — per-query cancellation. The runtime returns
26
+ * a `RUNTIME.ABORTED` envelope when the signal aborts; codec authors
27
+ * who forward `signal` to their underlying SDK get true cancellation
28
+ * of in-flight network calls.
29
+ *
30
+ * Family layers extend this base with their own shape-of-call metadata:
31
+ * the SQL family adds `column?: SqlColumnRef` via `SqlCodecCallContext`
32
+ * (see `@prisma-next/sql-relational-core`). Mongo currently uses this
33
+ * framework type unchanged. Column metadata is intentionally **not** on
34
+ * the framework type — it is a SQL-family concept rooted in SQL's
35
+ * `(table, column)` addressing model and would not generalise to other
36
+ * families.
37
+ *
38
+ * The interface is named explicitly (not inlined) so future framework
39
+ * fields and family extensions can land additively without breaking
40
+ * codec author signatures.
41
+ */
42
+ interface CodecCallContext {
43
+ readonly signal?: AbortSignal;
44
+ }
45
+ /**
46
+ * A codec is the contract between an application value and its on-wire and
47
+ * on-contract-disk representations.
48
+ *
49
+ * The author's mental model is two JS-side types — `TInput` (the
50
+ * application JS type) and `TWire` (the database driver wire format) —
51
+ * plus `JsonValue` for build-time contract artifacts. The codec translates
52
+ * `TInput` to `TWire` on writes and back on reads, and to/from `JsonValue`
53
+ * during contract emission and loading.
54
+ *
55
+ * Three representations participate:
56
+ * - **Input** (`TInput`): the JS type at the application boundary.
57
+ * - **Wire** (`TWire`): the format exchanged with the database driver.
58
+ * - **JSON** (`JsonValue`): a JSON-safe form used in contract artifacts.
59
+ *
60
+ * Codec methods split into two groups:
61
+ *
62
+ * - **Query-time** methods (`encode`, `decode`) run per row/parameter at the
63
+ * IO boundary; they are required and Promise-returning. The per-family
64
+ * codec factory accepts sync or async author functions and lifts sync
65
+ * ones to Promise-shaped methods automatically.
66
+ * - **Build-time** methods (`encodeJson`, `decodeJson`, `renderOutputType`)
67
+ * run when the contract is serialized, loaded, or when client types are
68
+ * emitted. They stay synchronous so contract validation and client
69
+ * construction are synchronous.
70
+ *
71
+ * Target-family codec interfaces extend this base with target-shaped
72
+ * metadata.
73
+ */
74
+ interface Codec<Id extends string = string, TTraits extends readonly CodecTrait[] = readonly CodecTrait[], TWire = unknown, TInput = unknown> {
75
+ /** Unique codec identifier in `namespace/name@version` format (e.g. `pg/timestamptz@1`). */
76
+ readonly id: Id;
77
+ /** Database-native type names this codec handles (e.g. `['timestamptz']`). */
78
+ readonly targetTypes: readonly string[];
79
+ /** Semantic traits for operator gating (e.g. equality, order, numeric). */
80
+ readonly traits?: TTraits;
81
+ /** Converts a JS value to the wire format expected by the database driver. Always Promise-returning at the boundary. The {@link CodecCallContext} is supplied by the runtime on every call (allocated once per `runtime.execute()`); family layers may narrow the ctx to extend it (e.g. SQL adds `column`). Author-side single-arg `(value) => …` functions remain legal via TypeScript's bivariance for trailing parameters. */
82
+ encode(value: TInput, ctx: CodecCallContext): Promise<TWire>;
83
+ /** Converts a wire value from the database driver into the JS application type. Always Promise-returning at the boundary. The {@link CodecCallContext} is supplied by the runtime on every call (allocated once per `runtime.execute()`); family layers may narrow the ctx to extend it (e.g. SQL adds `column`). Author-side single-arg `(wire) => …` functions remain legal via TypeScript's bivariance for trailing parameters. */
84
+ decode(wire: TWire, ctx: CodecCallContext): Promise<TInput>;
85
+ /** Converts a JS value to a JSON-safe representation for contract serialization. Synchronous; called during contract emission. */
86
+ encodeJson(value: TInput): JsonValue;
87
+ /** Converts a JSON representation back to the JS input type. Synchronous; called during contract loading via `validateContract`. */
88
+ decodeJson(json: JsonValue): TInput;
89
+ /** Produces the TypeScript output type expression for a field given its `typeParams`. Synchronous; used during contract.d.ts emission. */
90
+ renderOutputType?(typeParams: Record<string, unknown>): string | undefined;
91
+ }
92
+ interface CodecLookup {
93
+ get(id: string): Codec | undefined;
94
+ }
95
+ declare const emptyCodecLookup: CodecLookup;
96
+ /**
97
+ * Family-agnostic per-instance context supplied by the framework when
98
+ * applying a higher-order codec factory. Allows stateful codecs (e.g.
99
+ * column-scoped encryption) to derive per-instance state from the
100
+ * materialization site.
101
+ *
102
+ * - `name` — the family-agnostic instance identity. For SQL, the runtime
103
+ * populates this as the `storage.types` instance name (e.g.
104
+ * `Embedding1536`) for typeRef-shaped columns, the synthesized
105
+ * anonymous instance name (`<anon:Document.embedding>`) for inline-
106
+ * `typeParams` columns, or a shared sentinel (`<shared:pg/text@1>`)
107
+ * for non-parameterized codec ids. Other families pick the analogous
108
+ * identity for their materialization sites.
109
+ *
110
+ * Family-specific extensions (e.g. {@link import('@prisma-next/sql-relational-core/ast').SqlCodecInstanceContext}
111
+ * in the SQL layer) augment this base with domain-shaped column-set
112
+ * metadata. Codec authors target the base when they don't read family-
113
+ * specific metadata; they target the family extension when they do.
114
+ */
115
+ interface CodecInstanceContext {
116
+ readonly name: string;
117
+ }
118
+ /**
119
+ * Family-agnostic codec metadata. Family-specific extensions augment the
120
+ * base `db.<family>.<target>` block with native-type information; the base
121
+ * shape is an empty object so non-relational codecs can carry no metadata.
122
+ */
123
+ interface CodecMeta {
124
+ readonly db?: Record<string, unknown>;
125
+ }
126
+ /**
127
+ * Unified codec descriptor. Every codec in the framework registers through
128
+ * this shape — non-parameterized codecs use `P = void` and a constant
129
+ * factory that returns the same shared codec instance for every column;
130
+ * parameterized codecs use a non-empty `P` and a curried higher-order
131
+ * factory that returns a per-instance codec.
132
+ *
133
+ * The descriptor is the codec-id-keyed source of truth for static metadata
134
+ * (`traits`, `targetTypes`, `meta`) and registration concerns
135
+ * (`paramsSchema` for JSON-boundary validation; optional `renderOutputType`
136
+ * for the `contract.d.ts` emit path). The runtime `Codec` instance returned
137
+ * by `factory(params)(ctx)` carries only the conversion behavior.
138
+ *
139
+ * Whether a codec id "is parameterized" stops being a registration-time
140
+ * distinction — it's a property of `P` on the descriptor. The descriptor
141
+ * map indexes every descriptor by `codecId`; both `descriptorFor(codecId)`
142
+ * and `forColumn(table, column)` resolve through the same map without
143
+ * branching on parameterization.
144
+ *
145
+ * @template P - The shape of the params accepted by the factory (`void` for
146
+ * non-parameterized codecs; a record like `{ length: number }` for
147
+ * parameterized codecs).
148
+ *
149
+ * Codec-registry-unification project § Decision.
150
+ */
151
+ interface CodecDescriptor<P = void> {
152
+ /** The codec ID this descriptor applies to (e.g. `pg/vector@1`, `pg/text@1`). */
153
+ readonly codecId: string;
154
+ /** Semantic traits for operator gating (e.g. equality, order, numeric). */
155
+ readonly traits: readonly CodecTrait[];
156
+ /** Database-native type names this codec handles (e.g. `['timestamptz']`). */
157
+ readonly targetTypes: readonly string[];
158
+ /** Optional family-specific metadata (e.g. SQL-side `db.sql.postgres.nativeType`). */
159
+ readonly meta?: CodecMeta;
160
+ /**
161
+ * Standard Schema validator for the factory's params. Validates JSON-
162
+ * sourced params at the contract boundary (PSL → IR; `contract.json` →
163
+ * runtime). For non-parameterized codecs (`P = void`), the schema
164
+ * validates `void`/`undefined` — the framework supplies no params at the
165
+ * call boundary.
166
+ */
167
+ readonly paramsSchema: StandardSchemaV1<P>;
168
+ /**
169
+ * Emit-path string renderer for `contract.d.ts`. Returns the TypeScript
170
+ * output type expression for given params (e.g. `Vector<1536>`).
171
+ * Optional; absent renderers cause the emitter to fall back to the
172
+ * codec's base output type. Non-parameterized codecs typically omit it.
173
+ */
174
+ readonly renderOutputType?: (params: P) => string | undefined;
175
+ /**
176
+ * The curried higher-order codec. For non-parameterized codecs, the
177
+ * factory is constant — every call returns the same shared codec
178
+ * instance. For parameterized codecs, the factory is called once per
179
+ * `storage.types` instance (or once per inline-`typeParams` column),
180
+ * with `ctx` carrying the column set the resulting codec serves.
181
+ */
182
+ readonly factory: (params: P) => (ctx: CodecInstanceContext) => Codec;
183
+ }
184
+ /**
185
+ * Standard Schema validator for `void` params. Accepts only `undefined`
186
+ * (or absent input); rejects any other value so a contract that tries to
187
+ * thread `typeParams` through a non-parameterized codec id fails fast at
188
+ * the JSON boundary instead of silently coercing the value away. Used by
189
+ * the framework-supplied non-parameterized descriptor synthesizer.
190
+ */
191
+ declare const voidParamsSchema: StandardSchemaV1<void>;
192
+ /**
193
+ * Synthesize a `CodecDescriptor<void>` for a non-parameterized codec
194
+ * runtime instance. The factory is constant — every call returns the same
195
+ * shared codec instance — so columns sharing this codec id share one
196
+ * resolved codec.
197
+ *
198
+ * Codec-registry-unification spec § Decision (Case T — non-parameterized
199
+ * text codec). This is the bridge while non-parameterized codec
200
+ * contributors still register through the legacy `codecs:` slot; once they
201
+ * migrate to ship descriptors directly (TML-2357 T3.5.3), this synthesis
202
+ * steps aside.
203
+ */
204
+ declare function synthesizeNonParameterizedDescriptor(codec: Codec): CodecDescriptor<void>;
205
+ //#endregion
206
+ export { CodecLookup as a, emptyCodecLookup as c, CodecInstanceContext as i, synthesizeNonParameterizedDescriptor as l, CodecCallContext as n, CodecMeta as o, CodecDescriptor as r, CodecTrait as s, Codec as t, voidParamsSchema as u };
207
+ //# sourceMappingURL=codec-types-CB0jWeHU.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"codec-types-CB0jWeHU.d.mts","names":[],"sources":["../src/shared/codec-types.ts"],"sourcesContent":[],"mappings":";;;;KAGY,UAAA;;AAAZ;AA4CA;AAiCA;;;;;;;;;MAe2B,gBAAA;;;;;;;;;AAS3B;AAIA;AAuBA;AASA;AA6BA;;;;;;;;;;AAyCA;AA6BgB,UAhMC,gBAAA,CAgMD;oBA/LI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAgCH,2DAEU,wBAAwB;;eAKpC;;;;oBAIK;;gBAEJ,aAAa,mBAAmB,QAAQ;;eAEzC,YAAY,mBAAmB,QAAQ;;oBAElC,SAAS;;mBAEV,YAAY;;gCAEC;;UAGf,WAAA;mBACE;;cAGN,kBAAkB;;;;;;;;;;;;;;;;;;;;UAuBd,oBAAA;;;;;;;;UASA,SAAA;gBACD;;;;;;;;;;;;;;;;;;;;;;;;;;;UA4BC;;;;4BAIW;;;;kBAIV;;;;;;;;yBAQO,iBAAiB;;;;;;;uCAOH;;;;;;;;6BAQV,YAAY,yBAAyB;;;;;;;;;cAUrD,kBAAkB;;;;;;;;;;;;;iBA6Bf,oCAAA,QAA4C,QAAQ"}
package/dist/codec.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- import { a as emptyCodecLookup, i as CodecTrait, n as CodecCallContext, r as CodecLookup, t as Codec } from "./codec-types-DXv-ROhF.mjs";
2
- export { type Codec, type CodecCallContext, type CodecLookup, type CodecTrait, emptyCodecLookup };
1
+ import { a as CodecLookup, c as emptyCodecLookup, i as CodecInstanceContext, l as synthesizeNonParameterizedDescriptor, n as CodecCallContext, o as CodecMeta, r as CodecDescriptor, s as CodecTrait, t as Codec, u as voidParamsSchema } from "./codec-types-CB0jWeHU.mjs";
2
+ export { type Codec, type CodecCallContext, type CodecDescriptor, type CodecInstanceContext, type CodecLookup, type CodecMeta, type CodecTrait, emptyCodecLookup, synthesizeNonParameterizedDescriptor, voidParamsSchema };
package/dist/codec.mjs CHANGED
@@ -1,6 +1,42 @@
1
1
  //#region src/shared/codec-types.ts
2
2
  const emptyCodecLookup = { get: () => void 0 };
3
+ /**
4
+ * Standard Schema validator for `void` params. Accepts only `undefined`
5
+ * (or absent input); rejects any other value so a contract that tries to
6
+ * thread `typeParams` through a non-parameterized codec id fails fast at
7
+ * the JSON boundary instead of silently coercing the value away. Used by
8
+ * the framework-supplied non-parameterized descriptor synthesizer.
9
+ */
10
+ const voidParamsSchema = { "~standard": {
11
+ version: 1,
12
+ vendor: "prisma-next",
13
+ validate: (input) => input === void 0 ? { value: void 0 } : { issues: [{ message: "unexpected typeParams for non-parameterized codec (void params expected)" }] }
14
+ } };
15
+ /**
16
+ * Synthesize a `CodecDescriptor<void>` for a non-parameterized codec
17
+ * runtime instance. The factory is constant — every call returns the same
18
+ * shared codec instance — so columns sharing this codec id share one
19
+ * resolved codec.
20
+ *
21
+ * Codec-registry-unification spec § Decision (Case T — non-parameterized
22
+ * text codec). This is the bridge while non-parameterized codec
23
+ * contributors still register through the legacy `codecs:` slot; once they
24
+ * migrate to ship descriptors directly (TML-2357 T3.5.3), this synthesis
25
+ * steps aside.
26
+ */
27
+ function synthesizeNonParameterizedDescriptor(codec) {
28
+ const sharedFactory = () => () => codec;
29
+ const codecMeta = codec.meta;
30
+ return {
31
+ codecId: codec.id,
32
+ traits: codec.traits ?? [],
33
+ targetTypes: codec.targetTypes,
34
+ paramsSchema: voidParamsSchema,
35
+ factory: sharedFactory,
36
+ ...codecMeta !== void 0 ? { meta: codecMeta } : {}
37
+ };
38
+ }
3
39
 
4
40
  //#endregion
5
- export { emptyCodecLookup };
41
+ export { emptyCodecLookup, synthesizeNonParameterizedDescriptor, voidParamsSchema };
6
42
  //# sourceMappingURL=codec.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"codec.mjs","names":["emptyCodecLookup: CodecLookup"],"sources":["../src/shared/codec-types.ts"],"sourcesContent":["import type { JsonValue } from '@prisma-next/contract/types';\n\nexport type CodecTrait = 'equality' | 'order' | 'boolean' | 'numeric' | 'textual';\n\n/**\n * Per-call context the runtime threads to every `codec.encode` /\n * `codec.decode` invocation for a single `runtime.execute()` call.\n *\n * The framework-level shape is family-agnostic and carries one field:\n *\n * - `signal?: AbortSignal` — per-query cancellation. The runtime returns\n * a `RUNTIME.ABORTED` envelope when the signal aborts; codec authors\n * who forward `signal` to their underlying SDK get true cancellation\n * of in-flight network calls.\n *\n * Family layers extend this base with their own shape-of-call metadata:\n * the SQL family adds `column?: SqlColumnRef` via `SqlCodecCallContext`\n * (see `@prisma-next/sql-relational-core`). Mongo currently uses this\n * framework type unchanged. Column metadata is intentionally **not** on\n * the framework type — it is a SQL-family concept rooted in SQL's\n * `(table, column)` addressing model and would not generalise to other\n * families.\n *\n * The interface is named explicitly (not inlined) so future framework\n * fields and family extensions can land additively without breaking\n * codec author signatures.\n */\nexport interface CodecCallContext {\n readonly signal?: AbortSignal;\n}\n\n/**\n * A codec is the contract between an application value and its on-wire and\n * on-contract-disk representations.\n *\n * The author's mental model is two JS-side types — `TInput` (the\n * application JS type) and `TWire` (the database driver wire format) —\n * plus `JsonValue` for build-time contract artifacts. The codec translates\n * `TInput` to `TWire` on writes and back on reads, and to/from `JsonValue`\n * during contract emission and loading.\n *\n * Three representations participate:\n * - **Input** (`TInput`): the JS type at the application boundary.\n * - **Wire** (`TWire`): the format exchanged with the database driver.\n * - **JSON** (`JsonValue`): a JSON-safe form used in contract artifacts.\n *\n * Codec methods split into two groups:\n *\n * - **Query-time** methods (`encode`, `decode`) run per row/parameter at the\n * IO boundary; they are required and Promise-returning. The per-family\n * codec factory accepts sync or async author functions and lifts sync\n * ones to Promise-shaped methods automatically.\n * - **Build-time** methods (`encodeJson`, `decodeJson`, `renderOutputType`)\n * run when the contract is serialized, loaded, or when client types are\n * emitted. They stay synchronous so contract validation and client\n * construction are synchronous.\n *\n * Target-family codec interfaces extend this base with target-shaped\n * metadata.\n */\nexport interface Codec<\n Id extends string = string,\n TTraits extends readonly CodecTrait[] = readonly CodecTrait[],\n TWire = unknown,\n TInput = unknown,\n> {\n /** Unique codec identifier in `namespace/name@version` format (e.g. `pg/timestamptz@1`). */\n readonly id: Id;\n /** Database-native type names this codec handles (e.g. `['timestamptz']`). */\n readonly targetTypes: readonly string[];\n /** Semantic traits for operator gating (e.g. equality, order, numeric). */\n readonly traits?: TTraits;\n /** Converts a JS value to the wire format expected by the database driver. Always Promise-returning at the boundary. The {@link CodecCallContext} is supplied by the runtime on every call (allocated once per `runtime.execute()`); family layers may narrow the ctx to extend it (e.g. SQL adds `column`). Author-side single-arg `(value) => …` functions remain legal via TypeScript's bivariance for trailing parameters. */\n encode(value: TInput, ctx: CodecCallContext): Promise<TWire>;\n /** Converts a wire value from the database driver into the JS application type. Always Promise-returning at the boundary. The {@link CodecCallContext} is supplied by the runtime on every call (allocated once per `runtime.execute()`); family layers may narrow the ctx to extend it (e.g. SQL adds `column`). Author-side single-arg `(wire) => …` functions remain legal via TypeScript's bivariance for trailing parameters. */\n decode(wire: TWire, ctx: CodecCallContext): Promise<TInput>;\n /** Converts a JS value to a JSON-safe representation for contract serialization. Synchronous; called during contract emission. */\n encodeJson(value: TInput): JsonValue;\n /** Converts a JSON representation back to the JS input type. Synchronous; called during contract loading via `validateContract`. */\n decodeJson(json: JsonValue): TInput;\n /** Produces the TypeScript output type expression for a field given its `typeParams`. Synchronous; used during contract.d.ts emission. */\n renderOutputType?(typeParams: Record<string, unknown>): string | undefined;\n}\n\nexport interface CodecLookup {\n get(id: string): Codec | undefined;\n}\n\nexport const emptyCodecLookup: CodecLookup = {\n get: () => undefined,\n};\n"],"mappings":";AAwFA,MAAaA,mBAAgC,EAC3C,WAAW,QACZ"}
1
+ {"version":3,"file":"codec.mjs","names":["emptyCodecLookup: CodecLookup","voidParamsSchema: StandardSchemaV1<void>"],"sources":["../src/shared/codec-types.ts"],"sourcesContent":["import type { JsonValue } from '@prisma-next/contract/types';\nimport type { StandardSchemaV1 } from '@standard-schema/spec';\n\nexport type CodecTrait =\n | 'equality'\n | 'order'\n | 'boolean'\n | 'numeric'\n | 'textual'\n /**\n * The codec carries a per-instance `validate(value: unknown) =>\n * JsonSchemaValidationResult` function on the resolved codec object that\n * the framework's `JsonSchemaValidatorRegistry` consults at runtime. The\n * trait gates the `extractValidator` cast from structurally-typed\n * `unknown` to a typed validator view.\n *\n * Retirement target. The unified `CodecDescriptor` model moves\n * validation into the resolved codec's `decode` body; the parallel\n * `JsonSchemaValidatorRegistry` (and this trait alongside it) retires\n * under TML-2357 (T3.5.12). Per-library JSON extensions like\n * `@prisma-next/extension-arktype-json` already follow the new pattern.\n */\n | 'json-validator';\n\n/**\n * Per-call context the runtime threads to every `codec.encode` /\n * `codec.decode` invocation for a single `runtime.execute()` call.\n *\n * The framework-level shape is family-agnostic and carries one field:\n *\n * - `signal?: AbortSignal` — per-query cancellation. The runtime returns\n * a `RUNTIME.ABORTED` envelope when the signal aborts; codec authors\n * who forward `signal` to their underlying SDK get true cancellation\n * of in-flight network calls.\n *\n * Family layers extend this base with their own shape-of-call metadata:\n * the SQL family adds `column?: SqlColumnRef` via `SqlCodecCallContext`\n * (see `@prisma-next/sql-relational-core`). Mongo currently uses this\n * framework type unchanged. Column metadata is intentionally **not** on\n * the framework type — it is a SQL-family concept rooted in SQL's\n * `(table, column)` addressing model and would not generalise to other\n * families.\n *\n * The interface is named explicitly (not inlined) so future framework\n * fields and family extensions can land additively without breaking\n * codec author signatures.\n */\nexport interface CodecCallContext {\n readonly signal?: AbortSignal;\n}\n\n/**\n * A codec is the contract between an application value and its on-wire and\n * on-contract-disk representations.\n *\n * The author's mental model is two JS-side types — `TInput` (the\n * application JS type) and `TWire` (the database driver wire format) —\n * plus `JsonValue` for build-time contract artifacts. The codec translates\n * `TInput` to `TWire` on writes and back on reads, and to/from `JsonValue`\n * during contract emission and loading.\n *\n * Three representations participate:\n * - **Input** (`TInput`): the JS type at the application boundary.\n * - **Wire** (`TWire`): the format exchanged with the database driver.\n * - **JSON** (`JsonValue`): a JSON-safe form used in contract artifacts.\n *\n * Codec methods split into two groups:\n *\n * - **Query-time** methods (`encode`, `decode`) run per row/parameter at the\n * IO boundary; they are required and Promise-returning. The per-family\n * codec factory accepts sync or async author functions and lifts sync\n * ones to Promise-shaped methods automatically.\n * - **Build-time** methods (`encodeJson`, `decodeJson`, `renderOutputType`)\n * run when the contract is serialized, loaded, or when client types are\n * emitted. They stay synchronous so contract validation and client\n * construction are synchronous.\n *\n * Target-family codec interfaces extend this base with target-shaped\n * metadata.\n */\nexport interface Codec<\n Id extends string = string,\n TTraits extends readonly CodecTrait[] = readonly CodecTrait[],\n TWire = unknown,\n TInput = unknown,\n> {\n /** Unique codec identifier in `namespace/name@version` format (e.g. `pg/timestamptz@1`). */\n readonly id: Id;\n /** Database-native type names this codec handles (e.g. `['timestamptz']`). */\n readonly targetTypes: readonly string[];\n /** Semantic traits for operator gating (e.g. equality, order, numeric). */\n readonly traits?: TTraits;\n /** Converts a JS value to the wire format expected by the database driver. Always Promise-returning at the boundary. The {@link CodecCallContext} is supplied by the runtime on every call (allocated once per `runtime.execute()`); family layers may narrow the ctx to extend it (e.g. SQL adds `column`). Author-side single-arg `(value) => …` functions remain legal via TypeScript's bivariance for trailing parameters. */\n encode(value: TInput, ctx: CodecCallContext): Promise<TWire>;\n /** Converts a wire value from the database driver into the JS application type. Always Promise-returning at the boundary. The {@link CodecCallContext} is supplied by the runtime on every call (allocated once per `runtime.execute()`); family layers may narrow the ctx to extend it (e.g. SQL adds `column`). Author-side single-arg `(wire) => …` functions remain legal via TypeScript's bivariance for trailing parameters. */\n decode(wire: TWire, ctx: CodecCallContext): Promise<TInput>;\n /** Converts a JS value to a JSON-safe representation for contract serialization. Synchronous; called during contract emission. */\n encodeJson(value: TInput): JsonValue;\n /** Converts a JSON representation back to the JS input type. Synchronous; called during contract loading via `validateContract`. */\n decodeJson(json: JsonValue): TInput;\n /** Produces the TypeScript output type expression for a field given its `typeParams`. Synchronous; used during contract.d.ts emission. */\n renderOutputType?(typeParams: Record<string, unknown>): string | undefined;\n}\n\nexport interface CodecLookup {\n get(id: string): Codec | undefined;\n}\n\nexport const emptyCodecLookup: CodecLookup = {\n get: () => undefined,\n};\n\n/**\n * Family-agnostic per-instance context supplied by the framework when\n * applying a higher-order codec factory. Allows stateful codecs (e.g.\n * column-scoped encryption) to derive per-instance state from the\n * materialization site.\n *\n * - `name` — the family-agnostic instance identity. For SQL, the runtime\n * populates this as the `storage.types` instance name (e.g.\n * `Embedding1536`) for typeRef-shaped columns, the synthesized\n * anonymous instance name (`<anon:Document.embedding>`) for inline-\n * `typeParams` columns, or a shared sentinel (`<shared:pg/text@1>`)\n * for non-parameterized codec ids. Other families pick the analogous\n * identity for their materialization sites.\n *\n * Family-specific extensions (e.g. {@link import('@prisma-next/sql-relational-core/ast').SqlCodecInstanceContext}\n * in the SQL layer) augment this base with domain-shaped column-set\n * metadata. Codec authors target the base when they don't read family-\n * specific metadata; they target the family extension when they do.\n */\nexport interface CodecInstanceContext {\n readonly name: string;\n}\n\n/**\n * Family-agnostic codec metadata. Family-specific extensions augment the\n * base `db.<family>.<target>` block with native-type information; the base\n * shape is an empty object so non-relational codecs can carry no metadata.\n */\nexport interface CodecMeta {\n readonly db?: Record<string, unknown>;\n}\n\n/**\n * Unified codec descriptor. Every codec in the framework registers through\n * this shape — non-parameterized codecs use `P = void` and a constant\n * factory that returns the same shared codec instance for every column;\n * parameterized codecs use a non-empty `P` and a curried higher-order\n * factory that returns a per-instance codec.\n *\n * The descriptor is the codec-id-keyed source of truth for static metadata\n * (`traits`, `targetTypes`, `meta`) and registration concerns\n * (`paramsSchema` for JSON-boundary validation; optional `renderOutputType`\n * for the `contract.d.ts` emit path). The runtime `Codec` instance returned\n * by `factory(params)(ctx)` carries only the conversion behavior.\n *\n * Whether a codec id \"is parameterized\" stops being a registration-time\n * distinction — it's a property of `P` on the descriptor. The descriptor\n * map indexes every descriptor by `codecId`; both `descriptorFor(codecId)`\n * and `forColumn(table, column)` resolve through the same map without\n * branching on parameterization.\n *\n * @template P - The shape of the params accepted by the factory (`void` for\n * non-parameterized codecs; a record like `{ length: number }` for\n * parameterized codecs).\n *\n * Codec-registry-unification project § Decision.\n */\nexport interface CodecDescriptor<P = void> {\n /** The codec ID this descriptor applies to (e.g. `pg/vector@1`, `pg/text@1`). */\n readonly codecId: string;\n /** Semantic traits for operator gating (e.g. equality, order, numeric). */\n readonly traits: readonly CodecTrait[];\n /** Database-native type names this codec handles (e.g. `['timestamptz']`). */\n readonly targetTypes: readonly string[];\n /** Optional family-specific metadata (e.g. SQL-side `db.sql.postgres.nativeType`). */\n readonly meta?: CodecMeta;\n /**\n * Standard Schema validator for the factory's params. Validates JSON-\n * sourced params at the contract boundary (PSL → IR; `contract.json` →\n * runtime). For non-parameterized codecs (`P = void`), the schema\n * validates `void`/`undefined` — the framework supplies no params at the\n * call boundary.\n */\n readonly paramsSchema: StandardSchemaV1<P>;\n /**\n * Emit-path string renderer for `contract.d.ts`. Returns the TypeScript\n * output type expression for given params (e.g. `Vector<1536>`).\n * Optional; absent renderers cause the emitter to fall back to the\n * codec's base output type. Non-parameterized codecs typically omit it.\n */\n readonly renderOutputType?: (params: P) => string | undefined;\n /**\n * The curried higher-order codec. For non-parameterized codecs, the\n * factory is constant — every call returns the same shared codec\n * instance. For parameterized codecs, the factory is called once per\n * `storage.types` instance (or once per inline-`typeParams` column),\n * with `ctx` carrying the column set the resulting codec serves.\n */\n readonly factory: (params: P) => (ctx: CodecInstanceContext) => Codec;\n}\n\n/**\n * Standard Schema validator for `void` params. Accepts only `undefined`\n * (or absent input); rejects any other value so a contract that tries to\n * thread `typeParams` through a non-parameterized codec id fails fast at\n * the JSON boundary instead of silently coercing the value away. Used by\n * the framework-supplied non-parameterized descriptor synthesizer.\n */\nexport const voidParamsSchema: StandardSchemaV1<void> = {\n '~standard': {\n version: 1,\n vendor: 'prisma-next',\n validate: (input) =>\n input === undefined\n ? { value: undefined }\n : {\n issues: [\n {\n message: 'unexpected typeParams for non-parameterized codec (void params expected)',\n },\n ],\n },\n },\n};\n\n/**\n * Synthesize a `CodecDescriptor<void>` for a non-parameterized codec\n * runtime instance. The factory is constant — every call returns the same\n * shared codec instance — so columns sharing this codec id share one\n * resolved codec.\n *\n * Codec-registry-unification spec § Decision (Case T — non-parameterized\n * text codec). This is the bridge while non-parameterized codec\n * contributors still register through the legacy `codecs:` slot; once they\n * migrate to ship descriptors directly (TML-2357 T3.5.3), this synthesis\n * steps aside.\n */\nexport function synthesizeNonParameterizedDescriptor(codec: Codec): CodecDescriptor<void> {\n // The descriptor's `factory: (params: void) => (ctx: CodecInstanceContext)\n // => Codec` is a constant for non-parameterized codecs — `params` is\n // never read and the returned ctx-applier always yields the same shared\n // codec. We rely on the descriptor's typed `factory` slot to infer the\n // signatures rather than naming `void` locally (biome's\n // `noConfusingVoidType` flags `void` outside return positions).\n const sharedFactory = () => () => codec;\n // Family-extended codecs (SQL `Codec`) carry an optional `meta` field\n // that the base interface doesn't declare. Read it through a structural\n // narrow so the synthesizer forwards it to the descriptor without losing\n // type safety on the base shape.\n const codecMeta = (codec as { readonly meta?: CodecMeta }).meta;\n return {\n codecId: codec.id,\n traits: codec.traits ?? [],\n targetTypes: codec.targetTypes,\n paramsSchema: voidParamsSchema,\n factory: sharedFactory,\n ...(codecMeta !== undefined ? { meta: codecMeta } : {}),\n };\n}\n"],"mappings":";AA4GA,MAAaA,mBAAgC,EAC3C,WAAW,QACZ;;;;;;;;AAoGD,MAAaC,mBAA2C,EACtD,aAAa;CACX,SAAS;CACT,QAAQ;CACR,WAAW,UACT,UAAU,SACN,EAAE,OAAO,QAAW,GACpB,EACE,QAAQ,CACN,EACE,SAAS,4EACV,CACF,EACF;CACR,EACF;;;;;;;;;;;;;AAcD,SAAgB,qCAAqC,OAAqC;CAOxF,MAAM,4BAA4B;CAKlC,MAAM,YAAa,MAAwC;AAC3D,QAAO;EACL,SAAS,MAAM;EACf,QAAQ,MAAM,UAAU,EAAE;EAC1B,aAAa,MAAM;EACnB,cAAc;EACd,SAAS;EACT,GAAI,cAAc,SAAY,EAAE,MAAM,WAAW,GAAG,EAAE;EACvD"}
@@ -1,2 +1,2 @@
1
- import { S as checkContractComponentRequirements, _ as PackRefBase, a as ComponentMetadata, b as TargetInstance, c as DriverDescriptor, d as ExtensionDescriptor, f as ExtensionInstance, g as FamilyPackRef, h as FamilyInstance, i as ComponentDescriptor, l as DriverInstance, m as FamilyDescriptor, n as AdapterInstance, o as ContractComponentRequirementsCheckInput, p as ExtensionPackRef, r as AdapterPackRef, s as ContractComponentRequirementsCheckResult, t as AdapterDescriptor, u as DriverPackRef, v as TargetBoundComponentDescriptor, x as TargetPackRef, y as TargetDescriptor } from "./framework-components-Buvf7mnC.mjs";
1
+ import { S as checkContractComponentRequirements, _ as PackRefBase, a as ComponentMetadata, b as TargetInstance, c as DriverDescriptor, d as ExtensionDescriptor, f as ExtensionInstance, g as FamilyPackRef, h as FamilyInstance, i as ComponentDescriptor, l as DriverInstance, m as FamilyDescriptor, n as AdapterInstance, o as ContractComponentRequirementsCheckInput, p as ExtensionPackRef, r as AdapterPackRef, s as ContractComponentRequirementsCheckResult, t as AdapterDescriptor, u as DriverPackRef, v as TargetBoundComponentDescriptor, x as TargetPackRef, y as TargetDescriptor } from "./framework-components-AHI6V96G.mjs";
2
2
  export { type AdapterDescriptor, type AdapterInstance, type AdapterPackRef, type ComponentDescriptor, type ComponentMetadata, type ContractComponentRequirementsCheckInput, type ContractComponentRequirementsCheckResult, type DriverDescriptor, type DriverInstance, type DriverPackRef, type ExtensionDescriptor, type ExtensionInstance, type ExtensionPackRef, type FamilyDescriptor, type FamilyInstance, type FamilyPackRef, type PackRefBase, type TargetBoundComponentDescriptor, type TargetDescriptor, type TargetInstance, type TargetPackRef, checkContractComponentRequirements };
@@ -1,8 +1,8 @@
1
1
  import { a as AuthoringFieldNamespace, d as AuthoringTypeNamespace, i as AuthoringContributions } from "./framework-authoring-BdrFDx4x.mjs";
2
- import { r as CodecLookup } from "./codec-types-DXv-ROhF.mjs";
3
- import { A as LoweredDefaultResult, C as ControlMutationDefaultEntry, D as DefaultFunctionLoweringHandler, E as DefaultFunctionLoweringContext, F as SourceSpan, M as MutationDefaultGeneratorDescriptor, N as ParsedDefaultFunctionCall, O as DefaultFunctionRegistry, P as SourceDiagnostic, T as ControlMutationDefaults, a as ComponentMetadata, b as TargetInstance, c as DriverDescriptor, d as ExtensionDescriptor, f as ExtensionInstance, h as FamilyInstance, j as LoweredDefaultValue, k as DefaultFunctionRegistryEntry, l as DriverInstance, m as FamilyDescriptor, n as AdapterInstance, t as AdapterDescriptor, v as TargetBoundComponentDescriptor, w as ControlMutationDefaultRegistry, y as TargetDescriptor } from "./framework-components-Buvf7mnC.mjs";
2
+ import { a as CodecLookup } from "./codec-types-CB0jWeHU.mjs";
3
+ import { A as LoweredDefaultResult, C as ControlMutationDefaultEntry, D as DefaultFunctionLoweringHandler, E as DefaultFunctionLoweringContext, F as SourceSpan, M as MutationDefaultGeneratorDescriptor, N as ParsedDefaultFunctionCall, O as DefaultFunctionRegistry, P as SourceDiagnostic, T as ControlMutationDefaults, a as ComponentMetadata, b as TargetInstance, c as DriverDescriptor, d as ExtensionDescriptor, f as ExtensionInstance, h as FamilyInstance, j as LoweredDefaultValue, k as DefaultFunctionRegistryEntry, l as DriverInstance, m as FamilyDescriptor, n as AdapterInstance, t as AdapterDescriptor, v as TargetBoundComponentDescriptor, w as ControlMutationDefaultRegistry, y as TargetDescriptor } from "./framework-components-AHI6V96G.mjs";
4
4
  import { t as TypesImportSpec } from "./types-import-spec-D-O6GotH.mjs";
5
- import { t as EmissionSpi } from "./emission-types-D234HxUz.mjs";
5
+ import { t as EmissionSpi } from "./emission-types-D6t3_a0x.mjs";
6
6
  import { m as PslDocumentAst } from "./psl-ast-9X5rwo98.mjs";
7
7
  import { Contract, ContractMarkerRecord } from "@prisma-next/contract/types";
8
8
  import { Result } from "@prisma-next/utils/result";
@@ -1 +1 @@
1
- {"version":3,"file":"control.d.mts","names":[],"sources":["../src/control/control-result-types.ts","../src/control/control-instances.ts","../src/control/control-stack.ts","../src/control/control-descriptors.ts","../src/control/control-migration-types.ts","../src/control/control-operation-preview.ts","../src/control/control-schema-view.ts","../src/control/control-capabilities.ts"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"control.d.mts","names":[],"sources":["../src/control/control-result-types.ts","../src/control/control-instances.ts","../src/control/control-stack.ts","../src/control/control-descriptors.ts","../src/control/control-migration-types.ts","../src/control/control-operation-preview.ts","../src/control/control-schema-view.ts","../src/control/control-capabilities.ts"],"sourcesContent":[],"mappings":"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"}
@@ -18,7 +18,22 @@ interface EmissionSpi {
18
18
  getFamilyTypeAliases(options?: GenerateContractTypesOptions): string;
19
19
  getTypeMapsExpression(): string;
20
20
  getContractWrapper(contractBaseName: string, typeMapsName: string): string;
21
+ /**
22
+ * Per-family resolver for typeParams that don't live inline on the
23
+ * framework-domain `ContractField`. Some families (notably SQL) let columns
24
+ * reference a named entry in `storage.types` via `typeRef`; the typeParams
25
+ * live on that named entry rather than on the domain field. The framework
26
+ * emit path consults this hook so the codec's `renderOutputType` can run
27
+ * for typeRef-shaped columns.
28
+ *
29
+ * Inline `field.type.typeParams` always takes precedence; the hook is only
30
+ * consulted when the domain field has no typeParams. Families without
31
+ * named storage types (e.g. mongo) don't implement this hook.
32
+ *
33
+ * Returns `undefined` when the field has no resolvable typeParams.
34
+ */
35
+ resolveFieldTypeParams?(modelName: string, fieldName: string, model: ContractModel, contract: Contract): Record<string, unknown> | undefined;
21
36
  }
22
37
  //#endregion
23
38
  export { GenerateContractTypesOptions as n, ValidationContext as r, EmissionSpi as t };
24
- //# sourceMappingURL=emission-types-D234HxUz.d.mts.map
39
+ //# sourceMappingURL=emission-types-D6t3_a0x.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"emission-types-D234HxUz.d.mts","names":[],"sources":["../src/control/emission-types.ts"],"sourcesContent":[],"mappings":";;;;UAGiB,4BAAA;uCACsB,cAAc;AADrD;AAIiB,UAAA,iBAAA,CAAiB;EACU,SAAA,gBAAA,CAAA,EAAd,aAAc,CAAA,eAAA,CAAA;EAAd,SAAA,oBAAA,CAAA,EACI,aADJ,CACkB,eADlB,CAAA;EACkB,SAAA,YAAA,CAAA,EACtB,aADsB,CAAA,MAAA,CAAA;;AACtB,UAGT,WAAA,CAHS;EAAa,SAAA,EAAA,EAAA,MAAA;EAGtB,mBAAW,CAAA,QAAA,EAGI,QAHJ,EAAA,mBAAA,EAAA,MAAA,CAAA,EAAA,MAAA;EAGI,wBAAA,CAAA,SAAA,EAAA,MAAA,EAAA,KAAA,EAEqB,aAFrB,CAAA,EAAA,MAAA;EAEqB,gBAAA,EAAA,EAAA,MAAA,EAAA;EAIpB,oBAAA,CAAA,OAAA,CAAA,EAAA,4BAAA,CAAA,EAAA,MAAA;EAA4B,qBAAA,EAAA,EAAA,MAAA"}
1
+ {"version":3,"file":"emission-types-D6t3_a0x.d.mts","names":[],"sources":["../src/control/emission-types.ts"],"sourcesContent":[],"mappings":";;;;UAGiB,4BAAA;uCACsB,cAAc;AADrD;AAIiB,UAAA,iBAAA,CAAiB;EACU,SAAA,gBAAA,CAAA,EAAd,aAAc,CAAA,eAAA,CAAA;EAAd,SAAA,oBAAA,CAAA,EACI,aADJ,CACkB,eADlB,CAAA;EACkB,SAAA,YAAA,CAAA,EACtB,aADsB,CAAA,MAAA,CAAA;;AACtB,UAGT,WAAA,CAHS;EAAa,SAAA,EAAA,EAAA,MAAA;EAGtB,mBAAW,CAAA,QAAA,EAGI,QAHJ,EAAA,mBAAA,EAAA,MAAA,CAAA,EAAA,MAAA;EAGI,wBAAA,CAAA,SAAA,EAAA,MAAA,EAAA,KAAA,EAEqB,aAFrB,CAAA,EAAA,MAAA;EAEqB,gBAAA,EAAA,EAAA,MAAA,EAAA;EAIpB,oBAAA,CAAA,OAAA,CAAA,EAAA,4BAAA,CAAA,EAAA,MAAA;EAuBtB,qBAAA,EAAA,EAAA,MAAA;EACG,kBAAA,CAAA,gBAAA,EAAA,MAAA,EAAA,YAAA,EAAA,MAAA,CAAA,EAAA,MAAA;EACT;;;;;;;;;;;;;;uEAFM,yBACG,WACT"}
@@ -1,3 +1,3 @@
1
1
  import { t as TypesImportSpec } from "./types-import-spec-D-O6GotH.mjs";
2
- import { n as GenerateContractTypesOptions, r as ValidationContext, t as EmissionSpi } from "./emission-types-D234HxUz.mjs";
2
+ import { n as GenerateContractTypesOptions, r as ValidationContext, t as EmissionSpi } from "./emission-types-D6t3_a0x.mjs";
3
3
  export { type EmissionSpi, type GenerateContractTypesOptions, type TypesImportSpec, type ValidationContext };
@@ -1,4 +1,4 @@
1
- import { b as TargetInstance, c as DriverDescriptor, d as ExtensionDescriptor, f as ExtensionInstance, h as FamilyInstance, l as DriverInstance, m as FamilyDescriptor, n as AdapterInstance, t as AdapterDescriptor, y as TargetDescriptor } from "./framework-components-Buvf7mnC.mjs";
1
+ import { b as TargetInstance, c as DriverDescriptor, d as ExtensionDescriptor, f as ExtensionInstance, h as FamilyInstance, l as DriverInstance, m as FamilyDescriptor, n as AdapterInstance, t as AdapterDescriptor, y as TargetDescriptor } from "./framework-components-AHI6V96G.mjs";
2
2
 
3
3
  //#region src/execution/execution-instances.d.ts
4
4
  interface RuntimeFamilyInstance<TFamilyId extends string> extends FamilyInstance<TFamilyId> {}
@@ -1,5 +1,5 @@
1
1
  import { i as AuthoringContributions } from "./framework-authoring-BdrFDx4x.mjs";
2
- import { t as Codec } from "./codec-types-DXv-ROhF.mjs";
2
+ import { t as Codec } from "./codec-types-CB0jWeHU.mjs";
3
3
  import { t as TypesImportSpec } from "./types-import-spec-D-O6GotH.mjs";
4
4
  import { ColumnDefault, ExecutionMutationDefaultValue } from "@prisma-next/contract/types";
5
5
 
@@ -421,4 +421,4 @@ interface ExtensionInstance<TFamilyId extends string, TTargetId extends string>
421
421
  }
422
422
  //#endregion
423
423
  export { LoweredDefaultResult as A, ControlMutationDefaultEntry as C, DefaultFunctionLoweringHandler as D, DefaultFunctionLoweringContext as E, SourceSpan as F, MutationDefaultGeneratorDescriptor as M, ParsedDefaultFunctionCall as N, DefaultFunctionRegistry as O, SourceDiagnostic as P, checkContractComponentRequirements as S, ControlMutationDefaults as T, PackRefBase as _, ComponentMetadata as a, TargetInstance as b, DriverDescriptor as c, ExtensionDescriptor as d, ExtensionInstance as f, FamilyPackRef as g, FamilyInstance as h, ComponentDescriptor as i, LoweredDefaultValue as j, DefaultFunctionRegistryEntry as k, DriverInstance as l, FamilyDescriptor as m, AdapterInstance as n, ContractComponentRequirementsCheckInput as o, ExtensionPackRef as p, AdapterPackRef as r, ContractComponentRequirementsCheckResult as s, AdapterDescriptor as t, DriverPackRef as u, TargetBoundComponentDescriptor as v, ControlMutationDefaultRegistry as w, TargetPackRef as x, TargetDescriptor as y };
424
- //# sourceMappingURL=framework-components-Buvf7mnC.d.mts.map
424
+ //# sourceMappingURL=framework-components-AHI6V96G.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"framework-components-Buvf7mnC.d.mts","names":[],"sources":["../src/shared/mutation-default-types.ts","../src/shared/framework-components.ts"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"framework-components-AHI6V96G.d.mts","names":[],"sources":["../src/shared/mutation-default-types.ts","../src/shared/framework-components.ts"],"sourcesContent":[],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- import { n as CodecCallContext } from "./codec-types-DXv-ROhF.mjs";
1
+ import { n as CodecCallContext } from "./codec-types-CB0jWeHU.mjs";
2
2
  import { PlanMeta } from "@prisma-next/contract/types";
3
3
 
4
4
  //#region src/execution/async-iterable-result.d.ts
package/package.json CHANGED
@@ -1,20 +1,21 @@
1
1
  {
2
2
  "name": "@prisma-next/framework-components",
3
- "version": "0.5.0-dev.30",
3
+ "version": "0.5.0-dev.32",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "description": "Framework component types, assembly logic, and stack creation for Prisma Next",
7
7
  "dependencies": {
8
- "@prisma-next/contract": "0.5.0-dev.30",
9
- "@prisma-next/operations": "0.5.0-dev.30",
10
- "@prisma-next/utils": "0.5.0-dev.30"
8
+ "@standard-schema/spec": "^1.1.0",
9
+ "@prisma-next/contract": "0.5.0-dev.32",
10
+ "@prisma-next/utils": "0.5.0-dev.32",
11
+ "@prisma-next/operations": "0.5.0-dev.32"
11
12
  },
12
13
  "devDependencies": {
13
14
  "tsdown": "0.18.4",
14
15
  "typescript": "5.9.3",
15
16
  "vitest": "4.0.17",
16
- "@prisma-next/tsconfig": "0.0.0",
17
- "@prisma-next/tsdown": "0.0.0"
17
+ "@prisma-next/tsdown": "0.0.0",
18
+ "@prisma-next/tsconfig": "0.0.0"
18
19
  },
19
20
  "files": [
20
21
  "dist",
@@ -25,4 +25,25 @@ export interface EmissionSpi {
25
25
  getTypeMapsExpression(): string;
26
26
 
27
27
  getContractWrapper(contractBaseName: string, typeMapsName: string): string;
28
+
29
+ /**
30
+ * Per-family resolver for typeParams that don't live inline on the
31
+ * framework-domain `ContractField`. Some families (notably SQL) let columns
32
+ * reference a named entry in `storage.types` via `typeRef`; the typeParams
33
+ * live on that named entry rather than on the domain field. The framework
34
+ * emit path consults this hook so the codec's `renderOutputType` can run
35
+ * for typeRef-shaped columns.
36
+ *
37
+ * Inline `field.type.typeParams` always takes precedence; the hook is only
38
+ * consulted when the domain field has no typeParams. Families without
39
+ * named storage types (e.g. mongo) don't implement this hook.
40
+ *
41
+ * Returns `undefined` when the field has no resolvable typeParams.
42
+ */
43
+ resolveFieldTypeParams?(
44
+ modelName: string,
45
+ fieldName: string,
46
+ model: ContractModel,
47
+ contract: Contract,
48
+ ): Record<string, unknown> | undefined;
28
49
  }
@@ -1,2 +1,14 @@
1
- export type { Codec, CodecCallContext, CodecLookup, CodecTrait } from '../shared/codec-types';
2
- export { emptyCodecLookup } from '../shared/codec-types';
1
+ export type {
2
+ Codec,
3
+ CodecCallContext,
4
+ CodecDescriptor,
5
+ CodecInstanceContext,
6
+ CodecLookup,
7
+ CodecMeta,
8
+ CodecTrait,
9
+ } from '../shared/codec-types';
10
+ export {
11
+ emptyCodecLookup,
12
+ synthesizeNonParameterizedDescriptor,
13
+ voidParamsSchema,
14
+ } from '../shared/codec-types';
@@ -1,6 +1,26 @@
1
1
  import type { JsonValue } from '@prisma-next/contract/types';
2
+ import type { StandardSchemaV1 } from '@standard-schema/spec';
2
3
 
3
- export type CodecTrait = 'equality' | 'order' | 'boolean' | 'numeric' | 'textual';
4
+ export type CodecTrait =
5
+ | 'equality'
6
+ | 'order'
7
+ | 'boolean'
8
+ | 'numeric'
9
+ | 'textual'
10
+ /**
11
+ * The codec carries a per-instance `validate(value: unknown) =>
12
+ * JsonSchemaValidationResult` function on the resolved codec object that
13
+ * the framework's `JsonSchemaValidatorRegistry` consults at runtime. The
14
+ * trait gates the `extractValidator` cast from structurally-typed
15
+ * `unknown` to a typed validator view.
16
+ *
17
+ * Retirement target. The unified `CodecDescriptor` model moves
18
+ * validation into the resolved codec's `decode` body; the parallel
19
+ * `JsonSchemaValidatorRegistry` (and this trait alongside it) retires
20
+ * under TML-2357 (T3.5.12). Per-library JSON extensions like
21
+ * `@prisma-next/extension-arktype-json` already follow the new pattern.
22
+ */
23
+ | 'json-validator';
4
24
 
5
25
  /**
6
26
  * Per-call context the runtime threads to every `codec.encode` /
@@ -89,3 +109,153 @@ export interface CodecLookup {
89
109
  export const emptyCodecLookup: CodecLookup = {
90
110
  get: () => undefined,
91
111
  };
112
+
113
+ /**
114
+ * Family-agnostic per-instance context supplied by the framework when
115
+ * applying a higher-order codec factory. Allows stateful codecs (e.g.
116
+ * column-scoped encryption) to derive per-instance state from the
117
+ * materialization site.
118
+ *
119
+ * - `name` — the family-agnostic instance identity. For SQL, the runtime
120
+ * populates this as the `storage.types` instance name (e.g.
121
+ * `Embedding1536`) for typeRef-shaped columns, the synthesized
122
+ * anonymous instance name (`<anon:Document.embedding>`) for inline-
123
+ * `typeParams` columns, or a shared sentinel (`<shared:pg/text@1>`)
124
+ * for non-parameterized codec ids. Other families pick the analogous
125
+ * identity for their materialization sites.
126
+ *
127
+ * Family-specific extensions (e.g. {@link import('@prisma-next/sql-relational-core/ast').SqlCodecInstanceContext}
128
+ * in the SQL layer) augment this base with domain-shaped column-set
129
+ * metadata. Codec authors target the base when they don't read family-
130
+ * specific metadata; they target the family extension when they do.
131
+ */
132
+ export interface CodecInstanceContext {
133
+ readonly name: string;
134
+ }
135
+
136
+ /**
137
+ * Family-agnostic codec metadata. Family-specific extensions augment the
138
+ * base `db.<family>.<target>` block with native-type information; the base
139
+ * shape is an empty object so non-relational codecs can carry no metadata.
140
+ */
141
+ export interface CodecMeta {
142
+ readonly db?: Record<string, unknown>;
143
+ }
144
+
145
+ /**
146
+ * Unified codec descriptor. Every codec in the framework registers through
147
+ * this shape — non-parameterized codecs use `P = void` and a constant
148
+ * factory that returns the same shared codec instance for every column;
149
+ * parameterized codecs use a non-empty `P` and a curried higher-order
150
+ * factory that returns a per-instance codec.
151
+ *
152
+ * The descriptor is the codec-id-keyed source of truth for static metadata
153
+ * (`traits`, `targetTypes`, `meta`) and registration concerns
154
+ * (`paramsSchema` for JSON-boundary validation; optional `renderOutputType`
155
+ * for the `contract.d.ts` emit path). The runtime `Codec` instance returned
156
+ * by `factory(params)(ctx)` carries only the conversion behavior.
157
+ *
158
+ * Whether a codec id "is parameterized" stops being a registration-time
159
+ * distinction — it's a property of `P` on the descriptor. The descriptor
160
+ * map indexes every descriptor by `codecId`; both `descriptorFor(codecId)`
161
+ * and `forColumn(table, column)` resolve through the same map without
162
+ * branching on parameterization.
163
+ *
164
+ * @template P - The shape of the params accepted by the factory (`void` for
165
+ * non-parameterized codecs; a record like `{ length: number }` for
166
+ * parameterized codecs).
167
+ *
168
+ * Codec-registry-unification project § Decision.
169
+ */
170
+ export interface CodecDescriptor<P = void> {
171
+ /** The codec ID this descriptor applies to (e.g. `pg/vector@1`, `pg/text@1`). */
172
+ readonly codecId: string;
173
+ /** Semantic traits for operator gating (e.g. equality, order, numeric). */
174
+ readonly traits: readonly CodecTrait[];
175
+ /** Database-native type names this codec handles (e.g. `['timestamptz']`). */
176
+ readonly targetTypes: readonly string[];
177
+ /** Optional family-specific metadata (e.g. SQL-side `db.sql.postgres.nativeType`). */
178
+ readonly meta?: CodecMeta;
179
+ /**
180
+ * Standard Schema validator for the factory's params. Validates JSON-
181
+ * sourced params at the contract boundary (PSL → IR; `contract.json` →
182
+ * runtime). For non-parameterized codecs (`P = void`), the schema
183
+ * validates `void`/`undefined` — the framework supplies no params at the
184
+ * call boundary.
185
+ */
186
+ readonly paramsSchema: StandardSchemaV1<P>;
187
+ /**
188
+ * Emit-path string renderer for `contract.d.ts`. Returns the TypeScript
189
+ * output type expression for given params (e.g. `Vector<1536>`).
190
+ * Optional; absent renderers cause the emitter to fall back to the
191
+ * codec's base output type. Non-parameterized codecs typically omit it.
192
+ */
193
+ readonly renderOutputType?: (params: P) => string | undefined;
194
+ /**
195
+ * The curried higher-order codec. For non-parameterized codecs, the
196
+ * factory is constant — every call returns the same shared codec
197
+ * instance. For parameterized codecs, the factory is called once per
198
+ * `storage.types` instance (or once per inline-`typeParams` column),
199
+ * with `ctx` carrying the column set the resulting codec serves.
200
+ */
201
+ readonly factory: (params: P) => (ctx: CodecInstanceContext) => Codec;
202
+ }
203
+
204
+ /**
205
+ * Standard Schema validator for `void` params. Accepts only `undefined`
206
+ * (or absent input); rejects any other value so a contract that tries to
207
+ * thread `typeParams` through a non-parameterized codec id fails fast at
208
+ * the JSON boundary instead of silently coercing the value away. Used by
209
+ * the framework-supplied non-parameterized descriptor synthesizer.
210
+ */
211
+ export const voidParamsSchema: StandardSchemaV1<void> = {
212
+ '~standard': {
213
+ version: 1,
214
+ vendor: 'prisma-next',
215
+ validate: (input) =>
216
+ input === undefined
217
+ ? { value: undefined }
218
+ : {
219
+ issues: [
220
+ {
221
+ message: 'unexpected typeParams for non-parameterized codec (void params expected)',
222
+ },
223
+ ],
224
+ },
225
+ },
226
+ };
227
+
228
+ /**
229
+ * Synthesize a `CodecDescriptor<void>` for a non-parameterized codec
230
+ * runtime instance. The factory is constant — every call returns the same
231
+ * shared codec instance — so columns sharing this codec id share one
232
+ * resolved codec.
233
+ *
234
+ * Codec-registry-unification spec § Decision (Case T — non-parameterized
235
+ * text codec). This is the bridge while non-parameterized codec
236
+ * contributors still register through the legacy `codecs:` slot; once they
237
+ * migrate to ship descriptors directly (TML-2357 T3.5.3), this synthesis
238
+ * steps aside.
239
+ */
240
+ export function synthesizeNonParameterizedDescriptor(codec: Codec): CodecDescriptor<void> {
241
+ // The descriptor's `factory: (params: void) => (ctx: CodecInstanceContext)
242
+ // => Codec` is a constant for non-parameterized codecs — `params` is
243
+ // never read and the returned ctx-applier always yields the same shared
244
+ // codec. We rely on the descriptor's typed `factory` slot to infer the
245
+ // signatures rather than naming `void` locally (biome's
246
+ // `noConfusingVoidType` flags `void` outside return positions).
247
+ const sharedFactory = () => () => codec;
248
+ // Family-extended codecs (SQL `Codec`) carry an optional `meta` field
249
+ // that the base interface doesn't declare. Read it through a structural
250
+ // narrow so the synthesizer forwards it to the descriptor without losing
251
+ // type safety on the base shape.
252
+ const codecMeta = (codec as { readonly meta?: CodecMeta }).meta;
253
+ return {
254
+ codecId: codec.id,
255
+ traits: codec.traits ?? [],
256
+ targetTypes: codec.targetTypes,
257
+ paramsSchema: voidParamsSchema,
258
+ factory: sharedFactory,
259
+ ...(codecMeta !== undefined ? { meta: codecMeta } : {}),
260
+ };
261
+ }
@@ -1,84 +0,0 @@
1
- import { JsonValue } from "@prisma-next/contract/types";
2
-
3
- //#region src/shared/codec-types.d.ts
4
- type CodecTrait = 'equality' | 'order' | 'boolean' | 'numeric' | 'textual';
5
- /**
6
- * Per-call context the runtime threads to every `codec.encode` /
7
- * `codec.decode` invocation for a single `runtime.execute()` call.
8
- *
9
- * The framework-level shape is family-agnostic and carries one field:
10
- *
11
- * - `signal?: AbortSignal` — per-query cancellation. The runtime returns
12
- * a `RUNTIME.ABORTED` envelope when the signal aborts; codec authors
13
- * who forward `signal` to their underlying SDK get true cancellation
14
- * of in-flight network calls.
15
- *
16
- * Family layers extend this base with their own shape-of-call metadata:
17
- * the SQL family adds `column?: SqlColumnRef` via `SqlCodecCallContext`
18
- * (see `@prisma-next/sql-relational-core`). Mongo currently uses this
19
- * framework type unchanged. Column metadata is intentionally **not** on
20
- * the framework type — it is a SQL-family concept rooted in SQL's
21
- * `(table, column)` addressing model and would not generalise to other
22
- * families.
23
- *
24
- * The interface is named explicitly (not inlined) so future framework
25
- * fields and family extensions can land additively without breaking
26
- * codec author signatures.
27
- */
28
- interface CodecCallContext {
29
- readonly signal?: AbortSignal;
30
- }
31
- /**
32
- * A codec is the contract between an application value and its on-wire and
33
- * on-contract-disk representations.
34
- *
35
- * The author's mental model is two JS-side types — `TInput` (the
36
- * application JS type) and `TWire` (the database driver wire format) —
37
- * plus `JsonValue` for build-time contract artifacts. The codec translates
38
- * `TInput` to `TWire` on writes and back on reads, and to/from `JsonValue`
39
- * during contract emission and loading.
40
- *
41
- * Three representations participate:
42
- * - **Input** (`TInput`): the JS type at the application boundary.
43
- * - **Wire** (`TWire`): the format exchanged with the database driver.
44
- * - **JSON** (`JsonValue`): a JSON-safe form used in contract artifacts.
45
- *
46
- * Codec methods split into two groups:
47
- *
48
- * - **Query-time** methods (`encode`, `decode`) run per row/parameter at the
49
- * IO boundary; they are required and Promise-returning. The per-family
50
- * codec factory accepts sync or async author functions and lifts sync
51
- * ones to Promise-shaped methods automatically.
52
- * - **Build-time** methods (`encodeJson`, `decodeJson`, `renderOutputType`)
53
- * run when the contract is serialized, loaded, or when client types are
54
- * emitted. They stay synchronous so contract validation and client
55
- * construction are synchronous.
56
- *
57
- * Target-family codec interfaces extend this base with target-shaped
58
- * metadata.
59
- */
60
- interface Codec<Id extends string = string, TTraits extends readonly CodecTrait[] = readonly CodecTrait[], TWire = unknown, TInput = unknown> {
61
- /** Unique codec identifier in `namespace/name@version` format (e.g. `pg/timestamptz@1`). */
62
- readonly id: Id;
63
- /** Database-native type names this codec handles (e.g. `['timestamptz']`). */
64
- readonly targetTypes: readonly string[];
65
- /** Semantic traits for operator gating (e.g. equality, order, numeric). */
66
- readonly traits?: TTraits;
67
- /** Converts a JS value to the wire format expected by the database driver. Always Promise-returning at the boundary. The {@link CodecCallContext} is supplied by the runtime on every call (allocated once per `runtime.execute()`); family layers may narrow the ctx to extend it (e.g. SQL adds `column`). Author-side single-arg `(value) => …` functions remain legal via TypeScript's bivariance for trailing parameters. */
68
- encode(value: TInput, ctx: CodecCallContext): Promise<TWire>;
69
- /** Converts a wire value from the database driver into the JS application type. Always Promise-returning at the boundary. The {@link CodecCallContext} is supplied by the runtime on every call (allocated once per `runtime.execute()`); family layers may narrow the ctx to extend it (e.g. SQL adds `column`). Author-side single-arg `(wire) => …` functions remain legal via TypeScript's bivariance for trailing parameters. */
70
- decode(wire: TWire, ctx: CodecCallContext): Promise<TInput>;
71
- /** Converts a JS value to a JSON-safe representation for contract serialization. Synchronous; called during contract emission. */
72
- encodeJson(value: TInput): JsonValue;
73
- /** Converts a JSON representation back to the JS input type. Synchronous; called during contract loading via `validateContract`. */
74
- decodeJson(json: JsonValue): TInput;
75
- /** Produces the TypeScript output type expression for a field given its `typeParams`. Synchronous; used during contract.d.ts emission. */
76
- renderOutputType?(typeParams: Record<string, unknown>): string | undefined;
77
- }
78
- interface CodecLookup {
79
- get(id: string): Codec | undefined;
80
- }
81
- declare const emptyCodecLookup: CodecLookup;
82
- //#endregion
83
- export { emptyCodecLookup as a, CodecTrait as i, CodecCallContext as n, CodecLookup as r, Codec as t };
84
- //# sourceMappingURL=codec-types-DXv-ROhF.d.mts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"codec-types-DXv-ROhF.d.mts","names":[],"sources":["../src/shared/codec-types.ts"],"sourcesContent":[],"mappings":";;;KAEY,UAAA;;AAAZ;AAyBA;AAiCA;;;;;;;;;;;;;;;;;;;AAwBA;AAIa,UA7DI,gBAAA,CA+DhB;oBA9DmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAgCH,2DAEU,wBAAwB;;eAKpC;;;;oBAIK;;gBAEJ,aAAa,mBAAmB,QAAQ;;eAEzC,YAAY,mBAAmB,QAAQ;;oBAElC,SAAS;;mBAEV,YAAY;;gCAEC;;UAGf,WAAA;mBACE;;cAGN,kBAAkB"}