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.
- package/bundles/ntk-cms-api.umd.js +15 -0
- package/bundles/ntk-cms-api.umd.js.map +1 -1
- package/bundles/ntk-cms-api.umd.min.js +1 -1
- package/bundles/ntk-cms-api.umd.min.js.map +1 -1
- package/esm2015/lib/models/entity/application/applicationAppModel.js +1 -1
- package/esm2015/lib/models/entity/core-main/coreModuleModel.js +1 -1
- package/esm2015/lib/models/entity/core-main/coreSiteModel.js +1 -1
- package/esm2015/lib/service/core-main/coreModule.service.js +16 -1
- package/fesm2015/ntk-cms-api.js +14 -0
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/entity/application/applicationAppModel.d.ts +1 -0
- package/lib/models/entity/core-main/coreModuleModel.d.ts +1 -0
- package/lib/models/entity/core-main/coreSiteModel.d.ts +4 -0
- package/lib/service/core-main/coreModule.service.d.ts +3 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -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
|