From da7e6a27e27df7a4151c92ca78ae6b96843f8bd4 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 28 Nov 2025 00:31:27 +0000 Subject: [PATCH] Update API specifications with fern api update --- fern/openapi/skyvern_openapi.json | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/fern/openapi/skyvern_openapi.json b/fern/openapi/skyvern_openapi.json index 4f2978801c..2f57d631d9 100644 --- a/fern/openapi/skyvern_openapi.json +++ b/fern/openapi/skyvern_openapi.json @@ -5282,11 +5282,6 @@ ], "title": "Description" }, - "order": { - "type": "integer", - "minimum": 0, - "title": "Order" - }, "is_default": { "type": "boolean", "title": "Is Default", @@ -5294,9 +5289,6 @@ } }, "type": "object", - "required": [ - "order" - ], "title": "BranchCondition", "description": "Represents a single conditional branch edge within a ConditionalBlock." }, @@ -5306,6 +5298,10 @@ "type": "string", "title": "Criteria Type" }, + "expression": { + "type": "string", + "title": "Expression" + }, "description": { "anyOf": [ { @@ -5320,7 +5316,8 @@ }, "type": "object", "required": [ - "criteria_type" + "criteria_type", + "expression" ], "title": "BranchCriteria", "description": "Abstract interface describing how a branch condition should be evaluated." @@ -5908,12 +5905,12 @@ "title": "Disable Cache", "default": false }, - "branches": { + "branch_conditions": { "items": { "$ref": "#/components/schemas/BranchCondition" }, "type": "array", - "title": "Branches" + "title": "Branch Conditions" } }, "type": "object", @@ -5922,7 +5919,7 @@ "output_parameter" ], "title": "ConditionalBlock", - "description": "Branching block that selects the next block label based on ordered conditions." + "description": "Branching block that selects the next block label based on list-ordered conditions." }, "ContextParameter": { "properties": {