From e8cc885283a8bad81c2ddfb2e054ce300502fe60 Mon Sep 17 00:00:00 2001 From: koval Date: Wed, 1 Apr 2026 15:18:14 +0300 Subject: [PATCH 1/2] Add private. --- huntflow_api_client/models/response/applicant_logs.py | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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..25ffa5a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "huntflow-api-client" -version = "2.13.1" +version = "2.14.0" description = "Huntflow API Client for Python" authors = [ {name = "Developers huntflow", email = "developer@huntflow.ru"}, From 25cc2108d40cea8ab7bedec408d37d49083b31a2 Mon Sep 17 00:00:00 2001 From: koval Date: Thu, 2 Apr 2026 10:41:24 +0300 Subject: [PATCH 2/2] Fix version. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 25ffa5a..5d065be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "huntflow-api-client" -version = "2.14.0" +version = "2.13.2" description = "Huntflow API Client for Python" authors = [ {name = "Developers huntflow", email = "developer@huntflow.ru"},