removedInput schema / $defs / ListDeployRecordsInput
Removed value: -{
- "additionalProperties": false,
- "description": "查询环境部署记录的输入参数",
- "properties": {
- "app_name": {
- "description": "应用名称",
- "minLength": 1,
- "title": "App Name",
- "type": "string"
- },
- "env": {
- "description": "环境名",
- "minLength": 1,
- "title": "Env",
- "type": "string"
- },
- "page": {
- "default": 0,
- "minimum": 0,
- "title": "Page",
- "type": "integer"
- },
- "page_size": {
- "default": 20,
- "maximum": 100,
- "minimum": 1,
- "title": "Page Size",
- "type": "integer"
- },
- "response_format": {
- "$ref": "#/$defs/ResponseFormat",
- "default": "markdown"
- }
- },
- "required": [
- "app_name",
- "env"
- ],
- "title": "ListDeployRecordsInput",
- "type": "object"
-}
addedInput schema / properties / app_name
Added value: +{
+ "description": "应用名称",
+ "minLength": 1,
+ "title": "App Name",
+ "type": "string"
+}
addedInput schema / properties / env
Added value: +{
+ "description": "环境名",
+ "minLength": 1,
+ "title": "Env",
+ "type": "string"
+}
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/ListDeployRecordsInput"
-}
addedInput schema / properties / response_format
Added value: +{
+ "$ref": "#/$defs/ResponseFormat",
+ "default": "markdown"
+}
changedInput schema / required
Previous value: -[
- "params"
-]New value: +[
+ "app_name",
+ "env"
+]