pgpm 0.6.1 → 1.0.1
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 +7 -5
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -52,6 +52,8 @@ psql -d mydb1 -c "SELECT faker.city('MI');"
|
|
|
52
52
|
|
|
53
53
|
## 🛠️ Commands
|
|
54
54
|
|
|
55
|
+
Here are some useful commands for reference:
|
|
56
|
+
|
|
55
57
|
### Getting Started
|
|
56
58
|
|
|
57
59
|
- `pgpm init` - Initialize a new module
|
|
@@ -397,18 +399,18 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
397
399
|
|
|
398
400
|
### 🔁 Streaming & Uploads
|
|
399
401
|
|
|
402
|
+
* [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.
|
|
403
|
+
* [etag-stream](https://github.com/constructive-io/constructive/tree/main/packages/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
|
|
404
|
+
* [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.
|
|
405
|
+
* [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.
|
|
400
406
|
* [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.
|
|
401
|
-
* [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.
|
|
402
|
-
* [launchql/etag-stream](https://github.com/constructive-io/constructive/tree/main/packages/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
|
|
403
|
-
* [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.
|
|
404
|
-
* [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.
|
|
405
407
|
* [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.
|
|
406
408
|
|
|
407
409
|
### 🧰 CLI & Codegen
|
|
408
410
|
|
|
409
411
|
* [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.
|
|
410
412
|
* [@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.
|
|
411
|
-
* [
|
|
413
|
+
* [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.
|
|
412
414
|
* [@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.
|
|
413
415
|
* [@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.
|
|
414
416
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgpm",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "PostgreSQL Package Manager - Database migration and package management CLI",
|
|
6
6
|
"main": "index.js",
|
|
@@ -45,17 +45,17 @@
|
|
|
45
45
|
"ts-node": "^10.9.2"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@pgpmjs/core": "^3.0.
|
|
49
|
-
"@pgpmjs/env": "^2.8.
|
|
50
|
-
"@pgpmjs/logger": "^1.3.
|
|
51
|
-
"@pgpmjs/types": "^2.12.
|
|
48
|
+
"@pgpmjs/core": "^3.0.3",
|
|
49
|
+
"@pgpmjs/env": "^2.8.1",
|
|
50
|
+
"@pgpmjs/logger": "^1.3.2",
|
|
51
|
+
"@pgpmjs/types": "^2.12.1",
|
|
52
52
|
"appstash": "^0.2.5",
|
|
53
53
|
"create-gen-app": "^0.3.5",
|
|
54
54
|
"find-and-require-package-json": "^0.8.1",
|
|
55
55
|
"inquirerer": "^2.1.13",
|
|
56
56
|
"js-yaml": "^4.1.0",
|
|
57
57
|
"minimist": "^1.2.8",
|
|
58
|
-
"pg-cache": "^1.6.
|
|
58
|
+
"pg-cache": "^1.6.3",
|
|
59
59
|
"pg-env": "^1.2.1",
|
|
60
60
|
"semver": "^7.6.2",
|
|
61
61
|
"shelljs": "^0.10.0",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"pg",
|
|
74
74
|
"pgsql"
|
|
75
75
|
],
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "52828c38b144fdc02b6a9a0c8b0ff795d1752d53"
|
|
77
77
|
}
|