@prisma/orm-extension-paradedb 8.0.0-rc.8-dev.1 → 8.0.0-rc.8-dev.3
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 +0 -6
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -21,9 +21,3 @@ pnpm add @prisma/orm-extension-paradedb
|
|
|
21
21
|
Registers a `bm25` entry with the SQL family's index-type registry, so contracts author full-text indexes through the ordinary `constraints.index(...)` surface and the Postgres adapter emits `CREATE INDEX ... USING bm25 WITH (...)`. It also declares the `paradedb/bm25` capability for contract-level feature detection.
|
|
22
22
|
|
|
23
23
|
The current surface covers the `key_field` storage parameter. Per-field tokenizer configuration waits on expression-index support.
|
|
24
|
-
|
|
25
|
-
## Dependencies
|
|
26
|
-
|
|
27
|
-
`@prisma/orm-framework`, `@prisma/orm-family-sql`, and `@prisma/orm-toolchain` at exact lockstep versions, plus `arktype`.
|
|
28
|
-
|
|
29
|
-
`@prisma/orm-target-postgres` is an exact-pinned **peer** dependency, as it is for every Postgres extension pack: the application supplies it, directly or through a facade. Unlike its siblings this pack does not reach the target at run time — the index type is registered against the SQL family, and the Postgres adapter renders it — but it is still a pack that only works on Postgres, and stating that uniformly is what makes the install requirement legible.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/orm-extension-paradedb",
|
|
3
|
-
"version": "8.0.0-rc.8-dev.
|
|
3
|
+
"version": "8.0.0-rc.8-dev.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -9,20 +9,20 @@
|
|
|
9
9
|
"dist"
|
|
10
10
|
],
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@prisma/orm-family-sql": "8.0.0-rc.8-dev.
|
|
13
|
-
"@prisma/orm-framework": "8.0.0-rc.8-dev.
|
|
14
|
-
"@prisma/orm-toolchain": "8.0.0-rc.8-dev.
|
|
12
|
+
"@prisma/orm-family-sql": "8.0.0-rc.8-dev.3",
|
|
13
|
+
"@prisma/orm-framework": "8.0.0-rc.8-dev.3",
|
|
14
|
+
"@prisma/orm-toolchain": "8.0.0-rc.8-dev.3",
|
|
15
15
|
"arktype": "^2.2.2"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@internal/extension-paradedb": "8.0.0-rc.8-dev.
|
|
19
|
-
"@repo/tsconfig": "8.0.0-rc.8-dev.
|
|
20
|
-
"@repo/tsdown": "8.0.0-rc.8-dev.
|
|
18
|
+
"@internal/extension-paradedb": "8.0.0-rc.8-dev.3",
|
|
19
|
+
"@repo/tsconfig": "8.0.0-rc.8-dev.3",
|
|
20
|
+
"@repo/tsdown": "8.0.0-rc.8-dev.3",
|
|
21
21
|
"tsdown": "0.22.14",
|
|
22
22
|
"typescript": "5.9.3"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@prisma/orm-target-postgres": "8.0.0-rc.8-dev.
|
|
25
|
+
"@prisma/orm-target-postgres": "8.0.0-rc.8-dev.3",
|
|
26
26
|
"typescript": ">=5.9"
|
|
27
27
|
},
|
|
28
28
|
"peerDependenciesMeta": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"repository": {
|
|
42
42
|
"type": "git",
|
|
43
|
-
"url": "https://github.com/prisma/
|
|
43
|
+
"url": "https://github.com/prisma/orm.git",
|
|
44
44
|
"directory": "packages/9-public/@prisma/orm-extension-paradedb"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|