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.
@@ -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 (workflowCode, itemId) {
8775
- return this.defaultGet(this.serviceUri + "/GetAllHistory/" + workflowCode + "/" + itemId);
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, workflowCode) {
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(workflowCode, itemId)];
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) {