@ensnode/ensdb-sdk 1.10.0 → 1.11.0
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/dist/ensindexer-abstract/index.d.ts +1 -1
- package/dist/ensindexer-abstract/index.js +181 -157
- package/dist/ensindexer-abstract/index.js.map +1 -1
- package/dist/{index-DN0SGSyd.d.ts → index-C0lByZGy.d.ts} +339 -218
- package/dist/index.d.ts +84 -75
- package/dist/index.js +255 -225
- package/dist/index.js.map +1 -1
- package/migrations/0001_enable_ext_pg_trgm.sql +5 -3
- package/package.json +4 -4
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
--
|
|
2
|
-
--
|
|
3
|
-
|
|
1
|
+
-- Enable the pg_trgm extension in the 'ensnode' schema (created by migration 0000).
|
|
2
|
+
-- Installing into 'ensnode' rather than the default creation schema avoids a dependency
|
|
3
|
+
-- on 'public' existing, and lets the connection's search_path put this extension's
|
|
4
|
+
-- operators/opclasses (e.g. gin_trgm_ops) on the lookup path for trigram indexes.
|
|
5
|
+
CREATE EXTENSION IF NOT EXISTS pg_trgm SCHEMA "ensnode";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ensnode/ensdb-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "SDK for interacting with data in ENSDb",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"pg-connection-string": "^2.9.1",
|
|
47
47
|
"zod": "^4.3.6",
|
|
48
|
-
"@ensnode/ensnode-sdk": "1.
|
|
49
|
-
"enssdk": "1.
|
|
48
|
+
"@ensnode/ensnode-sdk": "1.11.0",
|
|
49
|
+
"enssdk": "1.11.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"drizzle-orm": "0.41.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"typescript": "^5.7.3",
|
|
62
62
|
"viem": "^2.22.13",
|
|
63
63
|
"vitest": "^4.0.2",
|
|
64
|
-
"@ensnode/shared-configs": "1.
|
|
64
|
+
"@ensnode/shared-configs": "1.11.0"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"prepublish": "tsup",
|