@prisma-next/sql-contract-ts 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.
- package/README.md +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ This package contains the SQL-specific TypeScript contract authoring surface for
|
|
|
10
10
|
- **Layer**: authoring
|
|
11
11
|
- **Plane**: migration
|
|
12
12
|
|
|
13
|
-
**Note**: SQL authoring may depend on SQL
|
|
13
|
+
**Note**: SQL authoring may depend on SQL core layer (e.g., `@prisma-next/sql-contract/types`) within the same domain.
|
|
14
14
|
|
|
15
15
|
## Overview
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-next/sql-contract-ts",
|
|
3
|
-
"version": "0.3.0-
|
|
3
|
+
"version": "0.3.0-pr.71.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"description": "SQL-specific TypeScript contract authoring surface for Prisma Next",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"arktype": "^2.1.25",
|
|
9
9
|
"ts-toolbelt": "^9.6.0",
|
|
10
|
-
"@prisma-next/contract": "0.3.0-
|
|
11
|
-
"@prisma-next/contract
|
|
12
|
-
"@prisma-next/
|
|
10
|
+
"@prisma-next/contract": "0.3.0-pr.71.10",
|
|
11
|
+
"@prisma-next/sql-contract": "0.3.0-pr.71.10",
|
|
12
|
+
"@prisma-next/contract-authoring": "0.3.0-pr.71.10"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@types/pg": "8.16.0",
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"test": "vitest run",
|
|
42
42
|
"test:coverage": "vitest run --coverage",
|
|
43
43
|
"typecheck": "tsc --project tsconfig.json --noEmit",
|
|
44
|
-
"lint": "biome check . --
|
|
45
|
-
"lint:fix": "biome check --write .
|
|
46
|
-
"lint:fix:unsafe": "biome check --write --unsafe .
|
|
44
|
+
"lint": "biome check . --error-on-warnings",
|
|
45
|
+
"lint:fix": "biome check --write .",
|
|
46
|
+
"lint:fix:unsafe": "biome check --write --unsafe .",
|
|
47
47
|
"clean": "node ../../../../scripts/clean.mjs"
|
|
48
48
|
}
|
|
49
49
|
}
|