pg-codegen 2.15.2 → 2.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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -148,18 +148,18 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
148
148
 
149
149
  ### 🔁 Streaming & Uploads
150
150
 
151
+ * [etag-hash](https://github.com/constructive-io/constructive/tree/main/packages/etag-hash): **🏷️ S3-compatible ETags** created by streaming and hashing file uploads in chunks.
152
+ * [etag-stream](https://github.com/constructive-io/constructive/tree/main/packages/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
153
+ * [uuid-hash](https://github.com/constructive-io/constructive/tree/main/packages/uuid-hash): **🆔 Deterministic UUIDs** generated from hashed content, great for deduplication and asset referencing.
154
+ * [uuid-stream](https://github.com/constructive-io/constructive/tree/main/packages/uuid-stream): **🌊 Streaming UUID generation** based on piped file content—ideal for upload pipelines.
151
155
  * [launchql/s3-streamer](https://github.com/constructive-io/constructive/tree/main/packages/s3-streamer): **📤 Direct S3 streaming** for large files with support for metadata injection and content validation.
152
- * [launchql/etag-hash](https://github.com/constructive-io/constructive/tree/main/packages/etag-hash): **🏷️ S3-compatible ETags** created by streaming and hashing file uploads in chunks.
153
- * [launchql/etag-stream](https://github.com/constructive-io/constructive/tree/main/packages/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
154
- * [launchql/uuid-hash](https://github.com/constructive-io/constructive/tree/main/packages/uuid-hash): **🆔 Deterministic UUIDs** generated from hashed content, great for deduplication and asset referencing.
155
- * [launchql/uuid-stream](https://github.com/constructive-io/constructive/tree/main/packages/uuid-stream): **🌊 Streaming UUID generation** based on piped file content—ideal for upload pipelines.
156
156
  * [launchql/upload-names](https://github.com/constructive-io/constructive/tree/main/packages/upload-names): **📂 Collision-resistant filenames** utility for structured and unique file names for uploads.
157
157
 
158
158
  ### 🧰 CLI & Codegen
159
159
 
160
160
  * [pgpm](https://github.com/constructive-io/constructive/tree/main/packages/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
161
161
  * [@launchql/cli](https://github.com/constructive-io/constructive/tree/main/packages/cli): **🖥️ Command-line toolkit** for managing LaunchQL projects—supports database scaffolding, migrations, seeding, code generation, and automation.
162
- * [constructive-io/constructive-gen](https://github.com/constructive-io/constructive/tree/main/packages/launchql-gen): **✨ Auto-generated GraphQL** mutations and queries dynamically built from introspected schema data.
162
+ * [launchql-gen](https://github.com/constructive-io/constructive/tree/main/packages/launchql-gen): **✨ Auto-generated GraphQL** mutations and queries dynamically built from introspected schema data.
163
163
  * [@launchql/query-builder](https://github.com/constructive-io/constructive/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.
164
164
  * [@launchql/query](https://github.com/constructive-io/constructive/tree/main/packages/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
165
165
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-codegen",
3
- "version": "2.15.2",
3
+ "version": "2.15.4",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "PostgreSQL Codegen",
6
6
  "main": "index.js",
@@ -41,18 +41,18 @@
41
41
  "dependencies": {
42
42
  "@babel/generator": "^7.26.3",
43
43
  "@babel/types": "^7.26.3",
44
- "@pgpmjs/logger": "^1.3.1",
45
- "@pgpmjs/server-utils": "^2.8.2",
46
- "@pgpmjs/types": "^2.12.0",
44
+ "@pgpmjs/logger": "^1.3.3",
45
+ "@pgpmjs/server-utils": "^2.8.4",
46
+ "@pgpmjs/types": "^2.12.2",
47
47
  "pg": "^8.16.3",
48
- "pg-cache": "^1.6.2",
49
- "pg-env": "^1.2.1",
50
- "pgsql-test": "^2.16.2"
48
+ "pg-cache": "^1.6.4",
49
+ "pg-env": "^1.2.2",
50
+ "pgsql-test": "^2.17.0"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/babel__generator": "^7.6.8",
54
54
  "@types/pg": "^8.16.0",
55
55
  "makage": "^0.1.8"
56
56
  },
57
- "gitHead": "0f810b087435df60801bfa63d4f780e95acb6d02"
57
+ "gitHead": "4326e2092d0c57901e898560974d502d626c42cb"
58
58
  }