pg-codegen 2.12.2 → 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.
- package/README.md +1 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -132,6 +132,7 @@ export class Users implements Users {
|
|
|
132
132
|
|
|
133
133
|
### 🧰 CLI & Codegen
|
|
134
134
|
|
|
135
|
+
* [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.
|
|
135
136
|
* [@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.
|
|
136
137
|
* [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.
|
|
137
138
|
* [@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": "pg-codegen",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.4",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostgreSQL Codegen",
|
|
6
6
|
"main": "index.js",
|
|
@@ -42,16 +42,16 @@
|
|
|
42
42
|
"@babel/generator": "^7.26.3",
|
|
43
43
|
"@babel/types": "^7.26.3",
|
|
44
44
|
"@launchql/logger": "^1.1.3",
|
|
45
|
-
"@launchql/server-utils": "^2.5.
|
|
46
|
-
"@launchql/types": "^2.7.
|
|
45
|
+
"@launchql/server-utils": "^2.5.2",
|
|
46
|
+
"@launchql/types": "^2.7.1",
|
|
47
47
|
"pg": "^8.16.0",
|
|
48
|
-
"pg-cache": "^1.3.
|
|
48
|
+
"pg-cache": "^1.3.9",
|
|
49
49
|
"pg-env": "^1.1.1",
|
|
50
|
-
"pgsql-test": "^2.13.
|
|
50
|
+
"pgsql-test": "^2.13.4"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/babel__generator": "^7.6.8",
|
|
54
54
|
"@types/pg": "^8.15.2"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "e12fd536094cb6536ae3569a1ab3496b729dd843"
|
|
57
57
|
}
|