@kaeawc/auto-mobile 0.0.42 → 0.0.43

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaeawc/auto-mobile",
3
- "version": "0.0.42",
3
+ "version": "0.0.43",
4
4
  "description": "Mobile device interaction automation via MCP",
5
5
  "scripts": {
6
6
  "test": "bun test",
@@ -3665,6 +3665,67 @@
3665
3665
  },
3666
3666
  "outputSchema": {
3667
3667
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3668
+ "$defs": {
3669
+ "__schema0": {
3670
+ "type": "object",
3671
+ "properties": {
3672
+ "bounds": {
3673
+ "type": "object",
3674
+ "properties": {
3675
+ "left": {
3676
+ "type": "number"
3677
+ },
3678
+ "top": {
3679
+ "type": "number"
3680
+ },
3681
+ "right": {
3682
+ "type": "number"
3683
+ },
3684
+ "bottom": {
3685
+ "type": "number"
3686
+ },
3687
+ "centerX": {
3688
+ "type": "number"
3689
+ },
3690
+ "centerY": {
3691
+ "type": "number"
3692
+ }
3693
+ },
3694
+ "required": [
3695
+ "left",
3696
+ "top",
3697
+ "right",
3698
+ "bottom"
3699
+ ],
3700
+ "additionalProperties": false,
3701
+ "description": "Element bounds. Default: object {left, top, right, bottom} (+ optional centerX/centerY). Under --observe-result-compact: positional tuple [left, top, right, bottom]."
3702
+ },
3703
+ "occlusionState": {
3704
+ "type": "string"
3705
+ },
3706
+ "occludedBy": {
3707
+ "type": "string"
3708
+ },
3709
+ "occludedByViewId": {
3710
+ "type": "string"
3711
+ },
3712
+ "node": {
3713
+ "anyOf": [
3714
+ {
3715
+ "$ref": "#/$defs/__schema0"
3716
+ },
3717
+ {
3718
+ "type": "array",
3719
+ "items": {
3720
+ "$ref": "#/$defs/__schema0"
3721
+ }
3722
+ }
3723
+ ]
3724
+ }
3725
+ },
3726
+ "additionalProperties": {}
3727
+ }
3728
+ },
3668
3729
  "type": "object",
3669
3730
  "properties": {
3670
3731
  "screenSize": {