@prisma-next/sql-relational-core 0.3.0-dev.8 → 0.3.0-pr.71.10

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 +10 -10
package/README.md CHANGED
@@ -97,7 +97,7 @@ flowchart TD
97
97
  - **`@prisma-next/contract`**: Core contract types
98
98
  - **`@prisma-next/plan`**: Plan error helpers (`planInvalid`, `planUnsupported`) and `RuntimeError` type
99
99
  - **`@prisma-next/runtime`**: Runtime context types (TODO: Slice 6 will clean this up)
100
- - **`@prisma-next/sql-target`**: SQL contract types, adapter interfaces
100
+ - **`@prisma-next/sql-contract`**: SQL contract types (via `@prisma-next/sql-contract/types`)
101
101
 
102
102
  **Note**: This package does not depend on specific adapters (e.g., `@prisma-next/adapter-postgres`). Test fixtures define `CodecTypes` inline to remain adapter-agnostic and avoid cyclic dependencies.
103
103
 
package/package.json CHANGED
@@ -1,23 +1,23 @@
1
1
  {
2
2
  "name": "@prisma-next/sql-relational-core",
3
- "version": "0.3.0-dev.8",
3
+ "version": "0.3.0-pr.71.10",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "description": "Schema and column builders, operation attachment, and AST types for Prisma Next",
7
7
  "dependencies": {
8
8
  "ts-toolbelt": "^9.6.0",
9
- "@prisma-next/contract": "0.3.0-dev.8",
10
- "@prisma-next/operations": "0.3.0-dev.8",
11
- "@prisma-next/plan": "0.3.0-dev.8",
12
- "@prisma-next/sql-contract": "0.3.0-dev.8",
13
- "@prisma-next/sql-operations": "0.3.0-dev.8"
9
+ "@prisma-next/contract": "0.3.0-pr.71.10",
10
+ "@prisma-next/operations": "0.3.0-pr.71.10",
11
+ "@prisma-next/plan": "0.3.0-pr.71.10",
12
+ "@prisma-next/sql-contract": "0.3.0-pr.71.10",
13
+ "@prisma-next/sql-operations": "0.3.0-pr.71.10"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@vitest/coverage-v8": "4.0.16",
17
17
  "tsup": "8.5.1",
18
18
  "typescript": "5.9.3",
19
19
  "vitest": "4.0.16",
20
- "@prisma-next/sql-contract-ts": "0.3.0-dev.8",
20
+ "@prisma-next/sql-contract-ts": "0.3.0-pr.71.10",
21
21
  "@prisma-next/test-utils": "0.0.1"
22
22
  },
23
23
  "files": [
@@ -71,9 +71,9 @@
71
71
  "test": "vitest run",
72
72
  "test:coverage": "vitest run --coverage",
73
73
  "typecheck": "tsc --project tsconfig.json --noEmit",
74
- "lint": "biome check . --config-path ../../../../biome.json --error-on-warnings",
75
- "lint:fix": "biome check --write . --config-path ../../../../biome.json",
76
- "lint:fix:unsafe": "biome check --write --unsafe . --config-path ../../../../biome.json",
74
+ "lint": "biome check . --error-on-warnings",
75
+ "lint:fix": "biome check --write .",
76
+ "lint:fix:unsafe": "biome check --write --unsafe .",
77
77
  "clean": "node ../../../../scripts/clean.mjs"
78
78
  }
79
79
  }