@prisma-next/core-control-plane 0.2.0 → 0.3.0-dev.2

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 +4 -4
package/README.md CHANGED
@@ -116,7 +116,7 @@ The CLI performs runtime validation at the composition boundary using `assertFra
116
116
 
117
117
  ```typescript
118
118
  // CLI composition boundary - runtime assertion + type narrowing
119
- const rawComponents = [config.target, config.adapter, ...(config.extensions ?? [])];
119
+ const rawComponents = [config.target, config.adapter, ...(config.extensionPacks ?? [])];
120
120
  const frameworkComponents = assertFrameworkComponentsCompatible(
121
121
  config.family.familyId,
122
122
  config.target.targetId,
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@prisma-next/core-control-plane",
3
- "version": "0.2.0",
3
+ "version": "0.3.0-dev.2",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "description": "Control plane domain actions, config types, validation, and error factories for Prisma Next",
7
7
  "dependencies": {
8
8
  "arktype": "^2.1.26",
9
9
  "prettier": "^3.3.3",
10
- "@prisma-next/contract": "0.2.0",
11
- "@prisma-next/operations": "0.2.0",
12
- "@prisma-next/utils": "0.2.0"
10
+ "@prisma-next/contract": "0.3.0-dev.2",
11
+ "@prisma-next/operations": "0.3.0-dev.2",
12
+ "@prisma-next/utils": "0.3.0-dev.2"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@vitest/coverage-v8": "^4.0.0",