ntk-cms-api 18.3.437 → 18.3.439
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/service/core-main/coreEnum.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/service/core-main/coreEnum.service.d.ts +1 -0
- package/package.json +1 -1
package/fesm2020/ntk-cms-api.mjs
CHANGED
|
@@ -2198,6 +2198,17 @@ class CoreEnumService extends ApiServerBase {
|
|
|
2198
2198
|
return this.errorExceptionResultCheck(ret);
|
|
2199
2199
|
}));
|
|
2200
2200
|
}
|
|
2201
|
+
ServiceSendEmailStatusTypeEnum() {
|
|
2202
|
+
return this.http
|
|
2203
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/SendEmailStatusTypeEnum', {
|
|
2204
|
+
headers: this.getHeaders(),
|
|
2205
|
+
})
|
|
2206
|
+
.pipe(
|
|
2207
|
+
// catchError(this.handleError)
|
|
2208
|
+
map((ret) => {
|
|
2209
|
+
return this.errorExceptionResultCheck(ret);
|
|
2210
|
+
}));
|
|
2211
|
+
}
|
|
2201
2212
|
ServiceSendNotificationStatusTypeEnum() {
|
|
2202
2213
|
return this.http
|
|
2203
2214
|
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/SendNotificationStatusTypeEnum', {
|