@pgpmjs/migrate-client 0.15.2 → 0.15.4
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 +3 -3
package/README.md
CHANGED
|
@@ -105,6 +105,17 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
105
105
|
|
|
106
106
|
* [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.
|
|
107
107
|
|
|
108
|
+
Install skills for AI coding agents:
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
# All platform skills (security, blueprints, codegen, billing, etc.)
|
|
112
|
+
npx skills add constructive-io/constructive-skills
|
|
113
|
+
|
|
114
|
+
# Individual repo skills (pgpm, testing, CLI, search, etc.)
|
|
115
|
+
npx skills add https://github.com/constructive-io/constructive --skill pgpm
|
|
116
|
+
npx skills add https://github.com/constructive-io/constructive --skill constructive-testing
|
|
117
|
+
```
|
|
118
|
+
|
|
108
119
|
## Credits
|
|
109
120
|
|
|
110
121
|
**🛠 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": "@pgpmjs/migrate-client",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.4",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "Typed GraphQL ORM client for the Constructive Migrate API (db_migrate schema)",
|
|
6
6
|
"main": "index.js",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@0no-co/graphql.web": "^1.1.2",
|
|
43
|
-
"@constructive-io/graphql-query": "^3.27.
|
|
43
|
+
"@constructive-io/graphql-query": "^3.27.4",
|
|
44
44
|
"@constructive-io/graphql-types": "^3.12.0",
|
|
45
45
|
"gql-ast": "^3.11.0",
|
|
46
46
|
"graphql": "16.13.0"
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"makage": "^0.3.0",
|
|
51
51
|
"typescript": "^5.9.3"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "30fdaaacfc61f86b3e466f0c4c3768550fd77a55"
|
|
54
54
|
}
|