@prisma-next/operations 0.3.0-dev.144 → 0.3.0-dev.145

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 +2 -3
  2. package/package.json +5 -7
package/README.md CHANGED
@@ -19,8 +19,7 @@ This package provides target-neutral operation registry types and capability che
19
19
 
20
20
  ## Dependencies
21
21
 
22
- - **Depends on**: `@prisma-next/plan` (for plan error types)
23
- - **Note**: This package does not depend on `@prisma-next/contract` despite being in the same layer. `OperationRegistry` is used by contract types, but operations package itself has no contract dependencies.
22
+ - **Note**: This package has no runtime dependencies. `OperationRegistry` is used by contract types, but operations package itself has no contract dependencies.
24
23
  - **Depended on by**:
25
24
  - `@prisma-next/sql-operations` (extends with SQL-specific lowering specs)
26
25
  - `@prisma-next/sql-relational-core` (uses for capability checking)
@@ -94,7 +93,7 @@ This package is part of the **framework domain**, **core layer**, **shared plane
94
93
  - **Domain**: framework (target-agnostic)
95
94
  - **Layer**: core
96
95
  - **Plane**: shared
97
- - **Path**: `packages/1-framework/1-core/shared/operations`
96
+ - **Path**: `packages/1-framework/1-core/operations`
98
97
 
99
98
  ## Related Documentation
100
99
 
package/package.json CHANGED
@@ -1,19 +1,17 @@
1
1
  {
2
2
  "name": "@prisma-next/operations",
3
- "version": "0.3.0-dev.144",
3
+ "version": "0.3.0-dev.145",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "description": "Target-neutral operation registry and capability helpers for Prisma Next",
7
- "dependencies": {
8
- "@prisma-next/plan": "0.3.0-dev.144"
9
- },
7
+ "dependencies": {},
10
8
  "devDependencies": {
11
9
  "tsdown": "0.18.4",
12
10
  "typescript": "5.9.3",
13
11
  "vitest": "4.0.17",
14
12
  "@prisma-next/test-utils": "0.0.1",
15
- "@prisma-next/tsdown": "0.0.0",
16
- "@prisma-next/tsconfig": "0.0.0"
13
+ "@prisma-next/tsconfig": "0.0.0",
14
+ "@prisma-next/tsdown": "0.0.0"
17
15
  },
18
16
  "files": [
19
17
  "dist",
@@ -32,7 +30,7 @@
32
30
  "repository": {
33
31
  "type": "git",
34
32
  "url": "https://github.com/prisma/prisma-next.git",
35
- "directory": "packages/1-framework/1-core/shared/operations"
33
+ "directory": "packages/1-framework/1-core/operations"
36
34
  },
37
35
  "scripts": {
38
36
  "build": "tsdown",