diff --git a/huntflow_api_client/models/response/applicant_logs.py b/huntflow_api_client/models/response/applicant_logs.py index 5522bb2..34761eb 100644 --- a/huntflow_api_client/models/response/applicant_logs.py +++ b/huntflow_api_client/models/response/applicant_logs.py @@ -122,6 +122,10 @@ class ApplicantLogCalendarEvent(BaseModel): status: CalendarEventStatus = Field(..., description="Event status") transparency: Transparency = Field(..., description="Event transparency (availability)") recurrence: Optional[List] = None + private: Optional[bool] = Field( + None, + description="Flag indicating private visibility of the event", + ) class ApplicantLogEmailResponse(BaseModel): diff --git a/pyproject.toml b/pyproject.toml index 3f27e5c..5d065be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "huntflow-api-client" -version = "2.13.1" +version = "2.13.2" description = "Huntflow API Client for Python" authors = [ {name = "Developers huntflow", email = "developer@huntflow.ru"},