@hpcc-js/comms 2.101.0 → 2.101.1
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 +18 -3
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +18 -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 +18 -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/wsdl/ws_logaccess/v1.08/ws_logaccess.js +104 -0
- package/lib-es6/services/wsdl/ws_logaccess/v1.08/ws_logaccess.js.map +1 -0
- package/package.json +3 -3
- package/src/__package__.ts +2 -2
- package/src/services/wsLogaccess.ts +1 -1
- package/src/services/wsdl/ws_logaccess/v1.08/ws_logaccess.ts +267 -0
- package/types/__package__.d.ts +2 -2
- package/types/services/wsLogaccess.d.ts +1 -1
- package/types/services/wsdl/ws_logaccess/v1.08/ws_logaccess.d.ts +211 -0
- package/types/services/wsdl/ws_logaccess/v1.08/ws_logaccess.d.ts.map +1 -0
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/services/wsLogaccess.d.ts +1 -1
- package/types-3.4/services/wsdl/ws_logaccess/v1.08/ws_logaccess.d.ts +211 -0
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.101.
|
|
652
|
-
var BUILD_VERSION = "2.108.
|
|
651
|
+
var PKG_VERSION = "2.101.1";
|
|
652
|
+
var BUILD_VERSION = "2.108.2";
|
|
653
653
|
|
|
654
654
|
/******************************************************************************
|
|
655
655
|
Copyright (c) Microsoft Corporation.
|
|
@@ -2126,12 +2126,15 @@
|
|
|
2126
2126
|
LogColumnType["threadid"] = "threadid";
|
|
2127
2127
|
LogColumnType["timestamp"] = "timestamp";
|
|
2128
2128
|
LogColumnType["pod"] = "pod";
|
|
2129
|
+
LogColumnType["traceid"] = "traceid";
|
|
2130
|
+
LogColumnType["spanid"] = "spanid";
|
|
2129
2131
|
})(WsLogaccess.LogColumnType || (WsLogaccess.LogColumnType = {}));
|
|
2130
2132
|
(function (LogColumnValueType) {
|
|
2131
2133
|
LogColumnValueType["string"] = "string";
|
|
2132
2134
|
LogColumnValueType["numeric"] = "numeric";
|
|
2133
2135
|
LogColumnValueType["datetime"] = "datetime";
|
|
2134
2136
|
LogColumnValueType["enum"] = "enum";
|
|
2137
|
+
LogColumnValueType["epoch"] = "epoch";
|
|
2135
2138
|
})(WsLogaccess.LogColumnValueType || (WsLogaccess.LogColumnValueType = {}));
|
|
2136
2139
|
(function (LogAccessType) {
|
|
2137
2140
|
LogAccessType[LogAccessType["All"] = 0] = "All";
|
|
@@ -2143,7 +2146,14 @@
|
|
|
2143
2146
|
LogAccessType[LogAccessType["BySourceNode"] = 6] = "BySourceNode";
|
|
2144
2147
|
LogAccessType[LogAccessType["ByFieldName"] = 7] = "ByFieldName";
|
|
2145
2148
|
LogAccessType[LogAccessType["ByPod"] = 8] = "ByPod";
|
|
2149
|
+
LogAccessType[LogAccessType["ByTraceID"] = 9] = "ByTraceID";
|
|
2150
|
+
LogAccessType[LogAccessType["BySpanID"] = 10] = "BySpanID";
|
|
2146
2151
|
})(WsLogaccess.LogAccessType || (WsLogaccess.LogAccessType = {}));
|
|
2152
|
+
(function (LogAccessStatusCode) {
|
|
2153
|
+
LogAccessStatusCode[LogAccessStatusCode["Success"] = 0] = "Success";
|
|
2154
|
+
LogAccessStatusCode[LogAccessStatusCode["Warning"] = 1] = "Warning";
|
|
2155
|
+
LogAccessStatusCode[LogAccessStatusCode["Fail"] = 2] = "Fail";
|
|
2156
|
+
})(WsLogaccess.LogAccessStatusCode || (WsLogaccess.LogAccessStatusCode = {}));
|
|
2147
2157
|
(function (LogAccessFilterOperator) {
|
|
2148
2158
|
LogAccessFilterOperator[LogAccessFilterOperator["NONE"] = 0] = "NONE";
|
|
2149
2159
|
LogAccessFilterOperator[LogAccessFilterOperator["AND"] = 1] = "AND";
|
|
@@ -2165,6 +2175,8 @@
|
|
|
2165
2175
|
SortColumType[SortColumType["BySourceNode"] = 6] = "BySourceNode";
|
|
2166
2176
|
SortColumType[SortColumType["ByFieldName"] = 7] = "ByFieldName";
|
|
2167
2177
|
SortColumType[SortColumType["ByPod"] = 8] = "ByPod";
|
|
2178
|
+
SortColumType[SortColumType["ByTraceID"] = 9] = "ByTraceID";
|
|
2179
|
+
SortColumType[SortColumType["BySpanID"] = 10] = "BySpanID";
|
|
2168
2180
|
})(WsLogaccess.SortColumType || (WsLogaccess.SortColumType = {}));
|
|
2169
2181
|
(function (SortDirection) {
|
|
2170
2182
|
SortDirection[SortDirection["ASC"] = 0] = "ASC";
|
|
@@ -2174,8 +2186,11 @@
|
|
|
2174
2186
|
var LogaccessServiceBase = /** @class */ (function (_super) {
|
|
2175
2187
|
__extends(LogaccessServiceBase, _super);
|
|
2176
2188
|
function LogaccessServiceBase(optsConnection) {
|
|
2177
|
-
return _super.call(this, optsConnection, "ws_logaccess", "1.
|
|
2189
|
+
return _super.call(this, optsConnection, "ws_logaccess", "1.08") || this;
|
|
2178
2190
|
}
|
|
2191
|
+
LogaccessServiceBase.prototype.GetHealthReport = function (request) {
|
|
2192
|
+
return this._connection.send("GetHealthReport", request, "json", false, undefined, "GetHealthReportResponse");
|
|
2193
|
+
};
|
|
2179
2194
|
LogaccessServiceBase.prototype.GetLogAccessInfo = function (request) {
|
|
2180
2195
|
return this._connection.send("GetLogAccessInfo", request, "json", false, undefined, "GetLogAccessInfoResponse");
|
|
2181
2196
|
};
|