@kaeawc/auto-mobile 0.0.52 → 0.0.55
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 +10 -2
- package/dist/src/index.js +354 -344
- package/dist/src/index.js.map +1 -1
- package/package.json +2 -2
- package/schemas/tool-definitions.json +10 -2
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
|
|
|
@@ -8512,8 +8512,16 @@
|
|
|
8512
8512
|
"type": "boolean"
|
|
8513
8513
|
},
|
|
8514
8514
|
"timeoutMs": {
|
|
8515
|
-
"description": "
|
|
8516
|
-
"type": "
|
|
8515
|
+
"description": "Total device boot and automation-readiness timeout in ms",
|
|
8516
|
+
"type": "integer",
|
|
8517
|
+
"exclusiveMinimum": 0,
|
|
8518
|
+
"maximum": 890000
|
|
8519
|
+
},
|
|
8520
|
+
"runnerReadinessTimeoutMs": {
|
|
8521
|
+
"description": "Runner-readiness budget in ms within timeoutMs; overrides the daemon default (1000-120000)",
|
|
8522
|
+
"type": "integer",
|
|
8523
|
+
"minimum": 1000,
|
|
8524
|
+
"maximum": 120000
|
|
8517
8525
|
},
|
|
8518
8526
|
"createIfMissing": {
|
|
8519
8527
|
"description": "Create a device when nothing matches (CLI: --create-if-missing). Default off; AUTOMOBILE_ALLOW_DEVICE_CREATE=1 enables it when this flag is not supplied, and the flag wins.",
|