ntk-cms-api 1.2.174 → 1.2.176

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