ntk-cms-api 18.3.455 → 18.3.457
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/esm2020/lib/models/dto/core-main/cmsNotificationModel.mjs +1 -1
- package/esm2020/lib/models/entity/core-log/coreLogNotificationModel.mjs +1 -1
- package/esm2020/lib/service/core-token/coreTokenNotification.service.mjs +7 -3
- package/fesm2015/ntk-cms-api.mjs +5 -2
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +5 -2
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/models/dto/core-main/cmsNotificationModel.d.ts +2 -1
- package/lib/models/entity/core-log/coreLogNotificationModel.d.ts +2 -1
- package/lib/service/core-token/coreTokenNotification.service.d.ts +1 -1
- package/package.json +1 -1
package/fesm2020/ntk-cms-api.mjs
CHANGED
|
@@ -3722,9 +3722,12 @@ class CoreTokenNotificationService extends ApiCmsServerBase {
|
|
|
3722
3722
|
return this.errorExceptionResultCheck(ret);
|
|
3723
3723
|
}));
|
|
3724
3724
|
}
|
|
3725
|
-
ServiceGetAllOnline() {
|
|
3725
|
+
ServiceGetAllOnline(model) {
|
|
3726
|
+
if (!model) {
|
|
3727
|
+
model = new FilterModel();
|
|
3728
|
+
}
|
|
3726
3729
|
return this.http
|
|
3727
|
-
.
|
|
3730
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/SendNotification', model, {
|
|
3728
3731
|
headers: this.getHeaders(),
|
|
3729
3732
|
})
|
|
3730
3733
|
.pipe(retry(this.configApiRetry),
|