ntk-cms-api 1.2.104 → 1.2.106
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 +17 -4
- 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/service/base/apiCmsServerBase.service.js +18 -5
- package/esm2015/lib/service/base/iApiCmsServerBase.js +1 -1
- package/fesm2015/ntk-cms-api.js +16 -4
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/service/base/apiCmsServerBase.service.d.ts +5 -2
- package/lib/service/base/iApiCmsServerBase.d.ts +6 -1
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -1937,11 +1937,11 @@
|
|
|
1937
1937
|
return _this.errorExceptionResultCheck(ret);
|
|
1938
1938
|
}));
|
|
1939
1939
|
};
|
|
1940
|
-
ApiCmsServerBase.prototype.
|
|
1940
|
+
ApiCmsServerBase.prototype.ServicelReportFileGetAl = function () {
|
|
1941
1941
|
var _this = this;
|
|
1942
1942
|
// this.loadingStatus=true;
|
|
1943
1943
|
return this.http
|
|
1944
|
-
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/
|
|
1944
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/ReportFileGetAll', {
|
|
1945
1945
|
headers: this.getHeaders(),
|
|
1946
1946
|
})
|
|
1947
1947
|
.pipe(
|
|
@@ -2060,10 +2060,10 @@
|
|
|
2060
2060
|
var _this = this;
|
|
2061
2061
|
// this.loadingStatus=true;
|
|
2062
2062
|
if (model == null) {
|
|
2063
|
-
model = new
|
|
2063
|
+
model = new ExportFileModel();
|
|
2064
2064
|
}
|
|
2065
2065
|
return this.http
|
|
2066
|
-
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/ExportFile' + id, model, {
|
|
2066
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/ExportFile/' + id, model, {
|
|
2067
2067
|
headers: this.getHeaders(),
|
|
2068
2068
|
})
|
|
2069
2069
|
.pipe(operators.retry(this.configApiRetry),
|
|
@@ -2150,6 +2150,19 @@
|
|
|
2150
2150
|
return _this.errorExceptionResultCheck(ret);
|
|
2151
2151
|
}));
|
|
2152
2152
|
};
|
|
2153
|
+
ApiCmsServerBase.prototype.ServiceMemoGetAll = function (id) {
|
|
2154
|
+
var _this = this;
|
|
2155
|
+
// this.loadingStatus=true;
|
|
2156
|
+
return this.http
|
|
2157
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/MemoGetAll/' + id, {
|
|
2158
|
+
headers: this.getHeaders(),
|
|
2159
|
+
})
|
|
2160
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
2161
|
+
// catchError(this.handleError)
|
|
2162
|
+
operators.map(function (ret) {
|
|
2163
|
+
return _this.errorExceptionResultCheck(ret);
|
|
2164
|
+
}));
|
|
2165
|
+
};
|
|
2153
2166
|
return ApiCmsServerBase;
|
|
2154
2167
|
}(ApiServerBase));
|
|
2155
2168
|
ApiCmsServerBase.decorators = [
|