agent-device 0.14.8 → 0.14.9

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.
Files changed (32) hide show
  1. package/README.md +1 -2
  2. package/android-snapshot-helper/README.md +4 -2
  3. package/android-snapshot-helper/dist/{agent-device-android-snapshot-helper-0.14.8.apk → agent-device-android-snapshot-helper-0.14.9.apk} +0 -0
  4. package/android-snapshot-helper/dist/agent-device-android-snapshot-helper-0.14.9.apk.sha256 +1 -0
  5. package/android-snapshot-helper/dist/{agent-device-android-snapshot-helper-0.14.8.manifest.json → agent-device-android-snapshot-helper-0.14.9.manifest.json} +6 -6
  6. package/dist/src/6108.js +17 -17
  7. package/dist/src/7462.js +1 -1
  8. package/dist/src/9542.js +1 -1
  9. package/dist/src/9639.js +2 -2
  10. package/dist/src/9818.js +1 -1
  11. package/dist/src/android-adb.d.ts +11 -2
  12. package/dist/src/android-snapshot-helper.d.ts +12 -2
  13. package/dist/src/cli.js +46 -46
  14. package/dist/src/command-schema.js +1 -0
  15. package/dist/src/contracts.d.ts +1 -0
  16. package/dist/src/finders.d.ts +1 -0
  17. package/dist/src/index.d.ts +6 -0
  18. package/dist/src/internal/daemon.js +20 -20
  19. package/dist/src/selectors.d.ts +1 -0
  20. package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+CommandExecution.swift +86 -13
  21. package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+Interaction.swift +160 -93
  22. package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+Lifecycle.swift +1 -0
  23. package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+Models.swift +3 -0
  24. package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+Snapshot.swift +15 -0
  25. package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+SystemModal.swift +1 -0
  26. package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+TvRemote.swift +185 -0
  27. package/package.json +1 -1
  28. package/server.json +3 -3
  29. package/skills/agent-device/SKILL.md +11 -1
  30. package/skills/dogfood/SKILL.md +3 -1
  31. package/android-snapshot-helper/dist/agent-device-android-snapshot-helper-0.14.8.apk.sha256 +0 -1
  32. package/skills/react-devtools/SKILL.md +0 -48
@@ -53,6 +53,7 @@ declare type RawSnapshotNode = {
53
53
  rect?: Rect;
54
54
  enabled?: boolean;
55
55
  selected?: boolean;
56
+ focused?: boolean;
56
57
  hittable?: boolean;
57
58
  depth?: number;
58
59
  parentIndex?: number;
@@ -840,6 +840,7 @@ declare type RawSnapshotNode = {
840
840
  rect?: Rect;
841
841
  enabled?: boolean;
842
842
  selected?: boolean;
843
+ focused?: boolean;
843
844
  hittable?: boolean;
844
845
  depth?: number;
845
846
  parentIndex?: number;
@@ -987,6 +988,11 @@ declare type SessionRuntimeHints = {
987
988
  export declare type SettingsUpdateOptions = (ClientCommandBaseOptions & {
988
989
  setting: 'wifi' | 'airplane' | 'location';
989
990
  state: 'on' | 'off';
991
+ }) | (ClientCommandBaseOptions & {
992
+ setting: 'location';
993
+ state: 'set';
994
+ latitude: number;
995
+ longitude: number;
990
996
  }) | (ClientCommandBaseOptions & {
991
997
  setting: 'animations';
992
998
  state: 'on' | 'off';