@hpcc-js/comms 2.84.1 → 2.84.3
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 +33 -20372
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +6 -3
- 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 +125 -20483
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.min.js +1 -4
- package/dist/index.node.min.js.map +1 -1
- package/lib-es6/__package__.js +2 -2
- package/lib-es6/services/wsTopology.js +1 -1
- package/lib-es6/services/wsdl/WsTopology/v1.32/WsTopology.js +83 -0
- package/lib-es6/services/wsdl/WsTopology/v1.32/WsTopology.js.map +1 -0
- package/package.json +5 -5
- package/src/__package__.ts +2 -2
- package/src/services/wsTopology.ts +1 -1
- package/src/services/wsdl/WsTopology/v1.32/WsTopology.ts +885 -0
- package/types/__package__.d.ts +2 -2
- package/types/services/wsTopology.d.ts +1 -1
- package/types/services/wsdl/WsTopology/v1.32/WsTopology.d.ts +716 -0
- package/types/services/wsdl/WsTopology/v1.32/WsTopology.d.ts.map +1 -0
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/services/wsTopology.d.ts +1 -1
- package/types-3.4/services/wsdl/WsTopology/v1.32/WsTopology.d.ts +716 -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.84.
|
|
615
|
-
var BUILD_VERSION = "2.104.
|
|
614
|
+
var PKG_VERSION = "2.84.3";
|
|
615
|
+
var BUILD_VERSION = "2.104.29";
|
|
616
616
|
|
|
617
617
|
/******************************************************************************
|
|
618
618
|
Copyright (c) Microsoft Corporation.
|
|
@@ -2615,7 +2615,7 @@
|
|
|
2615
2615
|
var TopologyServiceBase = /** @class */ (function (_super) {
|
|
2616
2616
|
__extends(TopologyServiceBase, _super);
|
|
2617
2617
|
function TopologyServiceBase(optsConnection) {
|
|
2618
|
-
return _super.call(this, optsConnection, "WsTopology", "1.
|
|
2618
|
+
return _super.call(this, optsConnection, "WsTopology", "1.32") || this;
|
|
2619
2619
|
}
|
|
2620
2620
|
TopologyServiceBase.prototype.Ping = function (request) {
|
|
2621
2621
|
return this._connection.send("Ping", request, "json", false, undefined, "WsTopologyPingResponse");
|
|
@@ -2641,6 +2641,9 @@
|
|
|
2641
2641
|
TopologyServiceBase.prototype.TpGroupQuery = function (request) {
|
|
2642
2642
|
return this._connection.send("TpGroupQuery", request, "json", false, undefined, "TpGroupQueryResponse");
|
|
2643
2643
|
};
|
|
2644
|
+
TopologyServiceBase.prototype.TpListLogFiles = function (request) {
|
|
2645
|
+
return this._connection.send("TpListLogFiles", request, "json", false, undefined, "TpListLogFilesResponse");
|
|
2646
|
+
};
|
|
2644
2647
|
TopologyServiceBase.prototype.TpListTargetClusters = function (request) {
|
|
2645
2648
|
return this._connection.send("TpListTargetClusters", request, "json", false, undefined, "TpListTargetClustersResponse");
|
|
2646
2649
|
};
|