From b3db37c2f612622d4999c733a6c4dc5a08cf0fbd Mon Sep 17 00:00:00 2001 From: koval Date: Fri, 6 Mar 2026 14:54:58 +0300 Subject: [PATCH] Add last_sync. --- huntflow_api_client/models/response/dictionaries.py | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/huntflow_api_client/models/response/dictionaries.py b/huntflow_api_client/models/response/dictionaries.py index 61a94e6..94508f5 100644 --- a/huntflow_api_client/models/response/dictionaries.py +++ b/huntflow_api_client/models/response/dictionaries.py @@ -29,6 +29,10 @@ class DictionaryItem(BaseModel): description="The unique identifier in the customer's internal system", ) created: datetime = Field(..., description="Date and time of creating a dictionary") + last_sync: Optional[datetime] = Field( + None, + description="Date and time of last dictionary synchronization", + ) class DictionariesListResponse(BaseModel): diff --git a/pyproject.toml b/pyproject.toml index 7b4a035..15e2278 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "huntflow-api-client" -version = "2.12.0" +version = "2.13.0" description = "Huntflow API Client for Python" authors = [ {name = "Developers huntflow", email = "developer@huntflow.ru"},