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.
- package/README.md +1 -2
- package/android-snapshot-helper/README.md +4 -2
- 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
- package/android-snapshot-helper/dist/agent-device-android-snapshot-helper-0.14.9.apk.sha256 +1 -0
- 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
- package/dist/src/6108.js +17 -17
- package/dist/src/7462.js +1 -1
- package/dist/src/9542.js +1 -1
- package/dist/src/9639.js +2 -2
- package/dist/src/9818.js +1 -1
- package/dist/src/android-adb.d.ts +11 -2
- package/dist/src/android-snapshot-helper.d.ts +12 -2
- package/dist/src/cli.js +46 -46
- package/dist/src/command-schema.js +1 -0
- package/dist/src/contracts.d.ts +1 -0
- package/dist/src/finders.d.ts +1 -0
- package/dist/src/index.d.ts +6 -0
- package/dist/src/internal/daemon.js +20 -20
- package/dist/src/selectors.d.ts +1 -0
- package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+CommandExecution.swift +86 -13
- package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+Interaction.swift +160 -93
- package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+Lifecycle.swift +1 -0
- package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+Models.swift +3 -0
- package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+Snapshot.swift +15 -0
- package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+SystemModal.swift +1 -0
- package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+TvRemote.swift +185 -0
- package/package.json +1 -1
- package/server.json +3 -3
- package/skills/agent-device/SKILL.md +11 -1
- package/skills/dogfood/SKILL.md +3 -1
- package/android-snapshot-helper/dist/agent-device-android-snapshot-helper-0.14.8.apk.sha256 +0 -1
- package/skills/react-devtools/SKILL.md +0 -48
package/dist/src/finders.d.ts
CHANGED
package/dist/src/index.d.ts
CHANGED
|
@@ -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';
|