diff --git a/huntflow_api_client/models/response/delayed_tasks.py b/huntflow_api_client/models/response/delayed_tasks.py index a99b269..6c55094 100644 --- a/huntflow_api_client/models/response/delayed_tasks.py +++ b/huntflow_api_client/models/response/delayed_tasks.py @@ -38,3 +38,4 @@ class DelayedTaskResponse(BaseModel): description="Date and time of the last task update (ISO 8601)", ) states_log: t.List[TaskLog] = Field(..., description="Task change log") + result: t.Optional[t.Dict] = Field(None, description="Task execution result") diff --git a/pyproject.toml b/pyproject.toml index 6b7699a..c7d9914 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "huntflow-api-client" -version = "2.0.0" +version = "2.0.1" description = "Huntflow API Client for Python" authors = [ {name = "Developers huntflow", email = "developer@huntflow.ru"},