@prisma-next/sql-orm-lane 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 +2 -2
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ This package provides the ORM query builder that compiles model-based queries to
|
|
|
19
19
|
- `@prisma-next/plan` - Plan helpers and error utilities
|
|
20
20
|
- `@prisma-next/runtime` - Runtime context for adapter access
|
|
21
21
|
- `@prisma-next/sql-relational-core` - Schema and column builders
|
|
22
|
-
- `@prisma-next/sql-
|
|
22
|
+
- `@prisma-next/sql-contract` - SQL contract types (via `@prisma-next/sql-contract/types`)
|
|
23
23
|
|
|
24
24
|
## Exports
|
|
25
25
|
|
|
@@ -81,4 +81,4 @@ src/
|
|
|
81
81
|
## Related Packages
|
|
82
82
|
|
|
83
83
|
- `@prisma-next/sql-relational-core` - Provides schema and column builders used by this package
|
|
84
|
-
- `@prisma-next/sql-
|
|
84
|
+
- `@prisma-next/sql-contract` - Defines SQL contract types (via `@prisma-next/sql-contract/types`)
|
package/package.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-next/sql-orm-lane",
|
|
3
|
-
"version": "0.3.0-
|
|
3
|
+
"version": "0.3.0-pr.71.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"description": "ORM builder, include lowering, and relation filters for Prisma Next",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@prisma-next/contract": "0.3.0-
|
|
9
|
-
"@prisma-next/plan": "0.3.0-
|
|
10
|
-
"@prisma-next/sql-contract": "0.3.0-
|
|
11
|
-
"@prisma-next/sql-lane": "0.3.0-
|
|
12
|
-
"@prisma-next/sql-relational-core": "0.3.0-
|
|
8
|
+
"@prisma-next/contract": "0.3.0-pr.71.10",
|
|
9
|
+
"@prisma-next/plan": "0.3.0-pr.71.10",
|
|
10
|
+
"@prisma-next/sql-contract": "0.3.0-pr.71.10",
|
|
11
|
+
"@prisma-next/sql-lane": "0.3.0-pr.71.10",
|
|
12
|
+
"@prisma-next/sql-relational-core": "0.3.0-pr.71.10"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@vitest/coverage-v8": "4.0.16",
|
|
16
16
|
"tsup": "8.5.1",
|
|
17
17
|
"typescript": "5.9.3",
|
|
18
18
|
"vitest": "4.0.16",
|
|
19
|
-
"@prisma-next/operations": "0.3.0-
|
|
20
|
-
"@prisma-next/sql-contract-ts": "0.3.0-
|
|
21
|
-
"@prisma-next/sql-runtime": "0.3.0-
|
|
19
|
+
"@prisma-next/operations": "0.3.0-pr.71.10",
|
|
20
|
+
"@prisma-next/sql-contract-ts": "0.3.0-pr.71.10",
|
|
21
|
+
"@prisma-next/sql-runtime": "0.3.0-pr.71.10",
|
|
22
22
|
"@prisma-next/test-utils": "0.0.1"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"test": "vitest run",
|
|
41
41
|
"test:coverage": "vitest run --coverage",
|
|
42
42
|
"typecheck": "tsc --project tsconfig.json --noEmit",
|
|
43
|
-
"lint": "biome check . --
|
|
44
|
-
"lint:fix": "biome check --write .
|
|
45
|
-
"lint:fix:unsafe": "biome check --write --unsafe .
|
|
43
|
+
"lint": "biome check . --error-on-warnings",
|
|
44
|
+
"lint:fix": "biome check --write .",
|
|
45
|
+
"lint:fix:unsafe": "biome check --write --unsafe .",
|
|
46
46
|
"clean": "node ../../../../scripts/clean.mjs"
|
|
47
47
|
}
|
|
48
48
|
}
|