Update API specifications with fern api update (#2949)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Shuchang Zheng
2025-07-15 01:23:20 -07:00
committed by GitHub
parent 23e31dac67
commit f61ac4b49c
5 changed files with 49 additions and 59 deletions

View File

@@ -172,6 +172,23 @@ navigation:
- POST /v1/workflows
- POST /v1/workflows/{workflow_id}
- POST /v1/workflows/{workflow_id}/delete
- section: Browser Sessions
contents:
- POST /v1/browser_sessions
- GET /v1/browser_sessions/{browser_session_id}
- POST /v1/browser_sessions/{browser_session_id}/close
- GET /v1/browser_sessions
- section: Credentials
contents:
- POST /v1/credentials
- GET /v1/credentials/{credential_id}
- POST /v1/credentials/{credential_id}/delete
- GET /v1/credentials
- POST /v1/credentials/totp
- section: Artifacts
contents:
- GET /v1/artifacts/{artifact_id}
- GET /v1/runs/{run_id}/artifacts
- tab: blog
- tab: community
- tab: github

View File

@@ -2941,6 +2941,37 @@
120
]
},
"browser_address": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Browser Address",
"description": "Url for connecting to the browser",
"examples": [
"http://localhost:9222",
"https://3.12.10.11/browser/123456"
]
},
"app_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "App Url",
"description": "Url for the browser session page",
"examples": [
"https://app.skyvern.com/browser-session/pbs_123456"
]
},
"started_at": {
"anyOf": [
{