graphile-upload-plugin 0.5.4 → 0.5.5
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 +17 -17
- package/esm/resolvers/upload.js +2 -2
- package/package.json +9 -9
- package/resolvers/upload.js +2 -2
package/README.md
CHANGED
|
@@ -110,10 +110,10 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
110
110
|
|
|
111
111
|
### 🧪 Testing
|
|
112
112
|
|
|
113
|
-
* [pgsql-test](https://github.com/constructive-io/constructive/tree/main/
|
|
114
|
-
* [supabase-test](https://github.com/constructive-io/constructive/tree/main/
|
|
115
|
-
* [graphile-test](https://github.com/constructive-io/constructive/tree/main/
|
|
116
|
-
* [pg-query-context](https://github.com/constructive-io/constructive/tree/main/
|
|
113
|
+
* [pgsql-test](https://github.com/constructive-io/constructive/tree/main/postgres/pgsql-test): **📊 Isolated testing environments** with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
|
|
114
|
+
* [supabase-test](https://github.com/constructive-io/constructive/tree/main/postgres/supabase-test): **🧪 Supabase-native test harness** preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
|
|
115
|
+
* [graphile-test](https://github.com/constructive-io/constructive/tree/main/graphile/graphile-test): **🔐 Authentication mocking** for Graphile-focused test helpers and emulating row-level security contexts.
|
|
116
|
+
* [pg-query-context](https://github.com/constructive-io/constructive/tree/main/postgres/pg-query-context): **🔒 Session context injection** to add session-local context (e.g., `SET LOCAL`) into queries—ideal for setting `role`, `jwt.claims`, and other session settings.
|
|
117
117
|
|
|
118
118
|
### 🧠 Parsing & AST
|
|
119
119
|
|
|
@@ -127,25 +127,25 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
127
127
|
|
|
128
128
|
### 🚀 API & Dev Tools
|
|
129
129
|
|
|
130
|
-
* [
|
|
131
|
-
* [
|
|
130
|
+
* [@constructive-io/graphql-server](https://github.com/constructive-io/constructive/tree/main/graphql/server): **⚡ Express-based API server** powered by PostGraphile to expose a secure, scalable GraphQL API over your Postgres database.
|
|
131
|
+
* [@constructive-io/graphql-explorer](https://github.com/constructive-io/constructive/tree/main/graphql/explorer): **🔎 Visual API explorer** with GraphiQL for browsing across all databases and schemas—useful for debugging, documentation, and API prototyping.
|
|
132
132
|
|
|
133
133
|
### 🔁 Streaming & Uploads
|
|
134
134
|
|
|
135
|
-
* [etag-hash](https://github.com/constructive-io/constructive/tree/main/
|
|
136
|
-
* [etag-stream](https://github.com/constructive-io/constructive/tree/main/
|
|
137
|
-
* [uuid-hash](https://github.com/constructive-io/constructive/tree/main/
|
|
138
|
-
* [uuid-stream](https://github.com/constructive-io/constructive/tree/main/
|
|
139
|
-
* [
|
|
140
|
-
* [
|
|
135
|
+
* [etag-hash](https://github.com/constructive-io/constructive/tree/main/streaming/etag-hash): **🏷️ S3-compatible ETags** created by streaming and hashing file uploads in chunks.
|
|
136
|
+
* [etag-stream](https://github.com/constructive-io/constructive/tree/main/streaming/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
|
|
137
|
+
* [uuid-hash](https://github.com/constructive-io/constructive/tree/main/streaming/uuid-hash): **🆔 Deterministic UUIDs** generated from hashed content, great for deduplication and asset referencing.
|
|
138
|
+
* [uuid-stream](https://github.com/constructive-io/constructive/tree/main/streaming/uuid-stream): **🌊 Streaming UUID generation** based on piped file content—ideal for upload pipelines.
|
|
139
|
+
* [@constructive-io/s3-streamer](https://github.com/constructive-io/constructive/tree/main/streaming/s3-streamer): **📤 Direct S3 streaming** for large files with support for metadata injection and content validation.
|
|
140
|
+
* [@constructive-io/upload-names](https://github.com/constructive-io/constructive/tree/main/streaming/upload-names): **📂 Collision-resistant filenames** utility for structured and unique file names for uploads.
|
|
141
141
|
|
|
142
142
|
### 🧰 CLI & Codegen
|
|
143
143
|
|
|
144
|
-
* [pgpm](https://github.com/constructive-io/constructive/tree/main/
|
|
145
|
-
* [@
|
|
146
|
-
* [
|
|
147
|
-
* [@
|
|
148
|
-
* [@
|
|
144
|
+
* [pgpm](https://github.com/constructive-io/constructive/tree/main/pgpm/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
|
|
145
|
+
* [@constructive-io/cli](https://github.com/constructive-io/constructive/tree/main/packages/cli): **🖥️ Command-line toolkit** for managing Constructive projects—supports database scaffolding, migrations, seeding, code generation, and automation.
|
|
146
|
+
* [@constructive-io/graphql-codegen](https://github.com/constructive-io/constructive/tree/main/graphql/codegen): **✨ GraphQL code generation** (types, operations, SDK) from schema/endpoint introspection.
|
|
147
|
+
* [@constructive-io/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.
|
|
148
|
+
* [@constructive-io/graphql-query](https://github.com/constructive-io/constructive/tree/main/graphql/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
|
|
149
149
|
|
|
150
150
|
## Credits
|
|
151
151
|
|
package/esm/resolvers/upload.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-upload-plugin",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "Graphile upload plugin for PostGraphile",
|
|
5
5
|
"author": "Constructive <developers@constructive.io>",
|
|
6
6
|
"homepage": "https://github.com/constructive-io/constructive",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"build": "makage build",
|
|
15
15
|
"build:dev": "makage build --dev",
|
|
16
16
|
"lint": "eslint . --fix",
|
|
17
|
-
"test": "jest",
|
|
17
|
+
"test": "jest --passWithNoTests",
|
|
18
18
|
"test:watch": "jest --watch"
|
|
19
19
|
},
|
|
20
20
|
"publishConfig": {
|
|
@@ -40,20 +40,20 @@
|
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@aws-sdk/client-s3": "^3.952.0",
|
|
43
|
-
"@
|
|
44
|
-
"@
|
|
43
|
+
"@constructive-io/graphql-env": "^2.8.4",
|
|
44
|
+
"@constructive-io/s3-utils": "^2.3.5",
|
|
45
45
|
"@types/pg": "^8.16.0",
|
|
46
|
-
"graphile-test": "^2.11.
|
|
46
|
+
"graphile-test": "^2.11.5",
|
|
47
47
|
"graphql-tag": "^2.12.6",
|
|
48
48
|
"makage": "^0.1.6",
|
|
49
|
-
"pgsql-test": "^2.17.
|
|
49
|
+
"pgsql-test": "^2.17.2",
|
|
50
50
|
"ts-jest": "^29.4.6"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@
|
|
54
|
-
"@
|
|
53
|
+
"@constructive-io/s3-streamer": "^2.8.5",
|
|
54
|
+
"@constructive-io/upload-names": "^2.3.3",
|
|
55
55
|
"graphile-build": "^4.14.1",
|
|
56
56
|
"graphql": "15.10.1"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "22cfe32e994e26a6490e04e28bab26d1e7e6345c"
|
|
59
59
|
}
|
package/resolvers/upload.js
CHANGED
|
@@ -4,8 +4,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.Uploader = void 0;
|
|
7
|
-
const s3_streamer_1 = __importDefault(require("@
|
|
8
|
-
const upload_names_1 = __importDefault(require("@
|
|
7
|
+
const s3_streamer_1 = __importDefault(require("@constructive-io/s3-streamer"));
|
|
8
|
+
const upload_names_1 = __importDefault(require("@constructive-io/upload-names"));
|
|
9
9
|
class Uploader {
|
|
10
10
|
opts;
|
|
11
11
|
streamerInstance;
|