ntk-cms-api 1.0.442 → 1.0.445
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 +13 -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/coreSiteModel.js +1 -1
- package/esm2015/lib/models/entity/core-module-log/coreModuleLogReportAbuseModel.js +1 -1
- package/esm2015/lib/service/article/articleContentSimilar.service.js +1 -1
- package/esm2015/lib/service/article/articleContentTag.service.js +1 -1
- package/esm2015/lib/service/base/apiCmsServerBase.service.js +13 -1
- package/esm2015/lib/service/biography/biographyContentSimilar.service.js +1 -1
- package/esm2015/lib/service/biography/biographyContentTag.service.js +1 -1
- package/esm2015/lib/service/blog/blogContentSimilar.service.js +1 -1
- package/esm2015/lib/service/blog/blogContentTag.service.js +1 -1
- package/esm2015/lib/service/chart/chartContentSimilar.service.js +1 -1
- package/esm2015/lib/service/chart/chartContentTag.service.js +1 -1
- package/esm2015/lib/service/news/newsContentSimilar.service.js +1 -1
- package/esm2015/lib/service/news/newsContentTag.service.js +1 -1
- package/fesm2015/ntk-cms-api.js +12 -0
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/entity/core-main/coreSiteModel.d.ts +3 -0
- package/lib/models/entity/core-module-log/coreModuleLogReportAbuseModel.d.ts +1 -0
- package/lib/service/article/articleContentSimilar.service.d.ts +2 -1
- package/lib/service/article/articleContentTag.service.d.ts +2 -1
- package/lib/service/base/apiCmsServerBase.service.d.ts +5 -3
- package/lib/service/biography/biographyContentSimilar.service.d.ts +2 -1
- package/lib/service/biography/biographyContentTag.service.d.ts +2 -1
- package/lib/service/blog/blogContentSimilar.service.d.ts +2 -1
- package/lib/service/blog/blogContentTag.service.d.ts +2 -1
- package/lib/service/chart/chartContentSimilar.service.d.ts +2 -1
- package/lib/service/chart/chartContentTag.service.d.ts +2 -1
- package/lib/service/news/newsContentSimilar.service.d.ts +2 -1
- package/lib/service/news/newsContentTag.service.d.ts +2 -1
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -1862,6 +1862,19 @@
|
|
|
1862
1862
|
return _this.errorExceptionResultBaseCheck(ret);
|
|
1863
1863
|
}));
|
|
1864
1864
|
};
|
|
1865
|
+
ApiCmsServerBase.prototype.ServiceSetStatus = function (id, recordStatus) {
|
|
1866
|
+
var _this = this;
|
|
1867
|
+
// this.loadingStatus=true;
|
|
1868
|
+
return this.http
|
|
1869
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/SetStatus/' + id + "/" + recordStatus, {
|
|
1870
|
+
headers: this.getHeaders(),
|
|
1871
|
+
})
|
|
1872
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
1873
|
+
// catchError(this.handleError)
|
|
1874
|
+
operators.map(function (ret) {
|
|
1875
|
+
return _this.errorExceptionResultCheck(ret);
|
|
1876
|
+
}));
|
|
1877
|
+
};
|
|
1865
1878
|
ApiCmsServerBase.prototype.ServiceGetExist = function (model) {
|
|
1866
1879
|
var _this = this;
|
|
1867
1880
|
// this.loadingStatus=true;
|