mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-15 01:39:41 +00:00
Add Checksums to downloaded files for Axis so they can validate it in the webhook (#1848)
This commit is contained in:
parent
c73ad6ed68
commit
995d9461b5
10 changed files with 136 additions and 31 deletions
|
@ -5,6 +5,7 @@ from typing import Any, List
|
|||
from pydantic import BaseModel, field_validator
|
||||
|
||||
from skyvern.forge.sdk.core.validators import validate_url
|
||||
from skyvern.forge.sdk.schemas.files import FileInfo
|
||||
from skyvern.forge.sdk.schemas.task_v2 import ObserverTask
|
||||
from skyvern.forge.sdk.schemas.tasks import ProxyLocation
|
||||
from skyvern.forge.sdk.workflow.exceptions import WorkflowDefinitionHasDuplicateBlockLabels
|
||||
|
@ -143,6 +144,7 @@ class WorkflowRunStatusResponse(BaseModel):
|
|||
parameters: dict[str, Any]
|
||||
screenshot_urls: list[str] | None = None
|
||||
recording_url: str | None = None
|
||||
downloaded_files: list[FileInfo] | None = None
|
||||
downloaded_file_urls: list[str] | None = None
|
||||
outputs: dict[str, Any] | None = None
|
||||
total_steps: int | None = None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue