@prisma/orm-extension-pgvector 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 +11 -11
package/README.md CHANGED
@@ -19,9 +19,3 @@ pnpm add @prisma/orm-extension-pgvector
19
19
  ## Responsibilities
20
20
 
21
21
  Dimensioned vector storage and search: the `pg/vector@1` codec (`number[]` at runtime, `Vector<N>` in `contract.d.ts`), similarity operations such as `cosineDistance`, and a baseline migration that runs `CREATE EXTENSION IF NOT EXISTS vector` when the pack is composed into an application.
22
-
23
- ## Dependencies
24
-
25
- `@prisma/orm-framework`, `@prisma/orm-family-sql`, and `@prisma/orm-toolchain` at exact lockstep versions, plus `arktype` and `@standard-schema/spec`.
26
-
27
- `@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-pgvector",
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,24 +9,24 @@
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-pgvector": "8.0.0-rc.8-dev.1",
20
- "@repo/tsconfig": "8.0.0-rc.8-dev.1",
21
- "@internal/publish-surface": "8.0.0-rc.8-dev.1",
22
- "@repo/tsdown": "8.0.0-rc.8-dev.1",
23
- "@prisma/orm-target-postgres": "8.0.0-rc.8-dev.1",
19
+ "@internal/extension-pgvector": "8.0.0-rc.8-dev.2",
20
+ "@repo/tsconfig": "8.0.0-rc.8-dev.2",
21
+ "@internal/publish-surface": "8.0.0-rc.8-dev.2",
22
+ "@repo/tsdown": "8.0.0-rc.8-dev.2",
23
+ "@prisma/orm-target-postgres": "8.0.0-rc.8-dev.2",
24
24
  "tsdown": "0.22.14",
25
25
  "typescript": "5.9.3",
26
26
  "vitest": "5.0.0-rc.2"
27
27
  },
28
28
  "peerDependencies": {
29
- "@prisma/orm-target-postgres": "8.0.0-rc.8-dev.1",
29
+ "@prisma/orm-target-postgres": "8.0.0-rc.8-dev.2",
30
30
  "typescript": ">=5.9"
31
31
  },
32
32
  "peerDependenciesMeta": {
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "repository": {
47
47
  "type": "git",
48
- "url": "https://github.com/prisma/prisma.git",
48
+ "url": "https://github.com/prisma/orm.git",
49
49
  "directory": "packages/9-public/@prisma/orm-extension-pgvector"
50
50
  },
51
51
  "scripts": {