removedInput schema / $defs / AppStatusInput
Removed value: -{
- "additionalProperties": false,
- "description": "查询应用状态的输入参数",
- "properties": {
- "app_name": {
- "description": "应用名称",
- "minLength": 1,
- "title": "App Name",
- "type": "string"
- },
- "env": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "环境名。不填返回所有环境的状态概览",
- "title": "Env"
- },
- "response_format": {
- "$ref": "#/$defs/ResponseFormat",
- "default": "markdown"
- }
- },
- "required": [
- "app_name"
- ],
- "title": "AppStatusInput",
- "type": "object"
-}
addedInput schema / properties / app_name
Added value: +{
+ "description": "应用名称",
+ "minLength": 1,
+ "title": "App Name",
+ "type": "string"
+}
addedInput schema / properties / env
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "环境名。不填返回所有环境的状态概览",
+ "title": "Env"
+}
removedInput schema / properties / params
Removed value: -{
- "$ref": "#/$defs/AppStatusInput"
-}
addedInput schema / properties / response_format
Added value: +{
+ "$ref": "#/$defs/ResponseFormat",
+ "default": "markdown"
+}
changedInput schema / required
Previous value: -[
- "params"
-]New value: +[
+ "app_name"
+]
addedOutput schema / additionalProperties
Added value: +true
addedOutput schema / description
Added value: +"vela_get_app_status 的结构化输出(status 可为列表或字典)"
removedOutput schema / properties / result
Removed value: -{
- "title": "Result",
- "type": "string"
-}
addedOutput schema / properties / status
Added value: +{
+ "anyOf": [
+ {},
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Status"
+}
removedOutput schema / required
Removed value: -[
- "result"
-]
changedOutput schema / title
Previous value: -"vela_get_app_statusOutput"New value: +"GetAppStatusOutput"