@striae-org/striae 3.3.0 → 4.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.
Files changed (68) hide show
  1. package/.env.example +1 -1
  2. package/README.md +1 -1
  3. package/app/components/actions/case-export/core-export.ts +5 -2
  4. package/app/components/actions/case-export/download-handlers.ts +1 -1
  5. package/app/components/actions/case-import/confirmation-import.ts +24 -23
  6. package/app/components/actions/case-import/image-operations.ts +20 -49
  7. package/app/components/actions/case-import/orchestrator.ts +1 -1
  8. package/app/components/actions/case-import/storage-operations.ts +54 -89
  9. package/app/components/actions/case-import/validation.ts +2 -13
  10. package/app/components/actions/case-manage.ts +15 -27
  11. package/app/components/actions/generate-pdf.ts +3 -7
  12. package/app/components/actions/image-manage.ts +64 -129
  13. package/app/components/button/button.module.css +12 -8
  14. package/app/components/sidebar/case-export/case-export.tsx +11 -6
  15. package/app/components/sidebar/cases/case-sidebar.tsx +21 -6
  16. package/app/components/sidebar/sidebar.module.css +0 -2
  17. package/app/components/user/delete-account.tsx +7 -7
  18. package/app/config-example/config.json +2 -8
  19. package/app/hooks/useInactivityTimeout.ts +2 -5
  20. package/app/root.tsx +94 -63
  21. package/app/routes/auth/emailActionHandler.tsx +1 -1
  22. package/app/routes/auth/emailVerification.tsx +1 -1
  23. package/app/routes/auth/login.tsx +7 -9
  24. package/app/routes/auth/passwordReset.tsx +1 -1
  25. package/app/routes/auth/route.ts +4 -3
  26. package/app/routes/striae/striae.tsx +4 -8
  27. package/app/services/audit/audit-api-client.ts +40 -0
  28. package/app/services/audit/audit-worker-client.ts +14 -17
  29. package/app/styles/root.module.css +13 -101
  30. package/app/tailwind.css +9 -2
  31. package/app/utils/auth.ts +5 -32
  32. package/app/utils/data-api-client.ts +43 -0
  33. package/app/utils/data-operations.ts +59 -75
  34. package/app/utils/image-api-client.ts +130 -0
  35. package/app/utils/pdf-api-client.ts +43 -0
  36. package/app/utils/permissions.ts +10 -23
  37. package/app/utils/user-api-client.ts +90 -0
  38. package/functions/api/_shared/firebase-auth.ts +255 -0
  39. package/functions/api/audit/[[path]].ts +150 -0
  40. package/functions/api/data/[[path]].ts +141 -0
  41. package/functions/api/image/[[path]].ts +143 -0
  42. package/functions/api/pdf/[[path]].ts +110 -0
  43. package/functions/api/user/[[path]].ts +196 -0
  44. package/package.json +3 -2
  45. package/public/.well-known/security.txt +3 -4
  46. package/scripts/deploy-all.sh +22 -8
  47. package/scripts/deploy-config.sh +194 -165
  48. package/scripts/deploy-pages-secrets.sh +231 -0
  49. package/scripts/deploy-worker-secrets.sh +1 -1
  50. package/worker-configuration.d.ts +7491 -11363
  51. package/workers/audit-worker/worker-configuration.d.ts +11323 -7448
  52. package/workers/audit-worker/wrangler.jsonc.example +1 -8
  53. package/workers/data-worker/worker-configuration.d.ts +11323 -7448
  54. package/workers/data-worker/wrangler.jsonc.example +1 -8
  55. package/workers/image-worker/src/image-worker.example.ts +10 -2
  56. package/workers/image-worker/worker-configuration.d.ts +11322 -7447
  57. package/workers/image-worker/wrangler.jsonc.example +1 -8
  58. package/workers/keys-worker/src/keys.ts +2 -1
  59. package/workers/keys-worker/worker-configuration.d.ts +11322 -7447
  60. package/workers/keys-worker/wrangler.jsonc.example +2 -9
  61. package/workers/pdf-worker/src/assets/icon-256.png +0 -0
  62. package/workers/pdf-worker/worker-configuration.d.ts +11323 -7448
  63. package/workers/pdf-worker/wrangler.jsonc.example +1 -8
  64. package/workers/user-worker/src/user-worker.example.ts +121 -41
  65. package/workers/user-worker/worker-configuration.d.ts +11323 -7448
  66. package/workers/user-worker/wrangler.jsonc.example +1 -8
  67. package/wrangler.toml.example +1 -1
  68. package/app/styles/legal-pages.module.css +0 -113

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.