@hpcc-js/comms 2.73.5 → 2.74.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 (42) hide show
  1. package/dist/index.es6.js +7 -8
  2. package/dist/index.es6.js.map +1 -1
  3. package/dist/index.js +7 -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 +7 -8
  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/__package__.js.map +1 -1
  13. package/lib-es6/__tests__/https.js +2 -2
  14. package/lib-es6/__tests__/https.js.map +1 -1
  15. package/lib-es6/__tests__/workunit.js +1 -1
  16. package/lib-es6/__tests__/workunit.js.map +1 -1
  17. package/lib-es6/clienttools/eclcc.js +0 -1
  18. package/lib-es6/clienttools/eclcc.js.map +1 -1
  19. package/lib-es6/ecl/graph.js +5 -5
  20. package/lib-es6/ecl/graph.js.map +1 -1
  21. package/lib-es6/services/wsDali.js +11 -0
  22. package/lib-es6/services/wsDali.js.map +1 -0
  23. package/lib-es6/services/wsdl/WsDali/v1.04/WsDali.js +68 -0
  24. package/lib-es6/services/wsdl/WsDali/v1.04/WsDali.js.map +1 -0
  25. package/package.json +6 -5
  26. package/src/__package__.ts +2 -2
  27. package/src/__tests__/https.ts +2 -2
  28. package/src/__tests__/workunit.ts +1 -1
  29. package/src/clienttools/eclcc.ts +0 -1
  30. package/src/ecl/graph.ts +5 -5
  31. package/src/services/wsDali.ts +8 -0
  32. package/src/services/wsdl/WsDali/v1.04/WsDali.ts +213 -0
  33. package/types/__package__.d.ts +2 -2
  34. package/types/__package__.d.ts.map +1 -1
  35. package/types/clienttools/eclcc.d.ts.map +1 -1
  36. package/types/services/wsDali.d.ts +5 -0
  37. package/types/services/wsDali.d.ts.map +1 -0
  38. package/types/services/wsdl/WsDali/v1.04/WsDali.d.ts +122 -0
  39. package/types/services/wsdl/WsDali/v1.04/WsDali.d.ts.map +1 -0
  40. package/types-3.4/__package__.d.ts +2 -2
  41. package/types-3.4/services/wsDali.d.ts +5 -0
  42. package/types-3.4/services/wsdl/WsDali/v1.04/WsDali.d.ts +122 -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.73.5";
615
- var BUILD_VERSION = "2.102.7";
614
+ var PKG_VERSION = "2.74.0";
615
+ var BUILD_VERSION = "2.102.11";
616
616
 
617
617
  /*! *****************************************************************************
618
618
  Copyright (c) Microsoft Corporation.
@@ -3217,7 +3217,7 @@
3217
3217
  scopeStack.pop();
3218
3218
  }
3219
3219
  if (!scopeParent1) {
3220
- console.log("Missing SG:Parent (".concat(scope.Id, "): ").concat(scope.parentScope()));
3220
+ console.warn("Missing SG:Parent (".concat(scope.Id, "): ").concat(scope.parentScope()));
3221
3221
  }
3222
3222
  else {
3223
3223
  var parent1 = scopeParent1;
@@ -3227,7 +3227,7 @@
3227
3227
  case "activity":
3228
3228
  var scopeParent2 = subgraphs[scope.parentScope()];
3229
3229
  if (!scopeParent2) {
3230
- console.log("Missing A:Parent (".concat(scope.Id, "): ").concat(scope.parentScope()));
3230
+ console.warn("Missing A:Parent (".concat(scope.Id, "): ").concat(scope.parentScope()));
3231
3231
  }
3232
3232
  else {
3233
3233
  vertices[scope.ScopeName] = scopeParent2.createVertex(scope);
@@ -3239,7 +3239,7 @@
3239
3239
  case "function":
3240
3240
  var scopeParent3 = vertices[scope.parentScope()];
3241
3241
  if (!scopeParent3) {
3242
- console.log("Missing F:Parent (".concat(scope.Id, "): ").concat(scope.parentScope()));
3242
+ console.warn("Missing F:Parent (".concat(scope.Id, "): ").concat(scope.parentScope()));
3243
3243
  }
3244
3244
  else {
3245
3245
  scopeParent3._.children().push(scope);
@@ -3251,7 +3251,7 @@
3251
3251
  var scope = edges[id];
3252
3252
  var scopeParent3 = subgraphs[scope.parentScope()];
3253
3253
  if (!scopeParent3) {
3254
- console.log("Missing E:Parent (".concat(scope.Id, "): ").concat(scope.parentScope()));
3254
+ console.warn("Missing E:Parent (".concat(scope.Id, "): ").concat(scope.parentScope()));
3255
3255
  }
3256
3256
  else {
3257
3257
  var parent3 = scopeParent3;
@@ -3263,7 +3263,7 @@
3263
3263
  catch (e) {
3264
3264
  // const sourceIndex = scope.attr("SourceIndex").RawValue;
3265
3265
  // const targetIndex = scope.attr("TargetIndex").RawValue;
3266
- console.log("Invalid Edge: ".concat(id));
3266
+ console.warn("Invalid Edge: ".concat(id));
3267
3267
  }
3268
3268
  }
3269
3269
  }