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.
- package/bundles/tnx-shared.umd.js +7 -0
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/esm2015/services/notification.service.js +8 -1
- package/fesm2015/tnx-shared.js +7 -0
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/services/notification.service.d.ts +2 -0
- package/services/notification.service.d.ts.map +1 -1
- package/tnx-shared.metadata.json +1 -1
|
@@ -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" });
|