tnx-shared 5.1.594 → 5.1.595
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/tnx-shared.umd.js +4 -4
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/classes/base/list-base.d.ts +1 -1
- package/classes/base/list-base.d.ts.map +1 -1
- package/esm2015/classes/base/list-base.js +3 -3
- package/esm2015/services/base.service.js +3 -3
- package/fesm2015/tnx-shared.js +4 -4
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/services/base.service.d.ts +1 -1
- package/services/base.service.d.ts.map +1 -1
|
@@ -8771,8 +8771,8 @@
|
|
|
8771
8771
|
BaseService.prototype.getTreeDataBase = function () {
|
|
8772
8772
|
return this.defaultPost(this.serviceUri + "/GetTreeDataBase", {});
|
|
8773
8773
|
};
|
|
8774
|
-
BaseService.prototype.getAllHistory = function (
|
|
8775
|
-
return this.defaultGet(this.serviceUri + "/GetAllHistory/" +
|
|
8774
|
+
BaseService.prototype.getAllHistory = function (itemId) {
|
|
8775
|
+
return this.defaultGet(this.serviceUri + "/GetAllHistory/" + itemId);
|
|
8776
8776
|
};
|
|
8777
8777
|
return BaseService;
|
|
8778
8778
|
}());
|
|
@@ -26439,13 +26439,13 @@
|
|
|
26439
26439
|
});
|
|
26440
26440
|
});
|
|
26441
26441
|
};
|
|
26442
|
-
ListBase.prototype.getHistoryWFData = function (itemId
|
|
26442
|
+
ListBase.prototype.getHistoryWFData = function (itemId) {
|
|
26443
26443
|
var _a;
|
|
26444
26444
|
return __awaiter(this, void 0, void 0, function () {
|
|
26445
26445
|
var historyData;
|
|
26446
26446
|
return __generator(this, function (_b) {
|
|
26447
26447
|
switch (_b.label) {
|
|
26448
|
-
case 0: return [4 /*yield*/, this.setting.baseService.getAllHistory(
|
|
26448
|
+
case 0: return [4 /*yield*/, this.setting.baseService.getAllHistory(itemId)];
|
|
26449
26449
|
case 1:
|
|
26450
26450
|
historyData = _b.sent();
|
|
26451
26451
|
if (!historyData.success) {
|