@hpcc-js/comms 2.95.1 → 2.96.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
@@ -648,8 +648,8 @@
648
648
  }
649
649
 
650
650
  var PKG_NAME = "@hpcc-js/comms";
651
- var PKG_VERSION = "2.95.1";
652
- var BUILD_VERSION = "2.106.8";
651
+ var PKG_VERSION = "2.96.0";
652
+ var BUILD_VERSION = "2.106.9";
653
653
 
654
654
  /******************************************************************************
655
655
  Copyright (c) Microsoft Corporation.
@@ -3341,9 +3341,9 @@
3341
3341
  return { result: false, error: e };
3342
3342
  });
3343
3343
  };
3344
- WorkunitsService.prototype.WUQuery = function (request) {
3344
+ WorkunitsService.prototype.WUQuery = function (request, abortSignal) {
3345
3345
  if (request === void 0) { request = {}; }
3346
- return _super.prototype.WUQuery.call(this, request).then(function (response) {
3346
+ return this._connection.send("WUQuery", request, "json", false, abortSignal).then(function (response) {
3347
3347
  return util.deepMixin({ Workunits: { ECLWorkunit: [] } }, response);
3348
3348
  });
3349
3349
  };