@kaeawc/auto-mobile 0.0.26 → 0.0.27
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/README.md +3 -3
- package/README.md.backup +3 -3
- package/dist/schemas/tool-definitions.json +16 -3
- package/dist/src/index.js +357 -290
- package/dist/src/index.js.map +1 -1
- package/package.json +3 -3
- package/schemas/tool-definitions.json +16 -3
package/README.md
CHANGED
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|

|
|
9
9
|

|
|
10
10
|
|
|
11
|
-

|
|
12
|
+

|
|
13
|
+

|
|
14
14
|

|
|
15
15
|

|
|
16
16
|
|
package/README.md.backup
CHANGED
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|

|
|
9
9
|

|
|
10
10
|
|
|
11
|
-

|
|
12
|
+

|
|
13
|
+

|
|
14
14
|

|
|
15
15
|

|
|
16
16
|
|
|
@@ -255,12 +255,12 @@
|
|
|
255
255
|
"description": "Tool name to execute"
|
|
256
256
|
},
|
|
257
257
|
"params": {
|
|
258
|
-
"description": "Tool-specific parameters",
|
|
259
258
|
"type": "object",
|
|
260
259
|
"propertyNames": {
|
|
261
260
|
"type": "string"
|
|
262
261
|
},
|
|
263
|
-
"additionalProperties": {}
|
|
262
|
+
"additionalProperties": {},
|
|
263
|
+
"description": "Tool-specific parameters. Must include a non-empty 'device'."
|
|
264
264
|
},
|
|
265
265
|
"label": {
|
|
266
266
|
"description": "Optional human-readable label",
|
|
@@ -268,7 +268,8 @@
|
|
|
268
268
|
}
|
|
269
269
|
},
|
|
270
270
|
"required": [
|
|
271
|
-
"tool"
|
|
271
|
+
"tool",
|
|
272
|
+
"params"
|
|
272
273
|
],
|
|
273
274
|
"additionalProperties": {}
|
|
274
275
|
},
|
|
@@ -2191,6 +2192,10 @@
|
|
|
2191
2192
|
"description": "When true, include unprocessed view hierarchy in response alongside normal output (default: false)",
|
|
2192
2193
|
"type": "boolean"
|
|
2193
2194
|
},
|
|
2195
|
+
"skipBackStack": {
|
|
2196
|
+
"description": "When true, skip back stack collection during waitFor polling to reduce ADB overhead (default: false)",
|
|
2197
|
+
"type": "boolean"
|
|
2198
|
+
},
|
|
2194
2199
|
"sessionUuid": {
|
|
2195
2200
|
"description": "Session UUID",
|
|
2196
2201
|
"type": "string"
|
|
@@ -5934,6 +5939,14 @@
|
|
|
5934
5939
|
"description": "When true, refresh the accessibility hierarchy before tapping and require consecutive re-finds with stable bounds before dispatching the gesture. Prevents tapping stale coordinates when the UI is still settling (loading overlays, list refreshes, keyboard). Recommended for search result lists and dynamic content.",
|
|
5935
5940
|
"type": "boolean"
|
|
5936
5941
|
},
|
|
5942
|
+
"retryIfNoChange": {
|
|
5943
|
+
"description": "When true, compare the view hierarchy before and after the tap. If unchanged (ghost tap detected), retry the tap once after a short delay. Recommended for taps that should cause obvious UI changes like navigation or screen transitions.",
|
|
5944
|
+
"type": "boolean"
|
|
5945
|
+
},
|
|
5946
|
+
"ensureTap": {
|
|
5947
|
+
"description": "Convenience flag that enables both preTapStability and retryIfNoChange. Use on taps in dynamic UI where you want both stable bounds before tapping and ghost-tap detection after.",
|
|
5948
|
+
"type": "boolean"
|
|
5949
|
+
},
|
|
5937
5950
|
"platform": {
|
|
5938
5951
|
"type": "string",
|
|
5939
5952
|
"enum": [
|