removedInput schema / $defs
Removed value: -{
- "GetWorkflowLogsInput": {
- "additionalProperties": false,
- "description": "查询工作流步骤日志的输入参数",
- "properties": {
- "app_name": {
- "description": "应用名称",
- "minLength": 1,
- "title": "App Name",
- "type": "string"
- },
- "record": {
- "description": "工作流执行记录名",
- "minLength": 1,
- "title": "Record",
- "type": "string"
- },
- "step": {
- "description": "步骤名(必填,来自记录详情中的步骤列表)",
- "title": "Step",
- "type": "string"
- },
- "workflow_name": {
- "description": "工作流名",
- "minLength": 1,
- "title": "Workflow Name",
- "type": "string"
- }
- },
- "required": [
- "app_name",
- "workflow_name",
- "record",
- "step"
- ],
- "title": "GetWorkflowLogsInput",
- "type": "object"
- }
-}
addedInput schema / properties / app_name
Added value: +{
+ "description": "应用名称",
+ "minLength": 1,
+ "title": "App Name",
+ "type": "string"
+}
removedInput schema / properties / params
Removed value: -{
- "$ref": "#/$defs/GetWorkflowLogsInput"
-}
addedInput schema / properties / record
Added value: +{
+ "description": "工作流执行记录名",
+ "minLength": 1,
+ "title": "Record",
+ "type": "string"
+}
addedInput schema / properties / step
Added value: +{
+ "description": "步骤名(必填,来自记录详情中的步骤列表)",
+ "title": "Step",
+ "type": "string"
+}
addedInput schema / properties / workflow_name
Added value: +{
+ "description": "工作流名",
+ "minLength": 1,
+ "title": "Workflow Name",
+ "type": "string"
+}
changedInput schema / required
Previous value: -[
- "params"
-]New value: +[
+ "app_name",
+ "workflow_name",
+ "record",
+ "step"
+]