removedInput schema / $defs / ListDefinitionsInput
Removed value: -{
- "additionalProperties": false,
- "description": "查询 X-Definition 的输入参数",
- "properties": {
- "def_type": {
- "$ref": "#/$defs/DefinitionType",
- "description": "定义类型:component / trait / policy / workflowstep"
- },
- "definition_name": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "定义名。填写后返回详情(含参数 schema)",
- "title": "Definition Name"
- },
- "query_all": {
- "default": false,
- "description": "是否包含隐藏定义(默认只列常用定义)",
- "title": "Query All",
- "type": "boolean"
- },
- "response_format": {
- "$ref": "#/$defs/ResponseFormat",
- "default": "markdown"
- }
- },
- "required": [
- "def_type"
- ],
- "title": "ListDefinitionsInput",
- "type": "object"
-}
addedInput schema / properties / def_type
Added value: +{
+ "$ref": "#/$defs/DefinitionType",
+ "description": "定义类型:component / trait / policy / workflowstep"
+}
addedInput schema / properties / definition_name
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "定义名。填写后返回详情(含参数 schema)",
+ "title": "Definition Name"
+}
removedInput schema / properties / params
Removed value: -{
- "$ref": "#/$defs/ListDefinitionsInput"
-}
addedInput schema / properties / query_all
Added value: +{
+ "default": false,
+ "description": "是否包含隐藏定义(默认只列常用定义)",
+ "title": "Query All",
+ "type": "boolean"
+}
addedInput schema / properties / response_format
Added value: +{
+ "$ref": "#/$defs/ResponseFormat",
+ "default": "markdown"
+}
changedInput schema / required
Previous value: -[
- "params"
-]New value: +[
+ "def_type"
+]