@prisma-next/cli 0.5.0 → 0.6.0-dev.3

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 (2) hide show
  1. package/README.md +1 -1
  2. 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 `databaseDependencies` (used by verify and schema verification flows and not required at runtime).
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.5.0",
3
+ "version": "0.6.0-dev.3",
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/emitter": "0.5.0",
31
- "@prisma-next/framework-components": "0.5.0",
32
- "@prisma-next/config": "0.5.0",
33
- "@prisma-next/errors": "0.5.0",
34
- "@prisma-next/migration-tools": "0.5.0",
35
- "@prisma-next/psl-printer": "0.5.0",
36
- "@prisma-next/utils": "0.5.0",
37
- "@prisma-next/contract": "0.5.0"
30
+ "@prisma-next/config": "0.6.0-dev.3",
31
+ "@prisma-next/emitter": "0.6.0-dev.3",
32
+ "@prisma-next/errors": "0.6.0-dev.3",
33
+ "@prisma-next/framework-components": "0.6.0-dev.3",
34
+ "@prisma-next/migration-tools": "0.6.0-dev.3",
35
+ "@prisma-next/contract": "0.6.0-dev.3",
36
+ "@prisma-next/psl-printer": "0.6.0-dev.3",
37
+ "@prisma-next/utils": "0.6.0-dev.3"
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.5.0",
45
- "@prisma-next/sql-contract-emitter": "0.5.0",
46
- "@prisma-next/sql-contract-ts": "0.5.0",
47
- "@prisma-next/sql-operations": "0.5.0",
48
- "@prisma-next/sql-runtime": "0.5.0",
44
+ "@prisma-next/sql-contract": "0.6.0-dev.3",
45
+ "@prisma-next/sql-contract-emitter": "0.6.0-dev.3",
46
+ "@prisma-next/sql-contract-ts": "0.6.0-dev.3",
47
+ "@prisma-next/sql-operations": "0.6.0-dev.3",
48
+ "@prisma-next/sql-runtime": "0.6.0-dev.3",
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"