SDK: support select_option and extract (#3850)
Some checks are pending
Run tests and pre-commit / Run tests and pre-commit hooks (push) Waiting to run
Run tests and pre-commit / Frontend Lint and Build (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run

This commit is contained in:
Stanislav Novosad 2025-10-30 09:05:20 -06:00 committed by GitHub
parent ac069838c7
commit af9a5f31e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 774 additions and 124 deletions

View file

@ -2317,6 +2317,9 @@
"403": {
"description": "Unauthorized - Invalid or missing authentication"
},
"404": {
"description": "Workflow run or workflow not found"
},
"400": {
"description": "Invalid operation"
},
@ -9733,6 +9736,26 @@
"description": "The workflow run ID used for this action"
},
"result": {
"anyOf": [
{
"type": "string"
},
{
"type": "object"
},
{
"type": "array"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Result",
"description": "The result from the action (e.g., selector, value, extracted data)"
}