@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.
- package/dist/{chunk-3CVGVQTQ.js → chunk-5KOHSE4V.js} +1 -0
- package/dist/cli.cjs +1 -0
- package/dist/cli.js +1 -1
- package/dist/index.cjs +1 -0
- package/dist/index.js +1 -1
- package/dist/riddle-client.cjs +1 -0
- package/dist/riddle-client.d.cts +1 -0
- package/dist/riddle-client.d.ts +1 -0
- package/dist/riddle-client.js +1 -1
- package/package.json +1 -1
|
@@ -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
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
package/dist/riddle-client.cjs
CHANGED
|
@@ -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",
|
package/dist/riddle-client.d.cts
CHANGED
package/dist/riddle-client.d.ts
CHANGED
package/dist/riddle-client.js
CHANGED