removedInput schema / $defs / ListApplicationsInput
Removed value: -{
- "additionalProperties": false,
- "description": "列出应用的输入参数",
- "properties": {
- "env": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "按环境过滤",
- "title": "Env"
- },
- "project_name": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "按项目过滤",
- "title": "Project Name"
- },
- "query": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "按名称/别名/描述模糊过滤",
- "title": "Query"
- },
- "response_format": {
- "$ref": "#/$defs/ResponseFormat",
- "default": "markdown",
- "description": "输出格式:markdown 或 json"
- },
- "target_name": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "按交付目标过滤",
- "title": "Target Name"
- }
- },
- "title": "ListApplicationsInput",
- "type": "object"
-}
addedInput schema / properties / env
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "按环境过滤",
+ "title": "Env"
+}
removedInput schema / properties / params
Removed value: -{
- "$ref": "#/$defs/ListApplicationsInput"
-}
addedInput schema / properties / project_name
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "按项目过滤",
+ "title": "Project Name"
+}
addedInput schema / properties / query
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "按名称/别名/描述模糊过滤",
+ "title": "Query"
+}
addedInput schema / properties / response_format
Added value: +{
+ "$ref": "#/$defs/ResponseFormat",
+ "default": "markdown",
+ "description": "输出格式:markdown 或 json"
+}
addedInput schema / properties / target_name
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "按交付目标过滤",
+ "title": "Target Name"
+}
removedInput schema / required
Removed value: -[
- "params"
-]
addedOutput schema / additionalProperties
Added value: +true
addedOutput schema / description
Added value: +"vela_list_applications 的结构化输出"
addedOutput schema / properties / applications
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Applications"
+}
removedOutput schema / properties / result
Removed value: -{
- "title": "Result",
- "type": "string"
-}
removedOutput schema / required
Removed value: -[
- "result"
-]
changedOutput schema / title
Previous value: -"vela_list_applicationsOutput"New value: +"ListApplicationsOutput"