graphile-meta-schema 0.3.6 → 0.3.7
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 +5 -5
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -174,18 +174,18 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
174
174
|
|
|
175
175
|
### 🔁 Streaming & Uploads
|
|
176
176
|
|
|
177
|
+
* [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.
|
|
178
|
+
* [etag-stream](https://github.com/constructive-io/constructive/tree/main/packages/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
|
|
179
|
+
* [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.
|
|
180
|
+
* [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.
|
|
177
181
|
* [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.
|
|
178
|
-
* [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.
|
|
179
|
-
* [launchql/etag-stream](https://github.com/constructive-io/constructive/tree/main/packages/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
|
|
180
|
-
* [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.
|
|
181
|
-
* [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.
|
|
182
182
|
* [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.
|
|
183
183
|
|
|
184
184
|
### 🧰 CLI & Codegen
|
|
185
185
|
|
|
186
186
|
* [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.
|
|
187
187
|
* [@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.
|
|
188
|
-
* [
|
|
188
|
+
* [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.
|
|
189
189
|
* [@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.
|
|
190
190
|
* [@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.
|
|
191
191
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-meta-schema",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
4
4
|
"description": "graphile meta schema",
|
|
5
5
|
"author": "Constructive <developers@constructive.io>",
|
|
6
6
|
"homepage": "https://github.com/constructive-io/constructive",
|
|
@@ -33,17 +33,18 @@
|
|
|
33
33
|
"postgres",
|
|
34
34
|
"graphql",
|
|
35
35
|
"metaschema",
|
|
36
|
-
"
|
|
36
|
+
"constructive",
|
|
37
|
+
"pgpm"
|
|
37
38
|
],
|
|
38
39
|
"bugs": {
|
|
39
40
|
"url": "https://github.com/constructive-io/constructive/issues"
|
|
40
41
|
},
|
|
41
42
|
"devDependencies": {
|
|
42
43
|
"@graphile-contrib/pg-many-to-many": "^1.0.0",
|
|
43
|
-
"graphile-test": "^2.11.
|
|
44
|
+
"graphile-test": "^2.11.2",
|
|
44
45
|
"graphql-tag": "2.12.6",
|
|
45
46
|
"makage": "^0.1.8",
|
|
46
|
-
"pgsql-test": "^2.16.
|
|
47
|
+
"pgsql-test": "^2.16.3"
|
|
47
48
|
},
|
|
48
49
|
"dependencies": {
|
|
49
50
|
"graphile-build": "^4.14.1",
|
|
@@ -51,5 +52,5 @@
|
|
|
51
52
|
"graphile-utils": "^4.14.1",
|
|
52
53
|
"graphql": "15.10.1"
|
|
53
54
|
},
|
|
54
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "52828c38b144fdc02b6a9a0c8b0ff795d1752d53"
|
|
55
56
|
}
|