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.
@@ -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 });