@hpcc-js/comms 2.84.5 → 2.85.0

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/dist/index.js CHANGED
@@ -647,8 +647,8 @@
647
647
  }
648
648
 
649
649
  var PKG_NAME = "@hpcc-js/comms";
650
- var PKG_VERSION = "2.84.5";
651
- var BUILD_VERSION = "2.104.31";
650
+ var PKG_VERSION = "2.85.0";
651
+ var BUILD_VERSION = "2.104.33";
652
652
 
653
653
  /******************************************************************************
654
654
  Copyright (c) Microsoft Corporation.
@@ -6347,11 +6347,11 @@
6347
6347
  });
6348
6348
  });
6349
6349
  };
6350
- Workunit.prototype.refreshInfo = function () {
6350
+ Workunit.prototype.refreshInfo = function (request) {
6351
6351
  return __awaiter(this, void 0, void 0, function () {
6352
6352
  return __generator(this, function (_a) {
6353
6353
  switch (_a.label) {
6354
- case 0: return [4 /*yield*/, this.WUInfo()];
6354
+ case 0: return [4 /*yield*/, this.WUInfo(request)];
6355
6355
  case 1:
6356
6356
  _a.sent();
6357
6357
  return [2 /*return*/, this];
@@ -6371,14 +6371,14 @@
6371
6371
  });
6372
6372
  });
6373
6373
  };
6374
- Workunit.prototype.refresh = function (full) {
6374
+ Workunit.prototype.refresh = function (full, request) {
6375
6375
  if (full === void 0) { full = false; }
6376
6376
  return __awaiter(this, void 0, void 0, function () {
6377
6377
  return __generator(this, function (_a) {
6378
6378
  switch (_a.label) {
6379
6379
  case 0:
6380
6380
  if (!full) return [3 /*break*/, 2];
6381
- return [4 /*yield*/, Promise.all([this.refreshInfo(), this.refreshDebug()])];
6381
+ return [4 /*yield*/, Promise.all([this.refreshInfo(request), this.refreshDebug()])];
6382
6382
  case 1:
6383
6383
  _a.sent();
6384
6384
  return [3 /*break*/, 4];