removedInput schema / $defs / ListTargetsInput
Removed value: -{
- "additionalProperties": false,
- "description": "列出交付目标的输入参数",
- "properties": {
- "page": {
- "default": 0,
- "minimum": 0,
- "title": "Page",
- "type": "integer"
- },
- "page_size": {
- "default": 20,
- "maximum": 100,
- "minimum": 1,
- "title": "Page Size",
- "type": "integer"
- },
- "project_name": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "按项目过滤",
- "title": "Project Name"
- },
- "response_format": {
- "$ref": "#/$defs/ResponseFormat",
- "default": "markdown"
- }
- },
- "title": "ListTargetsInput",
- "type": "object"
-}
addedInput schema / properties / page
Added value: +{
+ "default": 0,
+ "minimum": 0,
+ "title": "Page",
+ "type": "integer"
+}
addedInput schema / properties / page_size
Added value: +{
+ "default": 20,
+ "maximum": 100,
+ "minimum": 1,
+ "title": "Page Size",
+ "type": "integer"
+}
removedInput schema / properties / params
Removed value: -{
- "$ref": "#/$defs/ListTargetsInput"
-}
addedInput schema / properties / project_name
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "按项目过滤",
+ "title": "Project Name"
+}
addedInput schema / properties / response_format
Added value: +{
+ "$ref": "#/$defs/ResponseFormat",
+ "default": "markdown"
+}
removedInput schema / required
Removed value: -[
- "params"
-]