tnx-shared 5.3.347 → 5.3.348

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.
@@ -42174,6 +42174,13 @@
42174
42174
  var url = this.serviceUri + "/MarkUnReadByFilter";
42175
42175
  return this.defaultPost(url, filter);
42176
42176
  };
42177
+ NotificationService.prototype.removeNotificationByFilter = function (filter) {
42178
+ var url = this.serviceUri + "/RemoveNotificationByFilter";
42179
+ return this.defaultPost(url, filter);
42180
+ };
42181
+ NotificationService.prototype.removeNotificationById = function (id) {
42182
+ return this.defaultPost(this.serviceUri + "/RemoveNotificationById/" + id, {});
42183
+ };
42177
42184
  return NotificationService;
42178
42185
  }(BaseService));
42179
42186
  NotificationService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function NotificationService_Factory() { return new NotificationService(i0__namespace.ɵɵinject(i1__namespace$1.HttpClient), i0__namespace.ɵɵinject(i0__namespace.INJECTOR), i0__namespace.ɵɵinject(ModuleConfigService)); }, token: NotificationService, providedIn: "root" });