@probelabs/visor 0.1.75 → 0.1.77

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.
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  CheckExecutionEngine
3
- } from "./chunk-UWH6YVX2.mjs";
3
+ } from "./chunk-HDGNSOMS.mjs";
4
4
  import "./chunk-FIL2OGF6.mjs";
5
5
  import "./chunk-WMJKH4XE.mjs";
6
6
  export {
7
7
  CheckExecutionEngine
8
8
  };
9
- //# sourceMappingURL=check-execution-engine-2N5TY2WA.mjs.map
9
+ //# sourceMappingURL=check-execution-engine-XBKOCBEK.mjs.map
@@ -1493,7 +1493,7 @@ var PRReviewer = class {
1493
1493
  async reviewPR(owner, repo, prNumber, prInfo, options = {}) {
1494
1494
  const { debug = false, config, checks } = options;
1495
1495
  if (config && checks && checks.length > 0) {
1496
- const { CheckExecutionEngine: CheckExecutionEngine2 } = await import("./check-execution-engine-2N5TY2WA.mjs");
1496
+ const { CheckExecutionEngine: CheckExecutionEngine2 } = await import("./check-execution-engine-XBKOCBEK.mjs");
1497
1497
  const engine = new CheckExecutionEngine2();
1498
1498
  const { results } = await engine.executeGroupedChecks(
1499
1499
  prInfo,
@@ -8584,6 +8584,7 @@ ${result.value.result.debug.rawResponse}`;
8584
8584
  };
8585
8585
 
8586
8586
  export {
8587
+ logger,
8587
8588
  CheckExecutionEngine
8588
8589
  };
8589
- //# sourceMappingURL=chunk-UWH6YVX2.mjs.map
8590
+ //# sourceMappingURL=chunk-HDGNSOMS.mjs.map
@@ -272,6 +272,20 @@ interface CheckConfig {
272
272
  on_fail?: OnFailConfig;
273
273
  /** Success routing configuration for this check (post-actions and optional goto) */
274
274
  on_success?: OnSuccessConfig;
275
+ /**
276
+ * Log provider specific options (optional, only used when type === 'log').
277
+ * Declared here to ensure JSON Schema allows these keys and Ajv does not warn.
278
+ */
279
+ /** Message template for log checks */
280
+ message?: string;
281
+ /** Log level for log checks */
282
+ level?: 'debug' | 'info' | 'warn' | 'error';
283
+ /** Include PR context in log output */
284
+ include_pr_context?: boolean;
285
+ /** Include dependency summaries in log output */
286
+ include_dependencies?: boolean;
287
+ /** Include execution metadata in log output */
288
+ include_metadata?: boolean;
275
289
  }
276
290
  /**
277
291
  * Backoff policy for retries
package/dist/sdk/sdk.d.ts CHANGED
@@ -272,6 +272,20 @@ interface CheckConfig {
272
272
  on_fail?: OnFailConfig;
273
273
  /** Success routing configuration for this check (post-actions and optional goto) */
274
274
  on_success?: OnSuccessConfig;
275
+ /**
276
+ * Log provider specific options (optional, only used when type === 'log').
277
+ * Declared here to ensure JSON Schema allows these keys and Ajv does not warn.
278
+ */
279
+ /** Message template for log checks */
280
+ message?: string;
281
+ /** Log level for log checks */
282
+ level?: 'debug' | 'info' | 'warn' | 'error';
283
+ /** Include PR context in log output */
284
+ include_pr_context?: boolean;
285
+ /** Include dependency summaries in log output */
286
+ include_dependencies?: boolean;
287
+ /** Include execution metadata in log output */
288
+ include_metadata?: boolean;
275
289
  }
276
290
  /**
277
291
  * Backoff policy for retries