aiinbx 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of aiinbx might be problematic. Click here for more details.

@@ -0,0 +1,61 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import List
6
+ from typing_extensions import Literal, Annotated, TypedDict
7
+
8
+ from .._utils import PropertyInfo
9
+
10
+ __all__ = ["ThreadSearchParams"]
11
+
12
+
13
+ class ThreadSearchParams(TypedDict, total=False):
14
+ conversation_state: Annotated[
15
+ Literal["awaiting_reply", "needs_reply", "active", "stale"], PropertyInfo(alias="conversationState")
16
+ ]
17
+
18
+ created_after: Annotated[str, PropertyInfo(alias="createdAfter")]
19
+
20
+ created_before: Annotated[str, PropertyInfo(alias="createdBefore")]
21
+
22
+ has_email_from_address: Annotated[str, PropertyInfo(alias="hasEmailFromAddress")]
23
+
24
+ has_email_to_address: Annotated[str, PropertyInfo(alias="hasEmailToAddress")]
25
+
26
+ has_participant_emails: Annotated[List[str], PropertyInfo(alias="hasParticipantEmails")]
27
+
28
+ last_email_after: Annotated[str, PropertyInfo(alias="lastEmailAfter")]
29
+
30
+ last_email_before: Annotated[str, PropertyInfo(alias="lastEmailBefore")]
31
+
32
+ limit: float
33
+
34
+ offset: float
35
+
36
+ some_email_has_direction: Annotated[Literal["INBOUND", "OUTBOUND"], PropertyInfo(alias="someEmailHasDirection")]
37
+
38
+ some_email_has_status: Annotated[
39
+ Literal[
40
+ "DRAFT",
41
+ "QUEUED",
42
+ "ACCEPTED",
43
+ "SENT",
44
+ "RECEIVED",
45
+ "FAILED",
46
+ "BOUNCED",
47
+ "COMPLAINED",
48
+ "REJECTED",
49
+ "READ",
50
+ "ARCHIVED",
51
+ ],
52
+ PropertyInfo(alias="someEmailHasStatus"),
53
+ ]
54
+
55
+ sort_by: Annotated[Literal["createdAt", "lastEmailAt", "subject"], PropertyInfo(alias="sortBy")]
56
+
57
+ sort_order: Annotated[Literal["asc", "desc"], PropertyInfo(alias="sortOrder")]
58
+
59
+ stale_threshold_days: Annotated[float, PropertyInfo(alias="staleThresholdDays")]
60
+
61
+ subject_contains: Annotated[str, PropertyInfo(alias="subjectContains")]
@@ -0,0 +1,43 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List, Optional
4
+
5
+ from pydantic import Field as FieldInfo
6
+
7
+ from .._models import BaseModel
8
+
9
+ __all__ = ["ThreadSearchResponse", "Pagination", "Thread"]
10
+
11
+
12
+ class Pagination(BaseModel):
13
+ has_more: bool = FieldInfo(alias="hasMore")
14
+
15
+ limit: float
16
+
17
+ offset: float
18
+
19
+ total: float
20
+
21
+
22
+ class Thread(BaseModel):
23
+ id: str
24
+
25
+ created_at: str = FieldInfo(alias="createdAt")
26
+
27
+ email_count: float = FieldInfo(alias="emailCount")
28
+
29
+ last_email_at: Optional[str] = FieldInfo(alias="lastEmailAt", default=None)
30
+
31
+ participant_emails: List[str] = FieldInfo(alias="participantEmails")
32
+
33
+ snippet: Optional[str] = None
34
+
35
+ subject: Optional[str] = None
36
+
37
+ updated_at: str = FieldInfo(alias="updatedAt")
38
+
39
+
40
+ class ThreadSearchResponse(BaseModel):
41
+ pagination: Pagination
42
+
43
+ threads: List[Thread]
@@ -0,0 +1,398 @@
1
+ Metadata-Version: 2.3
2
+ Name: aiinbx
3
+ Version: 0.1.0
4
+ Summary: The official Python library for the AIInbx API
5
+ Project-URL: Homepage, https://github.com/aiinbx/aiinbx-py
6
+ Project-URL: Repository, https://github.com/aiinbx/aiinbx-py
7
+ Author: AI Inbx
8
+ License: Apache-2.0
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Operating System :: MacOS
12
+ Classifier: Operating System :: Microsoft :: Windows
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Operating System :: POSIX
15
+ Classifier: Operating System :: POSIX :: Linux
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Classifier: Typing :: Typed
24
+ Requires-Python: >=3.8
25
+ Requires-Dist: anyio<5,>=3.5.0
26
+ Requires-Dist: distro<2,>=1.7.0
27
+ Requires-Dist: httpx<1,>=0.23.0
28
+ Requires-Dist: pydantic<3,>=1.9.0
29
+ Requires-Dist: sniffio
30
+ Requires-Dist: typing-extensions<5,>=4.10
31
+ Provides-Extra: aiohttp
32
+ Requires-Dist: aiohttp; extra == 'aiohttp'
33
+ Requires-Dist: httpx-aiohttp>=0.1.8; extra == 'aiohttp'
34
+ Description-Content-Type: text/markdown
35
+
36
+ # AI Inbx Python API library
37
+
38
+ <!-- prettier-ignore -->
39
+ [![PyPI version](https://img.shields.io/pypi/v/aiinbx.svg?label=pypi%20(stable))](https://pypi.org/project/aiinbx/)
40
+
41
+ The AI Inbx Python library provides convenient access to the AI Inbx REST API from any Python 3.8+
42
+ application. The library includes type definitions for all request params and response fields,
43
+ and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
44
+
45
+ It is generated with [Stainless](https://www.stainless.com/).
46
+
47
+ ## Documentation
48
+
49
+ The full API of this library can be found in [api.md](https://github.com/aiinbx/aiinbx-py/tree/main/api.md).
50
+
51
+ ## Installation
52
+
53
+ ```sh
54
+ # install from PyPI
55
+ pip install aiinbx
56
+ ```
57
+
58
+ ## Usage
59
+
60
+ The full API of this library can be found in [api.md](https://github.com/aiinbx/aiinbx-py/tree/main/api.md).
61
+
62
+ ```python
63
+ import os
64
+ from aiinbx import AIInbx
65
+
66
+ client = AIInbx(
67
+ api_key=os.environ.get("AI_INBX_API_KEY"), # This is the default and can be omitted
68
+ )
69
+
70
+ response = client.threads.search()
71
+ print(response.pagination)
72
+ ```
73
+
74
+ While you can provide an `api_key` keyword argument,
75
+ we recommend using [python-dotenv](https://pypi.org/project/python-dotenv/)
76
+ to add `AI_INBX_API_KEY="My API Key"` to your `.env` file
77
+ so that your API Key is not stored in source control.
78
+
79
+ ## Async usage
80
+
81
+ Simply import `AsyncAIInbx` instead of `AIInbx` and use `await` with each API call:
82
+
83
+ ```python
84
+ import os
85
+ import asyncio
86
+ from aiinbx import AsyncAIInbx
87
+
88
+ client = AsyncAIInbx(
89
+ api_key=os.environ.get("AI_INBX_API_KEY"), # This is the default and can be omitted
90
+ )
91
+
92
+
93
+ async def main() -> None:
94
+ response = await client.threads.search()
95
+ print(response.pagination)
96
+
97
+
98
+ asyncio.run(main())
99
+ ```
100
+
101
+ Functionality between the synchronous and asynchronous clients is otherwise identical.
102
+
103
+ ### With aiohttp
104
+
105
+ By default, the async client uses `httpx` for HTTP requests. However, for improved concurrency performance you may also use `aiohttp` as the HTTP backend.
106
+
107
+ You can enable this by installing `aiohttp`:
108
+
109
+ ```sh
110
+ # install from PyPI
111
+ pip install aiinbx[aiohttp]
112
+ ```
113
+
114
+ Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
115
+
116
+ ```python
117
+ import asyncio
118
+ from aiinbx import DefaultAioHttpClient
119
+ from aiinbx import AsyncAIInbx
120
+
121
+
122
+ async def main() -> None:
123
+ async with AsyncAIInbx(
124
+ api_key="My API Key",
125
+ http_client=DefaultAioHttpClient(),
126
+ ) as client:
127
+ response = await client.threads.search()
128
+ print(response.pagination)
129
+
130
+
131
+ asyncio.run(main())
132
+ ```
133
+
134
+ ## Using types
135
+
136
+ Nested request parameters are [TypedDicts](https://docs.python.org/3/library/typing.html#typing.TypedDict). Responses are [Pydantic models](https://docs.pydantic.dev) which also provide helper methods for things like:
137
+
138
+ - Serializing back into JSON, `model.to_json()`
139
+ - Converting to a dictionary, `model.to_dict()`
140
+
141
+ Typed requests and responses provide autocomplete and documentation within your editor. If you would like to see type errors in VS Code to help catch bugs earlier, set `python.analysis.typeCheckingMode` to `basic`.
142
+
143
+ ## Handling errors
144
+
145
+ When the library is unable to connect to the API (for example, due to network connection problems or a timeout), a subclass of `aiinbx.APIConnectionError` is raised.
146
+
147
+ When the API returns a non-success status code (that is, 4xx or 5xx
148
+ response), a subclass of `aiinbx.APIStatusError` is raised, containing `status_code` and `response` properties.
149
+
150
+ All errors inherit from `aiinbx.APIError`.
151
+
152
+ ```python
153
+ import aiinbx
154
+ from aiinbx import AIInbx
155
+
156
+ client = AIInbx()
157
+
158
+ try:
159
+ client.threads.search()
160
+ except aiinbx.APIConnectionError as e:
161
+ print("The server could not be reached")
162
+ print(e.__cause__) # an underlying Exception, likely raised within httpx.
163
+ except aiinbx.RateLimitError as e:
164
+ print("A 429 status code was received; we should back off a bit.")
165
+ except aiinbx.APIStatusError as e:
166
+ print("Another non-200-range status code was received")
167
+ print(e.status_code)
168
+ print(e.response)
169
+ ```
170
+
171
+ Error codes are as follows:
172
+
173
+ | Status Code | Error Type |
174
+ | ----------- | -------------------------- |
175
+ | 400 | `BadRequestError` |
176
+ | 401 | `AuthenticationError` |
177
+ | 403 | `PermissionDeniedError` |
178
+ | 404 | `NotFoundError` |
179
+ | 422 | `UnprocessableEntityError` |
180
+ | 429 | `RateLimitError` |
181
+ | >=500 | `InternalServerError` |
182
+ | N/A | `APIConnectionError` |
183
+
184
+ ### Retries
185
+
186
+ Certain errors are automatically retried 2 times by default, with a short exponential backoff.
187
+ Connection errors (for example, due to a network connectivity problem), 408 Request Timeout, 409 Conflict,
188
+ 429 Rate Limit, and >=500 Internal errors are all retried by default.
189
+
190
+ You can use the `max_retries` option to configure or disable retry settings:
191
+
192
+ ```python
193
+ from aiinbx import AIInbx
194
+
195
+ # Configure the default for all requests:
196
+ client = AIInbx(
197
+ # default is 2
198
+ max_retries=0,
199
+ )
200
+
201
+ # Or, configure per-request:
202
+ client.with_options(max_retries=5).threads.search()
203
+ ```
204
+
205
+ ### Timeouts
206
+
207
+ By default requests time out after 1 minute. You can configure this with a `timeout` option,
208
+ which accepts a float or an [`httpx.Timeout`](https://www.python-httpx.org/advanced/timeouts/#fine-tuning-the-configuration) object:
209
+
210
+ ```python
211
+ from aiinbx import AIInbx
212
+
213
+ # Configure the default for all requests:
214
+ client = AIInbx(
215
+ # 20 seconds (default is 1 minute)
216
+ timeout=20.0,
217
+ )
218
+
219
+ # More granular control:
220
+ client = AIInbx(
221
+ timeout=httpx.Timeout(60.0, read=5.0, write=10.0, connect=2.0),
222
+ )
223
+
224
+ # Override per-request:
225
+ client.with_options(timeout=5.0).threads.search()
226
+ ```
227
+
228
+ On timeout, an `APITimeoutError` is thrown.
229
+
230
+ Note that requests that time out are [retried twice by default](https://github.com/aiinbx/aiinbx-py/tree/main/#retries).
231
+
232
+ ## Advanced
233
+
234
+ ### Logging
235
+
236
+ We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module.
237
+
238
+ You can enable logging by setting the environment variable `AI_INBX_LOG` to `info`.
239
+
240
+ ```shell
241
+ $ export AI_INBX_LOG=info
242
+ ```
243
+
244
+ Or to `debug` for more verbose logging.
245
+
246
+ ### How to tell whether `None` means `null` or missing
247
+
248
+ In an API response, a field may be explicitly `null`, or missing entirely; in either case, its value is `None` in this library. You can differentiate the two cases with `.model_fields_set`:
249
+
250
+ ```py
251
+ if response.my_field is None:
252
+ if 'my_field' not in response.model_fields_set:
253
+ print('Got json like {}, without a "my_field" key present at all.')
254
+ else:
255
+ print('Got json like {"my_field": null}.')
256
+ ```
257
+
258
+ ### Accessing raw response data (e.g. headers)
259
+
260
+ The "raw" Response object can be accessed by prefixing `.with_raw_response.` to any HTTP method call, e.g.,
261
+
262
+ ```py
263
+ from aiinbx import AIInbx
264
+
265
+ client = AIInbx()
266
+ response = client.threads.with_raw_response.search()
267
+ print(response.headers.get('X-My-Header'))
268
+
269
+ thread = response.parse() # get the object that `threads.search()` would have returned
270
+ print(thread.pagination)
271
+ ```
272
+
273
+ These methods return an [`APIResponse`](https://github.com/aiinbx/aiinbx-py/tree/main/src/aiinbx/_response.py) object.
274
+
275
+ The async client returns an [`AsyncAPIResponse`](https://github.com/aiinbx/aiinbx-py/tree/main/src/aiinbx/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
276
+
277
+ #### `.with_streaming_response`
278
+
279
+ The above interface eagerly reads the full response body when you make the request, which may not always be what you want.
280
+
281
+ To stream the response body, use `.with_streaming_response` instead, which requires a context manager and only reads the response body once you call `.read()`, `.text()`, `.json()`, `.iter_bytes()`, `.iter_text()`, `.iter_lines()` or `.parse()`. In the async client, these are async methods.
282
+
283
+ ```python
284
+ with client.threads.with_streaming_response.search() as response:
285
+ print(response.headers.get("X-My-Header"))
286
+
287
+ for line in response.iter_lines():
288
+ print(line)
289
+ ```
290
+
291
+ The context manager is required so that the response will reliably be closed.
292
+
293
+ ### Making custom/undocumented requests
294
+
295
+ This library is typed for convenient access to the documented API.
296
+
297
+ If you need to access undocumented endpoints, params, or response properties, the library can still be used.
298
+
299
+ #### Undocumented endpoints
300
+
301
+ To make requests to undocumented endpoints, you can make requests using `client.get`, `client.post`, and other
302
+ http verbs. Options on the client will be respected (such as retries) when making this request.
303
+
304
+ ```py
305
+ import httpx
306
+
307
+ response = client.post(
308
+ "/foo",
309
+ cast_to=httpx.Response,
310
+ body={"my_param": True},
311
+ )
312
+
313
+ print(response.headers.get("x-foo"))
314
+ ```
315
+
316
+ #### Undocumented request params
317
+
318
+ If you want to explicitly send an extra param, you can do so with the `extra_query`, `extra_body`, and `extra_headers` request
319
+ options.
320
+
321
+ #### Undocumented response properties
322
+
323
+ To access undocumented response properties, you can access the extra fields like `response.unknown_prop`. You
324
+ can also get all the extra fields on the Pydantic model as a dict with
325
+ [`response.model_extra`](https://docs.pydantic.dev/latest/api/base_model/#pydantic.BaseModel.model_extra).
326
+
327
+ ### Configuring the HTTP client
328
+
329
+ You can directly override the [httpx client](https://www.python-httpx.org/api/#client) to customize it for your use case, including:
330
+
331
+ - Support for [proxies](https://www.python-httpx.org/advanced/proxies/)
332
+ - Custom [transports](https://www.python-httpx.org/advanced/transports/)
333
+ - Additional [advanced](https://www.python-httpx.org/advanced/clients/) functionality
334
+
335
+ ```python
336
+ import httpx
337
+ from aiinbx import AIInbx, DefaultHttpxClient
338
+
339
+ client = AIInbx(
340
+ # Or use the `AI_INBX_BASE_URL` env var
341
+ base_url="http://my.test.server.example.com:8083",
342
+ http_client=DefaultHttpxClient(
343
+ proxy="http://my.test.proxy.example.com",
344
+ transport=httpx.HTTPTransport(local_address="0.0.0.0"),
345
+ ),
346
+ )
347
+ ```
348
+
349
+ You can also customize the client on a per-request basis by using `with_options()`:
350
+
351
+ ```python
352
+ client.with_options(http_client=DefaultHttpxClient(...))
353
+ ```
354
+
355
+ ### Managing HTTP resources
356
+
357
+ By default the library closes underlying HTTP connections whenever the client is [garbage collected](https://docs.python.org/3/reference/datamodel.html#object.__del__). You can manually close the client using the `.close()` method if desired, or with a context manager that closes when exiting.
358
+
359
+ ```py
360
+ from aiinbx import AIInbx
361
+
362
+ with AIInbx() as client:
363
+ # make requests here
364
+ ...
365
+
366
+ # HTTP client is now closed
367
+ ```
368
+
369
+ ## Versioning
370
+
371
+ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
372
+
373
+ 1. Changes that only affect static types, without breaking runtime behavior.
374
+ 2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_
375
+ 3. Changes that we do not expect to impact the vast majority of users in practice.
376
+
377
+ We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
378
+
379
+ We are keen for your feedback; please open an [issue](https://www.github.com/aiinbx/aiinbx-py/issues) with questions, bugs, or suggestions.
380
+
381
+ ### Determining the installed version
382
+
383
+ If you've upgraded to the latest version but aren't seeing any new features you were expecting then your python environment is likely still using an older version.
384
+
385
+ You can determine the version that is being used at runtime with:
386
+
387
+ ```py
388
+ import aiinbx
389
+ print(aiinbx.__version__)
390
+ ```
391
+
392
+ ## Requirements
393
+
394
+ Python 3.8 or higher.
395
+
396
+ ## Contributing
397
+
398
+ See [the contributing documentation](https://github.com/aiinbx/aiinbx-py/tree/main/./CONTRIBUTING.md).
@@ -0,0 +1,42 @@
1
+ aiinbx/__init__.py,sha256=S2XXdIZyrACZ27wcks37Q7fs87Osk4b8mybg_puibEk,2578
2
+ aiinbx/_base_client.py,sha256=GMx1oa1x0zeHtIcsLAYFFpkku41i495SH8yg8duEJfs,67035
3
+ aiinbx/_client.py,sha256=IX9RS5VVCDPQ1acup6P4WgpVgZ7kN-DEzkP8gA4wbLI,15446
4
+ aiinbx/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
5
+ aiinbx/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
+ aiinbx/_exceptions.py,sha256=te3IaD62WIGnCIvhWUCVGpLZmClKvnv6hEjZFsD9MTA,3220
7
+ aiinbx/_files.py,sha256=KnEzGi_O756MvKyJ4fOCW_u3JhOeWPQ4RsmDvqihDQU,3545
8
+ aiinbx/_models.py,sha256=KvjsMfb88XZlFUKVoOxr8OyDj47MhoH2OKqWNEbBhk4,30010
9
+ aiinbx/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
10
+ aiinbx/_resource.py,sha256=R_-4UEtw4XqdaVP9kNZE-XgrsuRBrQeFB0x4vbgWM_k,1100
11
+ aiinbx/_response.py,sha256=bN_uhJdOtEIu7WonnaRndk73_0N7bpUqEqUx_rZUxH8,28788
12
+ aiinbx/_streaming.py,sha256=ACLuRYE10AheLOR-UkVd0OwWIdUq3uIPT4JrMr4ceb8,10100
13
+ aiinbx/_types.py,sha256=09iXMVfcSWWLbbAZvDykUlCBwa8pKnOH5yBuFNb1tTo,6197
14
+ aiinbx/_version.py,sha256=oF0KGnHAFVzWXCAJibk-Lf5bNQG1fgi0CmW2-k3nMDU,158
15
+ aiinbx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ aiinbx/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
17
+ aiinbx/_utils/_logs.py,sha256=sQ51aPSf-_mQi158zGXZjNr8ud0Pc5hwcTfVVdi-3HI,775
18
+ aiinbx/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
19
+ aiinbx/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
20
+ aiinbx/_utils/_resources_proxy.py,sha256=fztkxSzabzODGt5MssRl78ubuOjl-46zgwZv9MzZr30,589
21
+ aiinbx/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
22
+ aiinbx/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
23
+ aiinbx/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
24
+ aiinbx/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
25
+ aiinbx/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
26
+ aiinbx/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
27
+ aiinbx/resources/__init__.py,sha256=uabpr6upol3w-uWUjNiu-CrwB7SZVqVddiWQ1fv_wTQ,1015
28
+ aiinbx/resources/emails.py,sha256=FqZJGxs-kfyWFviPJwnVPYgmaqIjTPXkPUfhsUv4_Gs,16735
29
+ aiinbx/resources/threads.py,sha256=qZokn2dc5qAxCVdUxrIG-_whzpC0rnv_8L497uJPi08,13689
30
+ aiinbx/types/__init__.py,sha256=U3A9T6ppdx7WB2oVq36RtswBLOZtyZ_h8eKYwuxfLxE,732
31
+ aiinbx/types/email_reply_params.py,sha256=akNojZA2jhLdSzpewVaGw5Du216jiZe2doY1fHbrLSk,609
32
+ aiinbx/types/email_reply_response.py,sha256=Uq8CkHQx_O577ydGONz34JjK4yMkFUOYEXWqDnu2h9s,382
33
+ aiinbx/types/email_retrieve_response.py,sha256=qycc6BSOHvZ_jqXfTW5sdncL3m-QUnwPYa6vtvIH43s,2188
34
+ aiinbx/types/email_send_params.py,sha256=N1FjiOAOs5Tb6GZnPMUmNzsGWxdqw-St8VL8UL-7jdY,755
35
+ aiinbx/types/email_send_response.py,sha256=WGJVnCc1IR762j6KHEmYGHuaTUggrylTV9c1GudIjDw,380
36
+ aiinbx/types/thread_retrieve_response.py,sha256=s5jj2iwBfcoVPeybIOJUVwRhvnc_0NdEMcbDGJnheEw,2364
37
+ aiinbx/types/thread_search_params.py,sha256=ioZX11I1Nhu6MTvSXDX7FSmI4Ny0yAbW9PWXOOKellM,1917
38
+ aiinbx/types/thread_search_response.py,sha256=lldugJNQuQ5tsD9BrgxoDNojAYs7Ks8iZDMxwhnjogY,908
39
+ aiinbx-0.1.0.dist-info/METADATA,sha256=G7krvZavx2SK0NP86GoqI7Khgc0uI-XWeBH1Wgkdr8c,13206
40
+ aiinbx-0.1.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
41
+ aiinbx-0.1.0.dist-info/licenses/LICENSE,sha256=i1rY5G0rFWpuWXv5WPoFrQEOrDWycksLhJxuLBF1tZw,11337
42
+ aiinbx-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.26.3
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any