graphile-cache 3.13.0 → 3.13.1
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 +15 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -227,6 +227,21 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
227
227
|
* [@pgsql/types](https://www.npmjs.com/package/@pgsql/types): **📝 Type definitions** for PostgreSQL AST nodes in TypeScript.
|
|
228
228
|
* [@pgsql/utils](https://www.npmjs.com/package/@pgsql/utils): **🛠️ AST utilities** for constructing and transforming PostgreSQL syntax trees.
|
|
229
229
|
|
|
230
|
+
### 📚 Documentation & Skills
|
|
231
|
+
|
|
232
|
+
* [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.
|
|
233
|
+
|
|
234
|
+
Install skills for AI coding agents:
|
|
235
|
+
|
|
236
|
+
```bash
|
|
237
|
+
# All platform skills (security, blueprints, codegen, billing, etc.)
|
|
238
|
+
npx skills add constructive-io/constructive-skills
|
|
239
|
+
|
|
240
|
+
# Individual repo skills (pgpm, testing, CLI, search, etc.)
|
|
241
|
+
npx skills add https://github.com/constructive-io/constructive --skill pgpm
|
|
242
|
+
npx skills add https://github.com/constructive-io/constructive --skill constructive-testing
|
|
243
|
+
```
|
|
244
|
+
|
|
230
245
|
## Credits
|
|
231
246
|
|
|
232
247
|
**🛠 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-cache",
|
|
3
|
-
"version": "3.13.
|
|
3
|
+
"version": "3.13.1",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "PostGraphile v5 LRU cache with automatic pool cleanup integration",
|
|
6
6
|
"main": "index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@pgpmjs/logger": "^2.12.0",
|
|
33
33
|
"express": "^5.2.1",
|
|
34
34
|
"grafserv": "1.0.0",
|
|
35
|
-
"graphile-realtime-subscriptions": "^0.8.
|
|
35
|
+
"graphile-realtime-subscriptions": "^0.8.1",
|
|
36
36
|
"lru-cache": "^11.2.7",
|
|
37
37
|
"pg-cache": "^3.12.0",
|
|
38
38
|
"postgraphile": "5.0.3"
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"constructive",
|
|
53
53
|
"v5"
|
|
54
54
|
],
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "16c2ae1c30850db1d71c021346c9d34361361d8e"
|
|
56
56
|
}
|