ntk-cms-api 1.2.245 → 1.2.246

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.
@@ -2327,6 +2327,28 @@ class CoreEnumService extends ApiServerBase {
2327
2327
  return this.errorExceptionResultCheck(ret);
2328
2328
  }));
2329
2329
  }
2330
+ ServiceSendNotificationStatusTypeEnum() {
2331
+ return this.http
2332
+ .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/SendNotificationStatusTypeEnum', {
2333
+ headers: this.getHeaders(),
2334
+ })
2335
+ .pipe(
2336
+ // catchError(this.handleError)
2337
+ map((ret) => {
2338
+ return this.errorExceptionResultCheck(ret);
2339
+ }));
2340
+ }
2341
+ ServiceReceiverNotificationStatusTypeEnum() {
2342
+ return this.http
2343
+ .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/ReceiverNotificationStatusTypeEnum', {
2344
+ headers: this.getHeaders(),
2345
+ })
2346
+ .pipe(
2347
+ // catchError(this.handleError)
2348
+ map((ret) => {
2349
+ return this.errorExceptionResultCheck(ret);
2350
+ }));
2351
+ }
2330
2352
  ServiceCmsModuleSaleItemTypeEnum() {
2331
2353
  return this.http
2332
2354
  .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/CmsModuleSaleItemTypeEnum', {