removedInput schema / $defs
Removed value: -{
- "ActionJsonSchema": {
- "additionalProperties": false,
- "properties": {
- "bg_command_id": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Set only if type!=\"command\" and doing action on a running background command"
- },
- "command": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Set only if type=\"command\""
- },
- "is_background": {
- "default": false,
- "description": "Set only if type=\"command\" and running the command in background",
- "type": "boolean"
- },
- "send_ascii": {
- "anyOf": [
- {
- "items": {
- "type": "integer"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Set only if type=\"send_ascii\""
- },
- "send_specials": {
- "anyOf": [
- {
- "items": {
- "enum": [
- "Enter",
- "Key-up",
- "Key-down",
- "Key-left",
- "Key-right",
- "Ctrl-c",
- "Ctrl-d"
- ],
- "type": "string"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Set only if type=\"send_specials\""
- },
- "send_text": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Set only if type=\"send_text\""
- },
- "status_check": {
- "anyOf": [
- {
- "const": true,
- "type": "boolean"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Set only if type=\"status_check\""
- },
- "type": {
- "description": "type of action.",
- "enum": [
- "command",
- "status_check",
- "send_text",
- "send_specials",
- "send_ascii"
- ],
- "type": "string"
- }
- },
- "required": [
- "type"
- ],
- "type": "object"
- }
-}
removedInput schema / properties / action_json
Removed value: -{
- "$ref": "#/$defs/ActionJsonSchema"
-}
addedInput schema / properties / bg_command_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Set only if type!=\"command\" and doing action on a running background command"
+}
addedInput schema / properties / command
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Set only if type=\"command\""
+}
addedInput schema / properties / is_background
Added value: +{
+ "default": false,
+ "description": "Set only if type=\"command\" and running the command in background",
+ "type": "boolean"
+}
addedInput schema / properties / send_ascii
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "type": "integer"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Set only if type=\"send_ascii\""
+}
addedInput schema / properties / send_specials
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "enum": [
+ "Enter",
+ "Key-up",
+ "Key-down",
+ "Key-left",
+ "Key-right",
+ "Ctrl-c",
+ "Ctrl-d"
+ ],
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Set only if type=\"send_specials\""
+}
addedInput schema / properties / send_text
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Set only if type=\"send_text\""
+}
addedInput schema / properties / status_check
Added value: +{
+ "anyOf": [
+ {
+ "const": true,
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Set only if type=\"status_check\""
+}
addedInput schema / properties / type
Added value: +{
+ "description": "type of action.",
+ "enum": [
+ "command",
+ "status_check",
+ "send_text",
+ "send_specials",
+ "send_ascii"
+ ],
+ "type": "string"
+}
changedInput schema / required
Previous value: -[
- "action_json",
- "thread_id"
-]New value: +[
+ "type",
+ "thread_id"
+]