@prisma-next/cli 0.5.0 → 0.6.0-dev.1
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 +14 -14
package/README.md
CHANGED
|
@@ -1249,7 +1249,7 @@ See `.cursor/rules/config-validation-and-normalization.mdc` for detailed pattern
|
|
|
1249
1249
|
- `types.storage`: Storage type bindings (`typeId`, `nativeType`, etc.) used in authoring/emission.
|
|
1250
1250
|
- **`operations`**: Operation signatures the component contributes (extensions), used for type generation and (optionally) validation/lowering.
|
|
1251
1251
|
- **Component-specific metadata**:
|
|
1252
|
-
- Extensions may also include control-plane-only metadata like `
|
|
1252
|
+
- Extensions may also include control-plane-only metadata like `contractSpace` (used by verify, planning, and migration flows and not required at runtime).
|
|
1253
1253
|
|
|
1254
1254
|
Unlike the older **manifest-based IR** approach (separate JSON manifests + a parsing/validation step to build an IR), descriptors are imported directly from packages (e.g., `@prisma-next/*/control`). This removes a file-format boundary and keeps the data and its types co-located.
|
|
1255
1255
|
- Benefits: fewer moving parts (no JSON parsing), easier refactors (TypeScript catches drift), and clearer ownership (the package exports the canonical descriptor object).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-next/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0-dev.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -27,25 +27,25 @@
|
|
|
27
27
|
"string-width": "^8.2.1",
|
|
28
28
|
"strip-ansi": "^7.2.0",
|
|
29
29
|
"wrap-ansi": "^10.0.0",
|
|
30
|
-
"@prisma-next/
|
|
31
|
-
"@prisma-next/
|
|
32
|
-
"@prisma-next/
|
|
33
|
-
"@prisma-next/
|
|
34
|
-
"@prisma-next/
|
|
35
|
-
"@prisma-next/psl-printer": "0.
|
|
36
|
-
"@prisma-next/
|
|
37
|
-
"@prisma-next/
|
|
30
|
+
"@prisma-next/config": "0.6.0-dev.1",
|
|
31
|
+
"@prisma-next/contract": "0.6.0-dev.1",
|
|
32
|
+
"@prisma-next/errors": "0.6.0-dev.1",
|
|
33
|
+
"@prisma-next/migration-tools": "0.6.0-dev.1",
|
|
34
|
+
"@prisma-next/framework-components": "0.6.0-dev.1",
|
|
35
|
+
"@prisma-next/psl-printer": "0.6.0-dev.1",
|
|
36
|
+
"@prisma-next/emitter": "0.6.0-dev.1",
|
|
37
|
+
"@prisma-next/utils": "0.6.0-dev.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/node": "24.10.4",
|
|
41
41
|
"tsdown": "0.22.0",
|
|
42
42
|
"typescript": "5.9.3",
|
|
43
43
|
"vitest": "4.1.5",
|
|
44
|
-
"@prisma-next/sql-contract": "0.
|
|
45
|
-
"@prisma-next/sql-contract-
|
|
46
|
-
"@prisma-next/sql-contract
|
|
47
|
-
"@prisma-next/sql-operations": "0.
|
|
48
|
-
"@prisma-next/sql-runtime": "0.
|
|
44
|
+
"@prisma-next/sql-contract-emitter": "0.6.0-dev.1",
|
|
45
|
+
"@prisma-next/sql-contract-ts": "0.6.0-dev.1",
|
|
46
|
+
"@prisma-next/sql-contract": "0.6.0-dev.1",
|
|
47
|
+
"@prisma-next/sql-operations": "0.6.0-dev.1",
|
|
48
|
+
"@prisma-next/sql-runtime": "0.6.0-dev.1",
|
|
49
49
|
"@prisma-next/test-utils": "0.0.1",
|
|
50
50
|
"@prisma-next/tsconfig": "0.0.0",
|
|
51
51
|
"@prisma-next/tsdown": "0.0.0"
|