@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.
- package/dist/{chunk-7PSWK57T.js → chunk-6RQGBHJ5.js} +1 -1
- package/dist/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/riddle-client.cjs +1 -1
- package/dist/riddle-client.js +1 -1
- package/package.json +1 -1
|
@@ -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: "
|
|
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: "
|
|
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
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: "
|
|
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
package/dist/riddle-client.cjs
CHANGED
|
@@ -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: "
|
|
101
|
+
body: JSON.stringify({ framework: "static", label })
|
|
102
102
|
});
|
|
103
103
|
const id = String(created.id || "");
|
|
104
104
|
const uploadUrl = String(created.upload_url || "");
|
package/dist/riddle-client.js
CHANGED