ntk-cms-api 1.2.100 → 1.2.102
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 -2
- 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/estate/estatePropertyDetailValueModel.js +2 -2
- package/esm2015/lib/models/enums/base/enumExportFileType.js +2 -2
- package/esm2015/lib/service/base/apiCmsServerBase.service.js +13 -1
- package/fesm2015/ntk-cms-api.js +14 -2
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/entity/estate/estatePropertyDetailValueModel.d.ts +0 -2
- package/lib/models/enums/base/enumExportFileType.d.ts +1 -1
- package/lib/service/base/apiCmsServerBase.service.d.ts +2 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -587,7 +587,7 @@
|
|
|
587
587
|
EnumExportFileType[EnumExportFileType["None"] = 0] = "None";
|
|
588
588
|
EnumExportFileType[EnumExportFileType["Excel"] = 1] = "Excel";
|
|
589
589
|
EnumExportFileType[EnumExportFileType["PDF"] = 2] = "PDF";
|
|
590
|
-
EnumExportFileType[EnumExportFileType["
|
|
590
|
+
EnumExportFileType[EnumExportFileType["Json"] = 3] = "Json";
|
|
591
591
|
EnumExportFileType[EnumExportFileType["Report"] = 4] = "Report";
|
|
592
592
|
})(exports.EnumExportFileType || (exports.EnumExportFileType = {}));
|
|
593
593
|
|
|
@@ -1937,6 +1937,19 @@
|
|
|
1937
1937
|
return _this.errorExceptionResultCheck(ret);
|
|
1938
1938
|
}));
|
|
1939
1939
|
};
|
|
1940
|
+
ApiCmsServerBase.prototype.ServiceGetAllReportFile = function () {
|
|
1941
|
+
var _this = this;
|
|
1942
|
+
// this.loadingStatus=true;
|
|
1943
|
+
return this.http
|
|
1944
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllReportFile', {
|
|
1945
|
+
headers: this.getHeaders(),
|
|
1946
|
+
})
|
|
1947
|
+
.pipe(
|
|
1948
|
+
// catchError(this.handleError)
|
|
1949
|
+
operators.map(function (ret) {
|
|
1950
|
+
return _this.errorExceptionResultCheck(ret);
|
|
1951
|
+
}));
|
|
1952
|
+
};
|
|
1940
1953
|
ApiCmsServerBase.prototype.ServiceGetAll = function (model) {
|
|
1941
1954
|
var _this = this;
|
|
1942
1955
|
// this.loadingStatus=true;
|
|
@@ -12784,7 +12797,7 @@
|
|
|
12784
12797
|
return EstatePropertyDetailModel;
|
|
12785
12798
|
}());
|
|
12786
12799
|
|
|
12787
|
-
//@@tag-Version-
|
|
12800
|
+
//@@tag-Version-2212111
|
|
12788
12801
|
var EstatePropertyDetailValueModel = /** @class */ (function () {
|
|
12789
12802
|
function EstatePropertyDetailValueModel() {
|
|
12790
12803
|
}
|