@nmakarov/cli-toolkit 0.75.0 → 0.76.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.
package/dist/tasks.js CHANGED
@@ -2723,6 +2723,7 @@ var LOGGER_RUNTIME_KEYS = [
2723
2723
  "route",
2724
2724
  "prefix",
2725
2725
  "progressWithTimes",
2726
+ "progressWithRate",
2726
2727
  "progressThrottleMs"
2727
2728
  ];
2728
2729
  var DEFAULT_RUNTIME_PARAM_SPECS = [
@@ -2834,6 +2835,7 @@ function coerceRuntimeValue(key, value) {
2834
2835
  case "showLevel":
2835
2836
  case "timestamp":
2836
2837
  case "progressWithTimes":
2838
+ case "progressWithRate":
2837
2839
  if (typeof value === "boolean") return value;
2838
2840
  if (value === "true" || value === "1") return true;
2839
2841
  if (value === "false" || value === "0") return false;