@uipath/rpa-tool 0.9.0 → 0.9.2

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 (3) hide show
  1. package/dist/index.js +4 -0
  2. package/dist/tool.js +12297 -21135
  3. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -9905,6 +9905,9 @@ class SimpleLogger {
9905
9905
  case "Debug":
9906
9906
  this.debug(msg);
9907
9907
  break;
9908
+ case "Information":
9909
+ this.info(msg);
9910
+ break;
9908
9911
  case "Warning":
9909
9912
  this.warn(msg);
9910
9913
  break;
@@ -9923,6 +9926,7 @@ function getLogFilePath() {
9923
9926
  return logger.getLogFilePath();
9924
9927
  }
9925
9928
  var formatSlot = singleton("OutputFormat");
9929
+ var formatExplicitSlot = singleton("OutputFormatExplicit");
9926
9930
  var filterSlot = singleton("OutputFilter");
9927
9931
  function setOutputFormat(format) {
9928
9932
  formatSlot.set(format);