cloud ui docs + cookbooks (#4759)

Co-authored-by: Ritik Sahni <ritiksahni0203@gmail.com>
Co-authored-by: Kunal Mishra <kunalm2345@gmail.com>
This commit is contained in:
Naman
2026-02-17 03:44:40 +05:30
committed by GitHub
parent 06fe51adfa
commit bf8c7de8f9
52 changed files with 4211 additions and 471 deletions

View File

@@ -239,7 +239,7 @@ const versions = await skyvern.getWorkflowVersions(
```typescript
const updated = await skyvern.updateWorkflow(
workflowId: string, // The version ID (not permanent ID).
workflowId: string, // The permanent ID (wpid_...).
request?: { json_definition?: object; yaml_definition?: string },
): Promise<Workflow>
```
@@ -329,7 +329,7 @@ const profile = await skyvern.createBrowserProfile({
name: string,
description?: string,
workflow_run_id?: string, // Run must have used persist_browser_session: true.
browser_session_id?: string,
browser_session_id?: string, // One of workflow_run_id or browser_session_id is required.
}): Promise<BrowserProfile>
```