@cosmicdrift/kumiko-bundled-features 1.0.0 → 2.0.0
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/package.json +41 -7
- package/src/__tests__/access-invalidation-consumer.integration.test.ts +279 -0
- package/src/__tests__/access-invalidation-stream.integration.test.ts +217 -0
- package/src/admin-shell/__tests__/admin-shell-security.integration.test.ts +200 -0
- package/src/admin-shell/__tests__/admin-shell.boot.test.ts +147 -0
- package/src/admin-shell/__tests__/overview-allowlist.test.ts +43 -0
- package/src/admin-shell/__tests__/overview-screens.boot.test.ts +35 -0
- package/src/admin-shell/constants.ts +11 -0
- package/src/admin-shell/feature.ts +135 -0
- package/src/admin-shell/i18n.ts +36 -0
- package/src/admin-shell/index.ts +17 -0
- package/src/admin-shell/overview-allowlist.ts +37 -0
- package/src/admin-shell/web/client-plugin.tsx +26 -0
- package/src/admin-shell/web/i18n.ts +16 -0
- package/src/admin-shell/web/index.ts +2 -0
- package/src/admin-shell/web/overview-layout.tsx +69 -0
- package/src/admin-shell/web/overview-query.ts +15 -0
- package/src/admin-shell/web/platform-overview-screen.tsx +90 -0
- package/src/admin-shell/web/tenant-overview-screen.tsx +90 -0
- package/src/agent-tools/__tests__/tool-catalog.test.ts +179 -0
- package/src/agent-tools/__tests__/tool-dispatch.integration.test.ts +100 -0
- package/src/agent-tools/__tests__/tool-dispatch.test.ts +126 -0
- package/src/agent-tools/index.ts +9 -0
- package/src/agent-tools/tool-catalog.ts +130 -0
- package/src/agent-tools/tool-dispatch.ts +82 -0
- package/src/agent-tools/types.ts +38 -0
- package/src/audit/__tests__/audit-screens.boot.test.ts +51 -0
- package/src/audit/__tests__/audit-security.integration.test.ts +201 -0
- package/src/audit/__tests__/audit.integration.test.ts +50 -25
- package/src/audit/constants.ts +9 -2
- package/src/audit/feature.ts +33 -1
- package/src/audit/handlers/details.query.ts +47 -0
- package/src/audit/handlers/list.query.ts +3 -2
- package/src/audit/i18n.ts +31 -0
- package/src/audit/web/audit-log-detail-screen.tsx +131 -0
- package/src/audit/web/audit-log-screen.tsx +250 -0
- package/src/audit/web/client-plugin.tsx +22 -0
- package/src/audit/web/i18n.ts +12 -0
- package/src/audit/web/index.ts +5 -0
- package/src/auth-email-password/__tests__/account-lockout-no-redis.integration.test.ts +4 -4
- package/src/auth-email-password/__tests__/account-lockout.integration.test.ts +4 -4
- package/src/auth-email-password/__tests__/account-unlock.integration.test.ts +283 -0
- package/src/auth-email-password/__tests__/auth-claims.integration.test.ts +10 -11
- package/src/auth-email-password/__tests__/auth-user-row.test.ts +36 -0
- package/src/auth-email-password/__tests__/auth.integration.test.ts +33 -6
- package/src/auth-email-password/__tests__/email-verification.integration.test.ts +9 -6
- package/src/auth-email-password/__tests__/feature-options.test.ts +33 -0
- package/src/auth-email-password/__tests__/identity-v3-login.integration.test.ts +3 -3
- package/src/auth-email-password/__tests__/invite-flow-kms.integration.test.ts +283 -0
- package/src/auth-email-password/__tests__/invite-flow.integration.test.ts +35 -1
- package/src/auth-email-password/__tests__/login-mfa-setup-required.integration.test.ts +129 -0
- package/src/auth-email-password/__tests__/multi-roles.integration.test.ts +1 -1
- package/src/auth-email-password/__tests__/password-policy.test.ts +15 -0
- package/src/auth-email-password/__tests__/password-reset.integration.test.ts +19 -6
- package/src/auth-email-password/__tests__/public-routes-rate-limit.integration.test.ts +3 -3
- package/src/auth-email-password/__tests__/seed-admin.integration.test.ts +1 -1
- package/src/auth-email-password/__tests__/self-registration-toggle.integration.test.ts +264 -0
- package/src/auth-email-password/__tests__/session-callbacks.integration.test.ts +20 -4
- package/src/auth-email-password/__tests__/session-strict-mode.integration.test.ts +7 -14
- package/src/auth-email-password/__tests__/signup-flow.integration.test.ts +91 -0
- package/src/auth-email-password/constants.ts +25 -0
- package/src/auth-email-password/email-templates.ts +32 -0
- package/src/auth-email-password/errors.ts +9 -0
- package/src/auth-email-password/feature.ts +59 -11
- package/src/auth-email-password/handlers/change-password.write.ts +14 -13
- package/src/auth-email-password/handlers/confirm-account-unlock.write.ts +59 -0
- package/src/auth-email-password/handlers/confirm-token-flow.ts +34 -105
- package/src/auth-email-password/handlers/invite-accept-with-login.write.ts +12 -5
- package/src/auth-email-password/handlers/invite-accept.write.ts +9 -2
- package/src/auth-email-password/handlers/invite-create.write.ts +2 -2
- package/src/auth-email-password/handlers/invite-signup-complete.write.ts +12 -4
- package/src/auth-email-password/handlers/login.write.ts +86 -16
- package/src/auth-email-password/handlers/logout.write.ts +4 -2
- package/src/auth-email-password/handlers/request-account-unlock.write.ts +38 -0
- package/src/auth-email-password/handlers/reset-password.write.ts +3 -2
- package/src/auth-email-password/handlers/self-registration-status.query.ts +23 -0
- package/src/auth-email-password/handlers/signup-confirm.write.ts +19 -11
- package/src/auth-email-password/handlers/signup-request.write.ts +22 -0
- package/src/auth-email-password/handlers/token-request-handler.ts +4 -2
- package/src/auth-email-password/i18n.ts +52 -0
- package/src/auth-email-password/index.ts +13 -2
- package/src/auth-email-password/lockout-store.ts +10 -5
- package/src/auth-email-password/password-policy.ts +2108 -0
- package/src/auth-email-password/seeding.ts +55 -27
- package/src/auth-email-password/self-registration-toggle.ts +25 -0
- package/src/auth-email-password/signed-token.ts +1 -0
- package/src/auth-email-password/unlock-token.ts +28 -0
- package/src/auth-email-password/web/__tests__/auth-client.test.ts +542 -0
- package/src/auth-email-password/web/__tests__/auth-form-logic.test.ts +44 -0
- package/src/auth-email-password/web/__tests__/auth-gate.test.tsx +194 -6
- package/src/auth-email-password/web/__tests__/client-plugin.test.tsx +34 -0
- package/src/auth-email-password/web/__tests__/confirm-account-unlock-screen.test.tsx +64 -0
- package/src/auth-email-password/web/__tests__/forgot-password-screen.test.tsx +5 -1
- package/src/auth-email-password/web/__tests__/invite-accept-screen.test.tsx +129 -2
- package/src/auth-email-password/web/__tests__/login-screen.test.tsx +149 -5
- package/src/auth-email-password/web/__tests__/request-account-unlock-screen.test.tsx +137 -0
- package/src/auth-email-password/web/__tests__/reset-password-screen.test.tsx +5 -1
- package/src/auth-email-password/web/__tests__/signup-complete-screen.test.tsx +134 -0
- package/src/auth-email-password/web/__tests__/signup-screen.test.tsx +93 -0
- package/src/auth-email-password/web/__tests__/test-utils.tsx +12 -2
- package/src/auth-email-password/web/__tests__/use-url-token.test.tsx +29 -0
- package/src/auth-email-password/web/__tests__/verify-email-screen.test.tsx +5 -1
- package/src/auth-email-password/web/auth-client.ts +96 -18
- package/src/auth-email-password/web/auth-form-logic.ts +30 -0
- package/src/auth-email-password/web/auth-form-primitives.tsx +22 -20
- package/src/auth-email-password/web/auth-gate.tsx +140 -19
- package/src/auth-email-password/web/client-plugin.ts +24 -2
- package/src/auth-email-password/web/confirm-account-unlock-screen.tsx +95 -0
- package/src/auth-email-password/web/forgot-password-screen.tsx +6 -6
- package/src/auth-email-password/web/index.ts +16 -4
- package/src/auth-email-password/web/invite-accept-screen.tsx +5 -5
- package/src/auth-email-password/web/login-screen.tsx +78 -22
- package/src/auth-email-password/web/request-account-unlock-screen.tsx +112 -0
- package/src/auth-email-password/web/reset-password-screen.tsx +15 -18
- package/src/auth-email-password/web/session.tsx +11 -6
- package/src/auth-email-password/web/signup-complete-screen.tsx +13 -15
- package/src/auth-email-password/web/signup-screen.tsx +8 -10
- package/src/auth-email-password/web/use-shell-user.ts +5 -2
- package/src/auth-email-password/web/user-menu.tsx +3 -1
- package/src/auth-email-password/web/verify-email-screen.tsx +10 -14
- package/src/auth-foundation/__tests__/feature.test.ts +46 -0
- package/src/auth-foundation/__tests__/session-store.test.ts +77 -0
- package/src/auth-foundation/__tests__/tenant-providers.test.ts +160 -0
- package/src/auth-foundation/__tests__/token-verifier.test.ts +150 -0
- package/src/auth-foundation/boot-checks.ts +150 -0
- package/src/auth-foundation/feature.ts +157 -0
- package/src/auth-foundation/index.ts +37 -0
- package/src/auth-foundation/resolve-anonymous-access.ts +62 -0
- package/src/auth-foundation/types.ts +170 -0
- package/src/auth-mfa/__tests__/base32.test.ts +28 -0
- package/src/auth-mfa/__tests__/disable-and-regenerate.integration.test.ts +265 -0
- package/src/auth-mfa/__tests__/enable-confirm-preauth.integration.test.ts +321 -0
- package/src/auth-mfa/__tests__/enable-flow.integration.test.ts +322 -0
- package/src/auth-mfa/__tests__/enable-start-preauth.integration.test.ts +237 -0
- package/src/auth-mfa/__tests__/errors-i18n-parity.test.ts +39 -0
- package/src/auth-mfa/__tests__/mfa-preauth-setup-token.test.ts +113 -0
- package/src/auth-mfa/__tests__/no-redis.integration.test.ts +209 -0
- package/src/auth-mfa/__tests__/pii-subject-encryption.integration.test.ts +139 -0
- package/src/auth-mfa/__tests__/reencrypt-job.integration.test.ts +247 -0
- package/src/auth-mfa/__tests__/session-auto-revoke.integration.test.ts +169 -0
- package/src/auth-mfa/__tests__/totp.test.ts +131 -0
- package/src/auth-mfa/__tests__/verify.integration.test.ts +319 -0
- package/src/auth-mfa/base32.ts +51 -0
- package/src/auth-mfa/config.ts +26 -0
- package/src/auth-mfa/constants.ts +45 -0
- package/src/auth-mfa/db/queries.ts +45 -0
- package/src/auth-mfa/errors.ts +66 -0
- package/src/auth-mfa/feature.ts +170 -0
- package/src/auth-mfa/handlers/disable.write.ts +67 -0
- package/src/auth-mfa/handlers/enable-confirm-preauth.write.ts +200 -0
- package/src/auth-mfa/handlers/enable-confirm.write.ts +106 -0
- package/src/auth-mfa/handlers/enable-start-preauth.write.ts +87 -0
- package/src/auth-mfa/handlers/enable-start.write.ts +66 -0
- package/src/auth-mfa/handlers/reencrypt.job.ts +234 -0
- package/src/auth-mfa/handlers/regenerate-recovery.write.ts +77 -0
- package/src/auth-mfa/handlers/status.query.ts +23 -0
- package/src/auth-mfa/handlers/verify.write.ts +179 -0
- package/src/auth-mfa/i18n.ts +12 -0
- package/src/auth-mfa/index.ts +19 -0
- package/src/auth-mfa/mfa-challenge-token.ts +90 -0
- package/src/auth-mfa/mfa-preauth-setup-token.ts +86 -0
- package/src/auth-mfa/mfa-setup-token.ts +96 -0
- package/src/auth-mfa/mfa-status-checker.ts +84 -0
- package/src/auth-mfa/mfa-verify-attempts.ts +90 -0
- package/src/auth-mfa/otpauth-uri.ts +21 -0
- package/src/auth-mfa/recovery-codes.ts +54 -0
- package/src/auth-mfa/schema/user-mfa.ts +60 -0
- package/src/auth-mfa/testing.ts +5 -0
- package/src/auth-mfa/totp.ts +67 -0
- package/src/auth-mfa/verify-factor.ts +58 -0
- package/src/auth-mfa/web/__tests__/mfa-client.test.ts +265 -0
- package/src/auth-mfa/web/__tests__/mfa-enable-screen.test.tsx +182 -0
- package/src/auth-mfa/web/__tests__/mfa-setup-preauth-screen.test.tsx +379 -0
- package/src/auth-mfa/web/__tests__/mfa-verify-screen.test.tsx +104 -0
- package/src/auth-mfa/web/client-plugin.ts +37 -0
- package/src/auth-mfa/web/i18n.ts +136 -0
- package/src/auth-mfa/web/index.ts +27 -0
- package/src/auth-mfa/web/mfa-client.ts +184 -0
- package/src/auth-mfa/web/mfa-disable-dialog.tsx +69 -0
- package/src/auth-mfa/web/mfa-enable-screen.tsx +228 -0
- package/src/auth-mfa/web/mfa-recovery-codes-reveal.tsx +53 -0
- package/src/auth-mfa/web/mfa-regenerate-recovery-dialog.tsx +68 -0
- package/src/auth-mfa/web/mfa-setup-preauth-screen.tsx +267 -0
- package/src/auth-mfa/web/mfa-verify-screen.tsx +117 -0
- package/src/auth-mfa/web/qrcode-browser.d.ts +12 -0
- package/src/auth-mfa-user-data/__tests__/hooks.integration.test.ts +134 -0
- package/src/auth-mfa-user-data/hooks.ts +53 -0
- package/src/auth-mfa-user-data/index.ts +21 -0
- package/src/billing-foundation/__tests__/billing-foundation.integration.test.ts +206 -2
- package/src/billing-foundation/__tests__/subscription-provider-contract.ts +93 -0
- package/src/billing-foundation/entities.ts +28 -4
- package/src/billing-foundation/events.ts +6 -2
- package/src/billing-foundation/feature.ts +9 -1
- package/src/billing-foundation/get-subscription-for-tenant.ts +16 -5
- package/src/billing-foundation/handlers/create-portal-session.write.ts +17 -1
- package/src/billing-foundation/handlers/list-subscriptions.query.ts +15 -1
- package/src/billing-foundation/handlers/process-event.write.ts +39 -3
- package/src/billing-foundation/tenant-destroy-hook.ts +46 -0
- package/src/cap-counter/__tests__/cap-list.boot.test.ts +27 -0
- package/src/cap-counter/__tests__/cap-list.security.integration.test.ts +53 -0
- package/src/cap-counter/__tests__/entity-ddl.test.ts +15 -0
- package/src/cap-counter/__tests__/with-cap-enforcement.integration.test.ts +8 -5
- package/src/cap-counter/constants.ts +2 -0
- package/src/cap-counter/enforce-cap.ts +15 -18
- package/src/cap-counter/entity.ts +3 -3
- package/src/cap-counter/feature.ts +28 -1
- package/src/cap-counter/i18n.ts +12 -0
- package/src/cap-counter/with-cap-enforcement.ts +2 -2
- package/src/channel-email/__tests__/pii-guard.test.ts +56 -0
- package/src/channel-email/email-channel.ts +2 -1
- package/src/channel-email/index.ts +1 -0
- package/src/channel-email/pii-guard.ts +39 -0
- package/src/compliance-profiles/__tests__/profile-picker.boot.test.ts +28 -0
- package/src/compliance-profiles/__tests__/profile-picker.security.integration.test.ts +91 -0
- package/src/compliance-profiles/constants.ts +15 -0
- package/src/compliance-profiles/feature.ts +22 -1
- package/src/compliance-profiles/handlers/set-profile.write.ts +2 -2
- package/src/compliance-profiles/i18n.ts +6 -0
- package/src/compliance-profiles/index.ts +6 -0
- package/src/compliance-profiles/web/client-plugin.tsx +22 -0
- package/src/compliance-profiles/web/compliance-profile-screen.tsx +152 -0
- package/src/compliance-profiles/web/i18n.ts +25 -0
- package/src/compliance-profiles/web/index.ts +6 -0
- package/src/config/__tests__/app-overrides.test.ts +11 -0
- package/src/config/__tests__/backing-secrets.integration.test.ts +22 -0
- package/src/config/__tests__/cascade.integration.test.ts +35 -0
- package/src/config/__tests__/config.integration.test.ts +71 -10
- package/src/config/__tests__/deserialize-value.test.ts +5 -8
- package/src/config/__tests__/inherited-redaction.integration.test.ts +4 -3
- package/src/config/__tests__/pii-encrypted.integration.test.ts +179 -0
- package/src/config/__tests__/reencrypt-job-concurrent-write-race.integration.test.ts +234 -0
- package/src/config/__tests__/reencrypt-job-kek-rotation.integration.test.ts +243 -0
- package/src/config/__tests__/write-helpers.test.ts +23 -0
- package/src/config/db/queries/resolver.ts +3 -3
- package/src/config/feature.ts +15 -8
- package/src/config/handlers/cascade.query.ts +2 -1
- package/src/config/handlers/reencrypt.job.ts +209 -0
- package/src/config/handlers/set.write.ts +55 -3
- package/src/config/handlers/values.query.ts +2 -1
- package/src/config/i18n.ts +9 -0
- package/src/config/index.ts +5 -4
- package/src/config/resolver.ts +75 -61
- package/src/config/table.ts +1 -1
- package/src/config/write-helpers.ts +22 -0
- package/src/crypto-shredding/__tests__/forget-subject.integration.test.ts +148 -0
- package/src/crypto-shredding/constants.ts +5 -0
- package/src/crypto-shredding/feature.ts +18 -0
- package/src/crypto-shredding/handlers/forget-subject.write.ts +91 -0
- package/src/crypto-shredding/index.ts +11 -0
- package/src/custom-fields/__tests__/audit-integration.integration.test.ts +1 -1
- package/src/custom-fields/__tests__/custom-fields.integration.test.ts +92 -53
- package/src/custom-fields/__tests__/field-access.integration.test.ts +25 -0
- package/src/custom-fields/__tests__/parse-serialized-field.test.ts +11 -3
- package/src/custom-fields/__tests__/retention.integration.test.ts +40 -0
- package/src/custom-fields/__tests__/user-data-rights.integration.test.ts +26 -79
- package/src/custom-fields/constants.ts +1 -0
- package/src/custom-fields/db/queries/user-data-rights.ts +0 -20
- package/src/custom-fields/entity.ts +1 -1
- package/src/custom-fields/events.ts +4 -3
- package/src/custom-fields/feature.ts +8 -0
- package/src/custom-fields/handlers/delete-system-field.write.ts +2 -1
- package/src/custom-fields/handlers/delete-tenant-field.write.ts +2 -1
- package/src/custom-fields/handlers/set-custom-field.write.ts +3 -44
- package/src/custom-fields/handlers/update-tenant-field.write.ts +0 -17
- package/src/custom-fields/lib/field-access.ts +8 -1
- package/src/custom-fields/lib/parse-serialized-field.ts +12 -4
- package/src/custom-fields/lib/value-schema.ts +1 -1
- package/src/custom-fields/run-retention.ts +9 -1
- package/src/custom-fields/schemas.ts +9 -9
- package/src/custom-fields/wire-for-entity.ts +110 -78
- package/src/custom-fields/wire-user-data-rights.ts +5 -54
- package/src/data-retention/__tests__/parse-override.test.ts +14 -13
- package/src/data-retention/__tests__/retention-cleanup.integration.test.ts +145 -8
- package/src/data-retention/feature.ts +3 -3
- package/src/data-retention/run-retention-cleanup.ts +102 -19
- package/src/delivery/__tests__/delivery-pii-kms.integration.test.ts +171 -0
- package/src/delivery/__tests__/delivery-screens.boot.test.ts +27 -0
- package/src/delivery/__tests__/delivery-security.integration.test.ts +106 -0
- package/src/delivery/constants.ts +13 -51
- package/src/delivery/feature.ts +29 -5
- package/src/delivery/handlers/log.query.ts +28 -7
- package/src/delivery/i18n.ts +6 -0
- package/src/delivery/index.ts +6 -1
- package/src/delivery/public-names.ts +36 -0
- package/src/delivery/tables.ts +3 -3
- package/src/delivery/web/client-plugin.tsx +20 -0
- package/src/delivery/web/delivery-log-screen.tsx +103 -0
- package/src/delivery/web/i18n.ts +25 -0
- package/src/delivery/web/index.ts +3 -0
- package/src/document-ingest-foundation/__tests__/feature.integration.test.ts +147 -0
- package/src/document-ingest-foundation/__tests__/feature.test.ts +105 -0
- package/src/document-ingest-foundation/__tests__/pages.test.ts +37 -0
- package/src/document-ingest-foundation/entity.ts +43 -0
- package/src/document-ingest-foundation/events.ts +25 -0
- package/src/document-ingest-foundation/feature.ts +126 -0
- package/src/document-ingest-foundation/index.ts +12 -0
- package/src/document-ingest-foundation/pages.ts +34 -0
- package/src/feature-toggles/__tests__/compose-tier-resolver.test.ts +304 -0
- package/src/feature-toggles/__tests__/feature-toggles.integration.test.ts +7 -6
- package/src/feature-toggles/__tests__/toggle-admin.boot.test.ts +31 -0
- package/src/feature-toggles/__tests__/toggle-admin.security.integration.test.ts +69 -0
- package/src/feature-toggles/compose-tier-resolver.ts +134 -0
- package/src/feature-toggles/constants.ts +14 -0
- package/src/feature-toggles/feature.ts +23 -3
- package/src/feature-toggles/global-feature-state-table.ts +20 -1
- package/src/feature-toggles/handlers/list.query.ts +1 -1
- package/src/feature-toggles/handlers/registered.query.ts +1 -1
- package/src/feature-toggles/i18n.ts +6 -0
- package/src/feature-toggles/index.ts +8 -0
- package/src/feature-toggles/toggle-runtime.ts +14 -0
- package/src/feature-toggles/web/client-plugin.tsx +22 -0
- package/src/feature-toggles/web/i18n.ts +29 -0
- package/src/feature-toggles/web/index.ts +6 -0
- package/src/feature-toggles/web/toggle-admin-screen.tsx +136 -0
- package/src/file-foundation/__tests__/feature.test.ts +5 -5
- package/src/file-foundation/__tests__/file-foundation.integration.test.ts +4 -3
- package/src/file-foundation/feature.ts +10 -11
- package/src/files-provider-s3/__tests__/s3-provider.integration.test.ts +27 -2
- package/src/files-provider-s3/s3-provider.ts +12 -1
- package/src/folders/__tests__/folders.integration.test.ts +3 -0
- package/src/folders/web/__tests__/folder-manager.test.tsx +43 -2
- package/src/folders/web/__tests__/tree.test.ts +8 -0
- package/src/folders/web/folder-manager.tsx +2 -3
- package/src/folders/web/i18n.ts +0 -2
- package/src/folders/web/tree.ts +13 -2
- package/src/folders-user-data/__tests__/hooks.integration.test.ts +1 -0
- package/src/folders-user-data/index.ts +4 -4
- package/src/inbound-mail-foundation/__tests__/account-state.test.ts +30 -0
- package/src/inbound-mail-foundation/__tests__/connect-routes.integration.test.ts +307 -0
- package/src/inbound-mail-foundation/__tests__/feature.test.ts +169 -0
- package/src/inbound-mail-foundation/__tests__/inbound-mail-foundation.integration.test.ts +644 -0
- package/src/inbound-mail-foundation/__tests__/inbound-mail-provider-contract.ts +111 -0
- package/src/inbound-mail-foundation/__tests__/retention.integration.test.ts +237 -0
- package/src/inbound-mail-foundation/__tests__/watch-supervisor.integration.test.ts +433 -0
- package/src/inbound-mail-foundation/aggregate-id.ts +40 -0
- package/src/inbound-mail-foundation/connect-routes.ts +230 -0
- package/src/inbound-mail-foundation/constants.ts +80 -0
- package/src/inbound-mail-foundation/db/queries/inbound-projections.ts +38 -0
- package/src/inbound-mail-foundation/entities.ts +172 -0
- package/src/inbound-mail-foundation/events.ts +147 -0
- package/src/inbound-mail-foundation/feature.ts +243 -0
- package/src/inbound-mail-foundation/handlers/account-state.ts +23 -0
- package/src/inbound-mail-foundation/handlers/connect-account.write.ts +112 -0
- package/src/inbound-mail-foundation/handlers/disconnect-account.write.ts +69 -0
- package/src/inbound-mail-foundation/handlers/ingest-message.write.ts +333 -0
- package/src/inbound-mail-foundation/handlers/list-accounts.query.ts +44 -0
- package/src/inbound-mail-foundation/handlers/list-messages.query.ts +58 -0
- package/src/inbound-mail-foundation/handlers/scope-visibility.ts +14 -0
- package/src/inbound-mail-foundation/handlers/update-account.write.ts +78 -0
- package/src/inbound-mail-foundation/index.ts +97 -0
- package/src/inbound-mail-foundation/oauth-state.ts +103 -0
- package/src/inbound-mail-foundation/projection.ts +152 -0
- package/src/inbound-mail-foundation/provider-factory.ts +53 -0
- package/src/inbound-mail-foundation/retention-sweep.ts +168 -0
- package/src/inbound-mail-foundation/tenant-destroy-hook.ts +93 -0
- package/src/inbound-mail-foundation/types.ts +250 -0
- package/src/inbound-mail-foundation/watch-supervisor.ts +482 -0
- package/src/inbound-provider-imap/__tests__/feature.test.ts +115 -0
- package/src/inbound-provider-imap/__tests__/imap-foundation.integration.test.ts +302 -0
- package/src/inbound-provider-imap/__tests__/imap-live.integration.test.ts +206 -0
- package/src/inbound-provider-imap/__tests__/plugin-mocked.test.ts +358 -0
- package/src/inbound-provider-imap/credential-document.ts +51 -0
- package/src/inbound-provider-imap/feature.ts +283 -0
- package/src/inbound-provider-imap/imap-client.ts +158 -0
- package/src/inbound-provider-imap/index.ts +17 -0
- package/src/inbound-provider-inmemory/__tests__/feature.test.ts +52 -0
- package/src/inbound-provider-inmemory/feature.ts +154 -0
- package/src/inbound-provider-inmemory/index.ts +12 -0
- package/src/jobs/__tests__/entity-ddl.test.ts +15 -0
- package/src/jobs/__tests__/job-instant.test.ts +15 -0
- package/src/jobs/__tests__/job-system-user.integration.test.ts +4 -8
- package/src/jobs/__tests__/jobs-events.integration.test.ts +37 -1
- package/src/jobs/__tests__/jobs-pii-kms.integration.test.ts +120 -0
- package/src/jobs/__tests__/jobs-screens.boot.test.ts +36 -0
- package/src/jobs/__tests__/jobs-security.integration.test.ts +108 -0
- package/src/jobs/__tests__/reindex-entity-job.integration.test.ts +169 -0
- package/src/jobs/constants.ts +8 -1
- package/src/jobs/feature.ts +52 -8
- package/src/jobs/handlers/detail.query.ts +6 -0
- package/src/jobs/handlers/list.query.ts +8 -1
- package/src/jobs/handlers/projection-rebuild.job.ts +14 -4
- package/src/jobs/handlers/reindex-entity.job.ts +49 -0
- package/src/jobs/i18n.ts +37 -0
- package/src/jobs/job-instant.ts +9 -0
- package/src/jobs/job-run-table.ts +4 -4
- package/src/jobs/web/client-plugin.tsx +22 -0
- package/src/jobs/web/i18n.ts +12 -0
- package/src/jobs/web/index.ts +4 -0
- package/src/jobs/web/job-run-detail-screen.tsx +180 -0
- package/src/jobs/web/job-runs-screen.tsx +146 -0
- package/src/ledger/__tests__/ledger.integration.test.ts +8 -3
- package/src/ledger/handlers/confirm-schedule-period.write.ts +17 -4
- package/src/ledger/recurring.ts +17 -8
- package/src/ledger/web/index.ts +3 -2
- package/src/legal-pages/__tests__/legal-pages.integration.test.ts +55 -0
- package/src/legal-pages/feature.ts +24 -31
- package/src/legal-pages/index.ts +1 -0
- package/src/mail-foundation/__tests__/feature.test.ts +5 -6
- package/src/mail-foundation/__tests__/mail-foundation.integration.test.ts +4 -3
- package/src/mail-foundation/__tests__/mail-transport-contract.ts +58 -0
- package/src/mail-foundation/feature.ts +26 -24
- package/src/mail-transport-inmemory/__tests__/feature.test.ts +23 -0
- package/src/mail-transport-smtp/__tests__/feature.test.ts +65 -0
- package/src/managed-pages/__tests__/branding-coerce.test.ts +2 -6
- package/src/managed-pages/__tests__/i18n-surface.boot.test.ts +30 -0
- package/src/managed-pages/__tests__/managed-pages.integration.test.ts +137 -0
- package/src/managed-pages/feature.ts +45 -47
- package/src/managed-pages/handlers/branding.query.ts +5 -1
- package/src/managed-pages/handlers/by-tenant-published.query.ts +52 -0
- package/src/managed-pages/i18n.ts +66 -0
- package/src/managed-pages/screens/page-screens.ts +5 -1
- package/src/managed-pages/web/client-plugin.tsx +22 -0
- package/src/managed-pages/web/i18n.ts +24 -0
- package/src/managed-pages/web/index.ts +3 -0
- package/src/page-render/__tests__/layout.test.ts +63 -0
- package/src/page-render/__tests__/markdown.test.ts +29 -0
- package/src/page-render/branding.ts +4 -3
- package/src/page-render/index.ts +1 -1
- package/src/page-render/layout.ts +18 -3
- package/src/page-render/markdown.ts +1 -9
- package/src/page-render/web.ts +13 -0
- package/src/personal-access-tokens/__tests__/feature.test.ts +42 -0
- package/src/personal-access-tokens/__tests__/pat.integration.test.ts +239 -0
- package/src/personal-access-tokens/__tests__/scopes.test.ts +42 -0
- package/src/personal-access-tokens/constants.ts +33 -0
- package/src/personal-access-tokens/feature.ts +105 -0
- package/src/personal-access-tokens/handlers/available-scopes.query.ts +21 -0
- package/src/personal-access-tokens/handlers/create.write.ts +47 -0
- package/src/personal-access-tokens/handlers/list.query.ts +50 -0
- package/src/personal-access-tokens/handlers/revoke.write.ts +37 -0
- package/src/personal-access-tokens/hash.ts +17 -0
- package/src/personal-access-tokens/i18n.ts +5 -0
- package/src/personal-access-tokens/index.ts +31 -0
- package/src/personal-access-tokens/resolver.ts +58 -0
- package/src/personal-access-tokens/roles.ts +29 -0
- package/src/personal-access-tokens/schema/api-token.ts +63 -0
- package/src/personal-access-tokens/scopes.ts +43 -0
- package/src/personal-access-tokens/web/client-plugin.tsx +29 -0
- package/src/personal-access-tokens/web/i18n.ts +69 -0
- package/src/personal-access-tokens/web/index.ts +7 -0
- package/src/personal-access-tokens/web/pat-tokens-screen.tsx +265 -0
- package/src/readiness/__tests__/readiness.integration.test.ts +4 -3
- package/src/renderer-simple/__tests__/resolve-variables.test.ts +37 -0
- package/src/renderer-simple/resolve-variables.ts +3 -1
- package/src/secrets/__tests__/rotate.integration.test.ts +115 -18
- package/src/secrets/handlers/rotate.job.ts +77 -98
- package/src/secrets/secrets-context.ts +7 -38
- package/src/secrets/table.ts +7 -8
- package/src/seo/__tests__/llms-txt.test.ts +38 -0
- package/src/seo/__tests__/robots-txt.test.ts +18 -0
- package/src/seo/__tests__/schema-builders.test.ts +57 -0
- package/src/seo/__tests__/seo.integration.test.ts +350 -0
- package/src/seo/__tests__/sitemap.test.ts +38 -0
- package/src/seo/constants.ts +60 -0
- package/src/seo/feature.ts +316 -0
- package/src/seo/handlers/seo-config.query.ts +35 -0
- package/src/seo/index.ts +19 -0
- package/src/seo/llms-txt.ts +33 -0
- package/src/seo/robots-txt.ts +13 -0
- package/src/seo/schema-builders.ts +57 -0
- package/src/seo/sitemap.ts +33 -0
- package/src/sessions/__tests__/auto-revoke-binding.test.ts +71 -0
- package/src/sessions/__tests__/cleanup.integration.test.ts +2 -1
- package/src/sessions/__tests__/password-auto-revoke.integration.test.ts +11 -7
- package/src/sessions/__tests__/rebuild-survival.integration.test.ts +18 -7
- package/src/sessions/__tests__/session-store-registration.test.ts +21 -0
- package/src/sessions/__tests__/sessions-screens.boot.test.ts +55 -0
- package/src/sessions/__tests__/sessions.integration.test.ts +272 -20
- package/src/sessions/__tests__/test-helpers.ts +16 -3
- package/src/sessions/constants.ts +5 -0
- package/src/sessions/db/queries/cleanup.ts +2 -2
- package/src/sessions/feature.ts +175 -26
- package/src/sessions/handlers/detail.query.ts +36 -0
- package/src/sessions/handlers/list.query.ts +14 -9
- package/src/sessions/handlers/mine.query.ts +13 -8
- package/src/sessions/handlers/revoke-all-for-user.write.ts +51 -12
- package/src/sessions/handlers/revoke-all-others.write.ts +19 -1
- package/src/sessions/handlers/revoke.write.ts +13 -0
- package/src/sessions/i18n.ts +23 -0
- package/src/sessions/index.ts +9 -2
- package/src/sessions/schema/user-session.ts +8 -2
- package/src/sessions/session-callbacks.ts +99 -14
- package/src/sessions/session-checker-fail-open.test.ts +77 -0
- package/src/sessions/session-revoked-event.ts +29 -0
- package/src/sessions/testing.ts +14 -1
- package/src/shared/__tests__/chunked-entity-migration.test.ts +145 -0
- package/src/shared/chunked-entity-migration.ts +89 -0
- package/src/shared/decrypt-stored-pii.ts +26 -0
- package/src/shared/encrypt-for-direct-write.ts +23 -0
- package/src/shared/entities-of.ts +17 -0
- package/src/shared/grace-period.test.ts +26 -0
- package/src/shared/grace-period.ts +20 -0
- package/src/{auth-email-password/__tests__ → shared}/identity-v3-hash.test.ts +2 -2
- package/src/shared/index.ts +16 -0
- package/src/shared/map-with-concurrency.test.ts +104 -0
- package/src/shared/map-with-concurrency.ts +38 -0
- package/src/shared/password-hashing.test.ts +35 -0
- package/src/{auth-email-password → shared}/password-hashing.ts +11 -0
- package/src/shared/system-query.ts +5 -0
- package/src/{auth-email-password → shared}/token-burn-store.ts +1 -1
- package/src/subscription-mollie/__tests__/feature.test.ts +97 -0
- package/src/subscription-mollie/__tests__/mollie-foundation.integration.test.ts +12 -1
- package/src/subscription-mollie/__tests__/verify-webhook.test.ts +21 -0
- package/src/subscription-mollie/verify-webhook.ts +1 -0
- package/src/subscription-stripe/__tests__/feature.test.ts +127 -1
- package/src/subscription-stripe/__tests__/runtime.test.ts +14 -24
- package/src/subscription-stripe/__tests__/stripe-foundation.integration.test.ts +15 -5
- package/src/subscription-stripe/__tests__/verify-webhook.test.ts +20 -0
- package/src/subscription-stripe/feature.ts +2 -0
- package/src/subscription-stripe/verify-webhook.ts +3 -2
- package/src/tags/__tests__/schemas.test.ts +34 -0
- package/src/tags/__tests__/tags.integration.test.ts +12 -1
- package/src/tags/entity.ts +6 -1
- package/src/tags/feature.ts +2 -0
- package/src/tags/i18n.ts +5 -0
- package/src/tags/schemas.ts +9 -2
- package/src/tags/web/__tests__/tag-manager.test.tsx +333 -0
- package/src/tags/web/__tests__/tag-section.test.tsx +47 -1
- package/src/tags/web/tag-manager.tsx +1 -1
- package/src/tags/web/tag-section.tsx +6 -3
- package/src/template-resolver/testing.ts +2 -1
- package/src/tenant/__tests__/members-query-kms.integration.test.ts +98 -0
- package/src/tenant/__tests__/members-screens.boot.test.ts +51 -0
- package/src/tenant/__tests__/multi-tenant.integration.test.ts +1 -1
- package/src/tenant/__tests__/tenant-security.integration.test.ts +310 -0
- package/src/tenant/__tests__/tenant.integration.test.ts +8 -4
- package/src/tenant/constants.ts +5 -0
- package/src/tenant/feature.ts +19 -0
- package/src/tenant/handlers/active-tenant-ids.query.ts +8 -2
- package/src/tenant/handlers/cancel-invitation.write.ts +2 -2
- package/src/tenant/handlers/invitations.query.ts +21 -4
- package/src/tenant/handlers/members.query.ts +41 -6
- package/src/tenant/i18n.ts +28 -0
- package/src/tenant/index.ts +7 -2
- package/src/tenant/invitation-table.ts +3 -2
- package/src/tenant/schema/tenant.ts +27 -2
- package/src/tenant/screens.ts +3 -2
- package/src/tenant/seeding.ts +136 -3
- package/src/tenant/web/client-plugin.tsx +20 -0
- package/src/tenant/web/i18n.ts +43 -0
- package/src/tenant/web/index.ts +4 -0
- package/src/tenant/web/members-screen.tsx +270 -0
- package/src/tenant-lifecycle/__tests__/stages.test.ts +22 -0
- package/src/tenant-lifecycle/__tests__/tenant-lifecycle.integration.test.ts +471 -0
- package/src/tenant-lifecycle/boot-checks.ts +45 -0
- package/src/tenant-lifecycle/constants.ts +56 -0
- package/src/tenant-lifecycle/events.ts +46 -0
- package/src/tenant-lifecycle/feature.ts +112 -0
- package/src/tenant-lifecycle/handlers/cancel-destruction.write.ts +79 -0
- package/src/tenant-lifecycle/handlers/request-destruction.write.ts +83 -0
- package/src/tenant-lifecycle/index.ts +7 -0
- package/src/tenant-lifecycle/lib/revoke-tenant-sessions.ts +16 -0
- package/src/tenant-lifecycle/lifecycle-gate.ts +65 -0
- package/src/tenant-lifecycle/run-tenant-destroy.ts +368 -0
- package/src/tenant-lifecycle/stages.ts +206 -0
- package/src/tenant-settings/__tests__/tenant-settings.integration.test.ts +115 -0
- package/src/tenant-settings/config.ts +44 -0
- package/src/tenant-settings/constants.ts +16 -0
- package/src/tenant-settings/feature.ts +49 -0
- package/src/tenant-settings/index.ts +8 -0
- package/src/tenant-settings/tenant-defaults.ts +67 -0
- package/src/text-content/web/__tests__/editor-read-only.test.tsx +33 -6
- package/src/text-content/web/__tests__/group-blocks.test.ts +28 -3
- package/src/text-content/web/client-plugin.tsx +126 -104
- package/src/tier-engine/__tests__/auto-default-tier.integration.test.ts +1 -1
- package/src/tier-engine/__tests__/resolver.integration.test.ts +1 -1
- package/src/tier-engine/__tests__/tier-engine.integration.test.ts +7 -4
- package/src/tier-engine/__tests__/trial-config-validation.test.ts +30 -0
- package/src/tier-engine/feature.ts +13 -6
- package/src/tier-engine/i18n.ts +8 -0
- package/src/tier-engine/web/tier-admin-screen.tsx +26 -19
- package/src/user/__tests__/stream-tenant-backfill.integration.test.ts +186 -0
- package/src/user/__tests__/user.integration.test.ts +26 -0
- package/src/user/constants.ts +1 -0
- package/src/user/db/queries/stream-tenant-backfill.ts +112 -0
- package/src/user/feature.ts +3 -0
- package/src/user/handlers/find-for-auth.query.ts +8 -6
- package/src/user/i18n.ts +20 -0
- package/src/user/index.ts +4 -0
- package/src/user/schema/user.ts +6 -2
- package/src/user/screens.ts +3 -15
- package/src/user/seeding.ts +8 -0
- package/src/user-data-rights/COMPLIANCE.md +21 -1
- package/src/user-data-rights/__tests__/anonymous-deletion-kms.integration.test.ts +145 -0
- package/src/user-data-rights/__tests__/anonymous-deletion.integration.test.ts +3 -0
- package/src/user-data-rights/__tests__/audit-log.integration.test.ts +67 -0
- package/src/user-data-rights/__tests__/boot-checks.test.ts +170 -0
- package/src/user-data-rights/__tests__/cross-data-matrix.integration.test.ts +4 -1
- package/src/user-data-rights/__tests__/download-by-token-resolver-trust.integration.test.ts +169 -0
- package/src/user-data-rights/__tests__/download.integration.test.ts +101 -33
- package/src/user-data-rights/__tests__/email-templates.test.ts +15 -0
- package/src/user-data-rights/__tests__/export-encrypted-fields.integration.test.ts +154 -0
- package/src/user-data-rights/__tests__/export-job-idempotency.integration.test.ts +2 -0
- package/src/user-data-rights/__tests__/export-job-list-cross-tenant.integration.test.ts +2 -0
- package/src/user-data-rights/__tests__/file-binary-forget-cleanup.integration.test.ts +4 -1
- package/src/user-data-rights/__tests__/file-binary-forget-failure.integration.test.ts +4 -1
- package/src/user-data-rights/__tests__/file-retention.integration.test.ts +4 -1
- package/src/user-data-rights/__tests__/file-storage-unification.integration.test.ts +4 -1
- package/src/user-data-rights/__tests__/forget-cleanup-hook-ordering.integration.test.ts +41 -62
- package/src/user-data-rights/__tests__/forget-hook-registry.integration.test.ts +110 -0
- package/src/user-data-rights/__tests__/inspector-screens.boot.test.ts +14 -0
- package/src/user-data-rights/__tests__/mail-default-bridge.integration.test.ts +19 -2
- package/src/user-data-rights/__tests__/read-users-rebuild-survives-lifecycle.integration.test.ts +25 -14
- package/src/user-data-rights/__tests__/request-cancel-deletion.integration.test.ts +2 -0
- package/src/user-data-rights/__tests__/request-deletion-callback.integration.test.ts +4 -1
- package/src/user-data-rights/__tests__/request-export.integration.test.ts +2 -0
- package/src/user-data-rights/__tests__/restriction-flow.integration.test.ts +172 -19
- package/src/user-data-rights/__tests__/run-export-jobs-cron-context.integration.test.ts +2 -0
- package/src/user-data-rights/__tests__/run-export-jobs.integration.test.ts +257 -26
- package/src/user-data-rights/__tests__/run-forget-cleanup.integration.test.ts +339 -5
- package/src/user-data-rights/__tests__/run-user-export.integration.test.ts +77 -1
- package/src/user-data-rights/__tests__/tenant-model-erasure.integration.test.ts +2 -0
- package/src/user-data-rights/__tests__/user-data-rights.integration.test.ts +9 -1
- package/src/user-data-rights/boot-checks.ts +70 -0
- package/src/user-data-rights/db/queries/__tests__/forget-cleanup.integration.test.ts +69 -0
- package/src/user-data-rights/db/queries/forget-cleanup.ts +9 -2
- package/src/user-data-rights/email-templates.ts +6 -6
- package/src/user-data-rights/feature.ts +162 -43
- package/src/user-data-rights/handlers/cancel-deletion.write.ts +8 -11
- package/src/user-data-rights/handlers/deletion-grace-period.ts +4 -1
- package/src/user-data-rights/handlers/download-by-job.query.ts +26 -18
- package/src/user-data-rights/handlers/download-by-token.query.ts +23 -15
- package/src/user-data-rights/handlers/lift-restriction.write.ts +44 -19
- package/src/user-data-rights/handlers/list-download-attempts.query.ts +1 -0
- package/src/user-data-rights/handlers/my-audit-log.query.ts +1 -0
- package/src/user-data-rights/handlers/request-deletion-by-email.write.ts +3 -1
- package/src/user-data-rights/handlers/restrict-account.write.ts +58 -7
- package/src/user-data-rights/handlers/run-forget-cleanup.write.ts +2 -0
- package/src/user-data-rights/i18n.ts +35 -32
- package/src/user-data-rights/lib/is-admin-actor.ts +19 -0
- package/src/user-data-rights/lib/storage-provider-resolver.ts +6 -5
- package/src/user-data-rights/lib/update-user-lifecycle.ts +8 -24
- package/src/user-data-rights/run-export-jobs.ts +55 -19
- package/src/user-data-rights/run-forget-cleanup.ts +112 -7
- package/src/user-data-rights/run-user-export.ts +70 -4
- package/src/user-data-rights/schema/download-token.ts +5 -3
- package/src/user-data-rights/schema/export-job.ts +2 -0
- package/src/user-data-rights/screens.ts +2 -1
- package/src/user-data-rights/web/__tests__/privacy-center-screen.test.tsx +1 -0
- package/src/user-data-rights/web/__tests__/public-deletion-gate.test.tsx +7 -1
- package/src/user-data-rights/web/client-plugin.tsx +6 -1
- package/src/user-data-rights/web/i18n.ts +30 -10
- package/src/user-data-rights/web/privacy-center-screen.tsx +5 -3
- package/src/user-data-rights-defaults/__tests__/bundled-entities.userdata-hooks.integration.test.ts +455 -0
- package/src/user-data-rights-defaults/__tests__/feature-mounted.test.ts +24 -0
- package/src/user-data-rights-defaults/__tests__/user-data-rights-defaults.integration.test.ts +33 -9
- package/src/user-data-rights-defaults/feature.ts +78 -1
- package/src/user-data-rights-defaults/hooks/api-token.userdata-hook.ts +37 -0
- package/src/user-data-rights-defaults/hooks/config-value.userdata-hook.ts +51 -0
- package/src/user-data-rights-defaults/hooks/delivery-attempt.userdata-hook.ts +37 -0
- package/src/user-data-rights-defaults/hooks/feature-mounted.ts +10 -0
- package/src/user-data-rights-defaults/hooks/in-app-message.userdata-hook.ts +38 -0
- package/src/user-data-rights-defaults/hooks/job-run.userdata-hook.ts +35 -0
- package/src/user-data-rights-defaults/hooks/notification-preference.userdata-hook.ts +54 -0
- package/src/user-data-rights-defaults/hooks/tenant-invitation.userdata-hook.ts +112 -0
- package/src/user-data-rights-defaults/hooks/user-session.userdata-hook.ts +42 -0
- package/src/user-data-rights-defaults/index.ts +26 -0
- package/src/user-profile/__tests__/change-email.integration.test.ts +7 -1
- package/src/user-profile/__tests__/profile-screen.test.tsx +5 -0
- package/src/user-profile/feature.ts +4 -1
- package/src/user-profile/handlers/change-email.write.ts +15 -10
- package/src/user-profile/web/profile-screen.tsx +15 -3
- package/src/auth-email-password/stream-tenant.ts +0 -31
- package/src/feature-toggles/db/queries/toggle-state.ts +0 -25
- package/src/legal-pages/security-headers.ts +0 -1
- package/src/sessions/schema/index.ts +0 -5
- package/src/tenant/schema/index.ts +0 -5
- package/src/user/schema/index.ts +0 -5
- /package/src/{auth-email-password → shared}/identity-v3-hash.ts +0 -0
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
testTenantId,
|
|
21
21
|
unsafeCreateEntityTable,
|
|
22
22
|
} from "@cosmicdrift/kumiko-framework/stack";
|
|
23
|
+
import { withoutAmbientTemporal } from "@cosmicdrift/kumiko-framework/testing";
|
|
23
24
|
import { AuditQueries } from "../constants";
|
|
24
25
|
import { createAuditFeature } from "../feature";
|
|
25
26
|
|
|
@@ -189,47 +190,61 @@ describe("audit: list query", () => {
|
|
|
189
190
|
});
|
|
190
191
|
|
|
191
192
|
test("filter by from/to date range (inclusive bounds, outside-range rows excluded)", async () => {
|
|
192
|
-
//
|
|
193
|
-
//
|
|
194
|
-
//
|
|
195
|
-
// db side (ms) can't blur anchor vs event.
|
|
193
|
+
// Stamp created_at after writes — wall-clock setTimeout anchors race with
|
|
194
|
+
// ms-precision DB timestamps under load (#1548). Fixed Instant grid keeps
|
|
195
|
+
// from/to assertions deterministic.
|
|
196
196
|
await createWidget(admin, "before-window");
|
|
197
|
-
await new Promise((r) => setTimeout(r, 50));
|
|
198
|
-
const t1 = Temporal.Now.instant();
|
|
199
|
-
await new Promise((r) => setTimeout(r, 10));
|
|
200
197
|
await createWidget(admin, "in-window-1");
|
|
201
198
|
await createWidget(admin, "in-window-2");
|
|
202
|
-
await new Promise((r) => setTimeout(r, 50));
|
|
203
|
-
const t2 = Temporal.Now.instant();
|
|
204
|
-
await new Promise((r) => setTimeout(r, 10));
|
|
205
199
|
await createWidget(admin, "after-window");
|
|
206
200
|
|
|
207
|
-
|
|
201
|
+
const listed = await stack.http.queryOk<AuditResponse>(AuditQueries.list, {}, admin);
|
|
202
|
+
const byName = new Map(
|
|
203
|
+
listed.rows
|
|
204
|
+
.filter((r) => r.type === "widget.created")
|
|
205
|
+
.map((r) => [(r.payload as { name?: string }).name ?? "", r.id]),
|
|
206
|
+
);
|
|
207
|
+
const stamps: ReadonlyArray<readonly [string, string]> = [
|
|
208
|
+
["before-window", "2020-06-01T12:00:00Z"],
|
|
209
|
+
["in-window-1", "2020-06-01T12:00:10Z"],
|
|
210
|
+
["in-window-2", "2020-06-01T12:00:20Z"],
|
|
211
|
+
["after-window", "2020-06-01T12:00:30Z"],
|
|
212
|
+
];
|
|
213
|
+
for (const [name, createdAt] of stamps) {
|
|
214
|
+
const id = byName.get(name);
|
|
215
|
+
expect(id).toBeDefined();
|
|
216
|
+
await asRawClient(stack.db).unsafe(
|
|
217
|
+
`UPDATE kumiko_events SET created_at = $1::timestamptz WHERE id = $2::bigint`,
|
|
218
|
+
[createdAt, id],
|
|
219
|
+
);
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
const tFrom = "2020-06-01T12:00:10Z";
|
|
223
|
+
const tTo = "2020-06-01T12:00:20Z";
|
|
224
|
+
|
|
208
225
|
const inWindow = await stack.http.queryOk<AuditResponse>(
|
|
209
226
|
AuditQueries.list,
|
|
210
|
-
{ from:
|
|
227
|
+
{ from: tFrom, to: tTo },
|
|
211
228
|
admin,
|
|
212
229
|
);
|
|
213
230
|
expect(inWindow.rows).toHaveLength(2);
|
|
214
231
|
const names = inWindow.rows.map((r) => (r.payload as { name?: string }).name).sort();
|
|
215
232
|
expect(names).toEqual(["in-window-1", "in-window-2"]);
|
|
216
233
|
|
|
217
|
-
|
|
218
|
-
const sinceT1 = await stack.http.queryOk<AuditResponse>(
|
|
234
|
+
const sinceFrom = await stack.http.queryOk<AuditResponse>(
|
|
219
235
|
AuditQueries.list,
|
|
220
|
-
{ from:
|
|
236
|
+
{ from: tFrom },
|
|
221
237
|
admin,
|
|
222
238
|
);
|
|
223
|
-
expect(
|
|
239
|
+
expect(sinceFrom.rows).toHaveLength(3);
|
|
224
240
|
|
|
225
|
-
|
|
226
|
-
const untilT1 = await stack.http.queryOk<AuditResponse>(
|
|
241
|
+
const untilBefore = await stack.http.queryOk<AuditResponse>(
|
|
227
242
|
AuditQueries.list,
|
|
228
|
-
{ to:
|
|
243
|
+
{ to: "2020-06-01T12:00:00Z" },
|
|
229
244
|
admin,
|
|
230
245
|
);
|
|
231
|
-
expect(
|
|
232
|
-
expect((
|
|
246
|
+
expect(untilBefore.rows).toHaveLength(1);
|
|
247
|
+
expect((untilBefore.rows[0]?.payload as { name?: string }).name).toBe("before-window");
|
|
233
248
|
});
|
|
234
249
|
|
|
235
250
|
test("rejects inverted from/to range with validation_error", async () => {
|
|
@@ -312,17 +327,27 @@ describe("audit: list query", () => {
|
|
|
312
327
|
expect(updated?.metadata).toMatchObject({ userId: admin.id });
|
|
313
328
|
});
|
|
314
329
|
|
|
330
|
+
test("kumiko-framework#1525: from/to filter works without relying on globalThis.Temporal", async () => {
|
|
331
|
+
await createWidget(admin, "in-range");
|
|
332
|
+
// createTzContext uses a static temporal-polyfill import, so full HTTP
|
|
333
|
+
// dispatch (buildHandlerContext → ctx.tz) is safe ambient-free.
|
|
334
|
+
const res = await withoutAmbientTemporal(() =>
|
|
335
|
+
stack.http.queryOk<AuditResponse>(
|
|
336
|
+
AuditQueries.list,
|
|
337
|
+
{ limit: 50, from: "2020-01-01T00:00:00Z", to: "2030-01-01T00:00:00Z" },
|
|
338
|
+
admin,
|
|
339
|
+
),
|
|
340
|
+
);
|
|
341
|
+
expect(res.rows.length).toBeGreaterThanOrEqual(1);
|
|
342
|
+
});
|
|
343
|
+
|
|
315
344
|
test("access denied for non-admin roles", async () => {
|
|
316
345
|
await createWidget(admin, "A");
|
|
317
|
-
// regularUser has role "User" — the handler requires Admin/SystemAdmin.
|
|
318
346
|
const res = await stack.http.query(AuditQueries.list, {}, regularUser);
|
|
319
347
|
expect(res.status).toBe(403);
|
|
320
348
|
const body = (await res.json()) as {
|
|
321
349
|
error?: { code?: string; details?: { reason?: string } };
|
|
322
350
|
};
|
|
323
|
-
// Pin the specific failure class. The framework raises AccessDeniedError
|
|
324
|
-
// with code=access_denied; asserting on `code` beats a status-only check
|
|
325
|
-
// (a 403 could also come from ownership-denied, for example).
|
|
326
351
|
expect(body.error?.code).toBe("access_denied");
|
|
327
352
|
});
|
|
328
353
|
});
|
package/src/audit/constants.ts
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
|
-
//
|
|
2
|
-
//
|
|
1
|
+
// @runtime client
|
|
2
|
+
// Qualified handler names + screen ids — shared by server feature and web client.
|
|
3
3
|
export const AUDIT_FEATURE = "audit" as const;
|
|
4
4
|
|
|
5
5
|
export const AuditQueries = {
|
|
6
6
|
list: "audit:query:list",
|
|
7
|
+
details: "audit:query:details",
|
|
7
8
|
} as const;
|
|
9
|
+
|
|
10
|
+
/** Tenant-admin audit log screen. Nav: `audit:screen:audit-log`. */
|
|
11
|
+
export const AUDIT_LOG_SCREEN_ID = "audit-log" as const;
|
|
12
|
+
|
|
13
|
+
/** Single-event detail screen, breadcrumb-linked to the audit-log list. */
|
|
14
|
+
export const AUDIT_LOG_DETAIL_SCREEN_ID = "audit-log-detail" as const;
|
package/src/audit/feature.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
access,
|
|
3
|
+
defineFeature,
|
|
4
|
+
type FeatureDefinition,
|
|
5
|
+
} from "@cosmicdrift/kumiko-framework/engine";
|
|
6
|
+
import { AUDIT_LOG_DETAIL_SCREEN_ID, AUDIT_LOG_SCREEN_ID } from "./constants";
|
|
7
|
+
import { detailsQuery } from "./handlers/details.query";
|
|
2
8
|
import { listQuery } from "./handlers/list.query";
|
|
9
|
+
import { AUDIT_I18N } from "./i18n";
|
|
3
10
|
|
|
4
11
|
// Audit feature — exposes a filtered read over the framework's event log.
|
|
5
12
|
//
|
|
@@ -23,9 +30,34 @@ export function createAuditFeature(): FeatureDefinition {
|
|
|
23
30
|
category: "compliance",
|
|
24
31
|
recommended: false,
|
|
25
32
|
});
|
|
33
|
+
r.translations({ keys: AUDIT_I18N });
|
|
34
|
+
|
|
26
35
|
const queries = {
|
|
27
36
|
list: r.queryHandler(listQuery),
|
|
37
|
+
details: r.queryHandler(detailsQuery),
|
|
28
38
|
};
|
|
39
|
+
|
|
40
|
+
r.screen({
|
|
41
|
+
id: AUDIT_LOG_SCREEN_ID,
|
|
42
|
+
type: "custom",
|
|
43
|
+
renderer: { react: { __component: "AuditLogScreen" } },
|
|
44
|
+
access: { roles: access.admin },
|
|
45
|
+
});
|
|
46
|
+
r.screen({
|
|
47
|
+
id: AUDIT_LOG_DETAIL_SCREEN_ID,
|
|
48
|
+
type: "custom",
|
|
49
|
+
renderer: { react: { __component: "AuditLogDetailScreen" } },
|
|
50
|
+
listScreenId: AUDIT_LOG_SCREEN_ID,
|
|
51
|
+
access: { roles: access.admin },
|
|
52
|
+
});
|
|
53
|
+
r.nav({
|
|
54
|
+
id: "audit-log",
|
|
55
|
+
label: "audit:nav.auditLog",
|
|
56
|
+
icon: "file",
|
|
57
|
+
screen: "audit:screen:audit-log",
|
|
58
|
+
order: 30,
|
|
59
|
+
});
|
|
60
|
+
|
|
29
61
|
return { queries };
|
|
30
62
|
});
|
|
31
63
|
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
// Single audit event by its event-store id — backs the audit-log-detail
|
|
2
|
+
// screen. Tenant-isolated at the WHERE level like list.query, so a caller
|
|
3
|
+
// can only read events in their own tenant.
|
|
4
|
+
|
|
5
|
+
import { selectMany } from "@cosmicdrift/kumiko-framework/bun-db";
|
|
6
|
+
import { access, defineQueryHandler } from "@cosmicdrift/kumiko-framework/engine";
|
|
7
|
+
import { eventsTable } from "@cosmicdrift/kumiko-framework/event-store";
|
|
8
|
+
import { z } from "zod";
|
|
9
|
+
|
|
10
|
+
export const detailsQuery = defineQueryHandler({
|
|
11
|
+
name: "details",
|
|
12
|
+
schema: z.object({
|
|
13
|
+
id: z.string().regex(/^[1-9]\d*$/, "id must be a positive integer"),
|
|
14
|
+
}),
|
|
15
|
+
access: { roles: access.admin },
|
|
16
|
+
handler: async (query, ctx) => {
|
|
17
|
+
const rows = await selectMany<{
|
|
18
|
+
id: bigint;
|
|
19
|
+
aggregateId: string;
|
|
20
|
+
aggregateType: string;
|
|
21
|
+
version: number;
|
|
22
|
+
type: string;
|
|
23
|
+
payload: Record<string, unknown>;
|
|
24
|
+
metadata: Record<string, unknown>;
|
|
25
|
+
createdAt: unknown;
|
|
26
|
+
createdBy: string;
|
|
27
|
+
}>(
|
|
28
|
+
ctx.db,
|
|
29
|
+
eventsTable,
|
|
30
|
+
{ tenantId: query.user.tenantId, id: BigInt(query.payload.id) },
|
|
31
|
+
{ limit: 1 },
|
|
32
|
+
);
|
|
33
|
+
const row = rows[0];
|
|
34
|
+
if (row === undefined) return null;
|
|
35
|
+
return {
|
|
36
|
+
id: String(row.id),
|
|
37
|
+
aggregateId: row.aggregateId,
|
|
38
|
+
aggregateType: row.aggregateType,
|
|
39
|
+
version: row.version,
|
|
40
|
+
type: row.type,
|
|
41
|
+
payload: row.payload,
|
|
42
|
+
metadata: row.metadata,
|
|
43
|
+
createdAt: row.createdAt,
|
|
44
|
+
createdBy: row.createdBy,
|
|
45
|
+
};
|
|
46
|
+
},
|
|
47
|
+
});
|
|
@@ -12,8 +12,9 @@
|
|
|
12
12
|
// can't surface PII that the entity definition marked as sensitive.
|
|
13
13
|
|
|
14
14
|
import { selectMany, type WhereObject } from "@cosmicdrift/kumiko-framework/bun-db";
|
|
15
|
-
import { defineQueryHandler } from "@cosmicdrift/kumiko-framework/engine";
|
|
15
|
+
import { access, defineQueryHandler } from "@cosmicdrift/kumiko-framework/engine";
|
|
16
16
|
import { eventsTable } from "@cosmicdrift/kumiko-framework/event-store";
|
|
17
|
+
import { Temporal } from "temporal-polyfill";
|
|
17
18
|
import { z } from "zod";
|
|
18
19
|
|
|
19
20
|
const MAX_LIMIT = 100;
|
|
@@ -35,7 +36,7 @@ export const listQuery = defineQueryHandler({
|
|
|
35
36
|
message: "`from` must be less than or equal to `to`",
|
|
36
37
|
path: ["from"],
|
|
37
38
|
}),
|
|
38
|
-
access: { roles:
|
|
39
|
+
access: { roles: access.admin },
|
|
39
40
|
handler: async (query, ctx) => {
|
|
40
41
|
const p = query.payload;
|
|
41
42
|
const where: WhereObject = { tenantId: query.user.tenantId };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// @runtime client
|
|
2
|
+
// Server + client i18n for audit (nav labels + AuditLogScreen).
|
|
3
|
+
|
|
4
|
+
type LocalizedString = { readonly de: string; readonly en: string };
|
|
5
|
+
|
|
6
|
+
export const AUDIT_I18N: Readonly<Record<string, LocalizedString>> = {
|
|
7
|
+
"screen:audit-log.title": { de: "Audit-Log", en: "Audit log" },
|
|
8
|
+
"screen:audit-log-detail.title": { de: "Ereignis", en: "Event" },
|
|
9
|
+
"audit:nav.auditLog": { de: "Audit", en: "Audit" },
|
|
10
|
+
"audit.log.title": { de: "Audit-Log", en: "Audit log" },
|
|
11
|
+
"audit.log.loading": { de: "Lade Ereignisse…", en: "Loading events…" },
|
|
12
|
+
"audit.log.empty": { de: "Keine Ereignisse.", en: "No events." },
|
|
13
|
+
"audit.log.newest": { de: "Neueste", en: "Newest" },
|
|
14
|
+
"audit.log.older": { de: "Ältere laden", en: "Load older" },
|
|
15
|
+
"audit.log.col.when": { de: "Zeit", en: "When" },
|
|
16
|
+
"audit.log.col.type": { de: "Ereignis", en: "Event" },
|
|
17
|
+
"audit.log.col.aggregate": { de: "Aggregate", en: "Aggregate" },
|
|
18
|
+
"audit.log.col.actor": { de: "Akteur", en: "Actor" },
|
|
19
|
+
"audit.log.filter.eventType": { de: "Ereignistyp", en: "Event type" },
|
|
20
|
+
"audit.log.filter.aggregateType": { de: "Aggregate-Typ", en: "Aggregate type" },
|
|
21
|
+
"audit.log.filter.from": { de: "Von", en: "From" },
|
|
22
|
+
"audit.log.filter.to": { de: "Bis", en: "To" },
|
|
23
|
+
"audit.log.filter.apply": { de: "Filtern", en: "Filter" },
|
|
24
|
+
"audit.log.filter.reset": { de: "Zurücksetzen", en: "Reset" },
|
|
25
|
+
"audit.log.details": { de: "Details", en: "Details" },
|
|
26
|
+
"audit.log.detail.loading": { de: "Lade Ereignis…", en: "Loading event…" },
|
|
27
|
+
"audit.log.detail.missing": { de: "Ereignis nicht gefunden.", en: "Event not found." },
|
|
28
|
+
"audit.log.detail.payload": { de: "Ereignis-Payload", en: "Event payload" },
|
|
29
|
+
"audit.log.detail.metadata": { de: "Metadaten", en: "Metadata" },
|
|
30
|
+
"audit.log.detail.field.id": { de: "Ereignis-ID", en: "Event ID" },
|
|
31
|
+
};
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
// @runtime client
|
|
2
|
+
// Single audit event detail. Route entityId = event-store id (bigint string).
|
|
3
|
+
|
|
4
|
+
import {
|
|
5
|
+
formatWhen,
|
|
6
|
+
useDispatcher,
|
|
7
|
+
useNav,
|
|
8
|
+
usePrimitives,
|
|
9
|
+
useTranslation,
|
|
10
|
+
} from "@cosmicdrift/kumiko-renderer";
|
|
11
|
+
import { FormScreenShell } from "@cosmicdrift/kumiko-renderer-web";
|
|
12
|
+
import { type ReactNode, useCallback, useEffect, useState } from "react";
|
|
13
|
+
import { AuditQueries } from "../constants";
|
|
14
|
+
|
|
15
|
+
type AuditDetail = {
|
|
16
|
+
readonly id: string;
|
|
17
|
+
readonly aggregateId: string;
|
|
18
|
+
readonly aggregateType: string;
|
|
19
|
+
readonly type: string;
|
|
20
|
+
readonly createdBy: string;
|
|
21
|
+
readonly createdAt: string;
|
|
22
|
+
readonly payload: Record<string, unknown>;
|
|
23
|
+
readonly metadata: Record<string, unknown>;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
type State =
|
|
27
|
+
| { readonly kind: "loading" }
|
|
28
|
+
| { readonly kind: "missing" }
|
|
29
|
+
| { readonly kind: "error"; readonly message: string }
|
|
30
|
+
| { readonly kind: "ready"; readonly event: AuditDetail };
|
|
31
|
+
|
|
32
|
+
export function AuditLogDetailScreen(): ReactNode {
|
|
33
|
+
const t = useTranslation();
|
|
34
|
+
const { Banner, Card, Text } = usePrimitives();
|
|
35
|
+
const dispatcher = useDispatcher();
|
|
36
|
+
const nav = useNav();
|
|
37
|
+
const eventId = nav.route?.entityId;
|
|
38
|
+
const [state, setState] = useState<State>({ kind: "loading" });
|
|
39
|
+
|
|
40
|
+
const load = useCallback(async (): Promise<void> => {
|
|
41
|
+
if (eventId === undefined || eventId === "") {
|
|
42
|
+
setState({ kind: "missing" });
|
|
43
|
+
return;
|
|
44
|
+
}
|
|
45
|
+
setState({ kind: "loading" });
|
|
46
|
+
const res = await dispatcher.query<AuditDetail | null>(AuditQueries.details, { id: eventId });
|
|
47
|
+
if (!res.isSuccess) {
|
|
48
|
+
setState({ kind: "error", message: res.error.message });
|
|
49
|
+
return;
|
|
50
|
+
}
|
|
51
|
+
if (res.data === null) {
|
|
52
|
+
setState({ kind: "missing" });
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
55
|
+
setState({ kind: "ready", event: res.data });
|
|
56
|
+
}, [dispatcher, eventId]);
|
|
57
|
+
|
|
58
|
+
useEffect(() => {
|
|
59
|
+
void load();
|
|
60
|
+
}, [load]);
|
|
61
|
+
|
|
62
|
+
if (state.kind === "loading") {
|
|
63
|
+
return (
|
|
64
|
+
<FormScreenShell testId="audit-log-detail-screen">
|
|
65
|
+
<Text variant="small">{t("audit.log.detail.loading")}</Text>
|
|
66
|
+
</FormScreenShell>
|
|
67
|
+
);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
if (state.kind === "missing") {
|
|
71
|
+
return (
|
|
72
|
+
<FormScreenShell testId="audit-log-detail-screen">
|
|
73
|
+
<Banner variant="error">{t("audit.log.detail.missing")}</Banner>
|
|
74
|
+
</FormScreenShell>
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
if (state.kind === "error") {
|
|
79
|
+
return (
|
|
80
|
+
<FormScreenShell testId="audit-log-detail-screen">
|
|
81
|
+
<Banner variant="error">{state.message}</Banner>
|
|
82
|
+
</FormScreenShell>
|
|
83
|
+
);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
const { event } = state;
|
|
87
|
+
|
|
88
|
+
return (
|
|
89
|
+
<FormScreenShell testId="audit-log-detail-screen" className="flex flex-col gap-6">
|
|
90
|
+
<Card slots={{ title: event.type }}>
|
|
91
|
+
<dl className="grid gap-3 text-sm">
|
|
92
|
+
<div>
|
|
93
|
+
<dt className="font-medium">{t("audit.log.col.when")}</dt>
|
|
94
|
+
<dd data-testid="audit-detail-when">{formatWhen(event.createdAt)}</dd>
|
|
95
|
+
</div>
|
|
96
|
+
<div>
|
|
97
|
+
<dt className="font-medium">{t("audit.log.col.aggregate")}</dt>
|
|
98
|
+
<dd data-testid="audit-detail-aggregate">
|
|
99
|
+
{event.aggregateType} / {event.aggregateId}
|
|
100
|
+
</dd>
|
|
101
|
+
</div>
|
|
102
|
+
<div>
|
|
103
|
+
<dt className="font-medium">{t("audit.log.col.actor")}</dt>
|
|
104
|
+
<dd data-testid="audit-detail-actor">{event.createdBy}</dd>
|
|
105
|
+
</div>
|
|
106
|
+
<div>
|
|
107
|
+
<dt className="font-medium">{t("audit.log.detail.field.id")}</dt>
|
|
108
|
+
<dd>
|
|
109
|
+
<Text variant="code">{event.id}</Text>
|
|
110
|
+
</dd>
|
|
111
|
+
</div>
|
|
112
|
+
</dl>
|
|
113
|
+
</Card>
|
|
114
|
+
|
|
115
|
+
<Card slots={{ title: t("audit.log.detail.payload") }}>
|
|
116
|
+
<pre
|
|
117
|
+
className="max-h-96 overflow-auto whitespace-pre-wrap break-all text-xs"
|
|
118
|
+
data-testid="audit-detail-payload"
|
|
119
|
+
>
|
|
120
|
+
{JSON.stringify(event.payload, null, 2)}
|
|
121
|
+
</pre>
|
|
122
|
+
</Card>
|
|
123
|
+
|
|
124
|
+
<Card slots={{ title: t("audit.log.detail.metadata") }}>
|
|
125
|
+
<pre className="max-h-96 overflow-auto whitespace-pre-wrap break-all text-xs">
|
|
126
|
+
{JSON.stringify(event.metadata, null, 2)}
|
|
127
|
+
</pre>
|
|
128
|
+
</Card>
|
|
129
|
+
</FormScreenShell>
|
|
130
|
+
);
|
|
131
|
+
}
|
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
// @runtime client
|
|
2
|
+
// Paginated tenant-scoped audit log (event store). Rows link to the
|
|
3
|
+
// audit-log-detail screen; the screen title lives in the shell breadcrumb.
|
|
4
|
+
|
|
5
|
+
import {
|
|
6
|
+
type DataTableSort,
|
|
7
|
+
formatWhen,
|
|
8
|
+
sortByAccessor,
|
|
9
|
+
useDispatcher,
|
|
10
|
+
useNav,
|
|
11
|
+
usePrimitives,
|
|
12
|
+
useTranslation,
|
|
13
|
+
} from "@cosmicdrift/kumiko-renderer";
|
|
14
|
+
import { type ReactNode, useCallback, useEffect, useRef, useState } from "react";
|
|
15
|
+
import { AUDIT_LOG_DETAIL_SCREEN_ID, AuditQueries } from "../constants";
|
|
16
|
+
|
|
17
|
+
type AuditRow = {
|
|
18
|
+
readonly id: string;
|
|
19
|
+
readonly aggregateId: string;
|
|
20
|
+
readonly aggregateType: string;
|
|
21
|
+
readonly type: string;
|
|
22
|
+
readonly createdBy: string;
|
|
23
|
+
readonly createdAt: string;
|
|
24
|
+
readonly payload: Record<string, unknown>;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
type AuditResponse = { readonly rows: readonly AuditRow[]; readonly nextBefore: string | null };
|
|
28
|
+
|
|
29
|
+
type Filters = {
|
|
30
|
+
readonly eventType: string;
|
|
31
|
+
readonly aggregateType: string;
|
|
32
|
+
readonly from: string;
|
|
33
|
+
readonly to: string;
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
type State =
|
|
37
|
+
| { readonly kind: "loading" }
|
|
38
|
+
| { readonly kind: "error"; readonly message: string }
|
|
39
|
+
| {
|
|
40
|
+
readonly kind: "ready";
|
|
41
|
+
readonly rows: readonly AuditRow[];
|
|
42
|
+
readonly nextBefore: string | null;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
const EMPTY_FILTERS: Filters = { eventType: "", aggregateType: "", from: "", to: "" };
|
|
46
|
+
|
|
47
|
+
export function AuditLogScreen(): ReactNode {
|
|
48
|
+
const t = useTranslation();
|
|
49
|
+
const { Banner, Button, DataTable, Field, Input, Text } = usePrimitives();
|
|
50
|
+
const dispatcher = useDispatcher();
|
|
51
|
+
const nav = useNav();
|
|
52
|
+
const [state, setState] = useState<State>({ kind: "loading" });
|
|
53
|
+
const [before, setBefore] = useState<string | undefined>(undefined);
|
|
54
|
+
const [filters, setFilters] = useState<Filters>(EMPTY_FILTERS);
|
|
55
|
+
const [sort, setSort] = useState<DataTableSort | null>(null);
|
|
56
|
+
|
|
57
|
+
const filtersRef = useRef(filters);
|
|
58
|
+
filtersRef.current = filters;
|
|
59
|
+
|
|
60
|
+
const load = useCallback(
|
|
61
|
+
async (cursor?: string, overrideFilters?: Filters): Promise<void> => {
|
|
62
|
+
setState({ kind: "loading" });
|
|
63
|
+
const f = overrideFilters ?? filtersRef.current;
|
|
64
|
+
const res = await dispatcher.query<AuditResponse>(AuditQueries.list, {
|
|
65
|
+
limit: 50,
|
|
66
|
+
...(cursor !== undefined && { before: cursor }),
|
|
67
|
+
...(f.eventType.trim() !== "" && { eventType: f.eventType.trim() }),
|
|
68
|
+
...(f.aggregateType.trim() !== "" && {
|
|
69
|
+
aggregateType: f.aggregateType.trim(),
|
|
70
|
+
}),
|
|
71
|
+
...(f.from !== "" && { from: toIsoStart(f.from) }),
|
|
72
|
+
...(f.to !== "" && { to: toIsoEnd(f.to) }),
|
|
73
|
+
});
|
|
74
|
+
if (!res.isSuccess) {
|
|
75
|
+
setState({ kind: "error", message: res.error.message });
|
|
76
|
+
return;
|
|
77
|
+
}
|
|
78
|
+
setState({ kind: "ready", rows: res.data.rows, nextBefore: res.data.nextBefore });
|
|
79
|
+
},
|
|
80
|
+
[dispatcher],
|
|
81
|
+
);
|
|
82
|
+
|
|
83
|
+
useEffect(() => {
|
|
84
|
+
void load(before);
|
|
85
|
+
}, [load, before]);
|
|
86
|
+
|
|
87
|
+
if (state.kind === "loading") {
|
|
88
|
+
return (
|
|
89
|
+
<div className="p-6" data-testid="audit-log-screen">
|
|
90
|
+
<Text variant="small">{t("audit.log.loading")}</Text>
|
|
91
|
+
</div>
|
|
92
|
+
);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
if (state.kind === "error") {
|
|
96
|
+
return (
|
|
97
|
+
<div className="p-6" data-testid="audit-log-screen">
|
|
98
|
+
<Banner variant="error">{state.message}</Banner>
|
|
99
|
+
</div>
|
|
100
|
+
);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
const openDetail = (id: string): void =>
|
|
104
|
+
nav.navigate({ screenId: AUDIT_LOG_DETAIL_SCREEN_ID, entityId: id });
|
|
105
|
+
|
|
106
|
+
return (
|
|
107
|
+
<div className="w-full" data-testid="audit-log-screen">
|
|
108
|
+
<div className="flex flex-col gap-4 px-6 pt-6">
|
|
109
|
+
<div className="grid gap-4 sm:grid-cols-2 lg:grid-cols-4">
|
|
110
|
+
<Field id="audit-filter-event" label={t("audit.log.filter.eventType")}>
|
|
111
|
+
<Input
|
|
112
|
+
kind="text"
|
|
113
|
+
id="audit-filter-event"
|
|
114
|
+
name="audit-filter-event"
|
|
115
|
+
value={filters.eventType}
|
|
116
|
+
onChange={(v: string) => setFilters((f) => ({ ...f, eventType: v }))}
|
|
117
|
+
/>
|
|
118
|
+
</Field>
|
|
119
|
+
<Field id="audit-filter-aggregate" label={t("audit.log.filter.aggregateType")}>
|
|
120
|
+
<Input
|
|
121
|
+
kind="text"
|
|
122
|
+
id="audit-filter-aggregate"
|
|
123
|
+
name="audit-filter-aggregate"
|
|
124
|
+
value={filters.aggregateType}
|
|
125
|
+
onChange={(v) => setFilters((f) => ({ ...f, aggregateType: v }))}
|
|
126
|
+
/>
|
|
127
|
+
</Field>
|
|
128
|
+
<Field id="audit-filter-from" label={t("audit.log.filter.from")}>
|
|
129
|
+
<Input
|
|
130
|
+
kind="date"
|
|
131
|
+
id="audit-filter-from"
|
|
132
|
+
name="audit-filter-from"
|
|
133
|
+
value={filters.from}
|
|
134
|
+
onChange={(v) => setFilters((f) => ({ ...f, from: v ?? "" }))}
|
|
135
|
+
/>
|
|
136
|
+
</Field>
|
|
137
|
+
<Field id="audit-filter-to" label={t("audit.log.filter.to")}>
|
|
138
|
+
<Input
|
|
139
|
+
kind="date"
|
|
140
|
+
id="audit-filter-to"
|
|
141
|
+
name="audit-filter-to"
|
|
142
|
+
value={filters.to}
|
|
143
|
+
onChange={(v) => setFilters((f) => ({ ...f, to: v ?? "" }))}
|
|
144
|
+
/>
|
|
145
|
+
</Field>
|
|
146
|
+
</div>
|
|
147
|
+
<div className="flex gap-2">
|
|
148
|
+
<Button
|
|
149
|
+
type="button"
|
|
150
|
+
variant="primary"
|
|
151
|
+
onClick={() => {
|
|
152
|
+
setBefore(undefined);
|
|
153
|
+
void load(undefined);
|
|
154
|
+
}}
|
|
155
|
+
testId="audit-log-apply-filters"
|
|
156
|
+
>
|
|
157
|
+
{t("audit.log.filter.apply")}
|
|
158
|
+
</Button>
|
|
159
|
+
<Button
|
|
160
|
+
type="button"
|
|
161
|
+
variant="secondary"
|
|
162
|
+
onClick={() => {
|
|
163
|
+
setFilters(EMPTY_FILTERS);
|
|
164
|
+
setBefore(undefined);
|
|
165
|
+
void load(undefined, EMPTY_FILTERS);
|
|
166
|
+
}}
|
|
167
|
+
testId="audit-log-reset-filters"
|
|
168
|
+
>
|
|
169
|
+
{t("audit.log.filter.reset")}
|
|
170
|
+
</Button>
|
|
171
|
+
</div>
|
|
172
|
+
</div>
|
|
173
|
+
|
|
174
|
+
<DataTable
|
|
175
|
+
testId="audit-log-table"
|
|
176
|
+
columns={[
|
|
177
|
+
{ field: "when", label: t("audit.log.col.when"), type: "string", sortable: true },
|
|
178
|
+
{ field: "type", label: t("audit.log.col.type"), type: "string", sortable: true },
|
|
179
|
+
{
|
|
180
|
+
field: "aggregate",
|
|
181
|
+
label: t("audit.log.col.aggregate"),
|
|
182
|
+
type: "string",
|
|
183
|
+
sortable: false,
|
|
184
|
+
},
|
|
185
|
+
{ field: "actor", label: t("audit.log.col.actor"), type: "string", sortable: false },
|
|
186
|
+
]}
|
|
187
|
+
sort={sort}
|
|
188
|
+
onSortChange={setSort}
|
|
189
|
+
rows={sortByAccessor(state.rows, sort, SORT_ACCESSORS).map((row) => ({
|
|
190
|
+
id: row.id,
|
|
191
|
+
values: {
|
|
192
|
+
when: formatWhen(row.createdAt),
|
|
193
|
+
type: row.type,
|
|
194
|
+
aggregate: `${row.aggregateType} / ${row.aggregateId}`,
|
|
195
|
+
actor: row.createdBy,
|
|
196
|
+
},
|
|
197
|
+
}))}
|
|
198
|
+
onRowClick={(row) => openDetail(row.id)}
|
|
199
|
+
rowActions={[
|
|
200
|
+
{
|
|
201
|
+
id: "details",
|
|
202
|
+
label: t("audit.log.details"),
|
|
203
|
+
style: "secondary",
|
|
204
|
+
onTrigger: (row) => openDetail(row.id),
|
|
205
|
+
},
|
|
206
|
+
]}
|
|
207
|
+
rowActionMode="inline"
|
|
208
|
+
emptyState={<Text variant="small">{t("audit.log.empty")}</Text>}
|
|
209
|
+
/>
|
|
210
|
+
|
|
211
|
+
<div className="flex gap-2 px-6 pb-6">
|
|
212
|
+
{before !== undefined && (
|
|
213
|
+
<Button
|
|
214
|
+
type="button"
|
|
215
|
+
variant="secondary"
|
|
216
|
+
onClick={() => setBefore(undefined)}
|
|
217
|
+
testId="audit-log-newest"
|
|
218
|
+
>
|
|
219
|
+
{t("audit.log.newest")}
|
|
220
|
+
</Button>
|
|
221
|
+
)}
|
|
222
|
+
{state.nextBefore !== null && (
|
|
223
|
+
<Button
|
|
224
|
+
type="button"
|
|
225
|
+
variant="secondary"
|
|
226
|
+
onClick={() => setBefore(state.nextBefore ?? undefined)}
|
|
227
|
+
testId="audit-log-older"
|
|
228
|
+
>
|
|
229
|
+
{t("audit.log.older")}
|
|
230
|
+
</Button>
|
|
231
|
+
)}
|
|
232
|
+
</div>
|
|
233
|
+
</div>
|
|
234
|
+
);
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
// Client-sort over the loaded page (≤50 rows). createdAt is an ISO string, so
|
|
238
|
+
// lexicographic compare is chronological. Cross-page order stays cursor-based.
|
|
239
|
+
const SORT_ACCESSORS: Record<string, (r: AuditRow) => string> = {
|
|
240
|
+
when: (r) => r.createdAt,
|
|
241
|
+
type: (r) => r.type,
|
|
242
|
+
};
|
|
243
|
+
|
|
244
|
+
function toIsoStart(date: string): string {
|
|
245
|
+
return new Date(`${date}T00:00:00.000Z`).toISOString();
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
function toIsoEnd(date: string): string {
|
|
249
|
+
return new Date(`${date}T23:59:59.999Z`).toISOString();
|
|
250
|
+
}
|