@hpcc-js/comms 2.84.4 → 2.84.5
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 +6 -3
- 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 +6 -3
- 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/wsLogaccess.js +1 -1
- package/lib-es6/services/wsLogaccess.js.map +1 -1
- package/lib-es6/services/wsdl/ws_logaccess/v1.05/ws_logaccess.js +88 -0
- package/lib-es6/services/wsdl/ws_logaccess/v1.05/ws_logaccess.js.map +1 -0
- package/package.json +2 -2
- package/src/__package__.ts +2 -2
- package/src/services/wsLogaccess.ts +3 -1
- package/src/services/wsdl/ws_logaccess/v1.05/ws_logaccess.ts +219 -0
- package/types/__package__.d.ts +2 -2
- package/types/services/wsLogaccess.d.ts +3 -1
- package/types/services/wsLogaccess.d.ts.map +1 -1
- package/types/services/wsdl/ws_logaccess/v1.05/ws_logaccess.d.ts +175 -0
- package/types/services/wsdl/ws_logaccess/v1.05/ws_logaccess.d.ts.map +1 -0
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/services/wsLogaccess.d.ts +3 -1
- package/types-3.4/services/wsdl/ws_logaccess/v1.05/ws_logaccess.d.ts +175 -0
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.
|
|
651
|
-
var BUILD_VERSION = "2.104.
|
|
650
|
+
var PKG_VERSION = "2.84.5";
|
|
651
|
+
var BUILD_VERSION = "2.104.31";
|
|
652
652
|
|
|
653
653
|
/******************************************************************************
|
|
654
654
|
Copyright (c) Microsoft Corporation.
|
|
@@ -1983,6 +1983,7 @@
|
|
|
1983
1983
|
LogColumnType["processid"] = "processid";
|
|
1984
1984
|
LogColumnType["threadid"] = "threadid";
|
|
1985
1985
|
LogColumnType["timestamp"] = "timestamp";
|
|
1986
|
+
LogColumnType["pod"] = "pod";
|
|
1986
1987
|
})(WsLogaccess.LogColumnType || (WsLogaccess.LogColumnType = {}));
|
|
1987
1988
|
(function (LogColumnValueType) {
|
|
1988
1989
|
LogColumnValueType["string"] = "string";
|
|
@@ -1999,6 +2000,7 @@
|
|
|
1999
2000
|
LogAccessType[LogAccessType["BySourceInstance"] = 5] = "BySourceInstance";
|
|
2000
2001
|
LogAccessType[LogAccessType["BySourceNode"] = 6] = "BySourceNode";
|
|
2001
2002
|
LogAccessType[LogAccessType["ByFieldName"] = 7] = "ByFieldName";
|
|
2003
|
+
LogAccessType[LogAccessType["ByPod"] = 8] = "ByPod";
|
|
2002
2004
|
})(WsLogaccess.LogAccessType || (WsLogaccess.LogAccessType = {}));
|
|
2003
2005
|
(function (LogAccessFilterOperator) {
|
|
2004
2006
|
LogAccessFilterOperator[LogAccessFilterOperator["NONE"] = 0] = "NONE";
|
|
@@ -2020,6 +2022,7 @@
|
|
|
2020
2022
|
SortColumType[SortColumType["BySourceInstance"] = 5] = "BySourceInstance";
|
|
2021
2023
|
SortColumType[SortColumType["BySourceNode"] = 6] = "BySourceNode";
|
|
2022
2024
|
SortColumType[SortColumType["ByFieldName"] = 7] = "ByFieldName";
|
|
2025
|
+
SortColumType[SortColumType["ByPod"] = 8] = "ByPod";
|
|
2023
2026
|
})(WsLogaccess.SortColumType || (WsLogaccess.SortColumType = {}));
|
|
2024
2027
|
(function (SortDirection) {
|
|
2025
2028
|
SortDirection[SortDirection["ASC"] = 0] = "ASC";
|
|
@@ -2029,7 +2032,7 @@
|
|
|
2029
2032
|
var LogaccessServiceBase = /** @class */ (function (_super) {
|
|
2030
2033
|
__extends(LogaccessServiceBase, _super);
|
|
2031
2034
|
function LogaccessServiceBase(optsConnection) {
|
|
2032
|
-
return _super.call(this, optsConnection, "ws_logaccess", "1.
|
|
2035
|
+
return _super.call(this, optsConnection, "ws_logaccess", "1.05") || this;
|
|
2033
2036
|
}
|
|
2034
2037
|
LogaccessServiceBase.prototype.GetLogAccessInfo = function (request) {
|
|
2035
2038
|
return this._connection.send("GetLogAccessInfo", request, "json", false, undefined, "GetLogAccessInfoResponse");
|