ntk-cms-api 1.2.174 → 1.2.175
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-module-main/coreModuleSiteCredit.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-module-main/coreModuleSiteCredit.service.d.ts +1 -0
- package/package.json +1 -1
package/fesm2020/ntk-cms-api.mjs
CHANGED
|
@@ -3902,6 +3902,17 @@ class CoreModuleSiteCreditService extends ApiCmsServerBase {
|
|
|
3902
3902
|
return this.errorExceptionResultCheck(ret);
|
|
3903
3903
|
}));
|
|
3904
3904
|
}
|
|
3905
|
+
ServiceGetAllCredit() {
|
|
3906
|
+
return this.http
|
|
3907
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllCredit/', {
|
|
3908
|
+
headers: this.getHeaders(),
|
|
3909
|
+
})
|
|
3910
|
+
.pipe(retry(this.configApiRetry),
|
|
3911
|
+
// catchError(this.handleError)
|
|
3912
|
+
map((ret) => {
|
|
3913
|
+
return this.errorExceptionResultCheck(ret);
|
|
3914
|
+
}));
|
|
3915
|
+
}
|
|
3905
3916
|
ServiceChargeDirect(model) {
|
|
3906
3917
|
if (!model) {
|
|
3907
3918
|
model = new CoreModuleSiteCreditChargeDirectDtoModel();
|