@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,80 @@
|
|
|
1
|
+
import { z } from 'zod'
|
|
2
|
+
import type {
|
|
3
|
+
SendMessageInput,
|
|
4
|
+
SendMessageResult,
|
|
5
|
+
} from '@open-mercato/core/modules/communication_channels/lib/adapter'
|
|
6
|
+
import {
|
|
7
|
+
BasePushChannelAdapter,
|
|
8
|
+
deviceUnregisteredResult,
|
|
9
|
+
readPushToken,
|
|
10
|
+
} from '@open-mercato/core/modules/communication_channels/lib/push-adapter'
|
|
11
|
+
import { readPushEnvelope } from '@open-mercato/core/modules/communication_channels/lib/push-envelope'
|
|
12
|
+
import {
|
|
13
|
+
hasChannelAdapter,
|
|
14
|
+
registerChannelAdapter,
|
|
15
|
+
} from '@open-mercato/core/modules/communication_channels/lib/adapter-registry-singleton'
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* In-process, network-free `push` channel adapter used ONLY by tests.
|
|
19
|
+
*
|
|
20
|
+
* Real provider adapters (FCM/APNs/Expo) land in Phase 4 as separate channel packages. Phase 3 ships
|
|
21
|
+
* this stub so the strategy → delivery-row → worker → `sendMessage` chain is exercisable end-to-end.
|
|
22
|
+
*
|
|
23
|
+
* Token sentinels let a test drive each worker branch deterministically:
|
|
24
|
+
* - a token containing `unregistered` → the uniform `unregistered` shape (worker soft-deletes the device)
|
|
25
|
+
* - a token containing `fail` → a retryable failure (worker retries then marks `failed`)
|
|
26
|
+
* - otherwise → `sent`
|
|
27
|
+
*
|
|
28
|
+
* Production safety: never registered at module import. The integration harness calls
|
|
29
|
+
* {@link ensurePushStubAdapterRegistered}, gated by `OM_ENABLE_PUSH_STUB_ADAPTER`.
|
|
30
|
+
*/
|
|
31
|
+
export const PUSH_STUB_PROVIDER_KEY = 'push_stub'
|
|
32
|
+
export const PUSH_STUB_ENV = 'OM_ENABLE_PUSH_STUB_ADAPTER'
|
|
33
|
+
|
|
34
|
+
export function isPushStubEnabled(): boolean {
|
|
35
|
+
const raw = process.env[PUSH_STUB_ENV]
|
|
36
|
+
if (typeof raw !== 'string') return false
|
|
37
|
+
return ['1', 'true', 'yes', 'on'].includes(raw.trim().toLowerCase())
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
class PushStubChannelAdapter extends BasePushChannelAdapter {
|
|
41
|
+
readonly providerKey = PUSH_STUB_PROVIDER_KEY
|
|
42
|
+
protected readonly credentialsSchema = z.object({}).passthrough()
|
|
43
|
+
|
|
44
|
+
async sendMessage(input: SendMessageInput): Promise<SendMessageResult> {
|
|
45
|
+
const token = readPushToken(input) ?? ''
|
|
46
|
+
if (token.includes('unregistered')) {
|
|
47
|
+
return deviceUnregisteredResult({ stub: true })
|
|
48
|
+
}
|
|
49
|
+
if (token.includes('fail')) {
|
|
50
|
+
return { externalMessageId: '', status: 'failed', error: 'push_stub_forced_failure', metadata: { stub: true } }
|
|
51
|
+
}
|
|
52
|
+
// Surface the resolved envelope (silent flag, custom data, mapped options) so
|
|
53
|
+
// integration tests can assert what the worker handed the adapter per delivery.
|
|
54
|
+
const envelope = readPushEnvelope(input.content)
|
|
55
|
+
return {
|
|
56
|
+
externalMessageId: `push-stub-${token.slice(-8) || 'token'}`,
|
|
57
|
+
status: 'sent',
|
|
58
|
+
metadata: {
|
|
59
|
+
stub: true,
|
|
60
|
+
silent: envelope.silent,
|
|
61
|
+
data: envelope.data,
|
|
62
|
+
options: envelope.options,
|
|
63
|
+
},
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
let cachedPushStubAdapter: PushStubChannelAdapter | null = null
|
|
69
|
+
|
|
70
|
+
export function getPushStubAdapter(): PushStubChannelAdapter {
|
|
71
|
+
if (!cachedPushStubAdapter) cachedPushStubAdapter = new PushStubChannelAdapter()
|
|
72
|
+
return cachedPushStubAdapter
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/** Register the push stub adapter once, ONLY when the test env flag is set. No-op otherwise. */
|
|
76
|
+
export function ensurePushStubAdapterRegistered(): void {
|
|
77
|
+
if (!isPushStubEnabled()) return
|
|
78
|
+
if (hasChannelAdapter(PUSH_STUB_PROVIDER_KEY)) return
|
|
79
|
+
registerChannelAdapter(getPushStubAdapter())
|
|
80
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import type { EntityManager } from '@mikro-orm/postgresql'
|
|
2
|
+
import { createModuleQueue, type Queue } from '@open-mercato/queue'
|
|
3
|
+
import { createLogger } from '@open-mercato/shared/lib/logger'
|
|
4
|
+
|
|
5
|
+
const logger = createLogger('push_notifications')
|
|
6
|
+
|
|
7
|
+
export interface PushDeliveryJob {
|
|
8
|
+
deliveryId: string
|
|
9
|
+
tenantId: string
|
|
10
|
+
organizationId: string | null
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export const PUSH_DELIVERIES_QUEUE = 'push-deliveries'
|
|
14
|
+
// Scheduler-driven tick that recovers rows stranded in `sending` by a crashed worker (see
|
|
15
|
+
// lib/push-reaper.ts). The `@open-mercato/scheduler` interval entry registered in setup.ts enqueues
|
|
16
|
+
// one tick per tenant onto this queue; the reclaim-stuck worker processes it.
|
|
17
|
+
export const PUSH_STUCK_RECLAIM_QUEUE = 'push-stuck-reclaim'
|
|
18
|
+
|
|
19
|
+
const queues = new Map<string, Queue<PushDeliveryJob>>()
|
|
20
|
+
const LOCAL_WORKER_PROMISE_KEY = '__openMercatoPushLocalWorkerPromise__'
|
|
21
|
+
|
|
22
|
+
export function getPushQueue(queueName: string = PUSH_DELIVERIES_QUEUE): Queue<PushDeliveryJob> {
|
|
23
|
+
const existing = queues.get(queueName)
|
|
24
|
+
if (existing) return existing
|
|
25
|
+
|
|
26
|
+
const concurrency = Math.max(1, Number.parseInt(process.env.PUSH_QUEUE_CONCURRENCY ?? '8', 10) || 8)
|
|
27
|
+
const created = createModuleQueue<PushDeliveryJob>(queueName, { concurrency })
|
|
28
|
+
|
|
29
|
+
queues.set(queueName, created)
|
|
30
|
+
return created
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// In local (dev/test) queue mode jobs are processed in-process. In async mode the
|
|
34
|
+
// auto-discovered `workers/send-push.worker.ts` handles them, so this is a no-op there.
|
|
35
|
+
async function ensureLocalPushQueueWorkerStarted(): Promise<void> {
|
|
36
|
+
if (process.env.QUEUE_STRATEGY === 'async') return
|
|
37
|
+
|
|
38
|
+
const globalStore = globalThis as typeof globalThis & {
|
|
39
|
+
[LOCAL_WORKER_PROMISE_KEY]?: Promise<void>
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
if (globalStore[LOCAL_WORKER_PROMISE_KEY]) {
|
|
43
|
+
await globalStore[LOCAL_WORKER_PROMISE_KEY]
|
|
44
|
+
return
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
globalStore[LOCAL_WORKER_PROMISE_KEY] = (async () => {
|
|
48
|
+
const queue = getPushQueue()
|
|
49
|
+
|
|
50
|
+
await queue.process(async (job) => {
|
|
51
|
+
const [{ createRequestContainer }, { processPushDeliveryJob }] = await Promise.all([
|
|
52
|
+
import('@open-mercato/shared/lib/di/container'),
|
|
53
|
+
import('./push-delivery'),
|
|
54
|
+
])
|
|
55
|
+
|
|
56
|
+
const container = await createRequestContainer()
|
|
57
|
+
const em = (container.resolve('em') as EntityManager).fork()
|
|
58
|
+
await processPushDeliveryJob(em, job.payload, (name) => container.resolve(name))
|
|
59
|
+
})
|
|
60
|
+
})().catch((error) => {
|
|
61
|
+
delete globalStore[LOCAL_WORKER_PROMISE_KEY]
|
|
62
|
+
logger.error('Failed to start local delivery worker', { error })
|
|
63
|
+
throw error
|
|
64
|
+
})
|
|
65
|
+
|
|
66
|
+
await globalStore[LOCAL_WORKER_PROMISE_KEY]
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export async function enqueuePushDelivery(job: PushDeliveryJob, delayMs?: number): Promise<string> {
|
|
70
|
+
const queue = getPushQueue()
|
|
71
|
+
const jobId = await queue.enqueue(job, delayMs && delayMs > 0 ? { delayMs } : undefined)
|
|
72
|
+
await ensureLocalPushQueueWorkerStarted()
|
|
73
|
+
return jobId
|
|
74
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
// Single source of truth for the stuck-reclaim window. The reaper uses it to decide when a `sending`
|
|
2
|
+
// row is abandoned; the send path uses it to bound a single provider send so a hung call can never
|
|
3
|
+
// outlive the window (which would let the reaper reclaim the row mid-send). Keeping both on one resolver
|
|
4
|
+
// guarantees the send timeout stays below the reclaim threshold — see push-delivery.ts.
|
|
5
|
+
//
|
|
6
|
+
// A floor of MIN_STUCK_MINUTES is enforced: `0` (the old "reclaim on the next tick") is UNSAFE because
|
|
7
|
+
// `cutoff = now` matches an actively-`sending` row whose `updated_at` was stamped at claim, re-opening
|
|
8
|
+
// an in-flight send. Sub-floor / negative / non-numeric values fall back to the default.
|
|
9
|
+
export const DEFAULT_STUCK_MINUTES = 5
|
|
10
|
+
export const MIN_STUCK_MINUTES = 1
|
|
11
|
+
|
|
12
|
+
export function resolveStuckThresholdMs(): number {
|
|
13
|
+
const raw = Number.parseInt(process.env.OM_PUSH_STUCK_RECLAIM_MINUTES ?? '', 10)
|
|
14
|
+
const minutes = Number.isFinite(raw) && raw >= MIN_STUCK_MINUTES ? raw : DEFAULT_STUCK_MINUTES
|
|
15
|
+
return minutes * 60 * 1000
|
|
16
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import type { EntityManager } from '@mikro-orm/postgresql'
|
|
2
|
+
import { getNotificationType } from '@open-mercato/core/modules/notifications/lib/notification-type-registry'
|
|
3
|
+
import type { PushOptions } from '@open-mercato/core/modules/communication_channels/lib/push-envelope'
|
|
4
|
+
import { ADMIN_CUSTOM_MESSAGE_TYPE, ADMIN_CUSTOM_SILENT_TYPE } from '../notifications'
|
|
5
|
+
import { fanOutPushDeliveries } from './push-fanout'
|
|
6
|
+
|
|
7
|
+
type Resolve = <T = unknown>(name: string) => T
|
|
8
|
+
|
|
9
|
+
export interface SendCustomPushArgs {
|
|
10
|
+
/** Scoped DI resolver (e.g. an API route's request container `resolve`). */
|
|
11
|
+
resolve: Resolve
|
|
12
|
+
tenantId: string
|
|
13
|
+
userId: string
|
|
14
|
+
organizationId?: string | null
|
|
15
|
+
/** Restrict delivery to one of the user's devices (`UserDevice.id`). Omit to send to all. */
|
|
16
|
+
deviceId?: string
|
|
17
|
+
/** Literal, already-authored push title (free text — not an i18n key, so not translated). */
|
|
18
|
+
title: string
|
|
19
|
+
/** Optional literal push body. */
|
|
20
|
+
body?: string | null
|
|
21
|
+
/** Arbitrary app-readable key/values delivered in the push data payload. */
|
|
22
|
+
data?: Record<string, string>
|
|
23
|
+
/** Optional per-provider push customization (sound, badge, priority, …). */
|
|
24
|
+
pushOptions?: PushOptions
|
|
25
|
+
/**
|
|
26
|
+
* When true, deliver as a **silent** data-only content-available wake-up (no visible banner)
|
|
27
|
+
* instead of a visible alert. Defaults to false (visible).
|
|
28
|
+
*/
|
|
29
|
+
silent?: boolean
|
|
30
|
+
/**
|
|
31
|
+
* Registered notification type to label the delivery with. Defaults to the admin custom-message
|
|
32
|
+
* type (visible) or the admin custom-silent type when `silent` is set. Its `silent` flag MUST
|
|
33
|
+
* match the requested mode.
|
|
34
|
+
*/
|
|
35
|
+
type?: string
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Deliver an admin-composed, one-off push to all of a user's push-capable devices — **visible**
|
|
40
|
+
* (literal title/body banner) or **silent** (`silent: true` — a data-only content-available wake-up
|
|
41
|
+
* with no banner).
|
|
42
|
+
*
|
|
43
|
+
* A direct fan-out (no in-app `Notification` row, no email, no per-channel preference check). The
|
|
44
|
+
* `type` MUST be registered and its `silent` flag MUST match the requested mode. Because the copy is
|
|
45
|
+
* literal free text, it is delivered verbatim (no per-device locale translation). The actual provider
|
|
46
|
+
* send happens in the `send-push` worker; the returned `enqueued` is the number of per-device jobs.
|
|
47
|
+
*
|
|
48
|
+
* Note: delivery here is forced by the direct fan-out itself — this path never consults the
|
|
49
|
+
* preference service, so the type's `nonOptOut: true` is not load-bearing on this route (it matters
|
|
50
|
+
* only if that type is ever routed through the normal preference-gated `notificationService.create()`
|
|
51
|
+
* strategy).
|
|
52
|
+
*/
|
|
53
|
+
export async function sendCustomPush(args: SendCustomPushArgs): Promise<{ enqueued: number }> {
|
|
54
|
+
const {
|
|
55
|
+
resolve,
|
|
56
|
+
tenantId,
|
|
57
|
+
userId,
|
|
58
|
+
organizationId = null,
|
|
59
|
+
deviceId,
|
|
60
|
+
title,
|
|
61
|
+
body = null,
|
|
62
|
+
data,
|
|
63
|
+
pushOptions,
|
|
64
|
+
silent = false,
|
|
65
|
+
type = silent ? ADMIN_CUSTOM_SILENT_TYPE : ADMIN_CUSTOM_MESSAGE_TYPE,
|
|
66
|
+
} = args
|
|
67
|
+
|
|
68
|
+
const definition = getNotificationType(type)
|
|
69
|
+
if (!definition) {
|
|
70
|
+
throw new Error(`[internal] sendCustomPush: notification type "${type}" is not registered`)
|
|
71
|
+
}
|
|
72
|
+
if ((definition.silent === true) !== silent) {
|
|
73
|
+
throw new Error(`[internal] sendCustomPush: type "${type}" silent=${definition.silent === true} does not match requested silent=${silent}`)
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
const em = resolve('em') as EntityManager
|
|
77
|
+
|
|
78
|
+
return fanOutPushDeliveries({
|
|
79
|
+
em,
|
|
80
|
+
resolve,
|
|
81
|
+
scope: { tenantId, organizationId },
|
|
82
|
+
userId,
|
|
83
|
+
userDeviceId: deviceId,
|
|
84
|
+
notificationId: null,
|
|
85
|
+
notificationTypeId: type,
|
|
86
|
+
payload: {
|
|
87
|
+
title,
|
|
88
|
+
body,
|
|
89
|
+
data: { ...(data ?? {}), type },
|
|
90
|
+
options: pushOptions,
|
|
91
|
+
silent,
|
|
92
|
+
},
|
|
93
|
+
})
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export interface PushNotificationService {
|
|
97
|
+
sendCustomPush(args: SendCustomPushArgs): Promise<{ enqueued: number }>
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export const pushNotificationService: PushNotificationService = { sendCustomPush }
|
|
@@ -0,0 +1,386 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "public",
|
|
3
|
+
"namespaces": [
|
|
4
|
+
"public"
|
|
5
|
+
],
|
|
6
|
+
"tables": [
|
|
7
|
+
{
|
|
8
|
+
"name": "push_notification_deliveries",
|
|
9
|
+
"schema": "public",
|
|
10
|
+
"columns": {
|
|
11
|
+
"attempts": {
|
|
12
|
+
"name": "attempts",
|
|
13
|
+
"type": "int",
|
|
14
|
+
"unsigned": false,
|
|
15
|
+
"autoincrement": false,
|
|
16
|
+
"primary": false,
|
|
17
|
+
"nullable": false,
|
|
18
|
+
"unique": false,
|
|
19
|
+
"length": null,
|
|
20
|
+
"precision": null,
|
|
21
|
+
"scale": null,
|
|
22
|
+
"default": "0",
|
|
23
|
+
"comment": null,
|
|
24
|
+
"collation": null,
|
|
25
|
+
"enumItems": [],
|
|
26
|
+
"mappedType": "integer"
|
|
27
|
+
},
|
|
28
|
+
"created_at": {
|
|
29
|
+
"name": "created_at",
|
|
30
|
+
"type": "timestamptz(6)",
|
|
31
|
+
"unsigned": false,
|
|
32
|
+
"autoincrement": false,
|
|
33
|
+
"primary": false,
|
|
34
|
+
"nullable": false,
|
|
35
|
+
"unique": false,
|
|
36
|
+
"length": 6,
|
|
37
|
+
"precision": null,
|
|
38
|
+
"scale": null,
|
|
39
|
+
"default": null,
|
|
40
|
+
"comment": null,
|
|
41
|
+
"collation": null,
|
|
42
|
+
"enumItems": [],
|
|
43
|
+
"mappedType": "datetime"
|
|
44
|
+
},
|
|
45
|
+
"id": {
|
|
46
|
+
"name": "id",
|
|
47
|
+
"type": "uuid",
|
|
48
|
+
"unsigned": false,
|
|
49
|
+
"autoincrement": false,
|
|
50
|
+
"primary": true,
|
|
51
|
+
"nullable": false,
|
|
52
|
+
"unique": false,
|
|
53
|
+
"length": null,
|
|
54
|
+
"precision": null,
|
|
55
|
+
"scale": null,
|
|
56
|
+
"default": "gen_random_uuid()",
|
|
57
|
+
"comment": null,
|
|
58
|
+
"collation": null,
|
|
59
|
+
"enumItems": [],
|
|
60
|
+
"mappedType": "uuid"
|
|
61
|
+
},
|
|
62
|
+
"last_error": {
|
|
63
|
+
"name": "last_error",
|
|
64
|
+
"type": "text",
|
|
65
|
+
"unsigned": false,
|
|
66
|
+
"autoincrement": false,
|
|
67
|
+
"primary": false,
|
|
68
|
+
"nullable": true,
|
|
69
|
+
"unique": false,
|
|
70
|
+
"length": null,
|
|
71
|
+
"precision": null,
|
|
72
|
+
"scale": null,
|
|
73
|
+
"default": null,
|
|
74
|
+
"comment": null,
|
|
75
|
+
"collation": null,
|
|
76
|
+
"enumItems": [],
|
|
77
|
+
"mappedType": "text"
|
|
78
|
+
},
|
|
79
|
+
"notification_id": {
|
|
80
|
+
"name": "notification_id",
|
|
81
|
+
"type": "uuid",
|
|
82
|
+
"unsigned": false,
|
|
83
|
+
"autoincrement": false,
|
|
84
|
+
"primary": false,
|
|
85
|
+
"nullable": true,
|
|
86
|
+
"unique": false,
|
|
87
|
+
"length": null,
|
|
88
|
+
"precision": null,
|
|
89
|
+
"scale": null,
|
|
90
|
+
"default": null,
|
|
91
|
+
"comment": null,
|
|
92
|
+
"collation": null,
|
|
93
|
+
"enumItems": [],
|
|
94
|
+
"mappedType": "uuid"
|
|
95
|
+
},
|
|
96
|
+
"notification_type_id": {
|
|
97
|
+
"name": "notification_type_id",
|
|
98
|
+
"type": "text",
|
|
99
|
+
"unsigned": false,
|
|
100
|
+
"autoincrement": false,
|
|
101
|
+
"primary": false,
|
|
102
|
+
"nullable": false,
|
|
103
|
+
"unique": false,
|
|
104
|
+
"length": null,
|
|
105
|
+
"precision": null,
|
|
106
|
+
"scale": null,
|
|
107
|
+
"default": null,
|
|
108
|
+
"comment": null,
|
|
109
|
+
"collation": null,
|
|
110
|
+
"enumItems": [],
|
|
111
|
+
"mappedType": "text"
|
|
112
|
+
},
|
|
113
|
+
"organization_id": {
|
|
114
|
+
"name": "organization_id",
|
|
115
|
+
"type": "uuid",
|
|
116
|
+
"unsigned": false,
|
|
117
|
+
"autoincrement": false,
|
|
118
|
+
"primary": false,
|
|
119
|
+
"nullable": true,
|
|
120
|
+
"unique": false,
|
|
121
|
+
"length": null,
|
|
122
|
+
"precision": null,
|
|
123
|
+
"scale": null,
|
|
124
|
+
"default": null,
|
|
125
|
+
"comment": null,
|
|
126
|
+
"collation": null,
|
|
127
|
+
"enumItems": [],
|
|
128
|
+
"mappedType": "uuid"
|
|
129
|
+
},
|
|
130
|
+
"payload": {
|
|
131
|
+
"name": "payload",
|
|
132
|
+
"type": "jsonb",
|
|
133
|
+
"unsigned": false,
|
|
134
|
+
"autoincrement": false,
|
|
135
|
+
"primary": false,
|
|
136
|
+
"nullable": false,
|
|
137
|
+
"unique": false,
|
|
138
|
+
"length": null,
|
|
139
|
+
"precision": null,
|
|
140
|
+
"scale": null,
|
|
141
|
+
"default": null,
|
|
142
|
+
"comment": null,
|
|
143
|
+
"collation": null,
|
|
144
|
+
"enumItems": [],
|
|
145
|
+
"mappedType": "json"
|
|
146
|
+
},
|
|
147
|
+
"provider": {
|
|
148
|
+
"name": "provider",
|
|
149
|
+
"type": "text",
|
|
150
|
+
"unsigned": false,
|
|
151
|
+
"autoincrement": false,
|
|
152
|
+
"primary": false,
|
|
153
|
+
"nullable": false,
|
|
154
|
+
"unique": false,
|
|
155
|
+
"length": null,
|
|
156
|
+
"precision": null,
|
|
157
|
+
"scale": null,
|
|
158
|
+
"default": null,
|
|
159
|
+
"comment": null,
|
|
160
|
+
"collation": null,
|
|
161
|
+
"enumItems": [],
|
|
162
|
+
"mappedType": "text"
|
|
163
|
+
},
|
|
164
|
+
"provider_response": {
|
|
165
|
+
"name": "provider_response",
|
|
166
|
+
"type": "jsonb",
|
|
167
|
+
"unsigned": false,
|
|
168
|
+
"autoincrement": false,
|
|
169
|
+
"primary": false,
|
|
170
|
+
"nullable": true,
|
|
171
|
+
"unique": false,
|
|
172
|
+
"length": null,
|
|
173
|
+
"precision": null,
|
|
174
|
+
"scale": null,
|
|
175
|
+
"default": null,
|
|
176
|
+
"comment": null,
|
|
177
|
+
"collation": null,
|
|
178
|
+
"enumItems": [],
|
|
179
|
+
"mappedType": "json"
|
|
180
|
+
},
|
|
181
|
+
"sent_at": {
|
|
182
|
+
"name": "sent_at",
|
|
183
|
+
"type": "timestamptz(6)",
|
|
184
|
+
"unsigned": false,
|
|
185
|
+
"autoincrement": false,
|
|
186
|
+
"primary": false,
|
|
187
|
+
"nullable": true,
|
|
188
|
+
"unique": false,
|
|
189
|
+
"length": 6,
|
|
190
|
+
"precision": null,
|
|
191
|
+
"scale": null,
|
|
192
|
+
"default": null,
|
|
193
|
+
"comment": null,
|
|
194
|
+
"collation": null,
|
|
195
|
+
"enumItems": [],
|
|
196
|
+
"mappedType": "datetime"
|
|
197
|
+
},
|
|
198
|
+
"next_retry_at": {
|
|
199
|
+
"name": "next_retry_at",
|
|
200
|
+
"type": "timestamptz(6)",
|
|
201
|
+
"unsigned": false,
|
|
202
|
+
"autoincrement": false,
|
|
203
|
+
"primary": false,
|
|
204
|
+
"nullable": true,
|
|
205
|
+
"unique": false,
|
|
206
|
+
"length": 6,
|
|
207
|
+
"precision": null,
|
|
208
|
+
"scale": null,
|
|
209
|
+
"default": null,
|
|
210
|
+
"comment": null,
|
|
211
|
+
"collation": null,
|
|
212
|
+
"enumItems": [],
|
|
213
|
+
"mappedType": "datetime"
|
|
214
|
+
},
|
|
215
|
+
"silent": {
|
|
216
|
+
"name": "silent",
|
|
217
|
+
"type": "boolean",
|
|
218
|
+
"unsigned": false,
|
|
219
|
+
"autoincrement": false,
|
|
220
|
+
"primary": false,
|
|
221
|
+
"nullable": false,
|
|
222
|
+
"unique": false,
|
|
223
|
+
"length": null,
|
|
224
|
+
"precision": null,
|
|
225
|
+
"scale": null,
|
|
226
|
+
"default": "false",
|
|
227
|
+
"comment": null,
|
|
228
|
+
"collation": null,
|
|
229
|
+
"enumItems": [],
|
|
230
|
+
"mappedType": "boolean"
|
|
231
|
+
},
|
|
232
|
+
"status": {
|
|
233
|
+
"name": "status",
|
|
234
|
+
"type": "text",
|
|
235
|
+
"unsigned": false,
|
|
236
|
+
"autoincrement": false,
|
|
237
|
+
"primary": false,
|
|
238
|
+
"nullable": false,
|
|
239
|
+
"unique": false,
|
|
240
|
+
"length": null,
|
|
241
|
+
"precision": null,
|
|
242
|
+
"scale": null,
|
|
243
|
+
"default": "'pending'",
|
|
244
|
+
"comment": null,
|
|
245
|
+
"collation": null,
|
|
246
|
+
"enumItems": [],
|
|
247
|
+
"mappedType": "text"
|
|
248
|
+
},
|
|
249
|
+
"tenant_id": {
|
|
250
|
+
"name": "tenant_id",
|
|
251
|
+
"type": "uuid",
|
|
252
|
+
"unsigned": false,
|
|
253
|
+
"autoincrement": false,
|
|
254
|
+
"primary": false,
|
|
255
|
+
"nullable": false,
|
|
256
|
+
"unique": false,
|
|
257
|
+
"length": null,
|
|
258
|
+
"precision": null,
|
|
259
|
+
"scale": null,
|
|
260
|
+
"default": null,
|
|
261
|
+
"comment": null,
|
|
262
|
+
"collation": null,
|
|
263
|
+
"enumItems": [],
|
|
264
|
+
"mappedType": "uuid"
|
|
265
|
+
},
|
|
266
|
+
"token_snapshot": {
|
|
267
|
+
"name": "token_snapshot",
|
|
268
|
+
"type": "text",
|
|
269
|
+
"unsigned": false,
|
|
270
|
+
"autoincrement": false,
|
|
271
|
+
"primary": false,
|
|
272
|
+
"nullable": false,
|
|
273
|
+
"unique": false,
|
|
274
|
+
"length": null,
|
|
275
|
+
"precision": null,
|
|
276
|
+
"scale": null,
|
|
277
|
+
"default": null,
|
|
278
|
+
"comment": null,
|
|
279
|
+
"collation": null,
|
|
280
|
+
"enumItems": [],
|
|
281
|
+
"mappedType": "text"
|
|
282
|
+
},
|
|
283
|
+
"updated_at": {
|
|
284
|
+
"name": "updated_at",
|
|
285
|
+
"type": "timestamptz(6)",
|
|
286
|
+
"unsigned": false,
|
|
287
|
+
"autoincrement": false,
|
|
288
|
+
"primary": false,
|
|
289
|
+
"nullable": false,
|
|
290
|
+
"unique": false,
|
|
291
|
+
"length": 6,
|
|
292
|
+
"precision": null,
|
|
293
|
+
"scale": null,
|
|
294
|
+
"default": null,
|
|
295
|
+
"comment": null,
|
|
296
|
+
"collation": null,
|
|
297
|
+
"enumItems": [],
|
|
298
|
+
"mappedType": "datetime"
|
|
299
|
+
},
|
|
300
|
+
"user_device_id": {
|
|
301
|
+
"name": "user_device_id",
|
|
302
|
+
"type": "uuid",
|
|
303
|
+
"unsigned": false,
|
|
304
|
+
"autoincrement": false,
|
|
305
|
+
"primary": false,
|
|
306
|
+
"nullable": false,
|
|
307
|
+
"unique": false,
|
|
308
|
+
"length": null,
|
|
309
|
+
"precision": null,
|
|
310
|
+
"scale": null,
|
|
311
|
+
"default": null,
|
|
312
|
+
"comment": null,
|
|
313
|
+
"collation": null,
|
|
314
|
+
"enumItems": [],
|
|
315
|
+
"mappedType": "uuid"
|
|
316
|
+
},
|
|
317
|
+
"user_id": {
|
|
318
|
+
"name": "user_id",
|
|
319
|
+
"type": "uuid",
|
|
320
|
+
"unsigned": false,
|
|
321
|
+
"autoincrement": false,
|
|
322
|
+
"primary": false,
|
|
323
|
+
"nullable": false,
|
|
324
|
+
"unique": false,
|
|
325
|
+
"length": null,
|
|
326
|
+
"precision": null,
|
|
327
|
+
"scale": null,
|
|
328
|
+
"default": null,
|
|
329
|
+
"comment": null,
|
|
330
|
+
"collation": null,
|
|
331
|
+
"enumItems": [],
|
|
332
|
+
"mappedType": "uuid"
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"indexes": [
|
|
336
|
+
{
|
|
337
|
+
"columnNames": [
|
|
338
|
+
"notification_id"
|
|
339
|
+
],
|
|
340
|
+
"composite": false,
|
|
341
|
+
"constraint": false,
|
|
342
|
+
"keyName": "push_notification_deliveries_notification_idx",
|
|
343
|
+
"primary": false,
|
|
344
|
+
"unique": false
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"columnNames": [],
|
|
348
|
+
"composite": false,
|
|
349
|
+
"constraint": false,
|
|
350
|
+
"keyName": "push_notification_deliveries_notif_device_unique",
|
|
351
|
+
"primary": false,
|
|
352
|
+
"unique": false,
|
|
353
|
+
"expression": "create unique index \"push_notification_deliveries_notif_device_unique\" on \"push_notification_deliveries\" (\"notification_id\", \"user_device_id\") where \"notification_id\" is not null"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"columnNames": [
|
|
357
|
+
"id"
|
|
358
|
+
],
|
|
359
|
+
"composite": false,
|
|
360
|
+
"constraint": true,
|
|
361
|
+
"keyName": "push_notification_deliveries_pkey",
|
|
362
|
+
"primary": true,
|
|
363
|
+
"unique": true
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"columnNames": [
|
|
367
|
+
"tenant_id",
|
|
368
|
+
"status",
|
|
369
|
+
"created_at"
|
|
370
|
+
],
|
|
371
|
+
"composite": true,
|
|
372
|
+
"constraint": false,
|
|
373
|
+
"keyName": "push_notification_deliveries_tenant_status_idx",
|
|
374
|
+
"primary": false,
|
|
375
|
+
"unique": false
|
|
376
|
+
}
|
|
377
|
+
],
|
|
378
|
+
"checks": [],
|
|
379
|
+
"triggers": [],
|
|
380
|
+
"foreignKeys": {},
|
|
381
|
+
"comment": null
|
|
382
|
+
}
|
|
383
|
+
],
|
|
384
|
+
"views": [],
|
|
385
|
+
"nativeEnums": {}
|
|
386
|
+
}
|
package/src/modules/push_notifications/migrations/Migration20260625150049_push_notifications.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Migration } from '@mikro-orm/migrations';
|
|
2
|
+
|
|
3
|
+
export class Migration20260625150049_push_notifications extends Migration {
|
|
4
|
+
|
|
5
|
+
override up(): void | Promise<void> {
|
|
6
|
+
this.addSql(`create table "push_notification_deliveries" ("id" uuid not null default gen_random_uuid(), "tenant_id" uuid not null, "organization_id" uuid null, "notification_id" uuid null, "notification_type_id" text not null, "user_device_id" uuid not null, "user_id" uuid not null, "provider" text not null, "token_snapshot" text not null, "status" text not null default 'pending', "attempts" int not null default 0, "last_error" text null, "payload" jsonb not null, "provider_response" jsonb null, "created_at" timestamptz not null, "sent_at" timestamptz null, "next_retry_at" timestamptz null, "updated_at" timestamptz not null, primary key ("id"));`);
|
|
7
|
+
this.addSql(`create index "push_notification_deliveries_notification_idx" on "push_notification_deliveries" ("notification_id");`);
|
|
8
|
+
this.addSql(`create index "push_notification_deliveries_tenant_status_idx" on "push_notification_deliveries" ("tenant_id", "status", "created_at");`);
|
|
9
|
+
this.addSql(`create unique index "push_notification_deliveries_notif_device_unique" on "push_notification_deliveries" ("notification_id", "user_device_id") where "notification_id" is not null;`);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
override down(): void | Promise<void> {
|
|
13
|
+
this.addSql(`drop table if exists "push_notification_deliveries" cascade;`);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Migration } from '@mikro-orm/migrations';
|
|
2
|
+
|
|
3
|
+
export class Migration20260626120000_push_notifications_silent extends Migration {
|
|
4
|
+
|
|
5
|
+
override up(): void | Promise<void> {
|
|
6
|
+
this.addSql(`alter table "push_notification_deliveries" add column "silent" boolean not null default false;`);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
override down(): void | Promise<void> {
|
|
10
|
+
this.addSql(`alter table "push_notification_deliveries" drop column "silent";`);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
}
|