@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
|
@@ -255,6 +255,26 @@ describe("verifyAndParseStripeWebhook — tenant-resolution + price-to-tier", ()
|
|
|
255
255
|
});
|
|
256
256
|
});
|
|
257
257
|
|
|
258
|
+
describe("verifyAndParseStripeWebhook — kumiko-framework#1525: no ambient Temporal global", () => {
|
|
259
|
+
test("computes currentPeriodEnd without relying on globalThis.Temporal", async () => {
|
|
260
|
+
const verify = verifyAndParseStripeWebhook(webhookRuntime(), {
|
|
261
|
+
priceToTier: { price_pro_monthly: "pro" },
|
|
262
|
+
});
|
|
263
|
+
const payload = JSON.stringify(buildSubscriptionEvent({ currentPeriodEndUnix: 1_780_000_000 }));
|
|
264
|
+
const sig = await signEvent(payload);
|
|
265
|
+
|
|
266
|
+
const savedGlobal = (globalThis as { Temporal?: unknown }).Temporal;
|
|
267
|
+
delete (globalThis as { Temporal?: unknown }).Temporal;
|
|
268
|
+
try {
|
|
269
|
+
const event = await verify(payload, { "stripe-signature": sig });
|
|
270
|
+
expect(event?.currentPeriodEnd).toBe("2026-05-28T20:26:40Z");
|
|
271
|
+
} finally {
|
|
272
|
+
if (savedGlobal === undefined) delete (globalThis as { Temporal?: unknown }).Temporal;
|
|
273
|
+
else (globalThis as { Temporal?: unknown }).Temporal = savedGlobal;
|
|
274
|
+
}
|
|
275
|
+
});
|
|
276
|
+
});
|
|
277
|
+
|
|
258
278
|
// =============================================================================
|
|
259
279
|
// Mapping-helpers (pure functions, kein Stripe-mock nötig)
|
|
260
280
|
// =============================================================================
|
|
@@ -172,6 +172,8 @@ export function createSubscriptionStripeFeature(
|
|
|
172
172
|
de: "Stripe Billing live",
|
|
173
173
|
en: "Stripe Billing Live",
|
|
174
174
|
},
|
|
175
|
+
"subscription-stripe.settings": { de: "Stripe", en: "Stripe" },
|
|
176
|
+
"screen:subscription-stripe-system.title": { de: "Stripe", en: "Stripe" },
|
|
175
177
|
},
|
|
176
178
|
});
|
|
177
179
|
|
|
@@ -40,6 +40,7 @@ import {
|
|
|
40
40
|
} from "@cosmicdrift/kumiko-bundled-features/billing-foundation";
|
|
41
41
|
import type { SecretsContext } from "@cosmicdrift/kumiko-framework/secrets";
|
|
42
42
|
import type Stripe from "stripe";
|
|
43
|
+
import { Temporal } from "temporal-polyfill";
|
|
43
44
|
import { STRIPE_PROVIDER_NAME, StripeEventTypes } from "./constants";
|
|
44
45
|
import type { StripeWebhookRuntime } from "./runtime";
|
|
45
46
|
|
|
@@ -138,8 +139,8 @@ export function verifyAndParseStripeWebhook(
|
|
|
138
139
|
const status = mapStripeStatus(sub.status);
|
|
139
140
|
const periodEndUnixSec = sub.items.data[0]?.current_period_end ?? 0;
|
|
140
141
|
// Stripe returns Unix-seconds; Temporal.Instant.fromEpochMilliseconds
|
|
141
|
-
// expects ms. Multiply, then ISO. (No-Date-API-Guard
|
|
142
|
-
// `new Date()` —
|
|
142
|
+
// expects ms. Multiply, then ISO. (No-Date-API-Guard forbids
|
|
143
|
+
// `new Date()` — static import above, not the ambient global, see #1490.)
|
|
143
144
|
const currentPeriodEnd = Temporal.Instant.fromEpochMilliseconds(
|
|
144
145
|
periodEndUnixSec * 1000,
|
|
145
146
|
).toString();
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { describe, expect, test } from "bun:test";
|
|
2
|
+
import { assignTagPayloadSchema } from "../schemas";
|
|
3
|
+
|
|
4
|
+
// 456/3: tagAssignmentAggregateId joins tenantId/tagId/entityType/entityId
|
|
5
|
+
// with "|" to derive the stream id — a literal "|" in entityType/entityId
|
|
6
|
+
// could shift tuple boundaries and collide with an unrelated combination.
|
|
7
|
+
describe("assignTagPayloadSchema — no pipe in entityType/entityId", () => {
|
|
8
|
+
test("accepts normal values", () => {
|
|
9
|
+
const parsed = assignTagPayloadSchema.safeParse({
|
|
10
|
+
tagId: "tag-1",
|
|
11
|
+
entityType: "credit",
|
|
12
|
+
entityId: "entity-1",
|
|
13
|
+
});
|
|
14
|
+
expect(parsed.success).toBe(true);
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
test("rejects a pipe in entityType", () => {
|
|
18
|
+
const parsed = assignTagPayloadSchema.safeParse({
|
|
19
|
+
tagId: "tag-1",
|
|
20
|
+
entityType: "credit|forged",
|
|
21
|
+
entityId: "entity-1",
|
|
22
|
+
});
|
|
23
|
+
expect(parsed.success).toBe(false);
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
test("rejects a pipe in entityId", () => {
|
|
27
|
+
const parsed = assignTagPayloadSchema.safeParse({
|
|
28
|
+
tagId: "tag-1",
|
|
29
|
+
entityType: "credit",
|
|
30
|
+
entityId: "entity|forged",
|
|
31
|
+
});
|
|
32
|
+
expect(parsed.success).toBe(false);
|
|
33
|
+
});
|
|
34
|
+
});
|
|
@@ -358,6 +358,11 @@ describe("tags integration — multi-tenant isolation", () => {
|
|
|
358
358
|
// "Admin", not "TenantAdmin"). Default-mounted tags deny that same user.
|
|
359
359
|
describe("tags integration — openToAll access model", () => {
|
|
360
360
|
let openStack: TestStack;
|
|
361
|
+
// Dedicated stack (477/1), not the outer file's `stack` — a describe-level
|
|
362
|
+
// `--test-name-pattern` run of just this block would otherwise crash on an
|
|
363
|
+
// undefined outer `stack` instead of failing cleanly, and this block
|
|
364
|
+
// shouldn't depend on describe-execution order for its setup to exist.
|
|
365
|
+
let defaultStack: TestStack;
|
|
361
366
|
// role deliberately not in DEFAULT_TAG_ROLES nor "Admin" — proves openToAll,
|
|
362
367
|
// not an accidental role match.
|
|
363
368
|
const unprivileged = createTestUser({ roles: ["Viewer"] });
|
|
@@ -369,10 +374,16 @@ describe("tags integration — openToAll access model", () => {
|
|
|
369
374
|
await unsafeCreateEntityTable(openStack.db, tagEntity);
|
|
370
375
|
await unsafeCreateEntityTable(openStack.db, tagAssignmentEntity);
|
|
371
376
|
await createEventsTable(openStack.db);
|
|
377
|
+
|
|
378
|
+
defaultStack = await setupTestStack({ features: [tagsFeature] });
|
|
379
|
+
await unsafeCreateEntityTable(defaultStack.db, tagEntity);
|
|
380
|
+
await unsafeCreateEntityTable(defaultStack.db, tagAssignmentEntity);
|
|
381
|
+
await createEventsTable(defaultStack.db);
|
|
372
382
|
});
|
|
373
383
|
|
|
374
384
|
afterAll(async () => {
|
|
375
385
|
await openStack.cleanup();
|
|
386
|
+
await defaultStack.cleanup();
|
|
376
387
|
});
|
|
377
388
|
|
|
378
389
|
test("a non-tag-role user can create, assign, list and remove", async () => {
|
|
@@ -409,7 +420,7 @@ describe("tags integration — openToAll access model", () => {
|
|
|
409
420
|
});
|
|
410
421
|
|
|
411
422
|
test("the SAME user is denied on a default-role-mounted feature", async () => {
|
|
412
|
-
const denied = await
|
|
423
|
+
const denied = await defaultStack.http.writeErr(
|
|
413
424
|
TagsHandlers.createTag,
|
|
414
425
|
{ name: "nope" },
|
|
415
426
|
unprivileged,
|
package/src/tags/entity.ts
CHANGED
|
@@ -6,7 +6,12 @@ import { createEntity, createTextField } from "@cosmicdrift/kumiko-framework/eng
|
|
|
6
6
|
export const tagEntity = createEntity({
|
|
7
7
|
table: "read_tags",
|
|
8
8
|
fields: {
|
|
9
|
-
|
|
9
|
+
// Catalog labels ("urgent", "billing"), not user-identifying content —
|
|
10
|
+
// allowPlaintext silences the user-content heuristic (456/5). A tenant
|
|
11
|
+
// COULD name a tag after a person; if that becomes a real requirement,
|
|
12
|
+
// this needs a userOwned annotation + forget/export hooks in the
|
|
13
|
+
// user-data-rights pipeline (none exist for tags today).
|
|
14
|
+
name: createTextField({ required: true, maxLength: 64, allowPlaintext: "catalog-label" }),
|
|
10
15
|
// Optional UI hint (hex or token). No enforcement — purely for rendering.
|
|
11
16
|
color: createTextField({ maxLength: 32 }),
|
|
12
17
|
// Optional entity-type scope (GitLab project-vs-group labels): empty = global
|
package/src/tags/feature.ts
CHANGED
|
@@ -29,6 +29,7 @@ import { createCreateTagHandler } from "./handlers/create-tag.write";
|
|
|
29
29
|
import { createDeleteTagHandler } from "./handlers/delete-tag.write";
|
|
30
30
|
import { createRemoveTagHandler } from "./handlers/remove-tag.write";
|
|
31
31
|
import { createUpdateTagHandler } from "./handlers/update-tag.write";
|
|
32
|
+
import { TAGS_FEATURE_I18N } from "./i18n";
|
|
32
33
|
|
|
33
34
|
// Opt-in tier-gating: when set, the feature declares itself r.toggleable so the
|
|
34
35
|
// dispatcher gate + feature-toggles + tier-engine can switch the WHOLE feature
|
|
@@ -76,6 +77,7 @@ function registerTags(
|
|
|
76
77
|
renderer: { react: { __component: "TagsScreen" } },
|
|
77
78
|
access,
|
|
78
79
|
});
|
|
80
|
+
r.translations({ keys: TAGS_FEATURE_I18N });
|
|
79
81
|
}
|
|
80
82
|
|
|
81
83
|
export const tagsFeature = defineFeature(TAGS_FEATURE_NAME, (r) =>
|
package/src/tags/i18n.ts
ADDED
package/src/tags/schemas.ts
CHANGED
|
@@ -41,10 +41,17 @@ export const deleteTagPayloadSchema = z.object({
|
|
|
41
41
|
export type DeleteTagPayload = z.infer<typeof deleteTagPayloadSchema>;
|
|
42
42
|
|
|
43
43
|
// assign + remove share the (tag, entity) reference shape.
|
|
44
|
+
// entityType/entityId are app-supplied, unlike tagId (always a real tag's
|
|
45
|
+
// UUID) — tagAssignmentAggregateId joins all four with "|" to derive the
|
|
46
|
+
// stream id, so a literal "|" in either could shift tuple boundaries and
|
|
47
|
+
// collide with an unrelated (tenant, tag, entity) combination (456/3).
|
|
48
|
+
// Rejecting it here is cheaper and non-breaking compared to changing the
|
|
49
|
+
// derivation's separator, which would re-key every existing stream.
|
|
50
|
+
const NO_PIPE = /^[^|]*$/;
|
|
44
51
|
const entityTagRef = {
|
|
45
52
|
tagId: z.string().min(1).max(64),
|
|
46
|
-
entityType: z.string().min(1).max(64),
|
|
47
|
-
entityId: z.string().min(1).max(128),
|
|
53
|
+
entityType: z.string().min(1).max(64).regex(NO_PIPE, 'entityType must not contain "|"'),
|
|
54
|
+
entityId: z.string().min(1).max(128).regex(NO_PIPE, 'entityId must not contain "|"'),
|
|
48
55
|
} as const;
|
|
49
56
|
|
|
50
57
|
export const assignTagPayloadSchema = z.object(entityTagRef);
|
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
import { beforeEach, describe, expect, mock, test } from "bun:test";
|
|
2
|
+
import {
|
|
3
|
+
createStaticLocaleResolver,
|
|
4
|
+
LocaleProvider,
|
|
5
|
+
PrimitivesProvider,
|
|
6
|
+
} from "@cosmicdrift/kumiko-renderer";
|
|
7
|
+
import { defaultPrimitives } from "@cosmicdrift/kumiko-renderer-web";
|
|
8
|
+
import { fireEvent, render, screen, waitFor } from "@testing-library/react";
|
|
9
|
+
import type { ReactNode } from "react";
|
|
10
|
+
import { TagsHandlers, TagsQueries } from "../../constants";
|
|
11
|
+
import { defaultTranslations } from "../i18n";
|
|
12
|
+
import { TagManager } from "../tag-manager";
|
|
13
|
+
|
|
14
|
+
type TagRow = { id: string; name: string; color?: string; scope?: string; version: number };
|
|
15
|
+
type AssignmentRow = { tagId: string };
|
|
16
|
+
|
|
17
|
+
let catalogRows: readonly TagRow[] = [];
|
|
18
|
+
let assignmentRows: readonly AssignmentRow[] = [];
|
|
19
|
+
let catalogLoading = false;
|
|
20
|
+
let catalogData: { rows: readonly TagRow[] } | null = { rows: catalogRows };
|
|
21
|
+
let catalogError: { i18nKey: string; i18nParams?: Record<string, unknown> } | null = null;
|
|
22
|
+
let assignmentError: { i18nKey: string; i18nParams?: Record<string, unknown> } | null = null;
|
|
23
|
+
|
|
24
|
+
beforeEach(() => {
|
|
25
|
+
catalogRows = [{ id: "t1", name: "urgent", color: "#ef4444", version: 1 }];
|
|
26
|
+
assignmentRows = [{ tagId: "t1" }, { tagId: "t1" }];
|
|
27
|
+
catalogLoading = false;
|
|
28
|
+
catalogData = { rows: catalogRows };
|
|
29
|
+
catalogError = null;
|
|
30
|
+
assignmentError = null;
|
|
31
|
+
dispatchSpy.mockClear();
|
|
32
|
+
catalogRefetch.mockClear();
|
|
33
|
+
assignmentsRefetch.mockClear();
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
const dispatchSpy = mock(async (type: string) =>
|
|
37
|
+
type === TagsHandlers.createTag
|
|
38
|
+
? { isSuccess: true, data: { id: "tag-new" } }
|
|
39
|
+
: { isSuccess: true, data: undefined },
|
|
40
|
+
);
|
|
41
|
+
|
|
42
|
+
const catalogRefetch = mock(async () => {});
|
|
43
|
+
const assignmentsRefetch = mock(async () => {});
|
|
44
|
+
|
|
45
|
+
const useQuerySpy = mock((type: string) => {
|
|
46
|
+
if (type === TagsQueries.tagList) {
|
|
47
|
+
return {
|
|
48
|
+
data: catalogData,
|
|
49
|
+
loading: catalogLoading,
|
|
50
|
+
error: catalogError,
|
|
51
|
+
refetch: catalogRefetch,
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
return {
|
|
55
|
+
data: { rows: assignmentRows },
|
|
56
|
+
loading: false,
|
|
57
|
+
error: assignmentError,
|
|
58
|
+
refetch: assignmentsRefetch,
|
|
59
|
+
};
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
const actual_renderer = await import("@cosmicdrift/kumiko-renderer");
|
|
63
|
+
mock.module("@cosmicdrift/kumiko-renderer", () => ({
|
|
64
|
+
...actual_renderer,
|
|
65
|
+
useDispatcher: mock(() => ({ write: dispatchSpy, query: mock(), batch: mock() })),
|
|
66
|
+
useQuery: useQuerySpy,
|
|
67
|
+
}));
|
|
68
|
+
|
|
69
|
+
function Wrapper({ children }: { readonly children: ReactNode }): ReactNode {
|
|
70
|
+
return (
|
|
71
|
+
<LocaleProvider resolver={createStaticLocaleResolver()} fallbackBundles={[defaultTranslations]}>
|
|
72
|
+
<PrimitivesProvider value={defaultPrimitives}>{children}</PrimitivesProvider>
|
|
73
|
+
</LocaleProvider>
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
describe("TagManager — loading and errors", () => {
|
|
78
|
+
test("shows loading banner while catalog is loading with no data yet", () => {
|
|
79
|
+
catalogLoading = true;
|
|
80
|
+
catalogData = null;
|
|
81
|
+
render(
|
|
82
|
+
<Wrapper>
|
|
83
|
+
<TagManager />
|
|
84
|
+
</Wrapper>,
|
|
85
|
+
);
|
|
86
|
+
expect(screen.getByTestId("tag-manager-loading")).toBeTruthy();
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
test("shows error banner when catalog query fails", () => {
|
|
90
|
+
catalogError = { i18nKey: "tags.section.empty" };
|
|
91
|
+
render(
|
|
92
|
+
<Wrapper>
|
|
93
|
+
<TagManager />
|
|
94
|
+
</Wrapper>,
|
|
95
|
+
);
|
|
96
|
+
expect(screen.getByTestId("tag-manager-error")).toBeTruthy();
|
|
97
|
+
expect(screen.getByText("No tags found.")).toBeTruthy();
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
test("shows empty banner when catalog has no rows", () => {
|
|
101
|
+
catalogRows = [];
|
|
102
|
+
catalogData = { rows: catalogRows };
|
|
103
|
+
render(
|
|
104
|
+
<Wrapper>
|
|
105
|
+
<TagManager />
|
|
106
|
+
</Wrapper>,
|
|
107
|
+
);
|
|
108
|
+
expect(screen.getByTestId("tag-manager-empty")).toBeTruthy();
|
|
109
|
+
});
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
describe("TagManager — catalog CRUD", () => {
|
|
113
|
+
test("renders tag row with scope label and usage count", () => {
|
|
114
|
+
catalogRows = [{ id: "t2", name: "note-tag", color: "#22c55e", scope: "note", version: 1 }];
|
|
115
|
+
catalogData = { rows: catalogRows };
|
|
116
|
+
assignmentRows = [{ tagId: "t2" }];
|
|
117
|
+
render(
|
|
118
|
+
<Wrapper>
|
|
119
|
+
<TagManager />
|
|
120
|
+
</Wrapper>,
|
|
121
|
+
);
|
|
122
|
+
expect(screen.getByTestId("tag-manager-row-t2")).toBeTruthy();
|
|
123
|
+
expect(screen.getByText("@note")).toBeTruthy();
|
|
124
|
+
expect(screen.getByText("1×")).toBeTruthy();
|
|
125
|
+
});
|
|
126
|
+
|
|
127
|
+
test("create dispatches write with trimmed name/color/scope and refetches", async () => {
|
|
128
|
+
render(
|
|
129
|
+
<Wrapper>
|
|
130
|
+
<TagManager />
|
|
131
|
+
</Wrapper>,
|
|
132
|
+
);
|
|
133
|
+
fireEvent.change(document.getElementById("tag-manager-new-name") as HTMLInputElement, {
|
|
134
|
+
target: { value: " new-tag " },
|
|
135
|
+
});
|
|
136
|
+
fireEvent.click(screen.getByTestId("tag-manager-new-color-swatch-#22c55e"));
|
|
137
|
+
fireEvent.change(document.getElementById("tag-manager-new-scope") as HTMLInputElement, {
|
|
138
|
+
target: { value: " note " },
|
|
139
|
+
});
|
|
140
|
+
fireEvent.click(screen.getByTestId("tag-manager-create"));
|
|
141
|
+
|
|
142
|
+
await waitFor(() =>
|
|
143
|
+
expect(dispatchSpy).toHaveBeenCalledWith(TagsHandlers.createTag, {
|
|
144
|
+
name: "new-tag",
|
|
145
|
+
color: "#22c55e",
|
|
146
|
+
scope: "note",
|
|
147
|
+
}),
|
|
148
|
+
);
|
|
149
|
+
await waitFor(() => expect(catalogRefetch).toHaveBeenCalled());
|
|
150
|
+
await waitFor(() => expect(assignmentsRefetch).toHaveBeenCalled());
|
|
151
|
+
});
|
|
152
|
+
|
|
153
|
+
test("create button stays disabled for empty trimmed name", () => {
|
|
154
|
+
render(
|
|
155
|
+
<Wrapper>
|
|
156
|
+
<TagManager />
|
|
157
|
+
</Wrapper>,
|
|
158
|
+
);
|
|
159
|
+
const create = screen.getByTestId("tag-manager-create") as HTMLButtonElement;
|
|
160
|
+
expect(create.disabled).toBe(true);
|
|
161
|
+
fireEvent.change(document.getElementById("tag-manager-new-name") as HTMLInputElement, {
|
|
162
|
+
target: { value: " " },
|
|
163
|
+
});
|
|
164
|
+
expect(create.disabled).toBe(true);
|
|
165
|
+
});
|
|
166
|
+
|
|
167
|
+
test("save edit dispatches update and closes edit form", async () => {
|
|
168
|
+
render(
|
|
169
|
+
<Wrapper>
|
|
170
|
+
<TagManager />
|
|
171
|
+
</Wrapper>,
|
|
172
|
+
);
|
|
173
|
+
fireEvent.click(screen.getByTestId("tag-manager-edit-btn-t1"));
|
|
174
|
+
expect(screen.getByTestId("tag-manager-edit-t1")).toBeTruthy();
|
|
175
|
+
|
|
176
|
+
fireEvent.change(document.getElementById("tag-edit-name-t1") as HTMLInputElement, {
|
|
177
|
+
target: { value: "renamed" },
|
|
178
|
+
});
|
|
179
|
+
fireEvent.click(screen.getByTestId("tag-edit-color-t1-swatch-#3b82f6"));
|
|
180
|
+
fireEvent.click(screen.getByTestId("tag-manager-save-t1"));
|
|
181
|
+
|
|
182
|
+
await waitFor(() =>
|
|
183
|
+
expect(dispatchSpy).toHaveBeenCalledWith(TagsHandlers.updateTag, {
|
|
184
|
+
id: "t1",
|
|
185
|
+
version: 1,
|
|
186
|
+
name: "renamed",
|
|
187
|
+
color: "#3b82f6",
|
|
188
|
+
scope: "",
|
|
189
|
+
}),
|
|
190
|
+
);
|
|
191
|
+
await waitFor(() => expect(screen.queryByTestId("tag-manager-edit-t1")).toBeNull());
|
|
192
|
+
});
|
|
193
|
+
|
|
194
|
+
test("cancel edit closes edit form without write", () => {
|
|
195
|
+
render(
|
|
196
|
+
<Wrapper>
|
|
197
|
+
<TagManager />
|
|
198
|
+
</Wrapper>,
|
|
199
|
+
);
|
|
200
|
+
fireEvent.click(screen.getByTestId("tag-manager-edit-btn-t1"));
|
|
201
|
+
fireEvent.click(screen.getByText("Cancel"));
|
|
202
|
+
expect(screen.queryByTestId("tag-manager-edit-t1")).toBeNull();
|
|
203
|
+
expect(dispatchSpy).not.toHaveBeenCalled();
|
|
204
|
+
});
|
|
205
|
+
|
|
206
|
+
test("delete confirm dispatches deleteTag and refetches", async () => {
|
|
207
|
+
render(
|
|
208
|
+
<Wrapper>
|
|
209
|
+
<TagManager />
|
|
210
|
+
</Wrapper>,
|
|
211
|
+
);
|
|
212
|
+
fireEvent.click(screen.getByTestId("tag-manager-delete-btn-t1"));
|
|
213
|
+
expect(screen.getByTestId("tag-manager-delete-dialog")).toBeTruthy();
|
|
214
|
+
fireEvent.click(screen.getByTestId("tag-manager-delete-dialog-confirm"));
|
|
215
|
+
|
|
216
|
+
await waitFor(() =>
|
|
217
|
+
expect(dispatchSpy).toHaveBeenCalledWith(TagsHandlers.deleteTag, { id: "t1" }),
|
|
218
|
+
);
|
|
219
|
+
await waitFor(() => expect(catalogRefetch).toHaveBeenCalled());
|
|
220
|
+
});
|
|
221
|
+
|
|
222
|
+
test("failed write shows action error banner", async () => {
|
|
223
|
+
dispatchSpy.mockImplementationOnce(
|
|
224
|
+
async () =>
|
|
225
|
+
({ isSuccess: false, error: { i18nKey: "tags.section.empty" } }) as {
|
|
226
|
+
isSuccess: boolean;
|
|
227
|
+
data?: { id: string } | undefined;
|
|
228
|
+
error?: { i18nKey: string };
|
|
229
|
+
},
|
|
230
|
+
);
|
|
231
|
+
render(
|
|
232
|
+
<Wrapper>
|
|
233
|
+
<TagManager />
|
|
234
|
+
</Wrapper>,
|
|
235
|
+
);
|
|
236
|
+
fireEvent.change(document.getElementById("tag-manager-new-name") as HTMLInputElement, {
|
|
237
|
+
target: { value: "fail-tag" },
|
|
238
|
+
});
|
|
239
|
+
fireEvent.click(screen.getByTestId("tag-manager-create"));
|
|
240
|
+
|
|
241
|
+
await waitFor(() => expect(screen.getByTestId("tag-manager-action-error")).toBeTruthy());
|
|
242
|
+
});
|
|
243
|
+
});
|
|
244
|
+
|
|
245
|
+
// 695/4: saveEdit silently no-ops on an empty trimmed name — the Save button
|
|
246
|
+
// must reflect that in its disabled state, not just in the click handler.
|
|
247
|
+
describe("TagManager — edit Save button", () => {
|
|
248
|
+
test("Save is disabled once the name is cleared to empty/whitespace", () => {
|
|
249
|
+
render(
|
|
250
|
+
<Wrapper>
|
|
251
|
+
<TagManager />
|
|
252
|
+
</Wrapper>,
|
|
253
|
+
);
|
|
254
|
+
fireEvent.click(screen.getByTestId("tag-manager-edit-btn-t1"));
|
|
255
|
+
|
|
256
|
+
const save = screen.getByTestId("tag-manager-save-t1") as HTMLButtonElement;
|
|
257
|
+
expect(save.disabled).toBe(false);
|
|
258
|
+
|
|
259
|
+
const nameInput = document.getElementById("tag-edit-name-t1") as HTMLInputElement;
|
|
260
|
+
fireEvent.change(nameInput, { target: { value: " " } });
|
|
261
|
+
expect(save.disabled).toBe(true);
|
|
262
|
+
|
|
263
|
+
fireEvent.change(nameInput, { target: { value: "renamed" } });
|
|
264
|
+
expect(save.disabled).toBe(false);
|
|
265
|
+
});
|
|
266
|
+
});
|
|
267
|
+
|
|
268
|
+
describe("TagManager — selection mode", () => {
|
|
269
|
+
test("filters tags by entityType scope and toggles selection", () => {
|
|
270
|
+
catalogRows = [
|
|
271
|
+
{ id: "t1", name: "global", version: 1 },
|
|
272
|
+
{ id: "t2", name: "note-only", scope: "note", version: 1 },
|
|
273
|
+
{ id: "t3", name: "other", scope: "task", version: 1 },
|
|
274
|
+
];
|
|
275
|
+
catalogData = { rows: catalogRows };
|
|
276
|
+
const onChange = mock((next: readonly string[]) => next);
|
|
277
|
+
let selected: readonly string[] = ["t1"];
|
|
278
|
+
|
|
279
|
+
render(
|
|
280
|
+
<Wrapper>
|
|
281
|
+
<TagManager
|
|
282
|
+
entityType="note"
|
|
283
|
+
selection={{
|
|
284
|
+
value: selected,
|
|
285
|
+
onChange: (next) => {
|
|
286
|
+
selected = next;
|
|
287
|
+
onChange(next);
|
|
288
|
+
},
|
|
289
|
+
}}
|
|
290
|
+
/>
|
|
291
|
+
</Wrapper>,
|
|
292
|
+
);
|
|
293
|
+
|
|
294
|
+
expect(screen.getByTestId("tag-manager-row-t1")).toBeTruthy();
|
|
295
|
+
expect(screen.getByTestId("tag-manager-row-t2")).toBeTruthy();
|
|
296
|
+
expect(screen.queryByTestId("tag-manager-row-t3")).toBeNull();
|
|
297
|
+
expect(screen.queryByTestId("tag-manager-new-scope")).toBeNull();
|
|
298
|
+
|
|
299
|
+
fireEvent.click(screen.getByTestId("tag-manager-toggle-t2"));
|
|
300
|
+
expect(onChange).toHaveBeenCalledWith(["t1", "t2"]);
|
|
301
|
+
|
|
302
|
+
fireEvent.click(screen.getByTestId("tag-manager-toggle-t1"));
|
|
303
|
+
expect(onChange).toHaveBeenCalledWith([]);
|
|
304
|
+
});
|
|
305
|
+
|
|
306
|
+
test("create in selection mode adds new tag id to selection", async () => {
|
|
307
|
+
const onChange = mock((next: readonly string[]) => next);
|
|
308
|
+
render(
|
|
309
|
+
<Wrapper>
|
|
310
|
+
<TagManager entityType="note" selection={{ value: [], onChange }} />
|
|
311
|
+
</Wrapper>,
|
|
312
|
+
);
|
|
313
|
+
fireEvent.change(document.getElementById("tag-manager-new-name") as HTMLInputElement, {
|
|
314
|
+
target: { value: "picked" },
|
|
315
|
+
});
|
|
316
|
+
fireEvent.click(screen.getByTestId("tag-manager-create"));
|
|
317
|
+
|
|
318
|
+
await waitFor(() => expect(onChange).toHaveBeenCalledWith(["tag-new"]));
|
|
319
|
+
});
|
|
320
|
+
|
|
321
|
+
test("delete removes tag from selection when it was selected", async () => {
|
|
322
|
+
const onChange = mock((next: readonly string[]) => next);
|
|
323
|
+
render(
|
|
324
|
+
<Wrapper>
|
|
325
|
+
<TagManager selection={{ value: ["t1"], onChange }} />
|
|
326
|
+
</Wrapper>,
|
|
327
|
+
);
|
|
328
|
+
fireEvent.click(screen.getByTestId("tag-manager-delete-btn-t1"));
|
|
329
|
+
fireEvent.click(screen.getByTestId("tag-manager-delete-dialog-confirm"));
|
|
330
|
+
|
|
331
|
+
await waitFor(() => expect(onChange).toHaveBeenCalledWith([]));
|
|
332
|
+
});
|
|
333
|
+
});
|
|
@@ -22,6 +22,8 @@ let assignmentRows: readonly AssignmentRow[] = [];
|
|
|
22
22
|
beforeEach(() => {
|
|
23
23
|
catalogRows = [];
|
|
24
24
|
assignmentRows = [];
|
|
25
|
+
catalogRefetch.mockClear();
|
|
26
|
+
assignmentsRefetch.mockClear();
|
|
25
27
|
});
|
|
26
28
|
|
|
27
29
|
const dispatchSpy = mock(async (type: string) =>
|
|
@@ -30,11 +32,13 @@ const dispatchSpy = mock(async (type: string) =>
|
|
|
30
32
|
: { isSuccess: true, data: undefined },
|
|
31
33
|
);
|
|
32
34
|
|
|
35
|
+
const catalogRefetch = mock(async () => {});
|
|
36
|
+
const assignmentsRefetch = mock(async () => {});
|
|
33
37
|
const useQuerySpy = mock((type: string) => ({
|
|
34
38
|
data: type === TagsQueries.tagList ? { rows: catalogRows } : { rows: assignmentRows },
|
|
35
39
|
loading: false,
|
|
36
40
|
error: null,
|
|
37
|
-
refetch:
|
|
41
|
+
refetch: type === TagsQueries.tagList ? catalogRefetch : assignmentsRefetch,
|
|
38
42
|
}));
|
|
39
43
|
|
|
40
44
|
const actual_renderer = await import("@cosmicdrift/kumiko-renderer");
|
|
@@ -63,6 +67,13 @@ const StubPicker = ({
|
|
|
63
67
|
<button type="button" data-testid="picker-add-t2" onClick={() => onChange([...value, "t2"])}>
|
|
64
68
|
add t2
|
|
65
69
|
</button>
|
|
70
|
+
<button
|
|
71
|
+
type="button"
|
|
72
|
+
data-testid="picker-add-t2-t3"
|
|
73
|
+
onClick={() => onChange([...value, "t2", "t3"])}
|
|
74
|
+
>
|
|
75
|
+
add t2+t3
|
|
76
|
+
</button>
|
|
66
77
|
<button
|
|
67
78
|
type="button"
|
|
68
79
|
data-testid="picker-remove-t1"
|
|
@@ -169,6 +180,41 @@ describe("TagSection", () => {
|
|
|
169
180
|
);
|
|
170
181
|
});
|
|
171
182
|
|
|
183
|
+
test("partial write failure still refetches — no stale UI for the writes that succeeded", async () => {
|
|
184
|
+
catalogRows = [
|
|
185
|
+
{ id: "t1", name: "important" },
|
|
186
|
+
{ id: "t2", name: "project-x" },
|
|
187
|
+
{ id: "t3", name: "urgent" },
|
|
188
|
+
];
|
|
189
|
+
assignmentRows = [{ tagId: "t1", entityType: "note", entityId: "note-1" }];
|
|
190
|
+
dispatchSpy.mockClear();
|
|
191
|
+
dispatchSpy.mockImplementation(async (_type: string, payload?: Record<string, unknown>) =>
|
|
192
|
+
payload?.["tagId"] === "t3"
|
|
193
|
+
? { isSuccess: false, error: { i18nKey: "tags.error.assignFailed" } }
|
|
194
|
+
: { isSuccess: true, data: undefined },
|
|
195
|
+
);
|
|
196
|
+
|
|
197
|
+
render(
|
|
198
|
+
<Wrapper>
|
|
199
|
+
<TagSection entityName="note" entityId="note-1" />
|
|
200
|
+
</Wrapper>,
|
|
201
|
+
);
|
|
202
|
+
|
|
203
|
+
// t2 assigns OK, t3 fails — the loop stops, but refetch must still run so
|
|
204
|
+
// the UI reflects the t2 write that already succeeded server-side.
|
|
205
|
+
fireEvent.click(screen.getByTestId("picker-add-t2-t3"));
|
|
206
|
+
await waitFor(() => expect(screen.getByTestId("tags-section-action-error")).toBeTruthy());
|
|
207
|
+
|
|
208
|
+
expect(catalogRefetch).toHaveBeenCalled();
|
|
209
|
+
expect(assignmentsRefetch).toHaveBeenCalled();
|
|
210
|
+
|
|
211
|
+
dispatchSpy.mockImplementation(async (type: string) =>
|
|
212
|
+
type === TagsHandlers.createTag
|
|
213
|
+
? { isSuccess: true, data: { id: "tag-new" } }
|
|
214
|
+
: { isSuccess: true, data: undefined },
|
|
215
|
+
);
|
|
216
|
+
});
|
|
217
|
+
|
|
172
218
|
test("create-mode (no entityId yet) shows the save-first hint instead of the section", () => {
|
|
173
219
|
render(
|
|
174
220
|
<Wrapper>
|
|
@@ -119,14 +119,17 @@ export function TagSection({
|
|
|
119
119
|
try {
|
|
120
120
|
for (const tagId of added) {
|
|
121
121
|
if (!(await writeOk(TagsHandlers.assignTag, { tagId, entityType: entityName, entityId })))
|
|
122
|
-
|
|
122
|
+
break;
|
|
123
123
|
}
|
|
124
124
|
for (const tagId of removed) {
|
|
125
125
|
if (!(await writeOk(TagsHandlers.removeTag, { tagId, entityType: entityName, entityId })))
|
|
126
|
-
|
|
126
|
+
break;
|
|
127
127
|
}
|
|
128
|
-
await refetch();
|
|
129
128
|
} finally {
|
|
129
|
+
// Unconditional: even a partial failure may have persisted some
|
|
130
|
+
// writes server-side — skipping refetch here would leave the UI
|
|
131
|
+
// stale relative to those, undetected until the next interaction.
|
|
132
|
+
await refetch();
|
|
130
133
|
setBusy(false);
|
|
131
134
|
}
|
|
132
135
|
})();
|
|
@@ -74,10 +74,11 @@ export async function assertConsumerHandlesNotFound(
|
|
|
74
74
|
const { tenantId } = opts;
|
|
75
75
|
let rejected = false;
|
|
76
76
|
let err: unknown;
|
|
77
|
+
const slug = `conformance-not-found-${crypto.randomUUID()}`;
|
|
77
78
|
try {
|
|
78
79
|
await consumer.resolve({
|
|
79
80
|
tenantId,
|
|
80
|
-
slug
|
|
81
|
+
slug,
|
|
81
82
|
kind: "mail-html",
|
|
82
83
|
locale: "de",
|
|
83
84
|
});
|