ntk-cms-api 1.0.387 → 1.0.391

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.
@@ -2351,6 +2351,21 @@
2351
2351
  CoreModuleService.prototype.getModuleCotrolerUrl = function () {
2352
2352
  return 'CoreModule';
2353
2353
  };
2354
+ CoreModuleService.prototype.ServiceEditStep = function (model) {
2355
+ var _this = this;
2356
+ if (!model) {
2357
+ model = new EditStepDtoModel();
2358
+ }
2359
+ return this.http
2360
+ .put(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/EditStep', model, {
2361
+ headers: this.getHeaders(),
2362
+ })
2363
+ .pipe(operators.retry(this.configApiRetry),
2364
+ // catchError(this.handleError)
2365
+ operators.map(function (ret) {
2366
+ return _this.errorExceptionResultBaseCheck(ret);
2367
+ }));
2368
+ };
2354
2369
  CoreModuleService.prototype.ServiceAutoAdd = function () {
2355
2370
  var _this = this;
2356
2371
  return this.http