@riddledc/riddle-proof 0.7.30 → 0.7.31

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.
@@ -1277,7 +1277,7 @@ async function executeSetupAction(action, ordinal) {
1277
1277
  if (targetIndex < 0) return { ...base, reason: "text_not_found", count };
1278
1278
  }
1279
1279
  if (targetIndex < 0 || targetIndex >= count) return { ...base, reason: "index_out_of_range", count, target_index: targetIndex };
1280
- await locator.nth(targetIndex).click({ timeout });
1280
+ await locator.nth(targetIndex).click({ timeout, noWaitAfter: true });
1281
1281
  return { ...base, ok: true, count, target_index: targetIndex, text: matchedText };
1282
1282
  }
1283
1283
  if (type === "fill" || type === "set_input_value") {
package/dist/cli.cjs CHANGED
@@ -8134,7 +8134,7 @@ async function executeSetupAction(action, ordinal) {
8134
8134
  if (targetIndex < 0) return { ...base, reason: "text_not_found", count };
8135
8135
  }
8136
8136
  if (targetIndex < 0 || targetIndex >= count) return { ...base, reason: "index_out_of_range", count, target_index: targetIndex };
8137
- await locator.nth(targetIndex).click({ timeout });
8137
+ await locator.nth(targetIndex).click({ timeout, noWaitAfter: true });
8138
8138
  return { ...base, ok: true, count, target_index: targetIndex, text: matchedText };
8139
8139
  }
8140
8140
  if (type === "fill" || type === "set_input_value") {
package/dist/cli.js CHANGED
@@ -10,7 +10,7 @@ import {
10
10
  profileStatusExitCode,
11
11
  resolveRiddleProofProfileTargetUrl,
12
12
  resolveRiddleProofProfileTimeoutSec
13
- } from "./chunk-FDNIOGQD.js";
13
+ } from "./chunk-2NWVXT4Q.js";
14
14
  import {
15
15
  createRiddleApiClient,
16
16
  parseRiddleViewport
package/dist/index.cjs CHANGED
@@ -9991,7 +9991,7 @@ async function executeSetupAction(action, ordinal) {
9991
9991
  if (targetIndex < 0) return { ...base, reason: "text_not_found", count };
9992
9992
  }
9993
9993
  if (targetIndex < 0 || targetIndex >= count) return { ...base, reason: "index_out_of_range", count, target_index: targetIndex };
9994
- await locator.nth(targetIndex).click({ timeout });
9994
+ await locator.nth(targetIndex).click({ timeout, noWaitAfter: true });
9995
9995
  return { ...base, ok: true, count, target_index: targetIndex, text: matchedText };
9996
9996
  }
9997
9997
  if (type === "fill" || type === "set_input_value") {
package/dist/index.js CHANGED
@@ -58,7 +58,7 @@ import {
58
58
  resolveRiddleProofProfileTimeoutSec,
59
59
  slugifyRiddleProofProfileName,
60
60
  summarizeRiddleProofProfileResult
61
- } from "./chunk-FDNIOGQD.js";
61
+ } from "./chunk-2NWVXT4Q.js";
62
62
  import {
63
63
  DEFAULT_RIDDLE_API_BASE_URL,
64
64
  DEFAULT_RIDDLE_API_KEY_FILE,
package/dist/profile.cjs CHANGED
@@ -1320,7 +1320,7 @@ async function executeSetupAction(action, ordinal) {
1320
1320
  if (targetIndex < 0) return { ...base, reason: "text_not_found", count };
1321
1321
  }
1322
1322
  if (targetIndex < 0 || targetIndex >= count) return { ...base, reason: "index_out_of_range", count, target_index: targetIndex };
1323
- await locator.nth(targetIndex).click({ timeout });
1323
+ await locator.nth(targetIndex).click({ timeout, noWaitAfter: true });
1324
1324
  return { ...base, ok: true, count, target_index: targetIndex, text: matchedText };
1325
1325
  }
1326
1326
  if (type === "fill" || type === "set_input_value") {
package/dist/profile.js CHANGED
@@ -19,7 +19,7 @@ import {
19
19
  resolveRiddleProofProfileTimeoutSec,
20
20
  slugifyRiddleProofProfileName,
21
21
  summarizeRiddleProofProfileResult
22
- } from "./chunk-FDNIOGQD.js";
22
+ } from "./chunk-2NWVXT4Q.js";
23
23
  export {
24
24
  RIDDLE_PROOF_PROFILE_CHECK_TYPES,
25
25
  RIDDLE_PROOF_PROFILE_EVIDENCE_VERSION,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riddledc/riddle-proof",
3
- "version": "0.7.30",
3
+ "version": "0.7.31",
4
4
  "description": "Reusable Riddle Proof contracts and helpers for evidence-backed agent changes.",
5
5
  "license": "MIT",
6
6
  "author": "RiddleDC",