@midscene/core 1.7.7 → 1.7.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.
@@ -111,6 +111,11 @@ export type IOSDeviceInputOpt = {
111
111
  export type IOSDeviceOpt = {
112
112
  /** Device ID (UDID) to connect to */
113
113
  deviceId?: string;
114
+ /**
115
+ * Optional npm module path used to override the default iOS device implementation.
116
+ * The target module must export an `IOSDevice` class (or default export) compatible with Midscene's iOS device interface.
117
+ */
118
+ iOSDeviceClassOverride?: string;
114
119
  /** Custom device actions to register */
115
120
  customActions?: DeviceAction<any>[];
116
121
  /** WebDriverAgent port (default: 8100) */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@midscene/core",
3
3
  "description": "Automate browser actions, extract data, and perform assertions using AI. It offers JavaScript SDK, Chrome extension, and support for scripting in YAML. See https://midscenejs.com/ for details.",
4
- "version": "1.7.7",
4
+ "version": "1.7.9",
5
5
  "repository": "https://github.com/web-infra-dev/midscene",
6
6
  "homepage": "https://midscenejs.com/",
7
7
  "main": "./dist/lib/index.js",
@@ -97,7 +97,7 @@
97
97
  "semver": "7.5.2",
98
98
  "undici": "^6.0.0",
99
99
  "zod": "^3.25.1",
100
- "@midscene/shared": "1.7.7"
100
+ "@midscene/shared": "1.7.9"
101
101
  },
102
102
  "devDependencies": {
103
103
  "@rslib/core": "^0.18.3",