From b8342d8c113e2fb18e4abe2974377c6acee95ce1 Mon Sep 17 00:00:00 2001 From: koval Date: Tue, 3 Mar 2026 17:24:13 +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 91976ee..61a94e6 100644 --- a/huntflow_api_client/models/response/dictionaries.py +++ b/huntflow_api_client/models/response/dictionaries.py @@ -61,4 +61,8 @@ class DictionaryResponse(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", + ) fields: List[DictionaryField] = Field(..., description="List of dictionary fields") diff --git a/pyproject.toml b/pyproject.toml index cb7f5ab..7b4a035 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "huntflow-api-client" -version = "2.11.0" +version = "2.12.0" description = "Huntflow API Client for Python" authors = [ {name = "Developers huntflow", email = "developer@huntflow.ru"},