Skip to content

Commit 3da0ff7

Browse files
authored
Merge pull request #112 from huntflow/DEV-22220_add_last_sync_field
[DEV-22220] - Add last_sync field
2 parents 674f761 + b3db37c commit 3da0ff7

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
@@ -29,6 +29,10 @@ class DictionaryItem(BaseModel):
2929
description="The unique identifier in the customer's internal system",
3030
)
3131
created: datetime = Field(..., description="Date and time of creating a dictionary")
32+
last_sync: Optional[datetime] = Field(
33+
None,
34+
description="Date and time of last dictionary synchronization",
35+
)
3236

3337

3438
class DictionariesListResponse(BaseModel):

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.12.0"
4+
version = "2.13.0"
55
description = "Huntflow API Client for Python"
66
authors = [
77
{name = "Developers huntflow", email = "developer@huntflow.ru"},

0 commit comments

Comments
 (0)