Update API specifications with fern api update (#3532)
Some checks failed
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
Build Skyvern SDK and publish to PyPI / check-version-change (push) Has been cancelled
Build Skyvern SDK and publish to PyPI / run-ci (push) Has been cancelled
Build Skyvern SDK and publish to PyPI / build-sdk (push) Has been cancelled

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Shuchang Zheng 2025-09-26 16:16:52 -07:00 committed by GitHub
parent 1cc492056d
commit 7cd1b37d9c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4163,6 +4163,21 @@
"title": "Downloaded Files",
"description": "The list of files downloaded by the browser session"
},
"recordings": {
"anyOf": [
{
"items": {
"$ref": "#/components/schemas/FileInfo"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Recordings",
"description": "The list of video recordings from the browser session"
},
"started_at": {
"anyOf": [
{
@ -10156,6 +10171,22 @@
],
"description": "The script run result"
},
"errors": {
"anyOf": [
{
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Errors",
"description": "The errors for the run"
},
"run_type": {
"type": "string",
"enum": [
@ -11910,6 +11941,17 @@
],
"title": "Run Sequentially"
},
"sequential_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Sequential Key"
},
"created_at": {
"type": "string",
"format": "date-time",
@ -12086,6 +12128,17 @@
"type": "boolean",
"title": "Run Sequentially",
"default": false
},
"sequential_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Sequential Key"
}
},
"type": "object",
@ -13333,6 +13386,22 @@
],
"description": "The script run result"
},
"errors": {
"anyOf": [
{
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Errors",
"description": "The errors for the run"
},
"run_type": {
"type": "string",
"const": "workflow_run",