@swmansion/argent 0.20.1-next.8 → 0.21.0

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.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/dist/cli-cmds.mjs CHANGED
@@ -1435,6 +1435,7 @@ var FAILURE_CODES = {
1435
1435
  CHROMIUM_ELECTRON_EXITED_BEFORE_READY: "CHROMIUM_ELECTRON_EXITED_BEFORE_READY",
1436
1436
  KEYBOARD_KEY_UNSUPPORTED: "KEYBOARD_KEY_UNSUPPORTED",
1437
1437
  KEYBOARD_CHARACTER_UNSUPPORTED: "KEYBOARD_CHARACTER_UNSUPPORTED",
1438
+ KEYBOARD_TEXT_AND_KEY_COMBINED: "KEYBOARD_TEXT_AND_KEY_COMBINED",
1438
1439
  SECRET_PLACEHOLDER_UNKNOWN: "SECRET_PLACEHOLDER_UNKNOWN",
1439
1440
  SCREENSHOT_DIFF_INPUT_INVALID: "SCREENSHOT_DIFF_INPUT_INVALID",
1440
1441
  BOOT_DEVICE_TARGET_SELECTION_INVALID: "BOOT_DEVICE_TARGET_SELECTION_INVALID",
@@ -1801,6 +1802,10 @@ var FLAG_REGISTRY = [
1801
1802
  name: "tool-server-event-log",
1802
1803
  description: "Write structured tool-server lifecycle events to a JSONL file."
1803
1804
  },
1805
+ {
1806
+ name: "microinteractions",
1807
+ description: "Amplify device actions with matching animations of the host window, so what happens on the guest is also visible on the desktop. Purely cosmetic, macOS only, and never affects whether the underlying action succeeds. Off by default."
1808
+ },
1804
1809
  {
1805
1810
  name: "video-watermark",
1806
1811
  description: "Overlay the argent corner watermark on recorded screen videos. On by default; turn it off with `argent disable video-watermark`.",
@@ -8320,7 +8325,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
8320
8325
  var SESSION_ID2 = randomUUID5();
8321
8326
  function readCliVersion() {
8322
8327
  if (true) {
8323
- return "0.20.0";
8328
+ return "0.21.0";
8324
8329
  }
8325
8330
  return "0.0.0";
8326
8331
  }
@@ -16584,6 +16584,7 @@ var FAILURE_CODES = {
16584
16584
  CHROMIUM_ELECTRON_EXITED_BEFORE_READY: "CHROMIUM_ELECTRON_EXITED_BEFORE_READY",
16585
16585
  KEYBOARD_KEY_UNSUPPORTED: "KEYBOARD_KEY_UNSUPPORTED",
16586
16586
  KEYBOARD_CHARACTER_UNSUPPORTED: "KEYBOARD_CHARACTER_UNSUPPORTED",
16587
+ KEYBOARD_TEXT_AND_KEY_COMBINED: "KEYBOARD_TEXT_AND_KEY_COMBINED",
16587
16588
  SECRET_PLACEHOLDER_UNKNOWN: "SECRET_PLACEHOLDER_UNKNOWN",
16588
16589
  SCREENSHOT_DIFF_INPUT_INVALID: "SCREENSHOT_DIFF_INPUT_INVALID",
16589
16590
  BOOT_DEVICE_TARGET_SELECTION_INVALID: "BOOT_DEVICE_TARGET_SELECTION_INVALID",
@@ -17401,7 +17402,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
17401
17402
  var SESSION_ID = randomUUID3();
17402
17403
  function readCliVersion() {
17403
17404
  if (true) {
17404
- return "0.20.0";
17405
+ return "0.21.0";
17405
17406
  }
17406
17407
  return "0.0.0";
17407
17408
  }
@@ -16641,6 +16641,7 @@ var FAILURE_CODES = {
16641
16641
  CHROMIUM_ELECTRON_EXITED_BEFORE_READY: "CHROMIUM_ELECTRON_EXITED_BEFORE_READY",
16642
16642
  KEYBOARD_KEY_UNSUPPORTED: "KEYBOARD_KEY_UNSUPPORTED",
16643
16643
  KEYBOARD_CHARACTER_UNSUPPORTED: "KEYBOARD_CHARACTER_UNSUPPORTED",
16644
+ KEYBOARD_TEXT_AND_KEY_COMBINED: "KEYBOARD_TEXT_AND_KEY_COMBINED",
16644
16645
  SECRET_PLACEHOLDER_UNKNOWN: "SECRET_PLACEHOLDER_UNKNOWN",
16645
16646
  SCREENSHOT_DIFF_INPUT_INVALID: "SCREENSHOT_DIFF_INPUT_INVALID",
16646
16647
  BOOT_DEVICE_TARGET_SELECTION_INVALID: "BOOT_DEVICE_TARGET_SELECTION_INVALID",
@@ -19973,7 +19974,7 @@ async function startMcpServer(options) {
19973
19974
  ...content,
19974
19975
  {
19975
19976
  type: "text",
19976
- text: "Auto-screenshot skipped: the input contains a {{secret:\u2026}} placeholder, and a screenshot of this screen could reveal the typed secret. Submit or navigate away first, then verify the resulting screen as usual."
19977
+ text: "Auto-screenshot skipped: the input contains a {{secret:\u2026}} placeholder, and a screenshot of this screen could reveal the typed secret. The secret is already typed \u2014 do not send the typing step again, or the field will hold two copies of it. Submit or navigate away, then verify the resulting screen as usual. Only this call is covered: the next call is screenshotted normally, and captures the secret if the field is still on screen. To cover the submit as well, put the typing and the submit in ONE `run-sequence` the next time you type a secret."
19977
19978
  }
19978
19979
  ];
19979
19980
  } else if (autoScreenshotOn && udid && shouldAutoScreenshot(params.name)) {