graphile-search 1.15.1 → 1.15.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 +11 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -128,6 +128,17 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
128
128
|
|
|
129
129
|
* [constructive-skills](https://github.com/constructive-io/constructive-skills): **📖 Platform documentation and AI agent skills** — feature catalog, blueprint reference, SDK guides (i18n, billing, limits, events, uploads, security, entities, search, AI), and deployment guides.
|
|
130
130
|
|
|
131
|
+
Install skills for AI coding agents:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
# All platform skills (security, blueprints, codegen, billing, etc.)
|
|
135
|
+
npx skills add constructive-io/constructive-skills
|
|
136
|
+
|
|
137
|
+
# Individual repo skills (pgpm, testing, CLI, search, etc.)
|
|
138
|
+
npx skills add https://github.com/constructive-io/constructive --skill pgpm
|
|
139
|
+
npx skills add https://github.com/constructive-io/constructive --skill constructive-testing
|
|
140
|
+
```
|
|
141
|
+
|
|
131
142
|
## Credits
|
|
132
143
|
|
|
133
144
|
**🛠 Built by the [Constructive](https://constructive.io) team — creators of modular Postgres tooling for secure, composable backends. If you like our work, contribute on [GitHub](https://github.com/constructive-io).**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-search",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.3",
|
|
4
4
|
"description": "Unified PostGraphile v5 search plugin — abstracts tsvector, BM25, pg_trgm, and pgvector behind a single adapter-based architecture with composite searchScore",
|
|
5
5
|
"author": "Constructive <developers@constructive.io>",
|
|
6
6
|
"homepage": "https://github.com/constructive-io/constructive",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^22.19.11",
|
|
33
33
|
"@types/pg": "^8.20.0",
|
|
34
|
-
"graphile-connection-filter": "^1.12.
|
|
35
|
-
"graphile-test": "^4.17.
|
|
34
|
+
"graphile-connection-filter": "^1.12.3",
|
|
35
|
+
"graphile-test": "^4.17.3",
|
|
36
36
|
"makage": "^0.3.0",
|
|
37
37
|
"pg": "^8.21.0",
|
|
38
|
-
"pgsql-test": "^4.16.
|
|
38
|
+
"pgsql-test": "^4.16.3"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@dataplan/pg": "1.0.3",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"hybrid-search",
|
|
63
63
|
"searchScore"
|
|
64
64
|
],
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "30fdaaacfc61f86b3e466f0c4c3768550fd77a55"
|
|
66
66
|
}
|