@pgpm/database-jobs 0.26.5 → 0.26.6
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 +19 -4
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -348,14 +348,29 @@ The test suite validates:
|
|
|
348
348
|
|
|
349
349
|
## Related Tooling
|
|
350
350
|
|
|
351
|
-
* [pgpm](https://github.com/constructive-io/constructive/tree/main/
|
|
352
|
-
* [pgsql-test](https://github.com/constructive-io/constructive/tree/main/
|
|
353
|
-
* [supabase-test](https://github.com/constructive-io/constructive/tree/main/
|
|
354
|
-
* [graphile-test](https://github.com/constructive-io/constructive/tree/main/
|
|
351
|
+
* [pgpm](https://github.com/constructive-io/constructive/tree/main/pgpm/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
|
|
352
|
+
* [pgsql-test](https://github.com/constructive-io/constructive/tree/main/postgres/pgsql-test): **📊 Isolated testing environments** with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
|
|
353
|
+
* [supabase-test](https://github.com/constructive-io/constructive/tree/main/postgres/supabase-test): **🧪 Supabase-native test harness** preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
|
|
354
|
+
* [graphile-test](https://github.com/constructive-io/constructive/tree/main/graphile/graphile-test): **🔐 Authentication mocking** for Graphile-focused test helpers and emulating row-level security contexts.
|
|
355
355
|
* [pgsql-parser](https://github.com/constructive-io/pgsql-parser): **🔄 SQL conversion engine** that interprets and converts PostgreSQL syntax.
|
|
356
356
|
* [libpg-query-node](https://github.com/constructive-io/libpg-query-node): **🌉 Node.js bindings** for `libpg_query`, converting SQL into parse trees.
|
|
357
357
|
* [pg-proto-parser](https://github.com/constructive-io/pg-proto-parser): **📦 Protobuf parser** for parsing PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.
|
|
358
358
|
|
|
359
|
+
### 📚 Documentation & Skills
|
|
360
|
+
|
|
361
|
+
* [constructive-skills](https://github.com/constructive-io/constructive-skills): **📖 Platform documentation and AI agent skills** — feature catalog, blueprint reference, SDK guides, and deployment guides.
|
|
362
|
+
|
|
363
|
+
Install skills for AI coding agents:
|
|
364
|
+
|
|
365
|
+
```bash
|
|
366
|
+
# All platform skills (security, blueprints, codegen, billing, etc.)
|
|
367
|
+
npx skills add constructive-io/constructive-skills
|
|
368
|
+
|
|
369
|
+
# Individual repo skills (pgpm, testing, CLI, search, etc.)
|
|
370
|
+
npx skills add https://github.com/constructive-io/constructive --skill pgpm
|
|
371
|
+
npx skills add https://github.com/constructive-io/constructive --skill constructive-testing
|
|
372
|
+
```
|
|
373
|
+
|
|
359
374
|
## Disclaimer
|
|
360
375
|
|
|
361
376
|
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgpm/database-jobs",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.6",
|
|
4
4
|
"description": "Database-specific job handling and queue management",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"contributors": [
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"pgpm": "^4.23.2"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@pgpm/jwt-claims": "0.26.
|
|
28
|
-
"@pgpm/verify": "0.26.
|
|
27
|
+
"@pgpm/jwt-claims": "0.26.6",
|
|
28
|
+
"@pgpm/verify": "0.26.6"
|
|
29
29
|
},
|
|
30
30
|
"repository": {
|
|
31
31
|
"type": "git",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"bugs": {
|
|
36
36
|
"url": "https://github.com/constructive-io/pgpm-modules/issues"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "a87bfe1c77bfd1c627b7f7c5a92312aefc376c94"
|
|
39
39
|
}
|