intelica-library-components 1.1.83 → 1.1.84

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.
@@ -11202,6 +11202,10 @@ class NotificationOrchestratorService {
11202
11202
  const result = await firstValueFrom(this.notificationService.markAsRead(recipientId));
11203
11203
  return result;
11204
11204
  }
11205
+ async markAllAsRead() {
11206
+ const result = await firstValueFrom(this.notificationService.markAllAsRead());
11207
+ return result;
11208
+ }
11205
11209
  async markAsHidden(recipientId) {
11206
11210
  const result = await firstValueFrom(this.notificationService.markAsHidden(recipientId));
11207
11211
  return result;