@hpcc-js/comms 2.84.4 → 2.85.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.
Files changed (33) hide show
  1. package/dist/index.es6.js +10 -7
  2. package/dist/index.es6.js.map +1 -1
  3. package/dist/index.js +10 -7
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.min.js +1 -1
  6. package/dist/index.min.js.map +1 -1
  7. package/dist/index.node.js +10 -7
  8. package/dist/index.node.js.map +1 -1
  9. package/dist/index.node.min.js +1 -1
  10. package/dist/index.node.min.js.map +1 -1
  11. package/lib-es6/__package__.js +2 -2
  12. package/lib-es6/ecl/workunit.js +4 -4
  13. package/lib-es6/ecl/workunit.js.map +1 -1
  14. package/lib-es6/services/wsLogaccess.js +1 -1
  15. package/lib-es6/services/wsLogaccess.js.map +1 -1
  16. package/lib-es6/services/wsdl/ws_logaccess/v1.05/ws_logaccess.js +88 -0
  17. package/lib-es6/services/wsdl/ws_logaccess/v1.05/ws_logaccess.js.map +1 -0
  18. package/package.json +2 -2
  19. package/src/__package__.ts +2 -2
  20. package/src/ecl/workunit.ts +4 -4
  21. package/src/services/wsLogaccess.ts +3 -1
  22. package/src/services/wsdl/ws_logaccess/v1.05/ws_logaccess.ts +219 -0
  23. package/types/__package__.d.ts +2 -2
  24. package/types/ecl/workunit.d.ts +2 -2
  25. package/types/ecl/workunit.d.ts.map +1 -1
  26. package/types/services/wsLogaccess.d.ts +3 -1
  27. package/types/services/wsLogaccess.d.ts.map +1 -1
  28. package/types/services/wsdl/ws_logaccess/v1.05/ws_logaccess.d.ts +175 -0
  29. package/types/services/wsdl/ws_logaccess/v1.05/ws_logaccess.d.ts.map +1 -0
  30. package/types-3.4/__package__.d.ts +2 -2
  31. package/types-3.4/ecl/workunit.d.ts +2 -2
  32. package/types-3.4/services/wsLogaccess.d.ts +3 -1
  33. 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.4";
651
- var BUILD_VERSION = "2.104.30";
650
+ var PKG_VERSION = "2.85.0";
651
+ var BUILD_VERSION = "2.104.33";
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.04") || this;
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");
@@ -6344,11 +6347,11 @@
6344
6347
  });
6345
6348
  });
6346
6349
  };
6347
- Workunit.prototype.refreshInfo = function () {
6350
+ Workunit.prototype.refreshInfo = function (request) {
6348
6351
  return __awaiter(this, void 0, void 0, function () {
6349
6352
  return __generator(this, function (_a) {
6350
6353
  switch (_a.label) {
6351
- case 0: return [4 /*yield*/, this.WUInfo()];
6354
+ case 0: return [4 /*yield*/, this.WUInfo(request)];
6352
6355
  case 1:
6353
6356
  _a.sent();
6354
6357
  return [2 /*return*/, this];
@@ -6368,14 +6371,14 @@
6368
6371
  });
6369
6372
  });
6370
6373
  };
6371
- Workunit.prototype.refresh = function (full) {
6374
+ Workunit.prototype.refresh = function (full, request) {
6372
6375
  if (full === void 0) { full = false; }
6373
6376
  return __awaiter(this, void 0, void 0, function () {
6374
6377
  return __generator(this, function (_a) {
6375
6378
  switch (_a.label) {
6376
6379
  case 0:
6377
6380
  if (!full) return [3 /*break*/, 2];
6378
- return [4 /*yield*/, Promise.all([this.refreshInfo(), this.refreshDebug()])];
6381
+ return [4 /*yield*/, Promise.all([this.refreshInfo(request), this.refreshDebug()])];
6379
6382
  case 1:
6380
6383
  _a.sent();
6381
6384
  return [3 /*break*/, 4];