@striae-org/striae 6.1.8 → 7.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/.env.example +0 -26
- package/app/components/actions/image-manage.ts +17 -67
- package/app/components/canvas/canvas.module.css +12 -0
- package/app/components/canvas/canvas.tsx +26 -5
- package/functions/api/audit/[[path]].ts +9 -24
- package/functions/api/data/[[path]].ts +9 -24
- package/functions/api/image/[[path]].ts +14 -30
- package/functions/api/pdf/[[path]].ts +9 -24
- package/functions/api/user/[[path]].ts +20 -36
- package/package.json +9 -10
- package/scripts/deploy-all.sh +29 -10
- package/scripts/deploy-config/modules/env-utils.sh +0 -68
- package/scripts/deploy-config/modules/prompt.sh +4 -110
- package/scripts/deploy-config/modules/scaffolding.sh +5 -0
- package/scripts/deploy-config/modules/validation.sh +1 -19
- package/scripts/deploy-pages-secrets.sh +0 -9
- package/scripts/deploy-worker-secrets.sh +2 -8
- package/tsconfig.json +1 -4
- package/workers/audit-worker/package.json +2 -2
- package/workers/audit-worker/src/audit-worker.ts +0 -5
- package/workers/audit-worker/src/config.ts +1 -6
- package/workers/audit-worker/src/types.ts +0 -1
- package/workers/audit-worker/wrangler.jsonc.example +2 -6
- package/workers/data-worker/package.json +3 -3
- package/workers/data-worker/src/config.ts +1 -6
- package/workers/data-worker/src/data-worker.ts +1 -6
- package/workers/data-worker/src/types.ts +0 -1
- package/workers/data-worker/wrangler.jsonc.example +2 -4
- package/workers/image-worker/package.json +2 -2
- package/workers/image-worker/src/handlers/delete-image.ts +5 -10
- package/workers/image-worker/src/handlers/mint-signed-url.ts +5 -10
- package/workers/image-worker/src/handlers/serve-image.ts +8 -9
- package/workers/image-worker/src/handlers/upload-image.ts +4 -9
- package/workers/image-worker/src/image-worker.ts +4 -4
- package/workers/image-worker/src/router.ts +11 -11
- package/workers/image-worker/src/security/signed-url.ts +2 -2
- package/workers/image-worker/src/types.ts +1 -2
- package/workers/image-worker/wrangler.jsonc.example +2 -1
- package/workers/pdf-worker/package.json +2 -2
- package/workers/pdf-worker/src/pdf-worker.ts +0 -8
- package/workers/pdf-worker/wrangler.jsonc.example +2 -1
- package/workers/user-worker/package.json +2 -2
- package/workers/user-worker/src/auth.ts +0 -7
- package/workers/user-worker/src/handlers/user-routes.ts +26 -34
- package/workers/user-worker/src/types.ts +13 -2
- package/workers/user-worker/src/user-worker.ts +19 -27
- package/workers/user-worker/wrangler.jsonc.example +2 -1
- package/wrangler.toml.example +22 -2
- package/worker-configuration.d.ts +0 -7509
- package/workers/image-worker/src/auth.ts +0 -7
package/wrangler.toml.example
CHANGED
|
@@ -1,8 +1,28 @@
|
|
|
1
1
|
#:schema node_modules/wrangler/config-schema.json
|
|
2
2
|
name = "PAGES_PROJECT_NAME"
|
|
3
|
-
compatibility_date = "2026-04-
|
|
3
|
+
compatibility_date = "2026-04-22"
|
|
4
4
|
compatibility_flags = ["nodejs_compat"]
|
|
5
5
|
pages_build_output_dir = "./build/client"
|
|
6
6
|
|
|
7
7
|
[placement]
|
|
8
|
-
mode = "smart"
|
|
8
|
+
mode = "smart"
|
|
9
|
+
|
|
10
|
+
[[services]]
|
|
11
|
+
binding = "USER_WORKER"
|
|
12
|
+
service = "USER_WORKER_NAME"
|
|
13
|
+
|
|
14
|
+
[[services]]
|
|
15
|
+
binding = "DATA_WORKER"
|
|
16
|
+
service = "DATA_WORKER_NAME"
|
|
17
|
+
|
|
18
|
+
[[services]]
|
|
19
|
+
binding = "AUDIT_WORKER"
|
|
20
|
+
service = "AUDIT_WORKER_NAME"
|
|
21
|
+
|
|
22
|
+
[[services]]
|
|
23
|
+
binding = "IMAGE_WORKER"
|
|
24
|
+
service = "IMAGES_WORKER_NAME"
|
|
25
|
+
|
|
26
|
+
[[services]]
|
|
27
|
+
binding = "PDF_WORKER"
|
|
28
|
+
service = "PDF_WORKER_NAME"
|