ntk-cms-api 20.25.20 → 20.25.21

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.
@@ -7740,7 +7740,10 @@ class SmsMainApiPathService extends ApiCmsServerBase {
7740
7740
  }
7741
7741
  ServiceGetOneWithJsonFormatter(id) {
7742
7742
  return this.http
7743
- .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetOneWithJsonFormatter/' + id, {
7743
+ .get(this.getBaseUrl() +
7744
+ this.getModuleControllerUrl() +
7745
+ '/GetOneWithJsonFormatter/' +
7746
+ id, {
7744
7747
  headers: this.getHeaders(),
7745
7748
  })
7746
7749
  .pipe(retry(this.configApiRetry), map((ret) => {
@@ -7767,13 +7770,28 @@ class SmsMainApiPathService extends ApiCmsServerBase {
7767
7770
  }
7768
7771
  ServiceGetReceiveInboxManually(id) {
7769
7772
  return this.http
7770
- .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetReceiveInboxManually/' + id, {
7773
+ .get(this.getBaseUrl() +
7774
+ this.getModuleControllerUrl() +
7775
+ '/GetReceiveInboxManually/' +
7776
+ id, {
7771
7777
  headers: this.getHeaders(),
7772
7778
  })
7773
7779
  .pipe(retry(this.configApiRetry), map((ret) => {
7774
7780
  return this.errorExceptionResultCheck(ret);
7775
7781
  }));
7776
7782
  }
7783
+ ServiceEditStep(model) {
7784
+ if (!model) {
7785
+ model = new EditStepDtoModel();
7786
+ }
7787
+ return this.http
7788
+ .put(this.getBaseUrl() + this.getModuleControllerUrl() + '/EditStep', model, {
7789
+ headers: this.getHeaders(),
7790
+ })
7791
+ .pipe(retry(this.configApiRetry), map((ret) => {
7792
+ return this.errorExceptionResultBaseCheck(ret);
7793
+ }));
7794
+ }
7777
7795
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsMainApiPathService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
7778
7796
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsMainApiPathService }); }
7779
7797
  }
@@ -7903,6 +7921,18 @@ class SmsMainApiNumberService extends ApiCmsServerBase {
7903
7921
  getModuleControllerUrl() {
7904
7922
  return 'SmsMainApiNumber';
7905
7923
  }
7924
+ ServiceEditStep(model) {
7925
+ if (!model) {
7926
+ model = new EditStepDtoModel();
7927
+ }
7928
+ return this.http
7929
+ .put(this.getBaseUrl() + this.getModuleControllerUrl() + '/EditStep', model, {
7930
+ headers: this.getHeaders(),
7931
+ })
7932
+ .pipe(retry(this.configApiRetry), map((ret) => {
7933
+ return this.errorExceptionResultBaseCheck(ret);
7934
+ }));
7935
+ }
7906
7936
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsMainApiNumberService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
7907
7937
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsMainApiNumberService }); }
7908
7938
  }