@swmansion/argent 0.16.1-next.3 → 0.16.1-next.4

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.
@@ -121584,6 +121584,10 @@ var zodSchema2 = external_exports.object({
121584
121584
  var nativeDevtoolsStatusTool = {
121585
121585
  id: "native-devtools-status",
121586
121586
  capability: { apple: { simulator: true, device: true }, appleRemote: { simulator: true } },
121587
+ // The "injectable is false" recovery sentence inlines NON_INJECTABLE_RECOVERY
121588
+ // verbatim: the description must stay a plain literal so scripts/extract-tools.mjs
121589
+ // can read it statically for the spidershield scan. The verbatim match is pinned
121590
+ // by native-devtools-status.test.ts.
121587
121591
  description: `Check whether native devtools are connected to a specific app and whether the next launch is prepared for injection.
121588
121592
  Use when you need to verify native devtools readiness before calling native-full-hierarchy, native-describe-screen, or native-network-logs.
121589
121593
 
@@ -121596,7 +121600,7 @@ Returns { envSetup, appRunning, connected, requiresRestart, nextLaunchWillBeInje
121596
121600
  - injectable: whether native devtools can ever be injected into this app. Apple system apps (bundle ids under com.apple.) are platform binaries with library validation, so the dylib can never load into them.
121597
121601
 
121598
121602
  Call this before using app-scoped native hierarchy tools or native-network-logs.
121599
- If injectable is false: this is a TERMINAL state \u2014 the app can never be injected. Do NOT restart/retry. ${NON_INJECTABLE_RECOVERY}
121603
+ If injectable is false: this is a TERMINAL state \u2014 the app can never be injected. Do NOT restart/retry. Use the standard \`describe\` tool (its accessibility path reads the screen without injection) or \`screenshot\` (then interact by coordinate). Do not fall back to the native-devtools feature tools (native-describe-screen, native-find-views, native-full-hierarchy, native-network-logs, native-view-at-point, native-user-interactable-view-at-point) \u2014 they run the same injection precheck and fail with the same non-injectable error.
121600
121604
  If appRunning is false and nextLaunchWillBeInjected is true: use launch-app normally.
121601
121605
  If requiresRestart is true: call restart-app, then proceed with the native feature.
121602
121606
  Returns { status: "init_failed", message, attempts } instead when the simulator's native-devtools environment failed to initialize.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swmansion/argent",
3
- "version": "0.16.1-next.3",
3
+ "version": "0.16.1-next.4",
4
4
  "description": "MCP server for iOS Simulator and Android Emulator control",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {