@probelabs/visor 0.1.76 → 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.
@@ -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