Skip to content

Commit 2cb6b93

Browse files
Release 0.4.7
1 parent 43e6a17 commit 2cb6b93

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
},
1010
"should_generate_websocket_clients": true
1111
},
12-
"sdkVersion": "0.4.5"
12+
"sdkVersion": "0.4.7"
1313
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dynamic = ["version"]
44

55
[tool.poetry]
66
name = "agentmail"
7-
version = "0.4.5"
7+
version = "0.4.7"
88
description = ""
99
readme = "README.md"
1010
authors = []

src/agentmail/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ def get_headers(self) -> typing.Dict[str, str]:
2828
import platform
2929

3030
headers: typing.Dict[str, str] = {
31-
"User-Agent": "agentmail/0.4.5",
31+
"User-Agent": "agentmail/0.4.7",
3232
"X-Fern-Language": "Python",
3333
"X-Fern-Runtime": f"python/{platform.python_version()}",
3434
"X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}",
3535
"X-Fern-SDK-Name": "agentmail",
36-
"X-Fern-SDK-Version": "0.4.5",
36+
"X-Fern-SDK-Version": "0.4.7",
3737
**(self.get_custom_headers() or {}),
3838
}
3939
headers["Authorization"] = f"Bearer {self._get_api_key()}"

src/agentmail/drafts/types/draft_item.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from .draft_bcc import DraftBcc
1111
from .draft_cc import DraftCc
1212
from .draft_id import DraftId
13+
from .draft_in_reply_to import DraftInReplyTo
1314
from .draft_labels import DraftLabels
1415
from .draft_preview import DraftPreview
1516
from .draft_send_at import DraftSendAt
@@ -29,6 +30,7 @@ class DraftItem(UncheckedBaseModel):
2930
subject: typing.Optional[DraftSubject] = None
3031
preview: typing.Optional[DraftPreview] = None
3132
attachments: typing.Optional[DraftAttachments] = None
33+
in_reply_to: typing.Optional[DraftInReplyTo] = None
3234
send_status: typing.Optional[DraftSendStatus] = None
3335
send_at: typing.Optional[DraftSendAt] = None
3436
updated_at: DraftUpdatedAt

0 commit comments

Comments
 (0)