@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 CHANGED
@@ -8,9 +8,9 @@
8
8
  ![Platform: macOS](https://img.shields.io/badge/platform-macOS-lightgrey)
9
9
  ![Platform: Linux](https://img.shields.io/badge/platform-Linux-lightgrey)
10
10
 
11
- ![TypeScript tests: 10,679](https://img.shields.io/badge/TypeScript_tests-10%2C679-3178C6)
12
- ![Kotlin tests: 2,579](https://img.shields.io/badge/Kotlin_tests-2%2C579-7F52FF)
13
- ![Swift tests: 1,007](https://img.shields.io/badge/Swift_tests-1%2C007-F05138)
11
+ ![TypeScript tests: 10,748](https://img.shields.io/badge/TypeScript_tests-10%2C748-3178C6)
12
+ ![Kotlin tests: 2,686](https://img.shields.io/badge/Kotlin_tests-2%2C686-7F52FF)
13
+ ![Swift tests: 1,016](https://img.shields.io/badge/Swift_tests-1%2C016-F05138)
14
14
  ![Kotlin coverage](https://img.shields.io/endpoint?url=https://kaeawc.github.io/auto-mobile/kotlin-coverage-badge.json)
15
15
  ![Swift coverage](https://img.shields.io/endpoint?url=https://kaeawc.github.io/auto-mobile/swift-coverage-badge.json)
16
16
 
package/README.md.backup CHANGED
@@ -8,9 +8,9 @@
8
8
  ![Platform: macOS](https://img.shields.io/badge/platform-macOS-lightgrey)
9
9
  ![Platform: Linux](https://img.shields.io/badge/platform-Linux-lightgrey)
10
10
 
11
- ![TypeScript tests: 10,679](https://img.shields.io/badge/TypeScript_tests-10%2C679-3178C6)
12
- ![Kotlin tests: 2,579](https://img.shields.io/badge/Kotlin_tests-2%2C579-7F52FF)
13
- ![Swift tests: 1,007](https://img.shields.io/badge/Swift_tests-1%2C007-F05138)
11
+ ![TypeScript tests: 10,748](https://img.shields.io/badge/TypeScript_tests-10%2C748-3178C6)
12
+ ![Kotlin tests: 2,686](https://img.shields.io/badge/Kotlin_tests-2%2C686-7F52FF)
13
+ ![Swift tests: 1,016](https://img.shields.io/badge/Swift_tests-1%2C016-F05138)
14
14
  ![Kotlin coverage](https://img.shields.io/endpoint?url=https://kaeawc.github.io/auto-mobile/kotlin-coverage-badge.json)
15
15
  ![Swift coverage](https://img.shields.io/endpoint?url=https://kaeawc.github.io/auto-mobile/swift-coverage-badge.json)
16
16
 
@@ -8512,8 +8512,16 @@
8512
8512
  "type": "boolean"
8513
8513
  },
8514
8514
  "timeoutMs": {
8515
- "description": "Boot timeout in ms",
8516
- "type": "number"
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.",