We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2682919 commit 6c1c29eCopy full SHA for 6c1c29e
2 files changed
huntflow_api_client/models/common.py
@@ -237,7 +237,7 @@ class CalendarEventReminder(BaseModel):
237
class CalendarEventAttendee(BaseModel):
238
member: Optional[PositiveInt] = Field(None, description="Coworker ID")
239
name: Optional[str] = Field(None, description="Attendee name", alias="displayName")
240
- email: EmailStr = Field(..., description="Attendee email")
+ email: str = Field(..., description="Attendee email")
241
242
model_config = ConfigDict(populate_by_name=True)
243
pyproject.toml
@@ -1,7 +1,7 @@
1
2
[project]
3
name = "huntflow-api-client"
4
-version = "2.7.0"
+version = "2.8.0"
5
description = "Huntflow API Client for Python"
6
authors = [
7
{name = "Developers huntflow", email = "developer@huntflow.ru"},
0 commit comments