addedInput schema / $defs / ShowWindowInput
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "confirm_focus_disruption": {
+ "default": false,
+ "description": "Must be true after the user explicitly requests a visible foreground handoff.",
+ "title": "Confirm Focus Disruption",
+ "type": "boolean"
+ },
+ "display": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Linux only: target a specific X display number (e.g. an Xvfb virtual display 99)",
+ "title": "Display"
+ },
+ "hwnd": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Native window handle / X11 window id (from list_windows)",
+ "title": "Hwnd"
+ },
+ "window_title": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Top-level window title substring (used if hwnd is omitted)",
+ "title": "Window Title"
+ }
+ },
+ "title": "ShowWindowInput",
+ "type": "object"
+}
removedInput schema / $defs / WinTargetInput
Removed value: -{
- "additionalProperties": false,
- "properties": {
- "display": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Linux only: target a specific X display number (e.g. an Xvfb virtual display 99)",
- "title": "Display"
- },
- "hwnd": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Native window handle / X11 window id (from list_windows)",
- "title": "Hwnd"
- },
- "window_title": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Top-level window title substring (used if hwnd is omitted)",
- "title": "Window Title"
- }
- },
- "title": "WinTargetInput",
- "type": "object"
-}
changedInput schema / properties / params / $ref
Previous value: -"#/$defs/WinTargetInput"New value: +"#/$defs/ShowWindowInput"