removedInput schema / $defs / AppNameInput
Removed value: -{
- "additionalProperties": false,
- "description": "仅需应用名的输入参数",
- "properties": {
- "app_name": {
- "description": "应用名称",
- "maxLength": 64,
- "minLength": 1,
- "title": "App Name",
- "type": "string"
- },
- "response_format": {
- "$ref": "#/$defs/ResponseFormat",
- "default": "markdown"
- }
- },
- "required": [
- "app_name"
- ],
- "title": "AppNameInput",
- "type": "object"
-}
addedInput schema / properties / app_name
Added value: +{
+ "description": "应用名称",
+ "maxLength": 64,
+ "minLength": 1,
+ "title": "App Name",
+ "type": "string"
+}
removedInput schema / properties / params
Removed value: -{
- "$ref": "#/$defs/AppNameInput"
-}
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_application 的结构化输出(应用详情,字段透传 API 响应)"
addedOutput schema / properties / alias
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Alias"
+}
addedOutput schema / properties / annotations
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Annotations"
+}
addedOutput schema / properties / description
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Description"
+}
addedOutput schema / properties / icon
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Icon"
+}
addedOutput schema / properties / labels
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Labels"
+}
addedOutput schema / properties / name
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Name"
+}
addedOutput schema / properties / namespace
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Namespace"
+}
addedOutput schema / properties / project
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Project"
+}
removedOutput schema / properties / result
Removed value: -{
- "title": "Result",
- "type": "string"
-}
removedOutput schema / required
Removed value: -[
- "result"
-]
changedOutput schema / title
Previous value: -"vela_get_applicationOutput"New value: +"GetApplicationOutput"