@probelabs/visor 0.1.85 → 0.1.86

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/sdk/sdk.js CHANGED
@@ -7350,6 +7350,9 @@ ${expr}
7350
7350
  // Pass event context for templates
7351
7351
  transform: checkConfig.transform,
7352
7352
  transform_js: checkConfig.transform_js,
7353
+ // Important: pass through provider-level timeout from check config
7354
+ // (e.g., command/http_client providers expect seconds/ms here)
7355
+ timeout: checkConfig.timeout,
7353
7356
  level: extendedCheckConfig.level,
7354
7357
  message: extendedCheckConfig.message,
7355
7358
  env: checkConfig.env,
@@ -7386,7 +7389,7 @@ ${expr}
7386
7389
  });
7387
7390
  const hasFatalFailure = (depRes.issues || []).some((issue) => {
7388
7391
  const id = issue.ruleId || "";
7389
- return id === "command/execution_error" || id.endsWith("/command/execution_error") || id === "command/transform_js_error" || id.endsWith("/command/transform_js_error") || id === "command/transform_error" || id.endsWith("/command/transform_error") || id.endsWith("/forEach/iteration_error");
7392
+ return id === "command/execution_error" || id.endsWith("/command/execution_error") || id === "command/transform_js_error" || id.endsWith("/command/transform_js_error") || id === "command/transform_error" || id.endsWith("/command/transform_error") || id.endsWith("/forEach/iteration_error") || id === "forEach/undefined_output" || id.endsWith("/forEach/undefined_output") || id.endsWith("_fail_if") || id.endsWith("/global_fail_if");
7390
7393
  });
7391
7394
  if (wasSkipped || hasFatalFailure) failedDeps.push(depId);
7392
7395
  }
@@ -7549,7 +7552,7 @@ ${expr}
7549
7552
  );
7550
7553
  const hadFatalError = (itemResult.issues || []).some((issue) => {
7551
7554
  const id = issue.ruleId || "";
7552
- return id === "command/execution_error" || id.endsWith("/command/execution_error") || id === "command/transform_js_error" || id.endsWith("/command/transform_js_error") || id === "command/transform_error" || id.endsWith("/command/transform_error");
7555
+ return id === "command/execution_error" || id.endsWith("/command/execution_error") || id === "command/transform_js_error" || id.endsWith("/command/transform_js_error") || id === "command/transform_error" || id.endsWith("/command/transform_error") || id === "forEach/undefined_output" || id.endsWith("/forEach/undefined_output");
7553
7556
  });
7554
7557
  const iterationDuration = (Date.now() - iterationStart) / 1e3;
7555
7558
  this.recordIterationComplete(
@@ -7667,7 +7670,7 @@ ${expr}
7667
7670
  );
7668
7671
  const hadFatalError = (finalResult.issues || []).some((issue) => {
7669
7672
  const id = issue.ruleId || "";
7670
- return id === "command/execution_error" || id.endsWith("/command/execution_error") || id === "command/transform_js_error" || id.endsWith("/command/transform_js_error") || id === "command/transform_error" || id.endsWith("/command/transform_error");
7673
+ return id === "command/execution_error" || id.endsWith("/command/execution_error") || id === "command/transform_js_error" || id.endsWith("/command/transform_js_error") || id === "command/transform_error" || id.endsWith("/command/transform_error") || id === "forEach/undefined_output" || id.endsWith("/forEach/undefined_output");
7671
7674
  });
7672
7675
  this.recordIterationComplete(
7673
7676
  checkName,