Skip to content

Commit 6c1c29e

Browse files
author
koval
committed
Fix CalendarEventAttendee
1 parent 2682919 commit 6c1c29e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

huntflow_api_client/models/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ class CalendarEventReminder(BaseModel):
237237
class CalendarEventAttendee(BaseModel):
238238
member: Optional[PositiveInt] = Field(None, description="Coworker ID")
239239
name: Optional[str] = Field(None, description="Attendee name", alias="displayName")
240-
email: EmailStr = Field(..., description="Attendee email")
240+
email: str = Field(..., description="Attendee email")
241241

242242
model_config = ConfigDict(populate_by_name=True)
243243

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

0 commit comments

Comments
 (0)