introspectron 2.12.3 → 2.12.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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -96,6 +96,7 @@ psql testdb -f ./seed.sql
96
96
 
97
97
  ### 🧰 CLI & Codegen
98
98
 
99
+ * [pgpm](https://github.com/launchql/launchql/tree/main/packages/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
99
100
  * [@launchql/cli](https://github.com/launchql/launchql/tree/main/packages/cli): **🖥️ Command-line toolkit** for managing LaunchQL projects—supports database scaffolding, migrations, seeding, code generation, and automation.
100
101
  * [launchql/launchql-gen](https://github.com/launchql/launchql/tree/main/packages/launchql-gen): **✨ Auto-generated GraphQL** mutations and queries dynamically built from introspected schema data.
101
102
  * [@launchql/query-builder](https://github.com/launchql/launchql/tree/main/packages/query-builder): **🏗️ SQL constructor** providing a robust TypeScript-based query builder for dynamic generation of `SELECT`, `INSERT`, `UPDATE`, `DELETE`, and stored procedure calls—supports advanced SQL features like `JOIN`, `GROUP BY`, and schema-qualified queries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "introspectron",
3
- "version": "2.12.3",
3
+ "version": "2.12.4",
4
4
  "description": "introspect your Postgres database and generate an SDK",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "main": "index.js",
@@ -32,8 +32,8 @@
32
32
  "devDependencies": {
33
33
  "@jest/test-sequencer": "^29.7.0",
34
34
  "@types/pg": "^8.15.2",
35
- "graphile-test": "^2.6.3",
36
- "pgsql-test": "^2.13.3"
35
+ "graphile-test": "^2.6.4",
36
+ "pgsql-test": "^2.13.4"
37
37
  },
38
38
  "dependencies": {
39
39
  "graphql": "15.10.1",
@@ -48,5 +48,5 @@
48
48
  "graphile",
49
49
  "launchql"
50
50
  ],
51
- "gitHead": "2e8a123c53d33ee10377b0f034392b0dff1e8a88"
51
+ "gitHead": "e12fd536094cb6536ae3569a1ab3496b729dd843"
52
52
  }