@prisma-next/family-sql 0.1.0-pr.72.1 → 0.1.0-pr.72.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.
- package/README.md +1 -1
- package/package.json +16 -16
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ Provides the SQL family descriptor (`ControlFamilyDescriptor`) that includes:
|
|
|
15
15
|
- **Planner & Runner SPI**: Owns the `MigrationPlanner` / `MigrationRunner` interfaces plus the `SqlControlTargetDescriptor` helper so targets can expose planners and runners (e.g., Postgres init planner/runner)
|
|
16
16
|
- **Family Hook Integration**: Integrates the SQL target family hook (`sqlTargetFamilyHook`) from `@prisma-next/sql-contract-emitter`
|
|
17
17
|
- **Control Plane Entry Point**: Serves as the control plane entry point for the SQL family, enabling the CLI to select the family hook and create family instances
|
|
18
|
-
- **Component Database Dependencies**: Consumes database dependencies declared by framework components (target/adapter/
|
|
18
|
+
- **Component Database Dependencies**: Consumes database dependencies declared by framework components (target/adapter/extension packs). Callers pass the active `frameworkComponents` list into planning/execution/verification; SQL layers structurally narrow to components that declare `databaseDependencies` and use their pure verification hooks (no fuzzy matching against `contract.extensionPacks`).
|
|
19
19
|
|
|
20
20
|
## Usage
|
|
21
21
|
|
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-next/family-sql",
|
|
3
|
-
"version": "0.1.0-pr.72.
|
|
3
|
+
"version": "0.1.0-pr.72.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"description": "SQL family descriptor for Prisma Next",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"arktype": "^2.0.0",
|
|
9
|
-
"@prisma-next/
|
|
10
|
-
"@prisma-next/
|
|
11
|
-
"@prisma-next/
|
|
12
|
-
"@prisma-next/
|
|
13
|
-
"@prisma-next/
|
|
14
|
-
"@prisma-next/runtime-executor": "0.1.0-pr.72.
|
|
15
|
-
"@prisma-next/sql-contract-emitter": "0.1.0-pr.72.
|
|
16
|
-
"@prisma-next/sql-contract
|
|
17
|
-
"@prisma-next/sql-contract": "0.1.0-pr.72.
|
|
18
|
-
"@prisma-next/sql-operations": "0.1.0-pr.72.
|
|
19
|
-
"@prisma-next/sql-relational-core": "0.1.0-pr.72.
|
|
20
|
-
"@prisma-next/sql-runtime": "0.1.0-pr.72.
|
|
21
|
-
"@prisma-next/sql-schema-ir": "0.1.0-pr.72.
|
|
22
|
-
"@prisma-next/utils": "0.1.0-pr.72.
|
|
9
|
+
"@prisma-next/contract": "0.1.0-pr.72.2",
|
|
10
|
+
"@prisma-next/core-control-plane": "0.1.0-pr.72.2",
|
|
11
|
+
"@prisma-next/cli": "0.1.0-pr.72.2",
|
|
12
|
+
"@prisma-next/core-execution-plane": "0.1.0-pr.72.2",
|
|
13
|
+
"@prisma-next/operations": "0.1.0-pr.72.2",
|
|
14
|
+
"@prisma-next/runtime-executor": "0.1.0-pr.72.2",
|
|
15
|
+
"@prisma-next/sql-contract-emitter": "0.1.0-pr.72.2",
|
|
16
|
+
"@prisma-next/sql-contract": "0.1.0-pr.72.2",
|
|
17
|
+
"@prisma-next/sql-contract-ts": "0.1.0-pr.72.2",
|
|
18
|
+
"@prisma-next/sql-operations": "0.1.0-pr.72.2",
|
|
19
|
+
"@prisma-next/sql-relational-core": "0.1.0-pr.72.2",
|
|
20
|
+
"@prisma-next/sql-runtime": "0.1.0-pr.72.2",
|
|
21
|
+
"@prisma-next/sql-schema-ir": "0.1.0-pr.72.2",
|
|
22
|
+
"@prisma-next/utils": "0.1.0-pr.72.2"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@vitest/coverage-v8": "^4.0.0",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"typescript": "^5.9.3",
|
|
28
28
|
"vite-tsconfig-paths": "^5.1.4",
|
|
29
29
|
"vitest": "^4.0.16",
|
|
30
|
-
"@prisma-next/driver-postgres": "0.1.0-pr.72.
|
|
30
|
+
"@prisma-next/driver-postgres": "0.1.0-pr.72.2",
|
|
31
31
|
"@prisma-next/test-utils": "0.0.1"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|