@riddledc/riddle-proof 0.7.75 → 0.7.76

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.
@@ -53,7 +53,7 @@ async function deployRiddleStaticPreview(config, directory, label) {
53
53
  if (!label?.trim()) throw new Error("label is required");
54
54
  const created = await riddleRequestJson(config, "/v1/preview", {
55
55
  method: "POST",
56
- body: JSON.stringify({ framework: "spa", label })
56
+ body: JSON.stringify({ framework: "static", label })
57
57
  });
58
58
  const id = String(created.id || "");
59
59
  const uploadUrl = String(created.upload_url || "");
package/dist/cli.cjs CHANGED
@@ -6600,7 +6600,7 @@ async function deployRiddleStaticPreview(config, directory, label) {
6600
6600
  if (!label?.trim()) throw new Error("label is required");
6601
6601
  const created = await riddleRequestJson(config, "/v1/preview", {
6602
6602
  method: "POST",
6603
- body: JSON.stringify({ framework: "spa", label })
6603
+ body: JSON.stringify({ framework: "static", label })
6604
6604
  });
6605
6605
  const id = String(created.id || "");
6606
6606
  const uploadUrl = String(created.upload_url || "");
package/dist/cli.js CHANGED
@@ -14,7 +14,7 @@ import {
14
14
  import {
15
15
  createRiddleApiClient,
16
16
  parseRiddleViewport
17
- } from "./chunk-7PSWK57T.js";
17
+ } from "./chunk-6RQGBHJ5.js";
18
18
  import {
19
19
  createDisabledRiddleProofAgentAdapter,
20
20
  readRiddleProofRunStatus,
package/dist/index.cjs CHANGED
@@ -12891,7 +12891,7 @@ async function deployRiddleStaticPreview(config, directory, label) {
12891
12891
  if (!label?.trim()) throw new Error("label is required");
12892
12892
  const created = await riddleRequestJson(config, "/v1/preview", {
12893
12893
  method: "POST",
12894
- body: JSON.stringify({ framework: "spa", label })
12894
+ body: JSON.stringify({ framework: "static", label })
12895
12895
  });
12896
12896
  const id = String(created.id || "");
12897
12897
  const uploadUrl = String(created.upload_url || "");
package/dist/index.js CHANGED
@@ -72,7 +72,7 @@ import {
72
72
  riddleRequestJson,
73
73
  runRiddleScript,
74
74
  runRiddleServerPreview
75
- } from "./chunk-7PSWK57T.js";
75
+ } from "./chunk-6RQGBHJ5.js";
76
76
  import {
77
77
  DEFAULT_DIAGNOSTIC_ARRAY_LIMIT,
78
78
  DEFAULT_DIAGNOSTIC_HISTORY_LIMIT,
@@ -98,7 +98,7 @@ async function deployRiddleStaticPreview(config, directory, label) {
98
98
  if (!label?.trim()) throw new Error("label is required");
99
99
  const created = await riddleRequestJson(config, "/v1/preview", {
100
100
  method: "POST",
101
- body: JSON.stringify({ framework: "spa", label })
101
+ body: JSON.stringify({ framework: "static", label })
102
102
  });
103
103
  const id = String(created.id || "");
104
104
  const uploadUrl = String(created.upload_url || "");
@@ -11,7 +11,7 @@ import {
11
11
  riddleRequestJson,
12
12
  runRiddleScript,
13
13
  runRiddleServerPreview
14
- } from "./chunk-7PSWK57T.js";
14
+ } from "./chunk-6RQGBHJ5.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.75",
3
+ "version": "0.7.76",
4
4
  "description": "Reusable Riddle Proof contracts and helpers for evidence-backed agent changes.",
5
5
  "license": "MIT",
6
6
  "author": "RiddleDC",