@prisma-next/sql-relational-core 0.14.0-dev.76 → 0.14.0-dev.78
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 +1 -1
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -93,7 +93,7 @@ flowchart TD
|
|
|
93
93
|
|
|
94
94
|
### Codec authoring (class form)
|
|
95
95
|
|
|
96
|
-
|
|
96
|
+
SQL codec authors extend the framework `CodecImpl` base (and pair the codec with a `CodecDescriptorImpl` registration) per [ADR 208 — Higher-order codecs for parameterized types](../../../../docs/architecture%20docs/adrs/ADR%20208%20-%20Higher-order%20codecs%20for%20parameterized%20types.md). Each codec class declares `encode`, `decode`, `encodeJson`, and `decodeJson`. The JSON methods use the exact scalar shape produced by the corresponding database inside JSON values; include decoding calls `decodeJson`, while ordinary column decoding calls `decode`.
|
|
97
97
|
|
|
98
98
|
- Query-time methods (`encode` / `decode`) are typed as `Promise<…>`-returning at the public boundary; sync method bodies are accepted via TypeScript bivariance and the runtime always awaits.
|
|
99
99
|
- Build-time methods (`encodeJson` / `decodeJson` / `renderOutputType?`) stay synchronous so contract validation and client construction stay synchronous.
|
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-next/sql-relational-core",
|
|
3
|
-
"version": "0.14.0-dev.
|
|
3
|
+
"version": "0.14.0-dev.78",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"description": "AST types, query lane context, and type utilities for Prisma Next SQL lanes",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@prisma-next/contract": "0.14.0-dev.
|
|
10
|
-
"@prisma-next/framework-components": "0.14.0-dev.
|
|
11
|
-
"@prisma-next/operations": "0.14.0-dev.
|
|
12
|
-
"@prisma-next/sql-contract": "0.14.0-dev.
|
|
13
|
-
"@prisma-next/sql-operations": "0.14.0-dev.
|
|
14
|
-
"@prisma-next/utils": "0.14.0-dev.
|
|
9
|
+
"@prisma-next/contract": "0.14.0-dev.78",
|
|
10
|
+
"@prisma-next/framework-components": "0.14.0-dev.78",
|
|
11
|
+
"@prisma-next/operations": "0.14.0-dev.78",
|
|
12
|
+
"@prisma-next/sql-contract": "0.14.0-dev.78",
|
|
13
|
+
"@prisma-next/sql-operations": "0.14.0-dev.78",
|
|
14
|
+
"@prisma-next/utils": "0.14.0-dev.78",
|
|
15
15
|
"@standard-schema/spec": "^1.1.0",
|
|
16
16
|
"arktype": "^2.2.2",
|
|
17
17
|
"ts-toolbelt": "^9.6.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@prisma-next/sql-contract-ts": "0.14.0-dev.
|
|
21
|
-
"@prisma-next/test-utils": "0.14.0-dev.
|
|
22
|
-
"@prisma-next/tsconfig": "0.14.0-dev.
|
|
23
|
-
"@prisma-next/tsdown": "0.14.0-dev.
|
|
20
|
+
"@prisma-next/sql-contract-ts": "0.14.0-dev.78",
|
|
21
|
+
"@prisma-next/test-utils": "0.14.0-dev.78",
|
|
22
|
+
"@prisma-next/tsconfig": "0.14.0-dev.78",
|
|
23
|
+
"@prisma-next/tsdown": "0.14.0-dev.78",
|
|
24
24
|
"tsdown": "0.22.3",
|
|
25
25
|
"typescript": "5.9.3",
|
|
26
26
|
"vitest": "4.1.10"
|