Skip to content

Commit f6408b0

Browse files
committed
Release 0.0.57
1 parent 9522638 commit f6408b0

27 files changed

Lines changed: 581 additions & 34 deletions

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "agentmail"
33

44
[tool.poetry]
55
name = "agentmail"
6-
version = "0.0.56"
6+
version = "0.0.57"
77
description = ""
88
readme = "README.md"
99
authors = []

reference.md

Lines changed: 278 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1460,6 +1460,145 @@ client.inboxes.messages.get(
14601460
</dl>
14611461

14621462

1463+
</dd>
1464+
</dl>
1465+
</details>
1466+
1467+
<details><summary><code>client.inboxes.messages.<a href="src/agentmail/inboxes/messages/client.py">get_attachment</a>(...)</code></summary>
1468+
<dl>
1469+
<dd>
1470+
1471+
#### 🔌 Usage
1472+
1473+
<dl>
1474+
<dd>
1475+
1476+
<dl>
1477+
<dd>
1478+
1479+
```python
1480+
from agentmail import AgentMail
1481+
1482+
client = AgentMail(
1483+
api_key="YOUR_API_KEY",
1484+
)
1485+
client.inboxes.messages.get_attachment(
1486+
inbox_id="inbox_id",
1487+
message_id="message_id",
1488+
attachment_id="attachment_id",
1489+
)
1490+
1491+
```
1492+
</dd>
1493+
</dl>
1494+
</dd>
1495+
</dl>
1496+
1497+
#### ⚙️ Parameters
1498+
1499+
<dl>
1500+
<dd>
1501+
1502+
<dl>
1503+
<dd>
1504+
1505+
**inbox_id:** `InboxId`
1506+
1507+
</dd>
1508+
</dl>
1509+
1510+
<dl>
1511+
<dd>
1512+
1513+
**message_id:** `MessageId`
1514+
1515+
</dd>
1516+
</dl>
1517+
1518+
<dl>
1519+
<dd>
1520+
1521+
**attachment_id:** `AttachmentId`
1522+
1523+
</dd>
1524+
</dl>
1525+
1526+
<dl>
1527+
<dd>
1528+
1529+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
1530+
1531+
</dd>
1532+
</dl>
1533+
</dd>
1534+
</dl>
1535+
1536+
1537+
</dd>
1538+
</dl>
1539+
</details>
1540+
1541+
<details><summary><code>client.inboxes.messages.<a href="src/agentmail/inboxes/messages/client.py">get_raw</a>(...)</code></summary>
1542+
<dl>
1543+
<dd>
1544+
1545+
#### 🔌 Usage
1546+
1547+
<dl>
1548+
<dd>
1549+
1550+
<dl>
1551+
<dd>
1552+
1553+
```python
1554+
from agentmail import AgentMail
1555+
1556+
client = AgentMail(
1557+
api_key="YOUR_API_KEY",
1558+
)
1559+
client.inboxes.messages.get_raw(
1560+
inbox_id="inbox_id",
1561+
message_id="message_id",
1562+
)
1563+
1564+
```
1565+
</dd>
1566+
</dl>
1567+
</dd>
1568+
</dl>
1569+
1570+
#### ⚙️ Parameters
1571+
1572+
<dl>
1573+
<dd>
1574+
1575+
<dl>
1576+
<dd>
1577+
1578+
**inbox_id:** `InboxId`
1579+
1580+
</dd>
1581+
</dl>
1582+
1583+
<dl>
1584+
<dd>
1585+
1586+
**message_id:** `MessageId`
1587+
1588+
</dd>
1589+
</dl>
1590+
1591+
<dl>
1592+
<dd>
1593+
1594+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
1595+
1596+
</dd>
1597+
</dl>
1598+
</dd>
1599+
</dl>
1600+
1601+
14631602
</dd>
14641603
</dl>
14651604
</details>
@@ -2057,6 +2196,80 @@ client.inboxes.threads.get(
20572196
</dl>
20582197

20592198

2199+
</dd>
2200+
</dl>
2201+
</details>
2202+
2203+
<details><summary><code>client.inboxes.threads.<a href="src/agentmail/inboxes/threads/client.py">get_attachment</a>(...)</code></summary>
2204+
<dl>
2205+
<dd>
2206+
2207+
#### 🔌 Usage
2208+
2209+
<dl>
2210+
<dd>
2211+
2212+
<dl>
2213+
<dd>
2214+
2215+
```python
2216+
from agentmail import AgentMail
2217+
2218+
client = AgentMail(
2219+
api_key="YOUR_API_KEY",
2220+
)
2221+
client.inboxes.threads.get_attachment(
2222+
inbox_id="inbox_id",
2223+
thread_id="thread_id",
2224+
attachment_id="attachment_id",
2225+
)
2226+
2227+
```
2228+
</dd>
2229+
</dl>
2230+
</dd>
2231+
</dl>
2232+
2233+
#### ⚙️ Parameters
2234+
2235+
<dl>
2236+
<dd>
2237+
2238+
<dl>
2239+
<dd>
2240+
2241+
**inbox_id:** `InboxId`
2242+
2243+
</dd>
2244+
</dl>
2245+
2246+
<dl>
2247+
<dd>
2248+
2249+
**thread_id:** `ThreadId`
2250+
2251+
</dd>
2252+
</dl>
2253+
2254+
<dl>
2255+
<dd>
2256+
2257+
**attachment_id:** `AttachmentId`
2258+
2259+
</dd>
2260+
</dl>
2261+
2262+
<dl>
2263+
<dd>
2264+
2265+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
2266+
2267+
</dd>
2268+
</dl>
2269+
</dd>
2270+
</dl>
2271+
2272+
20602273
</dd>
20612274
</dl>
20622275
</details>
@@ -2292,3 +2505,68 @@ client.threads.get(
22922505
</dl>
22932506
</details>
22942507

2508+
<details><summary><code>client.threads.<a href="src/agentmail/threads/client.py">get_attachment</a>(...)</code></summary>
2509+
<dl>
2510+
<dd>
2511+
2512+
#### 🔌 Usage
2513+
2514+
<dl>
2515+
<dd>
2516+
2517+
<dl>
2518+
<dd>
2519+
2520+
```python
2521+
from agentmail import AgentMail
2522+
2523+
client = AgentMail(
2524+
api_key="YOUR_API_KEY",
2525+
)
2526+
client.threads.get_attachment(
2527+
thread_id="thread_id",
2528+
attachment_id="attachment_id",
2529+
)
2530+
2531+
```
2532+
</dd>
2533+
</dl>
2534+
</dd>
2535+
</dl>
2536+
2537+
#### ⚙️ Parameters
2538+
2539+
<dl>
2540+
<dd>
2541+
2542+
<dl>
2543+
<dd>
2544+
2545+
**thread_id:** `ThreadId`
2546+
2547+
</dd>
2548+
</dl>
2549+
2550+
<dl>
2551+
<dd>
2552+
2553+
**attachment_id:** `AttachmentId`
2554+
2555+
</dd>
2556+
</dl>
2557+
2558+
<dl>
2559+
<dd>
2560+
2561+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
2562+
2563+
</dd>
2564+
</dl>
2565+
</dd>
2566+
</dl>
2567+
2568+
2569+
</dd>
2570+
</dl>
2571+
</details>
2572+

0 commit comments

Comments
 (0)