@striae-org/striae 4.0.0 → 4.0.2

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 (99) hide show
  1. package/.env.example +1 -0
  2. package/README.md +1 -1
  3. package/app/components/actions/case-export/data-processing.ts +1 -1
  4. package/app/components/actions/case-export/download-handlers.ts +5 -4
  5. package/app/components/actions/case-export/metadata-helpers.ts +1 -1
  6. package/app/components/actions/case-import/confirmation-import.ts +1 -1
  7. package/app/components/actions/case-import/image-operations.ts +1 -1
  8. package/app/components/actions/case-import/orchestrator.ts +1 -1
  9. package/app/components/actions/case-import/storage-operations.ts +3 -3
  10. package/app/components/actions/case-import/validation.ts +3 -4
  11. package/app/components/actions/case-import/zip-processing.ts +1 -1
  12. package/app/components/actions/case-manage.ts +3 -5
  13. package/app/components/actions/confirm-export.ts +4 -5
  14. package/app/components/actions/generate-pdf.ts +1 -1
  15. package/app/components/actions/image-manage.ts +4 -4
  16. package/app/components/actions/notes-manage.ts +1 -1
  17. package/app/components/actions/signout.tsx +1 -1
  18. package/app/components/audit/user-audit-viewer.tsx +1 -1
  19. package/app/components/auth/auth-provider.tsx +1 -1
  20. package/app/components/auth/mfa-verification.tsx +1 -1
  21. package/app/components/button/button.tsx +1 -1
  22. package/app/components/canvas/box-annotations/box-annotations.tsx +1 -1
  23. package/app/components/canvas/confirmation/confirmation.tsx +1 -1
  24. package/app/components/icon/icon.tsx +1 -1
  25. package/app/components/public-signing-key-modal/public-signing-key-modal.tsx +1 -1
  26. package/app/components/sidebar/case-export/case-export.tsx +1 -1
  27. package/app/components/sidebar/cases/case-sidebar.tsx +3 -3
  28. package/app/components/sidebar/cases/cases-modal.tsx +1 -1
  29. package/app/components/sidebar/files/files-modal.tsx +1 -1
  30. package/app/components/sidebar/notes/notes-sidebar.tsx +1 -1
  31. package/app/components/sidebar/sidebar-container.tsx +2 -17
  32. package/app/components/sidebar/sidebar.module.css +0 -29
  33. package/app/components/theme-provider/theme-provider.tsx +1 -1
  34. package/app/components/theme-provider/theme.ts +1 -1
  35. package/app/components/user/delete-account.tsx +1 -1
  36. package/app/components/user/manage-profile.tsx +1 -1
  37. package/app/components/user/mfa-phone-update.tsx +1 -1
  38. package/app/root.tsx +18 -51
  39. package/app/routes/auth/emailActionHandler.tsx +2 -3
  40. package/app/routes/auth/emailVerification.tsx +2 -2
  41. package/app/routes/auth/login.tsx +7 -9
  42. package/app/routes/auth/passwordReset.tsx +2 -2
  43. package/app/routes/striae/striae.tsx +2 -2
  44. package/app/services/audit/audit-export-signing.ts +2 -2
  45. package/app/services/audit/audit-export.service.ts +1 -2
  46. package/app/services/audit/audit.service.ts +1 -1
  47. package/app/services/firebase/index.ts +1 -1
  48. package/app/utils/api/index.ts +4 -0
  49. package/app/utils/auth/index.ts +5 -0
  50. package/app/utils/common/index.ts +3 -0
  51. package/app/utils/{version.ts → common/version.ts} +1 -1
  52. package/app/utils/{data-operations.ts → data/data-operations.ts} +4 -4
  53. package/app/utils/data/index.ts +2 -0
  54. package/app/utils/{permissions.ts → data/permissions.ts} +1 -1
  55. package/app/utils/forensics/index.ts +5 -0
  56. package/app/utils/ui/index.ts +2 -0
  57. package/functions/api/image/[[path]].ts +17 -1
  58. package/package.json +18 -20
  59. package/public/.well-known/keybase.txt +56 -0
  60. package/public/.well-known/security.txt +3 -4
  61. package/scripts/deploy-config.sh +178 -142
  62. package/scripts/deploy-worker-secrets.sh +1 -2
  63. package/worker-configuration.d.ts +7491 -11363
  64. package/workers/audit-worker/worker-configuration.d.ts +11323 -7448
  65. package/workers/audit-worker/wrangler.jsonc.example +1 -1
  66. package/workers/data-worker/worker-configuration.d.ts +11323 -7448
  67. package/workers/data-worker/wrangler.jsonc.example +1 -1
  68. package/workers/image-worker/src/image-worker.example.ts +10 -2
  69. package/workers/image-worker/worker-configuration.d.ts +11322 -7447
  70. package/workers/image-worker/wrangler.jsonc.example +1 -1
  71. package/workers/keys-worker/src/keys.ts +2 -1
  72. package/workers/keys-worker/worker-configuration.d.ts +11322 -7447
  73. package/workers/keys-worker/wrangler.jsonc.example +1 -1
  74. package/workers/pdf-worker/src/pdf-worker.example.ts +144 -39
  75. package/workers/pdf-worker/worker-configuration.d.ts +11323 -7448
  76. package/workers/pdf-worker/wrangler.jsonc.example +1 -1
  77. package/workers/user-worker/worker-configuration.d.ts +11323 -7448
  78. package/workers/user-worker/wrangler.jsonc.example +1 -1
  79. package/wrangler.toml.example +1 -1
  80. package/public/.well-known/publickey.info@striae.org.asc +0 -17
  81. package/public/oin-badge.png +0 -0
  82. /package/app/utils/{data-api-client.ts → api/data-api-client.ts} +0 -0
  83. /package/app/utils/{image-api-client.ts → api/image-api-client.ts} +0 -0
  84. /package/app/utils/{pdf-api-client.ts → api/pdf-api-client.ts} +0 -0
  85. /package/app/utils/{user-api-client.ts → api/user-api-client.ts} +0 -0
  86. /package/app/utils/{auth-action-settings.ts → auth/auth-action-settings.ts} +0 -0
  87. /package/app/utils/{auth.ts → auth/auth.ts} +0 -0
  88. /package/app/utils/{mfa-phone.ts → auth/mfa-phone.ts} +0 -0
  89. /package/app/utils/{mfa.ts → auth/mfa.ts} +0 -0
  90. /package/app/utils/{password-policy.ts → auth/password-policy.ts} +0 -0
  91. /package/app/utils/{batch-operations.ts → common/batch-operations.ts} +0 -0
  92. /package/app/utils/{id-generator.ts → common/id-generator.ts} +0 -0
  93. /package/app/utils/{SHA256.ts → forensics/SHA256.ts} +0 -0
  94. /package/app/utils/{audit-export-signature.ts → forensics/audit-export-signature.ts} +0 -0
  95. /package/app/utils/{confirmation-signature.ts → forensics/confirmation-signature.ts} +0 -0
  96. /package/app/utils/{export-verification.ts → forensics/export-verification.ts} +0 -0
  97. /package/app/utils/{signature-utils.ts → forensics/signature-utils.ts} +0 -0
  98. /package/app/utils/{annotation-timestamp.ts → ui/annotation-timestamp.ts} +0 -0
  99. /package/app/utils/{style.ts → ui/style.ts} +0 -0
@@ -2,7 +2,7 @@
2
2
  "name": "PDF_WORKER_NAME",
3
3
  "account_id": "ACCOUNT_ID",
4
4
  "main": "src/pdf-worker.ts",
5
- "compatibility_date": "2026-03-15",
5
+ "compatibility_date": "2026-03-17",
6
6
  "compatibility_flags": [
7
7
  "nodejs_compat"
8
8
  ],