@blackcode_sa/metaestetics-api 1.14.60 → 1.14.63

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.
@@ -111,6 +111,16 @@ export class NotificationsAdmin {
111
111
  notificationId: notification.id,
112
112
  notificationType: notification.notificationType,
113
113
  userId: notification.userId,
114
+ // Deep linking data
115
+ type: notification.appointmentId ? 'appointment' : 'system',
116
+ appointmentId: notification.appointmentId,
117
+ // Explicit deep link for navigation
118
+ deepLink: notification.appointmentId
119
+ ? {
120
+ screen: 'AppointmentDetail',
121
+ params: { appointmentId: notification.appointmentId },
122
+ }
123
+ : undefined,
114
124
  },
115
125
  }));
116
126
  }