@prisma/orm-extension-postgis 8.0.0-rc.8-dev.1 → 8.0.0-rc.8-dev.2

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 +0 -6
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -24,9 +24,3 @@ Model points, lines, and polygons as first-class columns, query them with a type
24
24
  Geometry storage and query semantics: the `geometry` column type and its SRID parameter, GeoJSON-shaped runtime values, seven query operations (`distance`, `distanceSphere`, `dwithin`, `contains`, `within`, `intersects`, `intersectsBbox`), and the database-dependency declaration that makes `prisma db init` enable PostGIS before the first migration runs. Works with both PSL and TypeScript contract authoring.
25
25
 
26
26
  The PostGIS server extension must be installable on your PostgreSQL server. Most managed providers include it; locally, the `postgis/postgis` Docker image is the shortest route.
27
-
28
- ## Dependencies
29
-
30
- `@prisma/orm-framework`, `@prisma/orm-family-sql`, and `@prisma/orm-toolchain` at exact lockstep versions, plus `arktype` and `@standard-schema/spec`.
31
-
32
- `@prisma/orm-target-postgres` is an exact-pinned **peer** dependency: the application supplies it, directly or through a facade, and everyone shares that one copy. A hard dependency would let an application upgrade the facade without upgrading this pack and end up with two target copies whose codec and operation registries have quietly diverged; as a peer that combination fails to install instead.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/orm-extension-postgis",
3
- "version": "8.0.0-rc.8-dev.1",
3
+ "version": "8.0.0-rc.8-dev.2",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -9,22 +9,22 @@
9
9
  "dist"
10
10
  ],
11
11
  "dependencies": {
12
- "@prisma/orm-family-sql": "8.0.0-rc.8-dev.1",
13
- "@prisma/orm-framework": "8.0.0-rc.8-dev.1",
14
- "@prisma/orm-toolchain": "8.0.0-rc.8-dev.1",
12
+ "@prisma/orm-family-sql": "8.0.0-rc.8-dev.2",
13
+ "@prisma/orm-framework": "8.0.0-rc.8-dev.2",
14
+ "@prisma/orm-toolchain": "8.0.0-rc.8-dev.2",
15
15
  "@standard-schema/spec": "^1.1.0",
16
16
  "arktype": "^2.2.2"
17
17
  },
18
18
  "devDependencies": {
19
- "@internal/extension-postgis": "8.0.0-rc.8-dev.1",
20
- "@repo/tsconfig": "8.0.0-rc.8-dev.1",
21
- "@repo/tsdown": "8.0.0-rc.8-dev.1",
22
- "@prisma/orm-target-postgres": "8.0.0-rc.8-dev.1",
19
+ "@internal/extension-postgis": "8.0.0-rc.8-dev.2",
20
+ "@repo/tsconfig": "8.0.0-rc.8-dev.2",
21
+ "@repo/tsdown": "8.0.0-rc.8-dev.2",
22
+ "@prisma/orm-target-postgres": "8.0.0-rc.8-dev.2",
23
23
  "tsdown": "0.22.14",
24
24
  "typescript": "5.9.3"
25
25
  },
26
26
  "peerDependencies": {
27
- "@prisma/orm-target-postgres": "8.0.0-rc.8-dev.1",
27
+ "@prisma/orm-target-postgres": "8.0.0-rc.8-dev.2",
28
28
  "typescript": ">=5.9"
29
29
  },
30
30
  "peerDependenciesMeta": {
@@ -44,7 +44,7 @@
44
44
  },
45
45
  "repository": {
46
46
  "type": "git",
47
- "url": "https://github.com/prisma/prisma.git",
47
+ "url": "https://github.com/prisma/orm.git",
48
48
  "directory": "packages/9-public/@prisma/orm-extension-postgis"
49
49
  },
50
50
  "scripts": {