@open-mercato/core 0.6.8-develop.6983.1.e4f794099e → 0.6.8-develop.6985.1.fb93574faa
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/.turbo/turbo-build.log +2 -2
- package/dist/generated/entities/notification/index.js +6 -0
- package/dist/generated/entities/notification/index.js.map +2 -2
- package/dist/generated/entities/notification_preference/index.js +19 -0
- package/dist/generated/entities/notification_preference/index.js.map +7 -0
- package/dist/generated/entities/notification_type/index.js +21 -0
- package/dist/generated/entities/notification_type/index.js.map +7 -0
- package/dist/generated/entities/notification_type_override/index.js +17 -0
- package/dist/generated/entities/notification_type_override/index.js.map +7 -0
- package/dist/generated/entities/push_notification_delivery/index.js +41 -0
- package/dist/generated/entities/push_notification_delivery/index.js.map +7 -0
- package/dist/generated/entities/user_device/index.js +35 -0
- package/dist/generated/entities/user_device/index.js.map +7 -0
- package/dist/generated/entities.ids.generated.js +12 -1
- package/dist/generated/entities.ids.generated.js.map +2 -2
- package/dist/generated/entity-fields-registry.js +72 -0
- package/dist/generated/entity-fields-registry.js.map +2 -2
- package/dist/helpers/integration/api.js +2 -1
- package/dist/helpers/integration/api.js.map +2 -2
- package/dist/helpers/integration/appRoot.js +9 -0
- package/dist/helpers/integration/appRoot.js.map +7 -0
- package/dist/helpers/integration/dbFixtures.js +1 -4
- package/dist/helpers/integration/dbFixtures.js.map +2 -2
- package/dist/helpers/integration/pushFake.js +126 -0
- package/dist/helpers/integration/pushFake.js.map +7 -0
- package/dist/modules/auth/notifications.js +16 -0
- package/dist/modules/auth/notifications.js.map +2 -2
- package/dist/modules/business_rules/notifications.js +2 -0
- package/dist/modules/business_rules/notifications.js.map +2 -2
- package/dist/modules/catalog/notifications.js +2 -0
- package/dist/modules/catalog/notifications.js.map +2 -2
- package/dist/modules/communication_channels/acl.js +9 -0
- package/dist/modules/communication_channels/acl.js.map +2 -2
- package/dist/modules/communication_channels/api/delete/admin/channels/[id]/route.js +133 -0
- package/dist/modules/communication_channels/api/delete/admin/channels/[id]/route.js.map +7 -0
- package/dist/modules/communication_channels/api/get/channels/[id]/health/route.js +6 -2
- package/dist/modules/communication_channels/api/get/channels/[id]/health/route.js.map +2 -2
- package/dist/modules/communication_channels/api/get/channels/[id]/route.js +6 -2
- package/dist/modules/communication_channels/api/get/channels/[id]/route.js.map +2 -2
- package/dist/modules/communication_channels/api/get/channels/route.js +2 -1
- package/dist/modules/communication_channels/api/get/channels/route.js.map +2 -2
- package/dist/modules/communication_channels/api/post/channels/[id]/test-send/route.js +10 -5
- package/dist/modules/communication_channels/api/post/channels/[id]/test-send/route.js.map +2 -2
- package/dist/modules/communication_channels/api/post/channels/connect/credentials/route.js +29 -1
- package/dist/modules/communication_channels/api/post/channels/connect/credentials/route.js.map +2 -2
- package/dist/modules/communication_channels/api/post/channels/connect/tenant-credentials/route.js +157 -0
- package/dist/modules/communication_channels/api/post/channels/connect/tenant-credentials/route.js.map +7 -0
- package/dist/modules/communication_channels/backend/communication_channels/channels/page.js +8 -1
- package/dist/modules/communication_channels/backend/communication_channels/channels/page.js.map +2 -2
- package/dist/modules/communication_channels/commands/admin-delete-channel.js +141 -0
- package/dist/modules/communication_channels/commands/admin-delete-channel.js.map +7 -0
- package/dist/modules/communication_channels/commands/connect-credential-channel.js +25 -8
- package/dist/modules/communication_channels/commands/connect-credential-channel.js.map +2 -2
- package/dist/modules/communication_channels/commands/deliver-outbound-message.js +2 -2
- package/dist/modules/communication_channels/commands/deliver-outbound-message.js.map +2 -2
- package/dist/modules/communication_channels/commands/push-register.js +1 -1
- package/dist/modules/communication_channels/commands/push-register.js.map +2 -2
- package/dist/modules/communication_channels/commands/push-unregister.js +4 -3
- package/dist/modules/communication_channels/commands/push-unregister.js.map +2 -2
- package/dist/modules/communication_channels/data/entities.js +4 -0
- package/dist/modules/communication_channels/data/entities.js.map +2 -2
- package/dist/modules/communication_channels/data/validators.js +2 -1
- package/dist/modules/communication_channels/data/validators.js.map +2 -2
- package/dist/modules/communication_channels/lib/access-control.js +11 -1
- package/dist/modules/communication_channels/lib/access-control.js.map +2 -2
- package/dist/modules/communication_channels/lib/connect-channel.js +20 -12
- package/dist/modules/communication_channels/lib/connect-channel.js.map +2 -2
- package/dist/modules/communication_channels/lib/push-adapter.js +68 -0
- package/dist/modules/communication_channels/lib/push-adapter.js.map +7 -0
- package/dist/modules/communication_channels/lib/push-capabilities.js +31 -0
- package/dist/modules/communication_channels/lib/push-capabilities.js.map +7 -0
- package/dist/modules/communication_channels/lib/push-connect-error.js +20 -0
- package/dist/modules/communication_channels/lib/push-connect-error.js.map +7 -0
- package/dist/modules/communication_channels/lib/push-credential-errors.js +41 -0
- package/dist/modules/communication_channels/lib/push-credential-errors.js.map +7 -0
- package/dist/modules/communication_channels/lib/push-envelope.js +46 -0
- package/dist/modules/communication_channels/lib/push-envelope.js.map +7 -0
- package/dist/modules/communication_channels/lib/refcounted-client-cache.js +64 -0
- package/dist/modules/communication_channels/lib/refcounted-client-cache.js.map +7 -0
- package/dist/modules/communication_channels/migrations/Migration20260703123630_communication_channels.js +13 -0
- package/dist/modules/communication_channels/migrations/Migration20260703123630_communication_channels.js.map +7 -0
- package/dist/modules/communication_channels/notifications.js +4 -0
- package/dist/modules/communication_channels/notifications.js.map +2 -2
- package/dist/modules/communication_channels/setup.js +2 -0
- package/dist/modules/communication_channels/setup.js.map +2 -2
- package/dist/modules/configs/lib/upgrade-actions.js +21 -0
- package/dist/modules/configs/lib/upgrade-actions.js.map +2 -2
- package/dist/modules/customer_accounts/notifications.js +12 -0
- package/dist/modules/customer_accounts/notifications.js.map +2 -2
- package/dist/modules/customers/notifications.js +4 -0
- package/dist/modules/customers/notifications.js.map +2 -2
- package/dist/modules/devices/acl.js +11 -0
- package/dist/modules/devices/acl.js.map +7 -0
- package/dist/modules/devices/api/[id]/route.js +167 -0
- package/dist/modules/devices/api/[id]/route.js.map +7 -0
- package/dist/modules/devices/api/admin/devices/[id]/route.js +219 -0
- package/dist/modules/devices/api/admin/devices/[id]/route.js.map +7 -0
- package/dist/modules/devices/api/admin/devices/route.js +140 -0
- package/dist/modules/devices/api/admin/devices/route.js.map +7 -0
- package/dist/modules/devices/api/auth.js +9 -0
- package/dist/modules/devices/api/auth.js.map +7 -0
- package/dist/modules/devices/api/deviceList.js +53 -0
- package/dist/modules/devices/api/deviceList.js.map +7 -0
- package/dist/modules/devices/api/deviceOps.js +118 -0
- package/dist/modules/devices/api/deviceOps.js.map +7 -0
- package/dist/modules/devices/api/openapi.js +19 -0
- package/dist/modules/devices/api/openapi.js.map +7 -0
- package/dist/modules/devices/api/route.js +143 -0
- package/dist/modules/devices/api/route.js.map +7 -0
- package/dist/modules/devices/backend/devices/[id]/page.js +135 -0
- package/dist/modules/devices/backend/devices/[id]/page.js.map +7 -0
- package/dist/modules/devices/backend/devices/[id]/page.meta.js +16 -0
- package/dist/modules/devices/backend/devices/[id]/page.meta.js.map +7 -0
- package/dist/modules/devices/backend/devices/create/page.js +68 -0
- package/dist/modules/devices/backend/devices/create/page.js.map +7 -0
- package/dist/modules/devices/backend/devices/create/page.meta.js +16 -0
- package/dist/modules/devices/backend/devices/create/page.meta.js.map +7 -0
- package/dist/modules/devices/backend/devices/page.js +235 -0
- package/dist/modules/devices/backend/devices/page.js.map +7 -0
- package/dist/modules/devices/backend/devices/page.meta.js +23 -0
- package/dist/modules/devices/backend/devices/page.meta.js.map +7 -0
- package/dist/modules/devices/commands/deactivate.js +107 -0
- package/dist/modules/devices/commands/deactivate.js.map +7 -0
- package/dist/modules/devices/commands/index.js +4 -0
- package/dist/modules/devices/commands/index.js.map +7 -0
- package/dist/modules/devices/commands/register.js +183 -0
- package/dist/modules/devices/commands/register.js.map +7 -0
- package/dist/modules/devices/commands/shared.js +74 -0
- package/dist/modules/devices/commands/shared.js.map +7 -0
- package/dist/modules/devices/commands/update.js +126 -0
- package/dist/modules/devices/commands/update.js.map +7 -0
- package/dist/modules/devices/data/entities.js +83 -0
- package/dist/modules/devices/data/entities.js.map +7 -0
- package/dist/modules/devices/data/validators.js +49 -0
- package/dist/modules/devices/data/validators.js.map +7 -0
- package/dist/modules/devices/di.js +11 -0
- package/dist/modules/devices/di.js.map +7 -0
- package/dist/modules/devices/encryption.js +12 -0
- package/dist/modules/devices/encryption.js.map +7 -0
- package/dist/modules/devices/events.js +19 -0
- package/dist/modules/devices/events.js.map +7 -0
- package/dist/modules/devices/index.js +17 -0
- package/dist/modules/devices/index.js.map +7 -0
- package/dist/modules/devices/lib/operationMetadata.js +20 -0
- package/dist/modules/devices/lib/operationMetadata.js.map +7 -0
- package/dist/modules/devices/migrations/Migration20260602120000.js +15 -0
- package/dist/modules/devices/migrations/Migration20260602120000.js.map +7 -0
- package/dist/modules/devices/migrations/Migration20260630120000.js +15 -0
- package/dist/modules/devices/migrations/Migration20260630120000.js.map +7 -0
- package/dist/modules/devices/migrations/Migration20260701120000.js +13 -0
- package/dist/modules/devices/migrations/Migration20260701120000.js.map +7 -0
- package/dist/modules/devices/migrations/Migration20260721120000.js +15 -0
- package/dist/modules/devices/migrations/Migration20260721120000.js.map +7 -0
- package/dist/modules/devices/setup.js +13 -0
- package/dist/modules/devices/setup.js.map +7 -0
- package/dist/modules/entities/cli.js +8 -3
- package/dist/modules/entities/cli.js.map +2 -2
- package/dist/modules/entities/migrations/Migration20260722120000.js +28 -0
- package/dist/modules/entities/migrations/Migration20260722120000.js.map +7 -0
- package/dist/modules/inbox_ops/notifications.js +2 -0
- package/dist/modules/inbox_ops/notifications.js.map +2 -2
- package/dist/modules/messages/notifications.js +2 -0
- package/dist/modules/messages/notifications.js.map +2 -2
- package/dist/modules/notifications/acl.js +3 -1
- package/dist/modules/notifications/acl.js.map +2 -2
- package/dist/modules/notifications/api/admin/preferences/route.js +167 -0
- package/dist/modules/notifications/api/admin/preferences/route.js.map +7 -0
- package/dist/modules/notifications/api/channels/route.js +54 -0
- package/dist/modules/notifications/api/channels/route.js.map +7 -0
- package/dist/modules/notifications/api/preferences/route.js +126 -0
- package/dist/modules/notifications/api/preferences/route.js.map +7 -0
- package/dist/modules/notifications/api/route.js +8 -1
- package/dist/modules/notifications/api/route.js.map +2 -2
- package/dist/modules/notifications/api/types/[id]/channels/[channel]/route.js +187 -0
- package/dist/modules/notifications/api/types/[id]/channels/[channel]/route.js.map +7 -0
- package/dist/modules/notifications/api/types/route.js +225 -0
- package/dist/modules/notifications/api/types/route.js.map +7 -0
- package/dist/modules/notifications/api/unread-count/route.js +5 -1
- package/dist/modules/notifications/api/unread-count/route.js.map +2 -2
- package/dist/modules/notifications/backend/notifications/user-preferences/page.js +10 -0
- package/dist/modules/notifications/backend/notifications/user-preferences/page.js.map +7 -0
- package/dist/modules/notifications/backend/notifications/user-preferences/page.meta.js +28 -0
- package/dist/modules/notifications/backend/notifications/user-preferences/page.meta.js.map +7 -0
- package/dist/modules/notifications/backend/profile/notification-preferences/page.js +10 -0
- package/dist/modules/notifications/backend/profile/notification-preferences/page.js.map +7 -0
- package/dist/modules/notifications/backend/profile/notification-preferences/page.meta.js +33 -0
- package/dist/modules/notifications/backend/profile/notification-preferences/page.meta.js.map +7 -0
- package/dist/modules/notifications/data/entities.js +128 -1
- package/dist/modules/notifications/data/entities.js.map +2 -2
- package/dist/modules/notifications/data/validators.js +95 -2
- package/dist/modules/notifications/data/validators.js.map +2 -2
- package/dist/modules/notifications/di.js +7 -0
- package/dist/modules/notifications/di.js.map +2 -2
- package/dist/modules/notifications/events.js +17 -0
- package/dist/modules/notifications/events.js.map +2 -2
- package/dist/modules/notifications/frontend/NotificationPreferenceMatrix.js +190 -0
- package/dist/modules/notifications/frontend/NotificationPreferenceMatrix.js.map +7 -0
- package/dist/modules/notifications/frontend/NotificationPreferencesPageClient.js +124 -0
- package/dist/modules/notifications/frontend/NotificationPreferencesPageClient.js.map +7 -0
- package/dist/modules/notifications/frontend/NotificationSettingsPageClient.js +166 -1
- package/dist/modules/notifications/frontend/NotificationSettingsPageClient.js.map +2 -2
- package/dist/modules/notifications/frontend/NotificationUserPreferencesAdminPageClient.js +172 -0
- package/dist/modules/notifications/frontend/NotificationUserPreferencesAdminPageClient.js.map +7 -0
- package/dist/modules/notifications/generators.js +63 -0
- package/dist/modules/notifications/generators.js.map +7 -0
- package/dist/modules/notifications/lib/delivery-strategies-registry.js +19 -0
- package/dist/modules/notifications/lib/delivery-strategies-registry.js.map +7 -0
- package/dist/modules/notifications/lib/deliveryStrategies.js.map +2 -2
- package/dist/modules/notifications/lib/derive-category.js +8 -0
- package/dist/modules/notifications/lib/derive-category.js.map +7 -0
- package/dist/modules/notifications/lib/notification-channel-registry.js +35 -0
- package/dist/modules/notifications/lib/notification-channel-registry.js.map +7 -0
- package/dist/modules/notifications/lib/notification-type-registry.js +87 -0
- package/dist/modules/notifications/lib/notification-type-registry.js.map +7 -0
- package/dist/modules/notifications/lib/notificationCopy.js +14 -0
- package/dist/modules/notifications/lib/notificationCopy.js.map +7 -0
- package/dist/modules/notifications/lib/notificationFactory.js +4 -1
- package/dist/modules/notifications/lib/notificationFactory.js.map +2 -2
- package/dist/modules/notifications/lib/notificationMapper.js +2 -0
- package/dist/modules/notifications/lib/notificationMapper.js.map +2 -2
- package/dist/modules/notifications/lib/notificationPreferenceService.js +83 -0
- package/dist/modules/notifications/lib/notificationPreferenceService.js.map +7 -0
- package/dist/modules/notifications/lib/notificationService.js +83 -28
- package/dist/modules/notifications/lib/notificationService.js.map +2 -2
- package/dist/modules/notifications/lib/notificationVisibility.js +24 -0
- package/dist/modules/notifications/lib/notificationVisibility.js.map +7 -0
- package/dist/modules/notifications/lib/routeHelpers.js +11 -1
- package/dist/modules/notifications/lib/routeHelpers.js.map +2 -2
- package/dist/modules/notifications/lib/shouldDeliver.js +46 -0
- package/dist/modules/notifications/lib/shouldDeliver.js.map +7 -0
- package/dist/modules/notifications/lib/strategies/email-delivery-strategy.js +54 -0
- package/dist/modules/notifications/lib/strategies/email-delivery-strategy.js.map +7 -0
- package/dist/modules/notifications/lib/strategies/in-app-delivery-strategy.js +12 -0
- package/dist/modules/notifications/lib/strategies/in-app-delivery-strategy.js.map +7 -0
- package/dist/modules/notifications/lib/typeCatalogue.js +71 -0
- package/dist/modules/notifications/lib/typeCatalogue.js.map +7 -0
- package/dist/modules/notifications/lib/typeChannelSettings.js +12 -0
- package/dist/modules/notifications/lib/typeChannelSettings.js.map +7 -0
- package/dist/modules/notifications/lib/typeOverrides.js +19 -0
- package/dist/modules/notifications/lib/typeOverrides.js.map +7 -0
- package/dist/modules/notifications/migrations/Migration20260625122947_notifications.js +14 -0
- package/dist/modules/notifications/migrations/Migration20260625122947_notifications.js.map +7 -0
- package/dist/modules/notifications/migrations/Migration20260626120500_notifications_push_payload.js +15 -0
- package/dist/modules/notifications/migrations/Migration20260626120500_notifications_push_payload.js.map +7 -0
- package/dist/modules/notifications/migrations/Migration20260626130000_notifications_non_opt_out.js +13 -0
- package/dist/modules/notifications/migrations/Migration20260626130000_notifications_non_opt_out.js.map +7 -0
- package/dist/modules/notifications/migrations/Migration20260626140000_notifications_type_category_silent.js +15 -0
- package/dist/modules/notifications/migrations/Migration20260626140000_notifications_type_category_silent.js.map +7 -0
- package/dist/modules/notifications/migrations/Migration20260706120000_notifications_channels.js +13 -0
- package/dist/modules/notifications/migrations/Migration20260706120000_notifications_channels.js.map +7 -0
- package/dist/modules/notifications/migrations/Migration20260716123121_notifications.js +14 -0
- package/dist/modules/notifications/migrations/Migration20260716123121_notifications.js.map +7 -0
- package/dist/modules/notifications/notification-channels.js +26 -0
- package/dist/modules/notifications/notification-channels.js.map +7 -0
- package/dist/modules/notifications/notifications.delivery-strategies.js +12 -0
- package/dist/modules/notifications/notifications.delivery-strategies.js.map +7 -0
- package/dist/modules/notifications/setup.js +16 -1
- package/dist/modules/notifications/setup.js.map +2 -2
- package/dist/modules/notifications/subscribers/deliver-notification.js +66 -57
- package/dist/modules/notifications/subscribers/deliver-notification.js.map +2 -2
- package/dist/modules/notifications/subscribers/sync-notification-types.js +16 -0
- package/dist/modules/notifications/subscribers/sync-notification-types.js.map +7 -0
- package/dist/modules/notifications/widgets/injection/profile-preferences-menu/widget.js +23 -0
- package/dist/modules/notifications/widgets/injection/profile-preferences-menu/widget.js.map +7 -0
- package/dist/modules/notifications/widgets/injection-table.js +14 -0
- package/dist/modules/notifications/widgets/injection-table.js.map +7 -0
- package/dist/modules/push_notifications/acl.js +13 -0
- package/dist/modules/push_notifications/acl.js.map +7 -0
- package/dist/modules/push_notifications/api/custom-send/route.js +141 -0
- package/dist/modules/push_notifications/api/custom-send/route.js.map +7 -0
- package/dist/modules/push_notifications/api/deliveries/[id]/route.js +110 -0
- package/dist/modules/push_notifications/api/deliveries/[id]/route.js.map +7 -0
- package/dist/modules/push_notifications/api/deliveries/route.js +56 -0
- package/dist/modules/push_notifications/api/deliveries/route.js.map +7 -0
- package/dist/modules/push_notifications/api/openapi.js +19 -0
- package/dist/modules/push_notifications/api/openapi.js.map +7 -0
- package/dist/modules/push_notifications/backend/push_notifications/[id]/page.js +103 -0
- package/dist/modules/push_notifications/backend/push_notifications/[id]/page.js.map +7 -0
- package/dist/modules/push_notifications/backend/push_notifications/[id]/page.meta.js +13 -0
- package/dist/modules/push_notifications/backend/push_notifications/[id]/page.meta.js.map +7 -0
- package/dist/modules/push_notifications/backend/push_notifications/page.js +213 -0
- package/dist/modules/push_notifications/backend/push_notifications/page.js.map +7 -0
- package/dist/modules/push_notifications/backend/push_notifications/page.meta.js +23 -0
- package/dist/modules/push_notifications/backend/push_notifications/page.meta.js.map +7 -0
- package/dist/modules/push_notifications/backend/push_notifications/send/page.js +245 -0
- package/dist/modules/push_notifications/backend/push_notifications/send/page.js.map +7 -0
- package/dist/modules/push_notifications/backend/push_notifications/send/page.meta.js +26 -0
- package/dist/modules/push_notifications/backend/push_notifications/send/page.meta.js.map +7 -0
- package/dist/modules/push_notifications/data/entities.js +92 -0
- package/dist/modules/push_notifications/data/entities.js.map +7 -0
- package/dist/modules/push_notifications/data/extensions.js +23 -0
- package/dist/modules/push_notifications/data/extensions.js.map +7 -0
- package/dist/modules/push_notifications/data/validators.js +89 -0
- package/dist/modules/push_notifications/data/validators.js.map +7 -0
- package/dist/modules/push_notifications/di.js +17 -0
- package/dist/modules/push_notifications/di.js.map +7 -0
- package/dist/modules/push_notifications/events.js +24 -0
- package/dist/modules/push_notifications/events.js.map +7 -0
- package/dist/modules/push_notifications/index.js +16 -0
- package/dist/modules/push_notifications/index.js.map +7 -0
- package/dist/modules/push_notifications/lib/fake-provider-recorder.js +80 -0
- package/dist/modules/push_notifications/lib/fake-provider-recorder.js.map +7 -0
- package/dist/modules/push_notifications/lib/push-delivery-strategy.js +54 -0
- package/dist/modules/push_notifications/lib/push-delivery-strategy.js.map +7 -0
- package/dist/modules/push_notifications/lib/push-delivery.js +297 -0
- package/dist/modules/push_notifications/lib/push-delivery.js.map +7 -0
- package/dist/modules/push_notifications/lib/push-fanout.js +138 -0
- package/dist/modules/push_notifications/lib/push-fanout.js.map +7 -0
- package/dist/modules/push_notifications/lib/push-health.js +32 -0
- package/dist/modules/push_notifications/lib/push-health.js.map +7 -0
- package/dist/modules/push_notifications/lib/push-reaper.js +87 -0
- package/dist/modules/push_notifications/lib/push-reaper.js.map +7 -0
- package/dist/modules/push_notifications/lib/push-receipt-reaper.js +136 -0
- package/dist/modules/push_notifications/lib/push-receipt-reaper.js.map +7 -0
- package/dist/modules/push_notifications/lib/push-stub-adapter.js +63 -0
- package/dist/modules/push_notifications/lib/push-stub-adapter.js.map +7 -0
- package/dist/modules/push_notifications/lib/queue.js +53 -0
- package/dist/modules/push_notifications/lib/queue.js.map +7 -0
- package/dist/modules/push_notifications/lib/reclaim-window.js +13 -0
- package/dist/modules/push_notifications/lib/reclaim-window.js.map +7 -0
- package/dist/modules/push_notifications/lib/send-custom-push.js +48 -0
- package/dist/modules/push_notifications/lib/send-custom-push.js.map +7 -0
- package/dist/modules/push_notifications/migrations/Migration20260625150049_push_notifications.js +16 -0
- package/dist/modules/push_notifications/migrations/Migration20260625150049_push_notifications.js.map +7 -0
- package/dist/modules/push_notifications/migrations/Migration20260626120000_push_notifications_silent.js +13 -0
- package/dist/modules/push_notifications/migrations/Migration20260626120000_push_notifications_silent.js.map +7 -0
- package/dist/modules/push_notifications/notifications.delivery-strategies.js +8 -0
- package/dist/modules/push_notifications/notifications.delivery-strategies.js.map +7 -0
- package/dist/modules/push_notifications/notifications.js +40 -0
- package/dist/modules/push_notifications/notifications.js.map +7 -0
- package/dist/modules/push_notifications/setup.js +52 -0
- package/dist/modules/push_notifications/setup.js.map +7 -0
- package/dist/modules/push_notifications/workers/reclaim-stuck.worker.js +57 -0
- package/dist/modules/push_notifications/workers/reclaim-stuck.worker.js.map +7 -0
- package/dist/modules/push_notifications/workers/send-push.worker.js +27 -0
- package/dist/modules/push_notifications/workers/send-push.worker.js.map +7 -0
- package/dist/modules/sales/notifications.js +8 -0
- package/dist/modules/sales/notifications.js.map +2 -2
- package/dist/modules/staff/notifications.js +6 -0
- package/dist/modules/staff/notifications.js.map +2 -2
- package/dist/modules/workflows/notifications.js +2 -0
- package/dist/modules/workflows/notifications.js.map +2 -2
- package/generated/entities/notification/index.ts +3 -0
- package/generated/entities/notification_preference/index.ts +8 -0
- package/generated/entities/notification_type/index.ts +9 -0
- package/generated/entities/notification_type_override/index.ts +7 -0
- package/generated/entities/push_notification_delivery/index.ts +19 -0
- package/generated/entities/user_device/index.ts +16 -0
- package/generated/entities.ids.generated.ts +12 -1
- package/generated/entity-fields-registry.ts +72 -0
- package/package.json +7 -7
- package/src/helpers/integration/api.ts +2 -1
- package/src/helpers/integration/appRoot.ts +13 -0
- package/src/helpers/integration/dbFixtures.ts +1 -5
- package/src/helpers/integration/pushFake.ts +219 -0
- package/src/modules/auth/i18n/de.json +1 -0
- package/src/modules/auth/i18n/en.json +1 -0
- package/src/modules/auth/i18n/es.json +1 -0
- package/src/modules/auth/i18n/ko.json +1 -0
- package/src/modules/auth/i18n/pl.json +1 -0
- package/src/modules/auth/notifications.ts +16 -0
- package/src/modules/business_rules/i18n/de.json +2 -1
- package/src/modules/business_rules/i18n/en.json +2 -1
- package/src/modules/business_rules/i18n/es.json +2 -1
- package/src/modules/business_rules/i18n/ko.json +2 -1
- package/src/modules/business_rules/i18n/pl.json +2 -1
- package/src/modules/business_rules/notifications.ts +2 -0
- package/src/modules/catalog/i18n/de.json +2 -1
- package/src/modules/catalog/i18n/en.json +2 -1
- package/src/modules/catalog/i18n/es.json +2 -1
- package/src/modules/catalog/i18n/ko.json +2 -1
- package/src/modules/catalog/i18n/pl.json +2 -1
- package/src/modules/catalog/notifications.ts +2 -0
- package/src/modules/communication_channels/acl.ts +9 -0
- package/src/modules/communication_channels/api/delete/admin/channels/[id]/route.ts +168 -0
- package/src/modules/communication_channels/api/get/channels/[id]/health/route.ts +6 -2
- package/src/modules/communication_channels/api/get/channels/[id]/route.ts +6 -2
- package/src/modules/communication_channels/api/get/channels/route.ts +2 -1
- package/src/modules/communication_channels/api/post/channels/[id]/test-send/route.ts +16 -5
- package/src/modules/communication_channels/api/post/channels/connect/credentials/route.ts +37 -1
- package/src/modules/communication_channels/api/post/channels/connect/tenant-credentials/route.ts +175 -0
- package/src/modules/communication_channels/backend/communication_channels/channels/page.tsx +11 -1
- package/src/modules/communication_channels/commands/admin-delete-channel.ts +203 -0
- package/src/modules/communication_channels/commands/connect-credential-channel.ts +63 -15
- package/src/modules/communication_channels/commands/deliver-outbound-message.ts +10 -2
- package/src/modules/communication_channels/commands/push-register.ts +7 -1
- package/src/modules/communication_channels/commands/push-unregister.ts +14 -3
- package/src/modules/communication_channels/data/entities.ts +10 -0
- package/src/modules/communication_channels/data/validators.ts +1 -0
- package/src/modules/communication_channels/i18n/de.json +35 -1
- package/src/modules/communication_channels/i18n/en.json +35 -1
- package/src/modules/communication_channels/i18n/es.json +35 -1
- package/src/modules/communication_channels/i18n/ko.json +35 -1
- package/src/modules/communication_channels/i18n/pl.json +35 -1
- package/src/modules/communication_channels/lib/access-control.ts +42 -0
- package/src/modules/communication_channels/lib/adapter.ts +25 -0
- package/src/modules/communication_channels/lib/connect-channel.ts +61 -26
- package/src/modules/communication_channels/lib/push-adapter.ts +139 -0
- package/src/modules/communication_channels/lib/push-capabilities.ts +42 -0
- package/src/modules/communication_channels/lib/push-connect-error.ts +52 -0
- package/src/modules/communication_channels/lib/push-credential-errors.ts +58 -0
- package/src/modules/communication_channels/lib/push-envelope.ts +104 -0
- package/src/modules/communication_channels/lib/refcounted-client-cache.ts +123 -0
- package/src/modules/communication_channels/migrations/.snapshot-open-mercato.json +9 -0
- package/src/modules/communication_channels/migrations/Migration20260703123630_communication_channels.ts +20 -0
- package/src/modules/communication_channels/notifications.ts +4 -0
- package/src/modules/communication_channels/setup.ts +2 -0
- package/src/modules/configs/i18n/de.json +5 -1
- package/src/modules/configs/i18n/en.json +5 -1
- package/src/modules/configs/i18n/es.json +5 -1
- package/src/modules/configs/i18n/ko.json +5 -1
- package/src/modules/configs/i18n/pl.json +5 -1
- package/src/modules/configs/lib/upgrade-actions.ts +21 -0
- package/src/modules/customer_accounts/i18n/de.json +2 -1
- package/src/modules/customer_accounts/i18n/en.json +2 -1
- package/src/modules/customer_accounts/i18n/es.json +2 -1
- package/src/modules/customer_accounts/i18n/ko.json +2 -1
- package/src/modules/customer_accounts/i18n/pl.json +2 -1
- package/src/modules/customer_accounts/notifications.ts +12 -0
- package/src/modules/customers/i18n/de.json +2 -1
- package/src/modules/customers/i18n/en.json +2 -1
- package/src/modules/customers/i18n/es.json +2 -1
- package/src/modules/customers/i18n/ko.json +2 -1
- package/src/modules/customers/i18n/pl.json +2 -1
- package/src/modules/customers/notifications.ts +4 -0
- package/src/modules/devices/AGENTS.md +101 -0
- package/src/modules/devices/acl.ts +7 -0
- package/src/modules/devices/api/[id]/route.ts +180 -0
- package/src/modules/devices/api/admin/devices/[id]/route.ts +235 -0
- package/src/modules/devices/api/admin/devices/route.ts +160 -0
- package/src/modules/devices/api/auth.ts +13 -0
- package/src/modules/devices/api/deviceList.ts +54 -0
- package/src/modules/devices/api/deviceOps.ts +186 -0
- package/src/modules/devices/api/openapi.ts +23 -0
- package/src/modules/devices/api/route.ts +165 -0
- package/src/modules/devices/backend/devices/[id]/page.meta.ts +12 -0
- package/src/modules/devices/backend/devices/[id]/page.tsx +164 -0
- package/src/modules/devices/backend/devices/create/page.meta.ts +12 -0
- package/src/modules/devices/backend/devices/create/page.tsx +81 -0
- package/src/modules/devices/backend/devices/page.meta.ts +21 -0
- package/src/modules/devices/backend/devices/page.tsx +259 -0
- package/src/modules/devices/commands/deactivate.ts +126 -0
- package/src/modules/devices/commands/index.ts +3 -0
- package/src/modules/devices/commands/register.ts +199 -0
- package/src/modules/devices/commands/shared.ts +119 -0
- package/src/modules/devices/commands/update.ts +142 -0
- package/src/modules/devices/data/entities.ts +79 -0
- package/src/modules/devices/data/validators.ts +65 -0
- package/src/modules/devices/di.ts +9 -0
- package/src/modules/devices/encryption.ts +15 -0
- package/src/modules/devices/events.ts +16 -0
- package/src/modules/devices/i18n/de.json +45 -0
- package/src/modules/devices/i18n/en.json +45 -0
- package/src/modules/devices/i18n/es.json +45 -0
- package/src/modules/devices/i18n/ko.json +45 -0
- package/src/modules/devices/i18n/pl.json +45 -0
- package/src/modules/devices/index.ts +15 -0
- package/src/modules/devices/lib/operationMetadata.ts +35 -0
- package/src/modules/devices/migrations/.snapshot-open-mercato.json +200 -0
- package/src/modules/devices/migrations/Migration20260602120000.ts +15 -0
- package/src/modules/devices/migrations/Migration20260630120000.ts +20 -0
- package/src/modules/devices/migrations/Migration20260701120000.ts +13 -0
- package/src/modules/devices/migrations/Migration20260721120000.ts +18 -0
- package/src/modules/devices/setup.ts +11 -0
- package/src/modules/entities/cli.ts +16 -2
- package/src/modules/entities/migrations/Migration20260722120000.ts +38 -0
- package/src/modules/inbox_ops/i18n/de.json +2 -1
- package/src/modules/inbox_ops/i18n/en.json +2 -1
- package/src/modules/inbox_ops/i18n/es.json +2 -1
- package/src/modules/inbox_ops/i18n/ko.json +2 -1
- package/src/modules/inbox_ops/i18n/pl.json +2 -1
- package/src/modules/inbox_ops/notifications.ts +2 -0
- package/src/modules/messages/i18n/de.json +2 -1
- package/src/modules/messages/i18n/en.json +2 -1
- package/src/modules/messages/i18n/es.json +2 -1
- package/src/modules/messages/i18n/ko.json +2 -1
- package/src/modules/messages/i18n/pl.json +2 -1
- package/src/modules/messages/notifications.ts +2 -0
- package/src/modules/notifications/AGENTS.md +54 -0
- package/src/modules/notifications/acl.ts +2 -0
- package/src/modules/notifications/api/admin/preferences/route.ts +193 -0
- package/src/modules/notifications/api/channels/route.ts +54 -0
- package/src/modules/notifications/api/preferences/route.ts +131 -0
- package/src/modules/notifications/api/route.ts +8 -1
- package/src/modules/notifications/api/types/[id]/channels/[channel]/route.ts +226 -0
- package/src/modules/notifications/api/types/route.ts +239 -0
- package/src/modules/notifications/api/unread-count/route.ts +5 -1
- package/src/modules/notifications/backend/notifications/user-preferences/page.meta.ts +26 -0
- package/src/modules/notifications/backend/notifications/user-preferences/page.tsx +12 -0
- package/src/modules/notifications/backend/profile/notification-preferences/page.meta.ts +31 -0
- package/src/modules/notifications/backend/profile/notification-preferences/page.tsx +12 -0
- package/src/modules/notifications/data/entities.ts +144 -0
- package/src/modules/notifications/data/validators.ts +116 -0
- package/src/modules/notifications/di.ts +7 -0
- package/src/modules/notifications/events.ts +23 -0
- package/src/modules/notifications/frontend/NotificationPreferenceMatrix.tsx +287 -0
- package/src/modules/notifications/frontend/NotificationPreferencesPageClient.tsx +155 -0
- package/src/modules/notifications/frontend/NotificationSettingsPageClient.tsx +273 -2
- package/src/modules/notifications/frontend/NotificationUserPreferencesAdminPageClient.tsx +214 -0
- package/src/modules/notifications/generators.ts +82 -0
- package/src/modules/notifications/i18n/de.json +43 -0
- package/src/modules/notifications/i18n/en.json +43 -0
- package/src/modules/notifications/i18n/es.json +43 -0
- package/src/modules/notifications/i18n/ko.json +43 -0
- package/src/modules/notifications/i18n/pl.json +44 -1
- package/src/modules/notifications/lib/delivery-strategies-registry.ts +30 -0
- package/src/modules/notifications/lib/deliveryStrategies.ts +40 -4
- package/src/modules/notifications/lib/derive-category.ts +15 -0
- package/src/modules/notifications/lib/notification-channel-registry.ts +59 -0
- package/src/modules/notifications/lib/notification-type-registry.ts +182 -0
- package/src/modules/notifications/lib/notificationCopy.ts +34 -0
- package/src/modules/notifications/lib/notificationFactory.ts +5 -1
- package/src/modules/notifications/lib/notificationMapper.ts +2 -0
- package/src/modules/notifications/lib/notificationPreferenceService.ts +138 -0
- package/src/modules/notifications/lib/notificationService.ts +129 -25
- package/src/modules/notifications/lib/notificationVisibility.ts +48 -0
- package/src/modules/notifications/lib/routeHelpers.ts +14 -1
- package/src/modules/notifications/lib/shouldDeliver.ts +112 -0
- package/src/modules/notifications/lib/strategies/email-delivery-strategy.ts +63 -0
- package/src/modules/notifications/lib/strategies/in-app-delivery-strategy.ts +21 -0
- package/src/modules/notifications/lib/typeCatalogue.ts +141 -0
- package/src/modules/notifications/lib/typeChannelSettings.ts +29 -0
- package/src/modules/notifications/lib/typeOverrides.ts +46 -0
- package/src/modules/notifications/migrations/.snapshot-open-mercato.json +874 -100
- package/src/modules/notifications/migrations/Migration20260625122947_notifications.ts +14 -0
- package/src/modules/notifications/migrations/Migration20260626120500_notifications_push_payload.ts +15 -0
- package/src/modules/notifications/migrations/Migration20260626130000_notifications_non_opt_out.ts +13 -0
- package/src/modules/notifications/migrations/Migration20260626140000_notifications_type_category_silent.ts +15 -0
- package/src/modules/notifications/migrations/Migration20260706120000_notifications_channels.ts +13 -0
- package/src/modules/notifications/migrations/Migration20260716123121_notifications.ts +14 -0
- package/src/modules/notifications/notification-channels.ts +30 -0
- package/src/modules/notifications/notifications.delivery-strategies.ts +15 -0
- package/src/modules/notifications/setup.ts +23 -1
- package/src/modules/notifications/subscribers/deliver-notification.ts +105 -71
- package/src/modules/notifications/subscribers/sync-notification-types.ts +18 -0
- package/src/modules/notifications/widgets/injection/profile-preferences-menu/widget.ts +35 -0
- package/src/modules/notifications/widgets/injection-table.ts +18 -0
- package/src/modules/push_notifications/AGENTS.md +92 -0
- package/src/modules/push_notifications/acl.ts +9 -0
- package/src/modules/push_notifications/api/custom-send/route.ts +175 -0
- package/src/modules/push_notifications/api/deliveries/[id]/route.ts +122 -0
- package/src/modules/push_notifications/api/deliveries/route.ts +58 -0
- package/src/modules/push_notifications/api/openapi.ts +22 -0
- package/src/modules/push_notifications/backend/push_notifications/[id]/page.meta.ts +9 -0
- package/src/modules/push_notifications/backend/push_notifications/[id]/page.tsx +149 -0
- package/src/modules/push_notifications/backend/push_notifications/page.meta.ts +21 -0
- package/src/modules/push_notifications/backend/push_notifications/page.tsx +239 -0
- package/src/modules/push_notifications/backend/push_notifications/send/page.meta.ts +24 -0
- package/src/modules/push_notifications/backend/push_notifications/send/page.tsx +327 -0
- package/src/modules/push_notifications/data/entities.ts +111 -0
- package/src/modules/push_notifications/data/extensions.ts +29 -0
- package/src/modules/push_notifications/data/validators.ts +102 -0
- package/src/modules/push_notifications/di.ts +20 -0
- package/src/modules/push_notifications/events.ts +21 -0
- package/src/modules/push_notifications/i18n/de.json +79 -0
- package/src/modules/push_notifications/i18n/en.json +79 -0
- package/src/modules/push_notifications/i18n/es.json +79 -0
- package/src/modules/push_notifications/i18n/ko.json +79 -0
- package/src/modules/push_notifications/i18n/pl.json +79 -0
- package/src/modules/push_notifications/index.ts +15 -0
- package/src/modules/push_notifications/lib/fake-provider-recorder.ts +154 -0
- package/src/modules/push_notifications/lib/push-delivery-strategy.ts +90 -0
- package/src/modules/push_notifications/lib/push-delivery.ts +455 -0
- package/src/modules/push_notifications/lib/push-fanout.ts +237 -0
- package/src/modules/push_notifications/lib/push-health.ts +47 -0
- package/src/modules/push_notifications/lib/push-reaper.ts +140 -0
- package/src/modules/push_notifications/lib/push-receipt-reaper.ts +210 -0
- package/src/modules/push_notifications/lib/push-stub-adapter.ts +80 -0
- package/src/modules/push_notifications/lib/queue.ts +74 -0
- package/src/modules/push_notifications/lib/reclaim-window.ts +16 -0
- package/src/modules/push_notifications/lib/send-custom-push.ts +100 -0
- package/src/modules/push_notifications/migrations/.snapshot-open-mercato.json +386 -0
- package/src/modules/push_notifications/migrations/Migration20260625150049_push_notifications.ts +16 -0
- package/src/modules/push_notifications/migrations/Migration20260626120000_push_notifications_silent.ts +13 -0
- package/src/modules/push_notifications/notifications.delivery-strategies.ts +8 -0
- package/src/modules/push_notifications/notifications.ts +50 -0
- package/src/modules/push_notifications/setup.ts +92 -0
- package/src/modules/push_notifications/workers/reclaim-stuck.worker.ts +78 -0
- package/src/modules/push_notifications/workers/send-push.worker.ts +34 -0
- package/src/modules/sales/i18n/de.json +1 -0
- package/src/modules/sales/i18n/en.json +1 -0
- package/src/modules/sales/i18n/es.json +1 -0
- package/src/modules/sales/i18n/ko.json +1 -0
- package/src/modules/sales/i18n/pl.json +1 -0
- package/src/modules/sales/notifications.ts +8 -0
- package/src/modules/staff/i18n/de.json +1 -0
- package/src/modules/staff/i18n/en.json +1 -0
- package/src/modules/staff/i18n/es.json +1 -0
- package/src/modules/staff/i18n/ko.json +1 -0
- package/src/modules/staff/i18n/pl.json +1 -0
- package/src/modules/staff/notifications.ts +6 -0
- package/src/modules/workflows/i18n/de.json +1 -0
- package/src/modules/workflows/i18n/en.json +1 -0
- package/src/modules/workflows/i18n/es.json +1 -0
- package/src/modules/workflows/i18n/ko.json +1 -0
- package/src/modules/workflows/i18n/pl.json +1 -0
- package/src/modules/workflows/notifications.ts +2 -0
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
import type { EntityManager } from '@mikro-orm/postgresql'
|
|
2
|
+
import { type Kysely, sql } from 'kysely'
|
|
3
|
+
import type { NotificationTypeDefinition } from '@open-mercato/shared/modules/notifications/types'
|
|
4
|
+
import { deriveCategory } from './derive-category'
|
|
5
|
+
|
|
6
|
+
const registry = new Map<string, NotificationTypeDefinition>()
|
|
7
|
+
|
|
8
|
+
let synced = false
|
|
9
|
+
|
|
10
|
+
export type RegisterNotificationTypesOptions = {
|
|
11
|
+
replace?: boolean
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* In-memory mirror of the code-registered notification type catalogue. Fed at
|
|
16
|
+
* app bootstrap from the generated aggregate (`notificationTypes`) — mirrors the
|
|
17
|
+
* `messages` registry. This stays the source of truth for code; the
|
|
18
|
+
* `notification_types` table is a read-through mirror for remote clients.
|
|
19
|
+
*/
|
|
20
|
+
export function registerNotificationTypes(
|
|
21
|
+
types: NotificationTypeDefinition[],
|
|
22
|
+
options: RegisterNotificationTypesOptions = {},
|
|
23
|
+
): void {
|
|
24
|
+
if (options.replace) {
|
|
25
|
+
registry.clear()
|
|
26
|
+
synced = false
|
|
27
|
+
}
|
|
28
|
+
for (const type of types) {
|
|
29
|
+
registry.set(type.type, type)
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export function getNotificationType(type: string): NotificationTypeDefinition | undefined {
|
|
34
|
+
return registry.get(type)
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export function getNotificationTypes(): NotificationTypeDefinition[] {
|
|
38
|
+
return Array.from(registry.values())
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export type SyncNotificationTypesResult = {
|
|
42
|
+
created: number
|
|
43
|
+
updated: number
|
|
44
|
+
deleted: number
|
|
45
|
+
total: number
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Reconcile the in-memory catalogue into the `notification_types` table.
|
|
50
|
+
* Code-registered types are system-wide, so rows are written with
|
|
51
|
+
* `tenant_id IS NULL`. Idempotent: updates the mirrored columns
|
|
52
|
+
* (`label_key`/`description_key`/`category`/`silent`/`non_opt_out`) only on
|
|
53
|
+
* drift, and prunes system-wide rows no longer in the catalogue. Guarded by a
|
|
54
|
+
* once-per-process flag on the lazy path; pass `force` to bypass it (used by the
|
|
55
|
+
* explicit `notifications.type_registry.sync` subscriber).
|
|
56
|
+
*
|
|
57
|
+
* Writes go through kysely with `INSERT ... ON CONFLICT DO NOTHING` so a
|
|
58
|
+
* concurrent first-sync (or the seedDefaults subscriber racing a `GET /types`)
|
|
59
|
+
* can never raise a duplicate-PK 500 — mirrors `query_index/lib/jobs.ts`.
|
|
60
|
+
*/
|
|
61
|
+
export async function syncNotificationTypes(
|
|
62
|
+
em: EntityManager,
|
|
63
|
+
opts: { force?: boolean } = {},
|
|
64
|
+
): Promise<SyncNotificationTypesResult> {
|
|
65
|
+
const definitions = getNotificationTypes()
|
|
66
|
+
if (synced && !opts.force) {
|
|
67
|
+
return { created: 0, updated: 0, deleted: 0, total: definitions.length }
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
const db = em.getKysely<any>() as Kysely<any>
|
|
71
|
+
|
|
72
|
+
// Read existing system-wide rows via kysely (not the ORM) so they stay out of the identity map and
|
|
73
|
+
// the route's subsequent em.find reflects exactly what this function just wrote.
|
|
74
|
+
const existing = (await db
|
|
75
|
+
.selectFrom('notification_types')
|
|
76
|
+
.select(['id', 'label_key', 'description_key', 'category', 'silent', 'non_opt_out'])
|
|
77
|
+
.where('tenant_id', 'is', null)
|
|
78
|
+
.execute()) as Array<{
|
|
79
|
+
id: string
|
|
80
|
+
label_key: string
|
|
81
|
+
description_key: string | null
|
|
82
|
+
category: string | null
|
|
83
|
+
silent: boolean
|
|
84
|
+
non_opt_out: boolean
|
|
85
|
+
}>
|
|
86
|
+
const byId = new Map(existing.map((row) => [row.id, row]))
|
|
87
|
+
|
|
88
|
+
const labelKeyFor = (def: NotificationTypeDefinition) => def.labelKey ?? def.titleKey
|
|
89
|
+
const descKeyFor = (def: NotificationTypeDefinition) => def.descriptionKey ?? null
|
|
90
|
+
// Resolved once here so every mirrored row carries a grouping key and read paths
|
|
91
|
+
// (GET /api/notifications/types) never need a fallback branch of their own.
|
|
92
|
+
const categoryFor = (def: NotificationTypeDefinition) => def.category ?? deriveCategory(def.type)
|
|
93
|
+
const silentFor = (def: NotificationTypeDefinition) => def.silent === true
|
|
94
|
+
const nonOptOutFor = (def: NotificationTypeDefinition) => def.nonOptOut === true
|
|
95
|
+
|
|
96
|
+
// Internal/admin-only types (`hiddenFromSettings`) are never exposed to the client catalogue: they
|
|
97
|
+
// are excluded from create/update, and — because they drop out of `validIds` below — any stale row
|
|
98
|
+
// for a type that was flipped to hidden gets pruned. They remain in the in-memory registry for
|
|
99
|
+
// delivery logic. GET /api/notifications/types therefore never lists them.
|
|
100
|
+
const visibleDefinitions = definitions.filter((def) => def.hiddenFromSettings !== true)
|
|
101
|
+
|
|
102
|
+
const toCreate = visibleDefinitions.filter((def) => !byId.has(def.type))
|
|
103
|
+
const toUpdate = visibleDefinitions.filter((def) => {
|
|
104
|
+
const row = byId.get(def.type)
|
|
105
|
+
if (!row) return false
|
|
106
|
+
return (
|
|
107
|
+
row.label_key !== labelKeyFor(def) ||
|
|
108
|
+
(row.description_key ?? null) !== descKeyFor(def) ||
|
|
109
|
+
(row.category ?? null) !== categoryFor(def) ||
|
|
110
|
+
row.silent !== silentFor(def) ||
|
|
111
|
+
row.non_opt_out !== nonOptOutFor(def)
|
|
112
|
+
)
|
|
113
|
+
})
|
|
114
|
+
|
|
115
|
+
let created = 0
|
|
116
|
+
let updated = 0
|
|
117
|
+
let deleted = 0
|
|
118
|
+
|
|
119
|
+
if (toCreate.length) {
|
|
120
|
+
await db
|
|
121
|
+
.insertInto('notification_types')
|
|
122
|
+
.values(
|
|
123
|
+
toCreate.map((def) => ({
|
|
124
|
+
id: def.type,
|
|
125
|
+
tenant_id: null,
|
|
126
|
+
label_key: labelKeyFor(def),
|
|
127
|
+
description_key: descKeyFor(def),
|
|
128
|
+
category: categoryFor(def),
|
|
129
|
+
silent: silentFor(def),
|
|
130
|
+
non_opt_out: nonOptOutFor(def),
|
|
131
|
+
created_at: sql`now()`,
|
|
132
|
+
updated_at: sql`now()`,
|
|
133
|
+
})),
|
|
134
|
+
)
|
|
135
|
+
.onConflict((oc: any) => oc.column('id').doNothing())
|
|
136
|
+
.execute()
|
|
137
|
+
created = toCreate.length
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
// Bump updated_at only on real drift, so repeated syncs don't churn timestamps.
|
|
141
|
+
for (const def of toUpdate) {
|
|
142
|
+
await db
|
|
143
|
+
.updateTable('notification_types')
|
|
144
|
+
.set({
|
|
145
|
+
label_key: labelKeyFor(def),
|
|
146
|
+
description_key: descKeyFor(def),
|
|
147
|
+
category: categoryFor(def),
|
|
148
|
+
silent: silentFor(def),
|
|
149
|
+
non_opt_out: nonOptOutFor(def),
|
|
150
|
+
updated_at: sql`now()`,
|
|
151
|
+
})
|
|
152
|
+
.where('id', '=', def.type)
|
|
153
|
+
.where('tenant_id', 'is', null)
|
|
154
|
+
.execute()
|
|
155
|
+
updated += 1
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
// Prune system-wide rows no longer in the catalogue (a removed/renamed module's type stops showing
|
|
159
|
+
// in the preferences matrix). Guarded by a non-empty catalogue so a mis-bootstrapped process with an
|
|
160
|
+
// empty registry can never wipe the table. Known limitation, deliberately not addressed here: the
|
|
161
|
+
// guard is a count, not a completeness check, so a process holding a PARTIAL catalogue still prunes
|
|
162
|
+
// the missing modules' rows — same for multiple apps with different module sets sharing one DB.
|
|
163
|
+
// Both are bounded: `synced` limits it to one sync per process, the rows come back on the next
|
|
164
|
+
// full-catalogue sync, and nothing cascades (overrides and preferences reference the type by plain
|
|
165
|
+
// string id with no FK, so they survive and re-attach). Closing it properly means gating on the
|
|
166
|
+
// enabled-module set that fed the registry, or moving the prune off this lazy read path entirely.
|
|
167
|
+
if (definitions.length > 0) {
|
|
168
|
+
const validIds = new Set(visibleDefinitions.map((def) => def.type))
|
|
169
|
+
const staleIds = existing.filter((row) => !validIds.has(row.id)).map((row) => row.id)
|
|
170
|
+
if (staleIds.length) {
|
|
171
|
+
await db
|
|
172
|
+
.deleteFrom('notification_types')
|
|
173
|
+
.where('tenant_id', 'is', null)
|
|
174
|
+
.where('id', 'in', staleIds)
|
|
175
|
+
.execute()
|
|
176
|
+
deleted = staleIds.length
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
synced = true
|
|
181
|
+
return { created, updated, deleted, total: definitions.length }
|
|
182
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { loadDictionary } from '@open-mercato/shared/lib/i18n/server'
|
|
2
|
+
import { createFallbackTranslator } from '@open-mercato/shared/lib/i18n/translate'
|
|
3
|
+
import { defaultLocale, type Locale } from '@open-mercato/shared/lib/i18n/config'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Localizable notification copy: i18n keys + variables, with already-resolved (or raw) strings as
|
|
7
|
+
* the fallback when a key is absent or has no translation. Structurally satisfied by a `Notification`
|
|
8
|
+
* row (in-app/email delivery) and built ad hoc by the push fan-out (per-device delivery).
|
|
9
|
+
*/
|
|
10
|
+
export type NotificationCopySource = {
|
|
11
|
+
titleKey?: string | null
|
|
12
|
+
bodyKey?: string | null
|
|
13
|
+
titleVariables?: Record<string, string> | null
|
|
14
|
+
bodyVariables?: Record<string, string> | null
|
|
15
|
+
title: string
|
|
16
|
+
body?: string | null
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Resolve a notification's title/body in a given locale. Dictionaries are memoized by
|
|
21
|
+
* {@link loadDictionary}, so repeated calls per locale are cheap. Also returns the translator so
|
|
22
|
+
* callers can localize sibling strings (email chrome, action labels) without reloading the dictionary.
|
|
23
|
+
*/
|
|
24
|
+
export async function resolveNotificationCopy(source: NotificationCopySource, locale: Locale = defaultLocale) {
|
|
25
|
+
const dictionary = await loadDictionary(locale)
|
|
26
|
+
const t = createFallbackTranslator(dictionary)
|
|
27
|
+
const title = source.titleKey
|
|
28
|
+
? t(source.titleKey, source.title ?? source.titleKey, source.titleVariables ?? undefined)
|
|
29
|
+
: source.title
|
|
30
|
+
const body = source.bodyKey
|
|
31
|
+
? t(source.bodyKey, source.body ?? source.bodyKey ?? '', source.bodyVariables ?? undefined)
|
|
32
|
+
: source.body ?? null
|
|
33
|
+
return { title, body, t }
|
|
34
|
+
}
|
|
@@ -15,7 +15,8 @@ export function buildNotificationEntity(
|
|
|
15
15
|
em: EntityManager,
|
|
16
16
|
input: NotificationContentInput,
|
|
17
17
|
recipientUserId: string,
|
|
18
|
-
ctx: NotificationTenantContext
|
|
18
|
+
ctx: NotificationTenantContext,
|
|
19
|
+
channels: string[] | null = null
|
|
19
20
|
): Notification {
|
|
20
21
|
const actions = sanitizeNotificationActions(input.actions)
|
|
21
22
|
const linkHref = assertSafeNotificationHref(input.linkHref)
|
|
@@ -44,6 +45,9 @@ export function buildNotificationEntity(
|
|
|
44
45
|
sourceEntityId: input.sourceEntityId,
|
|
45
46
|
linkHref,
|
|
46
47
|
groupKey: input.groupKey,
|
|
48
|
+
data: input.data ?? null,
|
|
49
|
+
pushOptions: input.pushOptions ?? null,
|
|
50
|
+
channels,
|
|
47
51
|
expiresAt: input.expiresAt ? new Date(input.expiresAt) : null,
|
|
48
52
|
tenantId: ctx.tenantId,
|
|
49
53
|
organizationId: ctx.organizationId,
|
|
@@ -37,6 +37,8 @@ export function toNotificationDto(notification: Notification): NotificationDto {
|
|
|
37
37
|
sourceEntityType: notification.sourceEntityType,
|
|
38
38
|
sourceEntityId: notification.sourceEntityId,
|
|
39
39
|
linkHref: notification.linkHref,
|
|
40
|
+
data: notification.data ?? null,
|
|
41
|
+
channels: notification.channels ?? null,
|
|
40
42
|
createdAt: createdAt.toISOString(),
|
|
41
43
|
readAt: notification.readAt?.toISOString() ?? null,
|
|
42
44
|
actionTaken: notification.actionTaken,
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import type { EntityManager } from '@mikro-orm/postgresql'
|
|
2
|
+
import { withAtomicFlush } from '@open-mercato/shared/lib/commands/flush'
|
|
3
|
+
import { NotificationPreference } from '../data/entities'
|
|
4
|
+
import { getNotificationType } from './notification-type-registry'
|
|
5
|
+
import { getNotificationTypeOverrides } from './typeOverrides'
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Tenant + user scope for preference operations. Tenant scoping is mandatory,
|
|
9
|
+
* so it is part of every call (the spec's bare `userId` signatures are widened
|
|
10
|
+
* here to stay tenant-safe).
|
|
11
|
+
*/
|
|
12
|
+
export interface NotificationPreferenceScope {
|
|
13
|
+
tenantId: string
|
|
14
|
+
userId: string
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface NotificationPreferenceInput {
|
|
18
|
+
typeId: string
|
|
19
|
+
channel: string
|
|
20
|
+
enabled: boolean
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface NotificationPreferenceService {
|
|
24
|
+
/**
|
|
25
|
+
* Whether a channel is enabled for a user + type. Defaults to `true` when no
|
|
26
|
+
* row exists (lazy-seed, default-on) — does not write.
|
|
27
|
+
*/
|
|
28
|
+
isChannelEnabled(scope: NotificationPreferenceScope, typeId: string, channel: string): Promise<boolean>
|
|
29
|
+
/**
|
|
30
|
+
* Bulk find-or-upsert of preference rows for the scoped user. Returns the number of rows actually
|
|
31
|
+
* changed (created, or whose `enabled` flipped) so callers can skip emitting events on no-op writes.
|
|
32
|
+
*/
|
|
33
|
+
setPreferences(scope: NotificationPreferenceScope, items: NotificationPreferenceInput[]): Promise<number>
|
|
34
|
+
/** All stored preference rows for the scoped user (absence ⇒ enabled). */
|
|
35
|
+
listForUser(scope: NotificationPreferenceScope): Promise<NotificationPreference[]>
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface NotificationPreferenceServiceDeps {
|
|
39
|
+
em: EntityManager
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export function createNotificationPreferenceService(
|
|
43
|
+
deps: NotificationPreferenceServiceDeps,
|
|
44
|
+
): NotificationPreferenceService {
|
|
45
|
+
const { em: rootEm } = deps
|
|
46
|
+
|
|
47
|
+
return {
|
|
48
|
+
async isChannelEnabled(scope, typeId, channel) {
|
|
49
|
+
const row = await rootEm.findOne(NotificationPreference, {
|
|
50
|
+
tenantId: scope.tenantId,
|
|
51
|
+
userId: scope.userId,
|
|
52
|
+
notificationTypeId: typeId,
|
|
53
|
+
channel,
|
|
54
|
+
})
|
|
55
|
+
return row ? row.enabled : true
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
async listForUser(scope) {
|
|
59
|
+
return rootEm.find(
|
|
60
|
+
NotificationPreference,
|
|
61
|
+
{ tenantId: scope.tenantId, userId: scope.userId },
|
|
62
|
+
{ orderBy: { notificationTypeId: 'asc', channel: 'asc' } },
|
|
63
|
+
)
|
|
64
|
+
},
|
|
65
|
+
|
|
66
|
+
async setPreferences(scope, items) {
|
|
67
|
+
const storedOverrides = items.length
|
|
68
|
+
? await getNotificationTypeOverrides(rootEm.fork(), scope.tenantId, items.map((item) => item.typeId))
|
|
69
|
+
: new Map()
|
|
70
|
+
// Effectively-nonOptOut types (operator override ?? code flag) ignore stored preferences at
|
|
71
|
+
// delivery time; refuse to persist an opt-out row for them so the stored state can never
|
|
72
|
+
// contradict enforcement. An `enabled: true` write matches the forced-on state and is
|
|
73
|
+
// allowed through (a preferences UI can still confirm it).
|
|
74
|
+
const optOutFiltered = items.filter((item) => {
|
|
75
|
+
if (item.enabled === true) return true
|
|
76
|
+
const nonOptOut =
|
|
77
|
+
storedOverrides.get(item.typeId)?.nonOptOut ?? getNotificationType(item.typeId)?.nonOptOut
|
|
78
|
+
return nonOptOut !== true
|
|
79
|
+
})
|
|
80
|
+
// Channels outside the type's effective eligibility (operator override on
|
|
81
|
+
// `notification_types.channels`, else the code-declared `type.channels`) are locked:
|
|
82
|
+
// delivery rejects them before preferences and the UI renders the cell off, so a stored
|
|
83
|
+
// row would only lie. Drop those writes server-side (the UI lock is not a guarantee).
|
|
84
|
+
const writable = optOutFiltered.filter((item) => {
|
|
85
|
+
const eligible = storedOverrides.get(item.typeId)?.channels ?? getNotificationType(item.typeId)?.channels
|
|
86
|
+
return !eligible || eligible.includes(item.channel)
|
|
87
|
+
})
|
|
88
|
+
if (writable.length === 0) return 0
|
|
89
|
+
const em = rootEm.fork()
|
|
90
|
+
const existing = await em.find(NotificationPreference, {
|
|
91
|
+
tenantId: scope.tenantId,
|
|
92
|
+
userId: scope.userId,
|
|
93
|
+
})
|
|
94
|
+
const byKey = new Map(
|
|
95
|
+
existing.map((row) => [`${row.notificationTypeId}::${row.channel}`, row]),
|
|
96
|
+
)
|
|
97
|
+
|
|
98
|
+
let changed = 0
|
|
99
|
+
await withAtomicFlush(
|
|
100
|
+
em,
|
|
101
|
+
[
|
|
102
|
+
() => {
|
|
103
|
+
for (const item of writable) {
|
|
104
|
+
const row = byKey.get(`${item.typeId}::${item.channel}`)
|
|
105
|
+
if (row) {
|
|
106
|
+
if (row.enabled === item.enabled) continue
|
|
107
|
+
row.enabled = item.enabled
|
|
108
|
+
changed += 1
|
|
109
|
+
continue
|
|
110
|
+
}
|
|
111
|
+
const next = em.create(NotificationPreference, {
|
|
112
|
+
tenantId: scope.tenantId,
|
|
113
|
+
userId: scope.userId,
|
|
114
|
+
notificationTypeId: item.typeId,
|
|
115
|
+
channel: item.channel,
|
|
116
|
+
enabled: item.enabled,
|
|
117
|
+
})
|
|
118
|
+
em.persist(next)
|
|
119
|
+
changed += 1
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
],
|
|
123
|
+
{ transaction: true, label: 'notifications.setPreferences' },
|
|
124
|
+
)
|
|
125
|
+
return changed
|
|
126
|
+
},
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
export function resolveNotificationPreferenceService(container: {
|
|
131
|
+
resolve: (name: string) => unknown
|
|
132
|
+
}): NotificationPreferenceService {
|
|
133
|
+
// Construct from the request-scoped `em`, mirroring `resolveNotificationService`. (The request
|
|
134
|
+
// container does not expose the module's scoped service bindings, so resolving `em` directly is the
|
|
135
|
+
// module convention — see notificationService.ts.)
|
|
136
|
+
const em = container.resolve('em') as EntityManager
|
|
137
|
+
return createNotificationPreferenceService({ em })
|
|
138
|
+
}
|