@midscene/mcp 1.0.1-beta-20251028121806.0 → 1.0.1-beta-20251029093754.0

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 (3) hide show
  1. package/dist/api.mdx +1 -1
  2. package/dist/index.js +327 -265
  3. package/package.json +6 -6
package/dist/api.mdx CHANGED
@@ -241,7 +241,7 @@ function aiInput(
241
241
  - `deepThink?: boolean` - If true, Midscene will call AI model twice to precisely locate the element. False by default.
242
242
  - `xpath?: string` - The xpath of the element to operate. If provided, Midscene will first use this xpath to locate the element before using the cache and the AI model. Empty by default.
243
243
  - `cacheable?: boolean` - Whether cacheable when enabling [caching feature](./caching.mdx). True by default.
244
- - `autoDismissKeyboard?: boolean` - If true, the keyboard will be dismissed after input text, only available in Android. (Default: true)
244
+ - `autoDismissKeyboard?: boolean` - If true, the keyboard will be dismissed after input text, only available in Android/iOS. (Default: true)
245
245
  - `mode?: 'replace' | 'clear' | 'append'` - Input mode. (Default: 'replace')
246
246
  - `'replace'`: Clear the input field first, then input the text.
247
247
  - `'append'`: Append the text to existing content without clearing.