ntk-cms-api 1.0.445 → 1.0.448
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 +24 -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/core-main/coreSiteDomainAliasModel.js +1 -1
- package/esm2015/lib/models/entity/core-main/coreSiteModel.js +1 -1
- package/esm2015/lib/models/entity/core-token/tokenInfoModel.js +1 -1
- package/esm2015/lib/service/web-designer/webDesignerMainPage.service.js +12 -1
- package/esm2015/lib/service/web-designer/webDesignerMainPageDependency.service.js +12 -1
- package/fesm2015/ntk-cms-api.js +22 -0
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/entity/core-main/coreSiteDomainAliasModel.d.ts +1 -0
- package/lib/models/entity/core-main/coreSiteModel.d.ts +1 -0
- package/lib/models/entity/core-token/tokenInfoModel.d.ts +1 -0
- package/lib/service/web-designer/webDesignerMainPage.service.d.ts +1 -0
- package/lib/service/web-designer/webDesignerMainPageDependency.service.d.ts +2 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -12004,6 +12004,18 @@
|
|
|
12004
12004
|
return _this.errorExceptionResultBaseCheck(ret);
|
|
12005
12005
|
}));
|
|
12006
12006
|
};
|
|
12007
|
+
WebDesignerMainPageService.prototype.ServiceWebRoute = function (id) {
|
|
12008
|
+
var _this = this;
|
|
12009
|
+
return this.http
|
|
12010
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/WebRoute/' + id, {
|
|
12011
|
+
headers: this.getHeaders(),
|
|
12012
|
+
})
|
|
12013
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
12014
|
+
// catchError(this.handleError)
|
|
12015
|
+
operators.map(function (ret) {
|
|
12016
|
+
return _this.errorExceptionResultCheck(ret);
|
|
12017
|
+
}));
|
|
12018
|
+
};
|
|
12007
12019
|
WebDesignerMainPageService.prototype.ServiceGetAllDefaultPagesBySiteCategory = function (model) {
|
|
12008
12020
|
var _this = this;
|
|
12009
12021
|
if (model == null) {
|
|
@@ -12072,6 +12084,18 @@
|
|
|
12072
12084
|
return _this.errorExceptionResultBaseCheck(ret);
|
|
12073
12085
|
}));
|
|
12074
12086
|
};
|
|
12087
|
+
WebDesignerMainPageDependencyService.prototype.ServiceWebRoute = function (id) {
|
|
12088
|
+
var _this = this;
|
|
12089
|
+
return this.http
|
|
12090
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/WebRoute/' + id, {
|
|
12091
|
+
headers: this.getHeaders(),
|
|
12092
|
+
})
|
|
12093
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
12094
|
+
// catchError(this.handleError)
|
|
12095
|
+
operators.map(function (ret) {
|
|
12096
|
+
return _this.errorExceptionResultCheck(ret);
|
|
12097
|
+
}));
|
|
12098
|
+
};
|
|
12075
12099
|
return WebDesignerMainPageDependencyService;
|
|
12076
12100
|
}(ApiCmsServerBase));
|
|
12077
12101
|
WebDesignerMainPageDependencyService.decorators = [
|