removedInput schema / $defs / ListComponentsInput
Removed value: -{
- "additionalProperties": false,
- "description": "查询组件的输入参数",
- "properties": {
- "app_name": {
- "description": "应用名称",
- "minLength": 1,
- "title": "App Name",
- "type": "string"
- },
- "component": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "组件名。填写后返回该组件详情(含 properties 与 traits)",
- "title": "Component"
- },
- "env": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "环境名(仅列表时生效)",
- "title": "Env"
- },
- "response_format": {
- "$ref": "#/$defs/ResponseFormat",
- "default": "markdown"
- }
- },
- "required": [
- "app_name"
- ],
- "title": "ListComponentsInput",
- "type": "object"
-}
addedInput schema / properties / app_name
Added value: +{
+ "description": "应用名称",
+ "minLength": 1,
+ "title": "App Name",
+ "type": "string"
+}
addedInput schema / properties / component
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "组件名。填写后返回该组件详情(含 properties 与 traits)",
+ "title": "Component"
+}
addedInput schema / properties / env
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "环境名(仅列表时生效)",
+ "title": "Env"
+}
removedInput schema / properties / params
Removed value: -{
- "$ref": "#/$defs/ListComponentsInput"
-}
addedInput schema / properties / response_format
Added value: +{
+ "$ref": "#/$defs/ResponseFormat",
+ "default": "markdown"
+}
changedInput schema / required
Previous value: -[
- "params"
-]New value: +[
+ "app_name"
+]