ntk-cms-api 18.3.454 → 18.3.456
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 +12 -1
- package/fesm2015/ntk-cms-api.mjs +11 -0
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +11 -0
- 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 -0
- package/package.json +1 -1
package/fesm2020/ntk-cms-api.mjs
CHANGED
|
@@ -3722,6 +3722,17 @@ class CoreTokenNotificationService extends ApiCmsServerBase {
|
|
|
3722
3722
|
return this.errorExceptionResultCheck(ret);
|
|
3723
3723
|
}));
|
|
3724
3724
|
}
|
|
3725
|
+
ServiceGetAllOnline() {
|
|
3726
|
+
return this.http
|
|
3727
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/SendNotification', {
|
|
3728
|
+
headers: this.getHeaders(),
|
|
3729
|
+
})
|
|
3730
|
+
.pipe(retry(this.configApiRetry),
|
|
3731
|
+
// catchError(this.handleError)
|
|
3732
|
+
map((ret) => {
|
|
3733
|
+
return this.errorExceptionResultCheck(ret);
|
|
3734
|
+
}));
|
|
3735
|
+
}
|
|
3725
3736
|
}
|
|
3726
3737
|
CoreTokenNotificationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CoreTokenNotificationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
3727
3738
|
CoreTokenNotificationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CoreTokenNotificationService });
|