@prisma-next/driver-postgres 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 +12 -12
package/README.md CHANGED
@@ -74,7 +74,7 @@ flowchart TD
74
74
 
75
75
  ## Dependencies
76
76
 
77
- - **`@prisma-next/sql-target`**: Driver SPI and SQL types
77
+ - **`@prisma-next/sql-contract`**: SQL contract types (via `@prisma-next/sql-contract/types`)
78
78
 
79
79
  ## Related Subsystems
80
80
 
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@prisma-next/driver-postgres",
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
  "dependencies": {
7
7
  "arktype": "^2.0.0",
8
8
  "pg": "8.16.3",
9
9
  "pg-cursor": "^2.10.5",
10
- "@prisma-next/contract": "0.3.0-dev.8",
11
- "@prisma-next/core-control-plane": "0.3.0-dev.8",
12
- "@prisma-next/core-execution-plane": "0.3.0-dev.8",
13
- "@prisma-next/utils": "0.3.0-dev.8",
14
- "@prisma-next/sql-contract": "0.3.0-dev.8",
15
- "@prisma-next/sql-errors": "0.3.0-dev.8",
16
- "@prisma-next/sql-operations": "0.3.0-dev.8",
17
- "@prisma-next/sql-relational-core": "0.3.0-dev.8"
10
+ "@prisma-next/contract": "0.3.0-pr.71.10",
11
+ "@prisma-next/core-control-plane": "0.3.0-pr.71.10",
12
+ "@prisma-next/core-execution-plane": "0.3.0-pr.71.10",
13
+ "@prisma-next/utils": "0.3.0-pr.71.10",
14
+ "@prisma-next/sql-contract": "0.3.0-pr.71.10",
15
+ "@prisma-next/sql-errors": "0.3.0-pr.71.10",
16
+ "@prisma-next/sql-relational-core": "0.3.0-pr.71.10",
17
+ "@prisma-next/sql-operations": "0.3.0-pr.71.10"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@vitest/coverage-v8": "4.0.16",
@@ -45,9 +45,9 @@
45
45
  "test": "vitest run",
46
46
  "test:coverage": "vitest run --coverage",
47
47
  "typecheck": "tsc --project tsconfig.json --noEmit",
48
- "lint": "biome check . --config-path ../../../../biome.json --error-on-warnings",
49
- "lint:fix": "biome check --write . --config-path ../../../biome.json",
50
- "lint:fix:unsafe": "biome check --write --unsafe . --config-path ../../../biome.json",
48
+ "lint": "biome check . --error-on-warnings",
49
+ "lint:fix": "biome check --write .",
50
+ "lint:fix:unsafe": "biome check --write --unsafe .",
51
51
  "clean": "node ../../../../scripts/clean.mjs"
52
52
  }
53
53
  }