@riddledc/riddle-proof 0.7.11 → 0.7.12

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.
@@ -186,6 +186,7 @@ async function runRiddleScript(config, input) {
186
186
  };
187
187
  if (input.viewport) payload.viewport = input.viewport;
188
188
  if (input.include) payload.include = input.include;
189
+ if (typeof input.strict === "boolean") payload.strict = input.strict;
189
190
  if (input.options) payload.options = input.options;
190
191
  return riddleRequestJson(config, "/v1/run", {
191
192
  method: "POST",
package/dist/cli.cjs CHANGED
@@ -6733,6 +6733,7 @@ async function runRiddleScript(config, input) {
6733
6733
  };
6734
6734
  if (input.viewport) payload.viewport = input.viewport;
6735
6735
  if (input.include) payload.include = input.include;
6736
+ if (typeof input.strict === "boolean") payload.strict = input.strict;
6736
6737
  if (input.options) payload.options = input.options;
6737
6738
  return riddleRequestJson(config, "/v1/run", {
6738
6739
  method: "POST",
package/dist/cli.js CHANGED
@@ -13,7 +13,7 @@ import {
13
13
  import {
14
14
  createRiddleApiClient,
15
15
  parseRiddleViewport
16
- } from "./chunk-3CVGVQTQ.js";
16
+ } from "./chunk-5KOHSE4V.js";
17
17
  import {
18
18
  createDisabledRiddleProofAgentAdapter,
19
19
  readRiddleProofRunStatus,
package/dist/index.cjs CHANGED
@@ -9794,6 +9794,7 @@ async function runRiddleScript(config, input) {
9794
9794
  };
9795
9795
  if (input.viewport) payload.viewport = input.viewport;
9796
9796
  if (input.include) payload.include = input.include;
9797
+ if (typeof input.strict === "boolean") payload.strict = input.strict;
9797
9798
  if (input.options) payload.options = input.options;
9798
9799
  return riddleRequestJson(config, "/v1/run", {
9799
9800
  method: "POST",
package/dist/index.js CHANGED
@@ -71,7 +71,7 @@ import {
71
71
  riddleRequestJson,
72
72
  runRiddleScript,
73
73
  runRiddleServerPreview
74
- } from "./chunk-3CVGVQTQ.js";
74
+ } from "./chunk-5KOHSE4V.js";
75
75
  import {
76
76
  DEFAULT_DIAGNOSTIC_ARRAY_LIMIT,
77
77
  DEFAULT_DIAGNOSTIC_HISTORY_LIMIT,
@@ -231,6 +231,7 @@ async function runRiddleScript(config, input) {
231
231
  };
232
232
  if (input.viewport) payload.viewport = input.viewport;
233
233
  if (input.include) payload.include = input.include;
234
+ if (typeof input.strict === "boolean") payload.strict = input.strict;
234
235
  if (input.options) payload.options = input.options;
235
236
  return riddleRequestJson(config, "/v1/run", {
236
237
  method: "POST",
@@ -26,6 +26,7 @@ interface RiddleRunScriptInput {
26
26
  };
27
27
  timeoutSec?: number;
28
28
  sync?: boolean;
29
+ strict?: boolean;
29
30
  include?: string[];
30
31
  options?: Record<string, unknown>;
31
32
  }
@@ -26,6 +26,7 @@ interface RiddleRunScriptInput {
26
26
  };
27
27
  timeoutSec?: number;
28
28
  sync?: boolean;
29
+ strict?: boolean;
29
30
  include?: string[];
30
31
  options?: Record<string, unknown>;
31
32
  }
@@ -11,7 +11,7 @@ import {
11
11
  riddleRequestJson,
12
12
  runRiddleScript,
13
13
  runRiddleServerPreview
14
- } from "./chunk-3CVGVQTQ.js";
14
+ } from "./chunk-5KOHSE4V.js";
15
15
  export {
16
16
  DEFAULT_RIDDLE_API_BASE_URL,
17
17
  DEFAULT_RIDDLE_API_KEY_FILE,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riddledc/riddle-proof",
3
- "version": "0.7.11",
3
+ "version": "0.7.12",
4
4
  "description": "Reusable Riddle Proof contracts and helpers for evidence-backed agent changes.",
5
5
  "license": "MIT",
6
6
  "author": "RiddleDC",