@open-mercato/core 0.6.8-develop.6984.1.f0cf23f0f6 → 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,175 @@
|
|
|
1
|
+
import { NextResponse } from 'next/server'
|
|
2
|
+
import { z } from 'zod'
|
|
3
|
+
import { createRequestContainer } from '@open-mercato/shared/lib/di/container'
|
|
4
|
+
import { getAuthFromRequest } from '@open-mercato/shared/lib/auth/server'
|
|
5
|
+
import { resolveOrganizationScopeForRequest } from '@open-mercato/core/modules/directory/utils/organizationScope'
|
|
6
|
+
import { readJsonSafe } from '@open-mercato/shared/lib/http/readJsonSafe'
|
|
7
|
+
import { resolveTranslations } from '@open-mercato/shared/lib/i18n/server'
|
|
8
|
+
import { createLogger } from '@open-mercato/shared/lib/logger'
|
|
9
|
+
import {
|
|
10
|
+
bridgeLegacyGuard,
|
|
11
|
+
runMutationGuards,
|
|
12
|
+
type MutationGuard,
|
|
13
|
+
type MutationGuardInput,
|
|
14
|
+
} from '@open-mercato/shared/lib/crud/mutation-guard-registry'
|
|
15
|
+
import type { AwilixContainer } from 'awilix'
|
|
16
|
+
import {
|
|
17
|
+
customSendSchema,
|
|
18
|
+
customSendResponseSchema,
|
|
19
|
+
CUSTOM_SEND_NO_DEVICES_WARNING,
|
|
20
|
+
} from '../../data/validators'
|
|
21
|
+
import type { PushNotificationService } from '../../lib/send-custom-push'
|
|
22
|
+
|
|
23
|
+
const logger = createLogger('push_notifications')
|
|
24
|
+
|
|
25
|
+
const RESOURCE_KIND = 'push_notifications.push_notification_delivery'
|
|
26
|
+
|
|
27
|
+
const errorResponseSchema = z.object({ error: z.string() })
|
|
28
|
+
|
|
29
|
+
export const metadata = {
|
|
30
|
+
POST: { requireAuth: true, requireFeatures: ['push_notifications.send_custom'] },
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
function resolveUserFeatures(auth: unknown): string[] {
|
|
34
|
+
const features = (auth as { features?: unknown })?.features
|
|
35
|
+
if (!Array.isArray(features)) return []
|
|
36
|
+
return features.filter((value): value is string => typeof value === 'string')
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
async function runGuards(
|
|
40
|
+
container: AwilixContainer,
|
|
41
|
+
userFeatures: string[],
|
|
42
|
+
input: MutationGuardInput,
|
|
43
|
+
): Promise<{
|
|
44
|
+
ok: boolean
|
|
45
|
+
errorBody?: Record<string, unknown>
|
|
46
|
+
errorStatus?: number
|
|
47
|
+
afterSuccessCallbacks: Array<{ guard: MutationGuard; metadata: Record<string, unknown> | null }>
|
|
48
|
+
}> {
|
|
49
|
+
const legacyGuard = bridgeLegacyGuard(container)
|
|
50
|
+
if (!legacyGuard) return { ok: true, afterSuccessCallbacks: [] }
|
|
51
|
+
return runMutationGuards([legacyGuard], input, { userFeatures })
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export async function POST(req: Request) {
|
|
55
|
+
const { translate } = await resolveTranslations()
|
|
56
|
+
try {
|
|
57
|
+
const container = await createRequestContainer()
|
|
58
|
+
const auth = await getAuthFromRequest(req)
|
|
59
|
+
if (!auth || !auth.tenantId || !auth.sub) {
|
|
60
|
+
return NextResponse.json(
|
|
61
|
+
{ error: translate('push_notifications.errors.unauthorized', 'Unauthorized') },
|
|
62
|
+
{ status: 401 },
|
|
63
|
+
)
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
const body = customSendSchema.parse(await readJsonSafe(req, {}))
|
|
67
|
+
const scope = await resolveOrganizationScopeForRequest({ container, auth, request: req })
|
|
68
|
+
const organizationId = scope?.selectedId ?? auth.orgId ?? null
|
|
69
|
+
|
|
70
|
+
// Custom write route → wire the mutation-guard registry (AGENTS → API Routes). The send creates
|
|
71
|
+
// append-only delivery rows; map it to a `create` on the delivery resource keyed by recipient.
|
|
72
|
+
const guardInput: MutationGuardInput = {
|
|
73
|
+
tenantId: auth.tenantId,
|
|
74
|
+
organizationId,
|
|
75
|
+
userId: auth.sub,
|
|
76
|
+
resourceKind: RESOURCE_KIND,
|
|
77
|
+
resourceId: body.recipientUserId,
|
|
78
|
+
operation: 'create',
|
|
79
|
+
requestMethod: req.method,
|
|
80
|
+
requestHeaders: req.headers,
|
|
81
|
+
mutationPayload: body,
|
|
82
|
+
}
|
|
83
|
+
const guardResult = await runGuards(container, resolveUserFeatures(auth), guardInput)
|
|
84
|
+
if (!guardResult.ok) {
|
|
85
|
+
return NextResponse.json(
|
|
86
|
+
guardResult.errorBody ?? { error: translate('push_notifications.errors.send_failed', 'Operation blocked') },
|
|
87
|
+
{ status: guardResult.errorStatus ?? 422 },
|
|
88
|
+
)
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
const service = container.resolve('pushNotificationService') as PushNotificationService
|
|
92
|
+
const result = await service.sendCustomPush({
|
|
93
|
+
resolve: (<T = unknown,>(name: string): T => container.resolve(name) as T),
|
|
94
|
+
tenantId: auth.tenantId,
|
|
95
|
+
userId: body.recipientUserId,
|
|
96
|
+
organizationId,
|
|
97
|
+
deviceId: body.deviceId,
|
|
98
|
+
title: body.title,
|
|
99
|
+
body: body.body ?? null,
|
|
100
|
+
data: body.data,
|
|
101
|
+
pushOptions: body.pushOptions,
|
|
102
|
+
silent: body.silent ?? false,
|
|
103
|
+
})
|
|
104
|
+
|
|
105
|
+
for (const callback of guardResult.afterSuccessCallbacks) {
|
|
106
|
+
if (!callback.guard.afterSuccess) continue
|
|
107
|
+
await callback.guard.afterSuccess({
|
|
108
|
+
...guardInput,
|
|
109
|
+
resourceId: body.recipientUserId,
|
|
110
|
+
metadata: callback.metadata ?? null,
|
|
111
|
+
})
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// A well-formed request that enqueued nothing (no push channel, no in-scope device, or no device
|
|
115
|
+
// whose provider matches an active channel) previously returned a bare 201 — a silent
|
|
116
|
+
// success-with-no-send that hid, for example, a tenant-level admin targeting org-scoped devices.
|
|
117
|
+
// Surface an explicit machine-readable warning + human message so the caller can react.
|
|
118
|
+
const responseBody: z.infer<typeof customSendResponseSchema> =
|
|
119
|
+
result.enqueued === 0
|
|
120
|
+
? {
|
|
121
|
+
enqueued: 0,
|
|
122
|
+
warning: CUSTOM_SEND_NO_DEVICES_WARNING,
|
|
123
|
+
message: translate(
|
|
124
|
+
'push_notifications.warnings.no_matching_devices_in_scope',
|
|
125
|
+
'No push-capable devices matched this recipient in the selected scope, so nothing was sent.',
|
|
126
|
+
),
|
|
127
|
+
}
|
|
128
|
+
: { enqueued: result.enqueued }
|
|
129
|
+
|
|
130
|
+
// 201 Created only when jobs were actually enqueued; the no-op branch returns 200 OK so callers
|
|
131
|
+
// that key off the status code aren't told something was created when nothing was.
|
|
132
|
+
return NextResponse.json(responseBody, { status: result.enqueued === 0 ? 200 : 201 })
|
|
133
|
+
} catch (err) {
|
|
134
|
+
if (err instanceof z.ZodError) {
|
|
135
|
+
return NextResponse.json(
|
|
136
|
+
{ error: translate('push_notifications.errors.invalid_payload', 'Invalid request'), details: err.flatten() },
|
|
137
|
+
{ status: 400 },
|
|
138
|
+
)
|
|
139
|
+
}
|
|
140
|
+
logger.error('push_notifications.custom-send.POST failed', { err })
|
|
141
|
+
return NextResponse.json(
|
|
142
|
+
{ error: translate('push_notifications.errors.send_failed', 'Failed to send push notification') },
|
|
143
|
+
{ status: 500 },
|
|
144
|
+
)
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
export const openApi = {
|
|
149
|
+
POST: {
|
|
150
|
+
summary: 'Send a custom push notification',
|
|
151
|
+
description:
|
|
152
|
+
"Admin-only: deliver a one-off, free-text visible push to all of a single user's push-capable devices. No in-app notification or email is created.",
|
|
153
|
+
tags: ['PushNotifications'],
|
|
154
|
+
requestBody: { schema: customSendSchema },
|
|
155
|
+
responses: {
|
|
156
|
+
200: {
|
|
157
|
+
description:
|
|
158
|
+
'Nothing was deliverable in scope: `enqueued` is 0 and a `warning` code plus human `message` explain why (no silent no-op). Returned instead of 201 because nothing was created.',
|
|
159
|
+
content: { 'application/json': { schema: customSendResponseSchema } },
|
|
160
|
+
},
|
|
161
|
+
201: {
|
|
162
|
+
description: 'Per-device push jobs enqueued.',
|
|
163
|
+
content: { 'application/json': { schema: customSendResponseSchema } },
|
|
164
|
+
},
|
|
165
|
+
400: {
|
|
166
|
+
description: 'Invalid request',
|
|
167
|
+
content: { 'application/json': { schema: errorResponseSchema } },
|
|
168
|
+
},
|
|
169
|
+
401: {
|
|
170
|
+
description: 'Unauthorized',
|
|
171
|
+
content: { 'application/json': { schema: errorResponseSchema } },
|
|
172
|
+
},
|
|
173
|
+
},
|
|
174
|
+
},
|
|
175
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import { NextResponse } from 'next/server'
|
|
2
|
+
import { z } from 'zod'
|
|
3
|
+
import type { EntityManager } from '@mikro-orm/postgresql'
|
|
4
|
+
import { createRequestContainer } from '@open-mercato/shared/lib/di/container'
|
|
5
|
+
import { logCrudAccess } from '@open-mercato/shared/lib/crud/factory'
|
|
6
|
+
import { getAuthFromRequest } from '@open-mercato/shared/lib/auth/server'
|
|
7
|
+
import { resolveOrganizationScopeForRequest } from '@open-mercato/core/modules/directory/utils/organizationScope'
|
|
8
|
+
import { isOrganizationReadAccessAllowed } from '@open-mercato/core/modules/directory/utils/organizationScopeGuard'
|
|
9
|
+
import { isCrudHttpError } from '@open-mercato/shared/lib/crud/errors'
|
|
10
|
+
import { resolveTranslations } from '@open-mercato/shared/lib/i18n/server'
|
|
11
|
+
import { createLogger } from '@open-mercato/shared/lib/logger'
|
|
12
|
+
import type { OpenApiRouteDoc } from '@open-mercato/shared/lib/openapi'
|
|
13
|
+
import { PushNotificationDelivery } from '../../../data/entities'
|
|
14
|
+
|
|
15
|
+
const logger = createLogger('push_notifications')
|
|
16
|
+
import { deliveryDetailItemSchema } from '../../../data/validators'
|
|
17
|
+
|
|
18
|
+
// Read-only detail for a single push delivery row (admin observability).
|
|
19
|
+
export const metadata = {
|
|
20
|
+
GET: { requireAuth: true, requireFeatures: ['push_notifications.view_deliveries'] },
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
const paramsSchema = z.object({ id: z.string().uuid() })
|
|
24
|
+
|
|
25
|
+
function serializeDelivery(delivery: PushNotificationDelivery) {
|
|
26
|
+
return {
|
|
27
|
+
id: delivery.id,
|
|
28
|
+
tenant_id: delivery.tenantId,
|
|
29
|
+
organization_id: delivery.organizationId ?? null,
|
|
30
|
+
notification_id: delivery.notificationId ?? null,
|
|
31
|
+
notification_type_id: delivery.notificationTypeId,
|
|
32
|
+
user_device_id: delivery.userDeviceId,
|
|
33
|
+
user_id: delivery.userId,
|
|
34
|
+
provider: delivery.provider,
|
|
35
|
+
token_snapshot: delivery.tokenSnapshot,
|
|
36
|
+
status: delivery.status,
|
|
37
|
+
attempts: delivery.attempts,
|
|
38
|
+
last_error: delivery.lastError ?? null,
|
|
39
|
+
payload: delivery.payload ?? null,
|
|
40
|
+
provider_response: delivery.providerResponse ?? null,
|
|
41
|
+
created_at: delivery.createdAt ? delivery.createdAt.toISOString() : null,
|
|
42
|
+
sent_at: delivery.sentAt ? delivery.sentAt.toISOString() : null,
|
|
43
|
+
next_retry_at: delivery.nextRetryAt ? delivery.nextRetryAt.toISOString() : null,
|
|
44
|
+
updated_at: delivery.updatedAt ? delivery.updatedAt.toISOString() : null,
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export async function GET(req: Request, { params }: { params: { id: string } }) {
|
|
49
|
+
const { translate } = await resolveTranslations()
|
|
50
|
+
try {
|
|
51
|
+
const container = await createRequestContainer()
|
|
52
|
+
const auth = await getAuthFromRequest(req)
|
|
53
|
+
if (!auth || !auth.tenantId) {
|
|
54
|
+
return NextResponse.json({ error: translate('push_notifications.errors.unauthorized', 'Unauthorized') }, { status: 401 })
|
|
55
|
+
}
|
|
56
|
+
const parsedParams = paramsSchema.safeParse({ id: params.id })
|
|
57
|
+
if (!parsedParams.success) {
|
|
58
|
+
return NextResponse.json({ error: translate('push_notifications.errors.invalid_id', 'Invalid delivery id') }, { status: 400 })
|
|
59
|
+
}
|
|
60
|
+
const em = container.resolve('em') as EntityManager
|
|
61
|
+
const delivery = await em.findOne(PushNotificationDelivery, { id: parsedParams.data.id, tenantId: auth.tenantId })
|
|
62
|
+
if (!delivery) {
|
|
63
|
+
return NextResponse.json({ error: translate('push_notifications.errors.not_found', 'Delivery not found') }, { status: 404 })
|
|
64
|
+
}
|
|
65
|
+
// Standard org read scoping (matches the list route + devices): an unrestricted admin reads any
|
|
66
|
+
// row in the tenant, including tenant-level (NULL-org) ones; an org-restricted admin may read only
|
|
67
|
+
// rows in an allowed org — a NULL-org target is denied (fail-closed).
|
|
68
|
+
if (
|
|
69
|
+
!isOrganizationReadAccessAllowed({
|
|
70
|
+
scope: await resolveOrganizationScopeForRequest({ container, auth, request: req }),
|
|
71
|
+
auth,
|
|
72
|
+
organizationId: delivery.organizationId ?? null,
|
|
73
|
+
})
|
|
74
|
+
) {
|
|
75
|
+
return NextResponse.json({ error: translate('push_notifications.errors.forbidden', 'Access denied') }, { status: 403 })
|
|
76
|
+
}
|
|
77
|
+
const item = serializeDelivery(delivery)
|
|
78
|
+
// Audit the read: this hand-rolled detail route bypasses makeCrudRoute (which logs list reads
|
|
79
|
+
// for free), and it exposes per-user delivery detail (user/device ids, payload). Mirrors the
|
|
80
|
+
// other hand-rolled core read routes (directory tenants/orgs, auth roles/users, feature_toggles).
|
|
81
|
+
await logCrudAccess({
|
|
82
|
+
container,
|
|
83
|
+
auth,
|
|
84
|
+
request: req,
|
|
85
|
+
items: [item],
|
|
86
|
+
idField: 'id',
|
|
87
|
+
resourceKind: 'push_notifications.push_notification_delivery',
|
|
88
|
+
organizationId: delivery.organizationId ?? null,
|
|
89
|
+
tenantId: auth.tenantId ?? null,
|
|
90
|
+
accessType: 'read:item',
|
|
91
|
+
})
|
|
92
|
+
return NextResponse.json({ item })
|
|
93
|
+
} catch (err) {
|
|
94
|
+
if (isCrudHttpError(err)) {
|
|
95
|
+
return NextResponse.json(err.body, { status: err.status })
|
|
96
|
+
}
|
|
97
|
+
logger.error('push_notifications.deliveries.GET failed', { err })
|
|
98
|
+
return NextResponse.json({ error: translate('push_notifications.errors.server_error', 'Something went wrong') }, { status: 500 })
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
const errorResponseSchema = z.object({ error: z.string() })
|
|
103
|
+
const detailResponseSchema = z.object({ item: deliveryDetailItemSchema })
|
|
104
|
+
|
|
105
|
+
export const openApi: OpenApiRouteDoc = {
|
|
106
|
+
tag: 'PushNotifications',
|
|
107
|
+
summary: 'Read a single push delivery log row',
|
|
108
|
+
pathParams: paramsSchema,
|
|
109
|
+
methods: {
|
|
110
|
+
GET: {
|
|
111
|
+
summary: 'Get a push delivery',
|
|
112
|
+
description: 'Admin: fetch a single push delivery row (payload + provider response; no full push token).',
|
|
113
|
+
responses: [{ status: 200, description: 'Push delivery', schema: detailResponseSchema }],
|
|
114
|
+
errors: [
|
|
115
|
+
{ status: 400, description: 'Invalid id', schema: errorResponseSchema },
|
|
116
|
+
{ status: 401, description: 'Unauthorized', schema: errorResponseSchema },
|
|
117
|
+
{ status: 403, description: 'Missing push_notifications.view_deliveries', schema: errorResponseSchema },
|
|
118
|
+
{ status: 404, description: 'Delivery not found', schema: errorResponseSchema },
|
|
119
|
+
],
|
|
120
|
+
},
|
|
121
|
+
},
|
|
122
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { makeCrudRoute } from '@open-mercato/shared/lib/crud/factory'
|
|
2
|
+
import type { OpenApiRouteDoc } from '@open-mercato/shared/lib/openapi'
|
|
3
|
+
import { E } from '#generated/entities.ids.generated'
|
|
4
|
+
import { PushNotificationDelivery } from '../../data/entities'
|
|
5
|
+
import {
|
|
6
|
+
deliveryListSchema,
|
|
7
|
+
deliveryListFields,
|
|
8
|
+
deliveryListSortFieldMap,
|
|
9
|
+
deliveryListItemSchema,
|
|
10
|
+
} from '../../data/validators'
|
|
11
|
+
import { createPushNotificationsCrudOpenApi, createPagedListResponseSchema } from '../openapi'
|
|
12
|
+
|
|
13
|
+
// Read-only push delivery log (admin observability). No writes: device/token lifecycle lives in the
|
|
14
|
+
// `devices` module; delivery rows are produced by the `push` strategy + send-push worker.
|
|
15
|
+
const routeMetadata = {
|
|
16
|
+
GET: { requireAuth: true, requireFeatures: ['push_notifications.view_deliveries'] },
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export const metadata = routeMetadata
|
|
20
|
+
|
|
21
|
+
const crud = makeCrudRoute({
|
|
22
|
+
metadata: routeMetadata,
|
|
23
|
+
orm: {
|
|
24
|
+
entity: PushNotificationDelivery,
|
|
25
|
+
idField: 'id',
|
|
26
|
+
// organization_id is nullable; the CRUD factory + query engine apply standard org scoping, exactly
|
|
27
|
+
// like devices and every other module. Unrestricted admins see every row in the tenant (including
|
|
28
|
+
// tenant-level NULL-org rows); org-restricted admins see only rows in an allowed org.
|
|
29
|
+
orgField: 'organizationId',
|
|
30
|
+
tenantField: 'tenantId',
|
|
31
|
+
},
|
|
32
|
+
indexer: { entityType: E.push_notifications.push_notification_delivery },
|
|
33
|
+
list: {
|
|
34
|
+
schema: deliveryListSchema,
|
|
35
|
+
entityId: E.push_notifications.push_notification_delivery,
|
|
36
|
+
fields: deliveryListFields,
|
|
37
|
+
sortFieldMap: deliveryListSortFieldMap,
|
|
38
|
+
buildFilters: async (query) => {
|
|
39
|
+
const filters: Record<string, unknown> = {}
|
|
40
|
+
if (query.status) filters.status = { $eq: query.status }
|
|
41
|
+
if (query.userId) filters.user_id = { $eq: query.userId }
|
|
42
|
+
const createdAt: Record<string, unknown> = {}
|
|
43
|
+
if (query.from) createdAt.$gte = query.from
|
|
44
|
+
if (query.to) createdAt.$lte = query.to
|
|
45
|
+
if (Object.keys(createdAt).length > 0) filters.created_at = createdAt
|
|
46
|
+
return filters
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
})
|
|
50
|
+
|
|
51
|
+
export const GET = crud.GET
|
|
52
|
+
|
|
53
|
+
export const openApi: OpenApiRouteDoc = createPushNotificationsCrudOpenApi({
|
|
54
|
+
resourceName: 'Push delivery',
|
|
55
|
+
pluralName: 'Push deliveries',
|
|
56
|
+
querySchema: deliveryListSchema,
|
|
57
|
+
listResponseSchema: createPagedListResponseSchema(deliveryListItemSchema),
|
|
58
|
+
})
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type ZodTypeAny } from 'zod'
|
|
2
|
+
import type { OpenApiRouteDoc } from '@open-mercato/shared/lib/openapi'
|
|
3
|
+
import {
|
|
4
|
+
createCrudOpenApiFactory,
|
|
5
|
+
createPagedListResponseSchema as createSharedPagedListResponseSchema,
|
|
6
|
+
type CrudOpenApiOptions,
|
|
7
|
+
} from '@open-mercato/shared/lib/openapi/crud'
|
|
8
|
+
|
|
9
|
+
export function createPagedListResponseSchema(itemSchema: ZodTypeAny) {
|
|
10
|
+
return createSharedPagedListResponseSchema(itemSchema, { paginationMetaOptional: true })
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
// Read-only delivery log: only the list operation is documented, so the factory's shared
|
|
14
|
+
// create/ok response-schema fallbacks are left untouched (no need to pass or re-export them).
|
|
15
|
+
const buildPushNotificationsCrudOpenApi = createCrudOpenApiFactory({
|
|
16
|
+
defaultTag: 'PushNotifications',
|
|
17
|
+
makeListDescription: ({ pluralLower }) => `Returns the tenant's push ${pluralLower} (admin observability).`,
|
|
18
|
+
})
|
|
19
|
+
|
|
20
|
+
export function createPushNotificationsCrudOpenApi(options: CrudOpenApiOptions): OpenApiRouteDoc {
|
|
21
|
+
return buildPushNotificationsCrudOpenApi(options)
|
|
22
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export const metadata = {
|
|
2
|
+
requireAuth: true,
|
|
3
|
+
requireFeatures: ['push_notifications.view_deliveries'],
|
|
4
|
+
pageTitle: 'Push Delivery',
|
|
5
|
+
pageTitleKey: 'push_notifications.deliveries.detail.pageTitle',
|
|
6
|
+
pageContext: 'settings' as const,
|
|
7
|
+
navHidden: true,
|
|
8
|
+
breadcrumb: [{ label: 'Push Deliveries', labelKey: 'push_notifications.deliveries.pageTitle', href: '/backend/push_notifications' }],
|
|
9
|
+
} as const
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
import * as React from 'react'
|
|
3
|
+
import { Page, PageBody } from '@open-mercato/ui/backend/Page'
|
|
4
|
+
import { LoadingMessage, ErrorMessage, RecordNotFoundState } from '@open-mercato/ui/backend/detail'
|
|
5
|
+
import { FormHeader } from '@open-mercato/ui/backend/forms'
|
|
6
|
+
import { JsonDisplay } from '@open-mercato/ui/backend/JsonDisplay'
|
|
7
|
+
import { StatusBadge, type StatusMap } from '@open-mercato/ui/primitives/status-badge'
|
|
8
|
+
import { apiCall } from '@open-mercato/ui/backend/utils/apiCall'
|
|
9
|
+
import { useT } from '@open-mercato/shared/lib/i18n/context'
|
|
10
|
+
|
|
11
|
+
type PushDeliveryStatus = 'pending' | 'sending' | 'sent' | 'failed' | 'skipped' | 'expired'
|
|
12
|
+
|
|
13
|
+
type DeliveryDetail = {
|
|
14
|
+
id: string
|
|
15
|
+
notification_id: string | null
|
|
16
|
+
notification_type_id: string
|
|
17
|
+
user_device_id: string
|
|
18
|
+
user_id: string
|
|
19
|
+
provider: string
|
|
20
|
+
token_snapshot: string
|
|
21
|
+
status: PushDeliveryStatus
|
|
22
|
+
attempts: number
|
|
23
|
+
last_error: string | null
|
|
24
|
+
payload: Record<string, unknown> | null
|
|
25
|
+
provider_response: Record<string, unknown> | null
|
|
26
|
+
created_at: string | null
|
|
27
|
+
sent_at: string | null
|
|
28
|
+
next_retry_at: string | null
|
|
29
|
+
updated_at: string | null
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
const statusVariant: StatusMap<PushDeliveryStatus> = {
|
|
33
|
+
pending: 'info',
|
|
34
|
+
sending: 'info',
|
|
35
|
+
sent: 'success',
|
|
36
|
+
failed: 'error',
|
|
37
|
+
skipped: 'neutral',
|
|
38
|
+
expired: 'warning',
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function DetailRow({ label, children }: { label: string; children: React.ReactNode }) {
|
|
42
|
+
return (
|
|
43
|
+
<div>
|
|
44
|
+
<dt className="text-sm font-medium text-muted-foreground">{label}</dt>
|
|
45
|
+
<dd className="mt-1 text-sm text-foreground">{children}</dd>
|
|
46
|
+
</div>
|
|
47
|
+
)
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export default function PushDeliveryDetailPage({ params }: { params?: { id?: string } }) {
|
|
51
|
+
const id = typeof params?.id === 'string' ? params.id : ''
|
|
52
|
+
const t = useT()
|
|
53
|
+
const [item, setItem] = React.useState<DeliveryDetail | null>(null)
|
|
54
|
+
const [isLoading, setIsLoading] = React.useState(true)
|
|
55
|
+
const [error, setError] = React.useState<string | null>(null)
|
|
56
|
+
const [notFound, setNotFound] = React.useState(false)
|
|
57
|
+
|
|
58
|
+
React.useEffect(() => {
|
|
59
|
+
let cancelled = false
|
|
60
|
+
async function load() {
|
|
61
|
+
setIsLoading(true)
|
|
62
|
+
setError(null)
|
|
63
|
+
setNotFound(false)
|
|
64
|
+
const call = await apiCall<{ item?: DeliveryDetail; error?: string }>(
|
|
65
|
+
`/api/push_notifications/deliveries/${encodeURIComponent(id)}`,
|
|
66
|
+
undefined,
|
|
67
|
+
{ fallback: null },
|
|
68
|
+
).catch(() => null)
|
|
69
|
+
if (cancelled) return
|
|
70
|
+
if (!call || !call.ok) {
|
|
71
|
+
if (call?.status === 404) setNotFound(true)
|
|
72
|
+
else setError((call?.result as { error?: string } | undefined)?.error ?? t('push_notifications.deliveries.error.loadFailed'))
|
|
73
|
+
setIsLoading(false)
|
|
74
|
+
return
|
|
75
|
+
}
|
|
76
|
+
setItem(call.result?.item ?? null)
|
|
77
|
+
setNotFound(!call.result?.item)
|
|
78
|
+
setIsLoading(false)
|
|
79
|
+
}
|
|
80
|
+
if (id) load()
|
|
81
|
+
return () => { cancelled = true }
|
|
82
|
+
}, [id, t])
|
|
83
|
+
|
|
84
|
+
return (
|
|
85
|
+
<Page>
|
|
86
|
+
<PageBody>
|
|
87
|
+
{isLoading ? (
|
|
88
|
+
<LoadingMessage label={t('push_notifications.deliveries.detail.loading')} />
|
|
89
|
+
) : notFound ? (
|
|
90
|
+
<RecordNotFoundState
|
|
91
|
+
label={t('push_notifications.errors.not_found')}
|
|
92
|
+
backHref="/backend/push_notifications"
|
|
93
|
+
backLabel={t('push_notifications.deliveries.title')}
|
|
94
|
+
/>
|
|
95
|
+
) : error ? (
|
|
96
|
+
<ErrorMessage label={error} />
|
|
97
|
+
) : item ? (
|
|
98
|
+
<div className="flex flex-col gap-6">
|
|
99
|
+
<FormHeader
|
|
100
|
+
mode="detail"
|
|
101
|
+
backHref="/backend/push_notifications"
|
|
102
|
+
backLabel={t('push_notifications.deliveries.title')}
|
|
103
|
+
entityTypeLabel={t('push_notifications.deliveries.detail.pageTitle')}
|
|
104
|
+
title={item.notification_type_id}
|
|
105
|
+
statusBadge={(
|
|
106
|
+
<StatusBadge variant={statusVariant[item.status] ?? 'neutral'} dot>
|
|
107
|
+
{t(`push_notifications.deliveries.status.${item.status}`)}
|
|
108
|
+
</StatusBadge>
|
|
109
|
+
)}
|
|
110
|
+
/>
|
|
111
|
+
<section className="rounded-lg border bg-card p-6">
|
|
112
|
+
<dl className="grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3">
|
|
113
|
+
<DetailRow label={t('push_notifications.deliveries.columns.type')}>{item.notification_type_id}</DetailRow>
|
|
114
|
+
<DetailRow label={t('push_notifications.deliveries.columns.provider')}>{item.provider}</DetailRow>
|
|
115
|
+
<DetailRow label={t('push_notifications.deliveries.columns.attempts')}>{item.attempts}</DetailRow>
|
|
116
|
+
<DetailRow label={t('push_notifications.deliveries.columns.user')}>
|
|
117
|
+
<code className="font-mono text-xs break-all">{item.user_id}</code>
|
|
118
|
+
</DetailRow>
|
|
119
|
+
<DetailRow label={t('push_notifications.deliveries.detail.device')}>
|
|
120
|
+
<code className="font-mono text-xs break-all">{item.user_device_id}</code>
|
|
121
|
+
</DetailRow>
|
|
122
|
+
<DetailRow label={t('push_notifications.deliveries.detail.tokenSnapshot')}>
|
|
123
|
+
<code className="font-mono text-xs">…{item.token_snapshot}</code>
|
|
124
|
+
</DetailRow>
|
|
125
|
+
<DetailRow label={t('push_notifications.deliveries.columns.created')}>
|
|
126
|
+
{item.created_at ? new Date(item.created_at).toLocaleString() : '—'}
|
|
127
|
+
</DetailRow>
|
|
128
|
+
<DetailRow label={t('push_notifications.deliveries.columns.sent')}>
|
|
129
|
+
{item.sent_at ? new Date(item.sent_at).toLocaleString() : '—'}
|
|
130
|
+
</DetailRow>
|
|
131
|
+
<DetailRow label={t('push_notifications.deliveries.detail.nextRetry')}>
|
|
132
|
+
{item.next_retry_at ? new Date(item.next_retry_at).toLocaleString() : '—'}
|
|
133
|
+
</DetailRow>
|
|
134
|
+
</dl>
|
|
135
|
+
</section>
|
|
136
|
+
{item.last_error ? (
|
|
137
|
+
<section className="rounded-lg border border-status-error-border bg-status-error-bg p-6">
|
|
138
|
+
<h2 className="mb-2 text-sm font-medium text-status-error-text">{t('push_notifications.deliveries.detail.lastError')}</h2>
|
|
139
|
+
<pre className="overflow-x-auto whitespace-pre-wrap text-xs text-status-error-text">{item.last_error}</pre>
|
|
140
|
+
</section>
|
|
141
|
+
) : null}
|
|
142
|
+
<JsonDisplay data={item.payload ?? {}} title={t('push_notifications.deliveries.detail.payload')} />
|
|
143
|
+
<JsonDisplay data={item.provider_response ?? {}} title={t('push_notifications.deliveries.detail.providerResponse')} />
|
|
144
|
+
</div>
|
|
145
|
+
) : null}
|
|
146
|
+
</PageBody>
|
|
147
|
+
</Page>
|
|
148
|
+
)
|
|
149
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
const sendIcon = React.createElement(
|
|
4
|
+
'svg',
|
|
5
|
+
{ width: 16, height: 16, viewBox: '0 0 24 24', fill: 'none', stroke: 'currentColor', strokeWidth: 2, strokeLinecap: 'round', strokeLinejoin: 'round' },
|
|
6
|
+
React.createElement('line', { x1: 22, y1: 2, x2: 11, y2: 13 }),
|
|
7
|
+
React.createElement('polygon', { points: '22 2 15 22 11 13 2 9 22 2' }),
|
|
8
|
+
)
|
|
9
|
+
|
|
10
|
+
export const metadata = {
|
|
11
|
+
requireAuth: true,
|
|
12
|
+
requireFeatures: ['push_notifications.view_deliveries'],
|
|
13
|
+
pageTitle: 'Push Deliveries',
|
|
14
|
+
pageTitleKey: 'push_notifications.deliveries.pageTitle',
|
|
15
|
+
pageGroup: 'External systems',
|
|
16
|
+
pageGroupKey: 'backend.nav.externalSystems',
|
|
17
|
+
pageOrder: 54,
|
|
18
|
+
icon: sendIcon,
|
|
19
|
+
pageContext: 'settings' as const,
|
|
20
|
+
breadcrumb: [{ label: 'Push Deliveries', labelKey: 'push_notifications.deliveries.pageTitle' }],
|
|
21
|
+
} as const
|