Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 9 additions & 12 deletions fern/openapi/skyvern_openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -5282,21 +5282,13 @@
],
"title": "Description"
},
"order": {
"type": "integer",
"minimum": 0,
"title": "Order"
},
"is_default": {
"type": "boolean",
"title": "Is Default",
"default": false
}
},
"type": "object",
"required": [
"order"
],
"title": "BranchCondition",
"description": "Represents a single conditional branch edge within a ConditionalBlock."
},
Expand All @@ -5306,6 +5298,10 @@
"type": "string",
"title": "Criteria Type"
},
"expression": {
"type": "string",
"title": "Expression"
},
"description": {
"anyOf": [
{
Expand All @@ -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."
Expand Down Expand Up @@ -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",
Expand All @@ -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": {
Expand Down