@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.es6.js +4 -4
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.node.js +4 -4
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.min.js +1 -1
- package/dist/index.node.min.js.map +1 -1
- package/lib-es6/__package__.js +2 -2
- package/lib-es6/services/wsWorkunits.js +2 -2
- package/lib-es6/services/wsWorkunits.js.map +1 -1
- package/package.json +2 -2
- package/src/__package__.ts +2 -2
- package/src/services/wsWorkunits.ts +2 -2
- package/types/__package__.d.ts +2 -2
- package/types/services/wsWorkunits.d.ts +1 -1
- package/types/services/wsWorkunits.d.ts.map +1 -1
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/services/wsWorkunits.d.ts +1 -1
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.
|
|
652
|
-
var BUILD_VERSION = "2.106.
|
|
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
|
|
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
|
};
|