mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-15 09:49:46 +00:00
add webhook failure reason (#3046)
This commit is contained in:
parent
a90d08476f
commit
12cbe1b3d2
10 changed files with 100 additions and 6 deletions
|
@ -116,6 +116,7 @@ class WorkflowRun(BaseModel):
|
|||
extra_http_headers: dict[str, str] | None = None
|
||||
proxy_location: ProxyLocation | None = None
|
||||
webhook_callback_url: str | None = None
|
||||
webhook_failure_reason: str | None = None
|
||||
totp_verification_url: str | None = None
|
||||
totp_identifier: str | None = None
|
||||
failure_reason: str | None = None
|
||||
|
@ -151,6 +152,7 @@ class WorkflowRunResponseBase(BaseModel):
|
|||
failure_reason: str | None = None
|
||||
proxy_location: ProxyLocation | None = None
|
||||
webhook_callback_url: str | None = None
|
||||
webhook_failure_reason: str | None = None
|
||||
totp_verification_url: str | None = None
|
||||
totp_identifier: str | None = None
|
||||
extra_http_headers: dict[str, str] | None = None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue