@hpcc-js/comms 2.79.2 → 2.79.4
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 -7
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +4 -7
- 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 -7
- 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/lib-es6/services/wsdl/WsWorkunits/v1.95/WsWorkunits.js +351 -0
- package/lib-es6/services/wsdl/WsWorkunits/v1.95/WsWorkunits.js.map +1 -0
- package/package.json +5 -5
- package/src/__package__.ts +2 -2
- package/src/services/wsWorkunits.ts +6 -4
- package/src/services/wsdl/WsWorkunits/v1.95/WsWorkunits.ts +3027 -0
- package/types/__package__.d.ts +2 -2
- package/types/services/wsWorkunits.d.ts +5 -3
- package/types/services/wsWorkunits.d.ts.map +1 -1
- package/types/services/wsdl/WsWorkunits/v1.95/WsWorkunits.d.ts +2483 -0
- package/types/services/wsdl/WsWorkunits/v1.95/WsWorkunits.d.ts.map +1 -0
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/services/wsWorkunits.d.ts +5 -3
- package/types-3.4/services/wsdl/WsWorkunits/v1.95/WsWorkunits.d.ts +2483 -0
package/dist/index.js
CHANGED
|
@@ -611,8 +611,8 @@
|
|
|
611
611
|
}
|
|
612
612
|
|
|
613
613
|
var PKG_NAME = "@hpcc-js/comms";
|
|
614
|
-
var PKG_VERSION = "2.79.
|
|
615
|
-
var BUILD_VERSION = "2.104.
|
|
614
|
+
var PKG_VERSION = "2.79.4";
|
|
615
|
+
var BUILD_VERSION = "2.104.8";
|
|
616
616
|
|
|
617
617
|
/******************************************************************************
|
|
618
618
|
Copyright (c) Microsoft Corporation.
|
|
@@ -2646,7 +2646,7 @@
|
|
|
2646
2646
|
var WorkunitsServiceBase = /** @class */ (function (_super) {
|
|
2647
2647
|
__extends(WorkunitsServiceBase, _super);
|
|
2648
2648
|
function WorkunitsServiceBase(optsConnection) {
|
|
2649
|
-
return _super.call(this, optsConnection, "WsWorkunits", "1.
|
|
2649
|
+
return _super.call(this, optsConnection, "WsWorkunits", "1.95") || this;
|
|
2650
2650
|
}
|
|
2651
2651
|
WorkunitsServiceBase.prototype.GVCAjaxGraph = function (request) {
|
|
2652
2652
|
return this._connection.send("GVCAjaxGraph", request, "json", false, undefined, "GVCAjaxGraphResponse");
|
|
@@ -2663,9 +2663,6 @@
|
|
|
2663
2663
|
WorkunitsServiceBase.prototype.WUAddLocalFileToWorkunit = function (request) {
|
|
2664
2664
|
return this._connection.send("WUAddLocalFileToWorkunit", request, "json", false, undefined, "WUAddLocalFileToWorkunitResponse");
|
|
2665
2665
|
};
|
|
2666
|
-
WorkunitsServiceBase.prototype.WUAnalyseHotspot = function (request) {
|
|
2667
|
-
return this._connection.send("WUAnalyseHotspot", request, "json", false, undefined, "WUAnalyseHotspotResponse");
|
|
2668
|
-
};
|
|
2669
2666
|
WorkunitsServiceBase.prototype.WUCDebug = function (request) {
|
|
2670
2667
|
return this._connection.send("WUCDebug", request, "json", false, undefined, "WUDebugResponse");
|
|
2671
2668
|
};
|
|
@@ -2949,7 +2946,7 @@
|
|
|
2949
2946
|
var WorkunitsService = /** @class */ (function (_super) {
|
|
2950
2947
|
__extends(WorkunitsService, _super);
|
|
2951
2948
|
function WorkunitsService(optsConnection) {
|
|
2952
|
-
return _super.call(this, optsConnection, "WsWorkunits", "1.
|
|
2949
|
+
return _super.call(this, optsConnection, "WsWorkunits", "1.95") || this;
|
|
2953
2950
|
}
|
|
2954
2951
|
WorkunitsService.prototype.opts = function () {
|
|
2955
2952
|
return this._connection.opts();
|