Skip to content

Commit 674f761

Browse files
authored
Merge pull request #111 from huntflow/DEV-22199_add_last_sync
[DEV-22199] - Add last_sync
2 parents 5ec187e + b8342d8 commit 674f761

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

huntflow_api_client/models/response/dictionaries.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,8 @@ class DictionaryResponse(BaseModel):
6161
description="The unique identifier in the customer's internal system",
6262
)
6363
created: datetime = Field(..., description="Date and time of creating a dictionary")
64+
last_sync: Optional[datetime] = Field(
65+
None,
66+
description="Date and time of last dictionary synchronization",
67+
)
6468
fields: List[DictionaryField] = Field(..., description="List of dictionary fields")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[project]
33
name = "huntflow-api-client"
4-
version = "2.11.0"
4+
version = "2.12.0"
55
description = "Huntflow API Client for Python"
66
authors = [
77
{name = "Developers huntflow", email = "developer@huntflow.ru"},

0 commit comments

Comments
 (0)