aiinbx 0.3.0__py3-none-any.whl → 0.5.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.
- aiinbx/__init__.py +3 -1
- aiinbx/_base_client.py +12 -12
- aiinbx/_client.py +29 -9
- aiinbx/_compat.py +48 -48
- aiinbx/_models.py +50 -44
- aiinbx/_qs.py +7 -7
- aiinbx/_types.py +53 -12
- aiinbx/_utils/__init__.py +9 -2
- aiinbx/_utils/_compat.py +45 -0
- aiinbx/_utils/_datetime_parse.py +136 -0
- aiinbx/_utils/_transform.py +13 -3
- aiinbx/_utils/_typing.py +6 -1
- aiinbx/_utils/_utils.py +4 -5
- aiinbx/_version.py +1 -1
- aiinbx/resources/__init__.py +31 -0
- aiinbx/resources/domains.py +455 -0
- aiinbx/resources/emails.py +44 -44
- aiinbx/resources/meta.py +147 -0
- aiinbx/resources/threads.py +56 -56
- aiinbx/resources/webhooks.py +34 -0
- aiinbx/types/__init__.py +21 -0
- aiinbx/types/domain_create_params.py +11 -0
- aiinbx/types/domain_create_response.py +26 -0
- aiinbx/types/domain_delete_response.py +11 -0
- aiinbx/types/domain_list_response.py +48 -0
- aiinbx/types/domain_retrieve_response.py +44 -0
- aiinbx/types/domain_verify_response.py +147 -0
- aiinbx/types/email_reply_params.py +5 -4
- aiinbx/types/email_send_params.py +7 -6
- aiinbx/types/inbound_email_received_webhook_event.py +113 -0
- aiinbx/types/meta_webhooks_schema_response.py +298 -0
- aiinbx/types/outbound_email_bounced_webhook_event.py +44 -0
- aiinbx/types/outbound_email_clicked_webhook_event.py +36 -0
- aiinbx/types/outbound_email_complained_webhook_event.py +36 -0
- aiinbx/types/outbound_email_delivered_webhook_event.py +36 -0
- aiinbx/types/outbound_email_opened_webhook_event.py +32 -0
- aiinbx/types/outbound_email_rejected_webhook_event.py +30 -0
- aiinbx/types/thread_forward_params.py +5 -4
- aiinbx/types/thread_search_params.py +2 -2
- aiinbx/types/unwrap_webhook_event.py +24 -0
- {aiinbx-0.3.0.dist-info → aiinbx-0.5.0.dist-info}/METADATA +1 -1
- aiinbx-0.5.0.dist-info/RECORD +64 -0
- aiinbx-0.3.0.dist-info/RECORD +0 -44
- {aiinbx-0.3.0.dist-info → aiinbx-0.5.0.dist-info}/WHEEL +0 -0
- {aiinbx-0.3.0.dist-info → aiinbx-0.5.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List, Optional
|
|
4
|
+
from typing_extensions import Literal
|
|
5
|
+
|
|
6
|
+
from pydantic import Field as FieldInfo
|
|
7
|
+
|
|
8
|
+
from .._models import BaseModel
|
|
9
|
+
|
|
10
|
+
__all__ = ["OutboundEmailComplainedWebhookEvent", "Data"]
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class Data(BaseModel):
|
|
14
|
+
complained_at: str = FieldInfo(alias="complainedAt")
|
|
15
|
+
|
|
16
|
+
message_id: str = FieldInfo(alias="messageId")
|
|
17
|
+
|
|
18
|
+
recipients: List[str]
|
|
19
|
+
|
|
20
|
+
complaint_feedback_type: Optional[str] = FieldInfo(alias="complaintFeedbackType", default=None)
|
|
21
|
+
|
|
22
|
+
email_id: Optional[str] = FieldInfo(alias="emailId", default=None)
|
|
23
|
+
|
|
24
|
+
feedback_id: Optional[str] = FieldInfo(alias="feedbackId", default=None)
|
|
25
|
+
|
|
26
|
+
user_agent: Optional[str] = FieldInfo(alias="userAgent", default=None)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class OutboundEmailComplainedWebhookEvent(BaseModel):
|
|
30
|
+
attempt: int
|
|
31
|
+
|
|
32
|
+
data: Data
|
|
33
|
+
|
|
34
|
+
event: Literal["outbound.email.complained"]
|
|
35
|
+
|
|
36
|
+
timestamp: int
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List, Optional
|
|
4
|
+
from typing_extensions import Literal
|
|
5
|
+
|
|
6
|
+
from pydantic import Field as FieldInfo
|
|
7
|
+
|
|
8
|
+
from .._models import BaseModel
|
|
9
|
+
|
|
10
|
+
__all__ = ["OutboundEmailDeliveredWebhookEvent", "Data"]
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class Data(BaseModel):
|
|
14
|
+
delivered_at: str = FieldInfo(alias="deliveredAt")
|
|
15
|
+
|
|
16
|
+
message_id: str = FieldInfo(alias="messageId")
|
|
17
|
+
|
|
18
|
+
recipients: List[str]
|
|
19
|
+
|
|
20
|
+
email_id: Optional[str] = FieldInfo(alias="emailId", default=None)
|
|
21
|
+
|
|
22
|
+
processing_time_ms: Optional[int] = FieldInfo(alias="processingTimeMs", default=None)
|
|
23
|
+
|
|
24
|
+
remote_mta_ip: Optional[str] = FieldInfo(alias="remoteMtaIp", default=None)
|
|
25
|
+
|
|
26
|
+
smtp_response: Optional[str] = FieldInfo(alias="smtpResponse", default=None)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class OutboundEmailDeliveredWebhookEvent(BaseModel):
|
|
30
|
+
attempt: int
|
|
31
|
+
|
|
32
|
+
data: Data
|
|
33
|
+
|
|
34
|
+
event: Literal["outbound.email.delivered"]
|
|
35
|
+
|
|
36
|
+
timestamp: int
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
from typing_extensions import Literal
|
|
5
|
+
|
|
6
|
+
from pydantic import Field as FieldInfo
|
|
7
|
+
|
|
8
|
+
from .._models import BaseModel
|
|
9
|
+
|
|
10
|
+
__all__ = ["OutboundEmailOpenedWebhookEvent", "Data"]
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class Data(BaseModel):
|
|
14
|
+
message_id: str = FieldInfo(alias="messageId")
|
|
15
|
+
|
|
16
|
+
opened_at: str = FieldInfo(alias="openedAt")
|
|
17
|
+
|
|
18
|
+
email_id: Optional[str] = FieldInfo(alias="emailId", default=None)
|
|
19
|
+
|
|
20
|
+
ip_address: Optional[str] = FieldInfo(alias="ipAddress", default=None)
|
|
21
|
+
|
|
22
|
+
user_agent: Optional[str] = FieldInfo(alias="userAgent", default=None)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class OutboundEmailOpenedWebhookEvent(BaseModel):
|
|
26
|
+
attempt: int
|
|
27
|
+
|
|
28
|
+
data: Data
|
|
29
|
+
|
|
30
|
+
event: Literal["outbound.email.opened"]
|
|
31
|
+
|
|
32
|
+
timestamp: int
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
from typing_extensions import Literal
|
|
5
|
+
|
|
6
|
+
from pydantic import Field as FieldInfo
|
|
7
|
+
|
|
8
|
+
from .._models import BaseModel
|
|
9
|
+
|
|
10
|
+
__all__ = ["OutboundEmailRejectedWebhookEvent", "Data"]
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class Data(BaseModel):
|
|
14
|
+
message_id: str = FieldInfo(alias="messageId")
|
|
15
|
+
|
|
16
|
+
rejected_at: str = FieldInfo(alias="rejectedAt")
|
|
17
|
+
|
|
18
|
+
email_id: Optional[str] = FieldInfo(alias="emailId", default=None)
|
|
19
|
+
|
|
20
|
+
reason: Optional[str] = None
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class OutboundEmailRejectedWebhookEvent(BaseModel):
|
|
24
|
+
attempt: int
|
|
25
|
+
|
|
26
|
+
data: Data
|
|
27
|
+
|
|
28
|
+
event: Literal["outbound.email.rejected"]
|
|
29
|
+
|
|
30
|
+
timestamp: int
|
|
@@ -2,20 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import
|
|
5
|
+
from typing import Union
|
|
6
6
|
from typing_extensions import Required, Annotated, TypedDict
|
|
7
7
|
|
|
8
|
+
from .._types import SequenceNotStr
|
|
8
9
|
from .._utils import PropertyInfo
|
|
9
10
|
|
|
10
11
|
__all__ = ["ThreadForwardParams"]
|
|
11
12
|
|
|
12
13
|
|
|
13
14
|
class ThreadForwardParams(TypedDict, total=False):
|
|
14
|
-
to: Required[Union[str,
|
|
15
|
+
to: Required[Union[str, SequenceNotStr[str]]]
|
|
15
16
|
|
|
16
|
-
bcc: Union[str,
|
|
17
|
+
bcc: Union[str, SequenceNotStr[str]]
|
|
17
18
|
|
|
18
|
-
cc: Union[str,
|
|
19
|
+
cc: Union[str, SequenceNotStr[str]]
|
|
19
20
|
|
|
20
21
|
from_: Annotated[str, PropertyInfo(alias="from")]
|
|
21
22
|
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import List
|
|
6
5
|
from typing_extensions import Literal, Annotated, TypedDict
|
|
7
6
|
|
|
7
|
+
from .._types import SequenceNotStr
|
|
8
8
|
from .._utils import PropertyInfo
|
|
9
9
|
|
|
10
10
|
__all__ = ["ThreadSearchParams"]
|
|
@@ -23,7 +23,7 @@ class ThreadSearchParams(TypedDict, total=False):
|
|
|
23
23
|
|
|
24
24
|
has_email_to_address: Annotated[str, PropertyInfo(alias="hasEmailToAddress")]
|
|
25
25
|
|
|
26
|
-
has_participant_emails: Annotated[
|
|
26
|
+
has_participant_emails: Annotated[SequenceNotStr[str], PropertyInfo(alias="hasParticipantEmails")]
|
|
27
27
|
|
|
28
28
|
last_email_after: Annotated[str, PropertyInfo(alias="lastEmailAfter")]
|
|
29
29
|
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Union
|
|
4
|
+
from typing_extensions import TypeAlias
|
|
5
|
+
|
|
6
|
+
from .outbound_email_opened_webhook_event import OutboundEmailOpenedWebhookEvent
|
|
7
|
+
from .inbound_email_received_webhook_event import InboundEmailReceivedWebhookEvent
|
|
8
|
+
from .outbound_email_bounced_webhook_event import OutboundEmailBouncedWebhookEvent
|
|
9
|
+
from .outbound_email_clicked_webhook_event import OutboundEmailClickedWebhookEvent
|
|
10
|
+
from .outbound_email_rejected_webhook_event import OutboundEmailRejectedWebhookEvent
|
|
11
|
+
from .outbound_email_delivered_webhook_event import OutboundEmailDeliveredWebhookEvent
|
|
12
|
+
from .outbound_email_complained_webhook_event import OutboundEmailComplainedWebhookEvent
|
|
13
|
+
|
|
14
|
+
__all__ = ["UnwrapWebhookEvent"]
|
|
15
|
+
|
|
16
|
+
UnwrapWebhookEvent: TypeAlias = Union[
|
|
17
|
+
InboundEmailReceivedWebhookEvent,
|
|
18
|
+
OutboundEmailDeliveredWebhookEvent,
|
|
19
|
+
OutboundEmailBouncedWebhookEvent,
|
|
20
|
+
OutboundEmailComplainedWebhookEvent,
|
|
21
|
+
OutboundEmailRejectedWebhookEvent,
|
|
22
|
+
OutboundEmailOpenedWebhookEvent,
|
|
23
|
+
OutboundEmailClickedWebhookEvent,
|
|
24
|
+
]
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
aiinbx/__init__.py,sha256=ZcZOv0tXmRKr4E-_FTKTnooxLS8j3TYTy_84dBODo2Y,2624
|
|
2
|
+
aiinbx/_base_client.py,sha256=Lh-GuSxQ-op2DjvV3SZ8jxxomRFP-PtyasPFv9rQSsY,67047
|
|
3
|
+
aiinbx/_client.py,sha256=uFAWY7sVW8bTZ2aa_wOUoqmBkgQO94kMXQAHNanAEnw,16622
|
|
4
|
+
aiinbx/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
|
|
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=lKnskYPONAWDvWo8tmbbVk7HmG7UOsI0Nve0vSMmkRc,30452
|
|
9
|
+
aiinbx/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
|
|
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=k1TfzLVNmuxwSkopIgy03zuljyVxSEiekHlbSzCR9U0,7236
|
|
14
|
+
aiinbx/_version.py,sha256=efi3FedMjoMxO7ZdLBMzlPQiUnKFkj4kEyGol6RK9GQ,158
|
|
15
|
+
aiinbx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
aiinbx/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
17
|
+
aiinbx/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
18
|
+
aiinbx/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
|
|
19
|
+
aiinbx/_utils/_logs.py,sha256=sQ51aPSf-_mQi158zGXZjNr8ud0Pc5hwcTfVVdi-3HI,775
|
|
20
|
+
aiinbx/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
|
|
21
|
+
aiinbx/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
|
22
|
+
aiinbx/_utils/_resources_proxy.py,sha256=fztkxSzabzODGt5MssRl78ubuOjl-46zgwZv9MzZr30,589
|
|
23
|
+
aiinbx/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
24
|
+
aiinbx/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
|
25
|
+
aiinbx/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
|
|
26
|
+
aiinbx/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
27
|
+
aiinbx/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
|
|
28
|
+
aiinbx/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
29
|
+
aiinbx/resources/__init__.py,sha256=A9igPOfiP9soOFOLpVfUBwR7looj88eofftT1jXV-jw,2017
|
|
30
|
+
aiinbx/resources/domains.py,sha256=-MNGBG7p7acT_ck-47NDX2nOiJ_pH-9qUrVWjbbjmsk,17432
|
|
31
|
+
aiinbx/resources/emails.py,sha256=Uh7QZzKMoD4ERa1zjVPVpZSfRHBplYzsalFjCf-20Vg,16611
|
|
32
|
+
aiinbx/resources/meta.py,sha256=pG0ICZDnENRpvhVDPjoCZW509jhxgIpjhb8gG4hRusw,5464
|
|
33
|
+
aiinbx/resources/threads.py,sha256=5pFdoPL0gqvKWhdE5eS7uQEA3GkiwJukcycKsX4RK80,18219
|
|
34
|
+
aiinbx/resources/webhooks.py,sha256=2aBYtHvVy4Ngpq_GEEMk0U6Vn_LKFwommXaguEjhhj0,962
|
|
35
|
+
aiinbx/types/__init__.py,sha256=Nax8UISh-wdV5r4vKVb8h1DXCgEhtidtyIjX0ZcBcnE,2424
|
|
36
|
+
aiinbx/types/domain_create_params.py,sha256=6VplEi2RZNbhYkfQ0E08gOYQ9nJyQvvOYu9yUsKfpq8,285
|
|
37
|
+
aiinbx/types/domain_create_response.py,sha256=3fRS7D1lqVuM6P_K1Fr18rNXoSIvSKOW3qtzVvyPegQ,532
|
|
38
|
+
aiinbx/types/domain_delete_response.py,sha256=SKlha3uajVd7dDu2U33WUd-PuG0l6J7HAViRxjnTezs,262
|
|
39
|
+
aiinbx/types/domain_list_response.py,sha256=CZRPenvpyxiDWBBXvwlJoiAQTX5Sx_PYNKJK_VaunDw,1225
|
|
40
|
+
aiinbx/types/domain_retrieve_response.py,sha256=wlAQXvccwS-WB3i10LY4L1IpKL9jXmApjpgoz_DfrL4,1152
|
|
41
|
+
aiinbx/types/domain_verify_response.py,sha256=5cl4a0yLjMcAjCPs97ZaTYeXT7uxNAvcnc3X0hU5kjk,3386
|
|
42
|
+
aiinbx/types/email_reply_params.py,sha256=jzmdqKzIGY_TmbuOpSend_E6PJ3JltRm6xRhb_zBHQM,669
|
|
43
|
+
aiinbx/types/email_reply_response.py,sha256=Uq8CkHQx_O577ydGONz34JjK4yMkFUOYEXWqDnu2h9s,382
|
|
44
|
+
aiinbx/types/email_retrieve_response.py,sha256=qycc6BSOHvZ_jqXfTW5sdncL3m-QUnwPYa6vtvIH43s,2188
|
|
45
|
+
aiinbx/types/email_send_params.py,sha256=rxN3NbcU6dDFzByF-b6-T_sWYx7K-Fh-cUPdR7mV3TY,835
|
|
46
|
+
aiinbx/types/email_send_response.py,sha256=WGJVnCc1IR762j6KHEmYGHuaTUggrylTV9c1GudIjDw,380
|
|
47
|
+
aiinbx/types/inbound_email_received_webhook_event.py,sha256=gzScx4szJgJO9bgZtnak46UOtRCpgsEH5YZDOPICyjE,2608
|
|
48
|
+
aiinbx/types/meta_webhooks_schema_response.py,sha256=eHTx-1la-ByKUarx0wdWa7KyxMb62-3HAUQfj-q435g,7434
|
|
49
|
+
aiinbx/types/outbound_email_bounced_webhook_event.py,sha256=9r8gFch6pVR8x3-m82ryLB3ZB-T0Vm3Xe7WzIEJykmE,1125
|
|
50
|
+
aiinbx/types/outbound_email_clicked_webhook_event.py,sha256=NPxnfLBoM6f91ogGnVG-yVnJ7m4Qh1uckbLXG4O1RSY,880
|
|
51
|
+
aiinbx/types/outbound_email_complained_webhook_event.py,sha256=VPXgnyYr9zb6hXnQUg8GYwzniTUuAz3Esy5K3fIpGdY,938
|
|
52
|
+
aiinbx/types/outbound_email_delivered_webhook_event.py,sha256=Ftn1Rz2sn7y67qb9Ymkxqd4OMR5Fn4b-LuyOHF1bHwA,932
|
|
53
|
+
aiinbx/types/outbound_email_opened_webhook_event.py,sha256=sMsbjWJDFOqmMe1mmWdUS277-JF1PzQUDe22AxkAzao,782
|
|
54
|
+
aiinbx/types/outbound_email_rejected_webhook_event.py,sha256=kmpVDzZvSPLaPktrySAnrND9MY4PN-j-GEhz0nrBxdg,674
|
|
55
|
+
aiinbx/types/thread_forward_params.py,sha256=8iwJhf48nebxCb1Y2wRmEepctdWjOt0BXndpKgpsCRc,695
|
|
56
|
+
aiinbx/types/thread_forward_response.py,sha256=DmxnVB38C3R-fsNURfKMf5chNbKamQcx_QaubTk_8Ts,388
|
|
57
|
+
aiinbx/types/thread_retrieve_response.py,sha256=s5jj2iwBfcoVPeybIOJUVwRhvnc_0NdEMcbDGJnheEw,2364
|
|
58
|
+
aiinbx/types/thread_search_params.py,sha256=ZvlTTw4b_swhuC0VoLnU2QI1hYjROiEAyJ4HJXCrR9M,1939
|
|
59
|
+
aiinbx/types/thread_search_response.py,sha256=lldugJNQuQ5tsD9BrgxoDNojAYs7Ks8iZDMxwhnjogY,908
|
|
60
|
+
aiinbx/types/unwrap_webhook_event.py,sha256=6Hp4c5iHNs2lw3DYgRrgvRFBOmms0NADJ5XExEZrICI,1091
|
|
61
|
+
aiinbx-0.5.0.dist-info/METADATA,sha256=qYd6_fgp0Cx_JWqiTvzg88EpUjH0J7lT6AwftZN0Efo,13206
|
|
62
|
+
aiinbx-0.5.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
63
|
+
aiinbx-0.5.0.dist-info/licenses/LICENSE,sha256=i1rY5G0rFWpuWXv5WPoFrQEOrDWycksLhJxuLBF1tZw,11337
|
|
64
|
+
aiinbx-0.5.0.dist-info/RECORD,,
|
aiinbx-0.3.0.dist-info/RECORD
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
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=6rDtUmk6jhjGN1q96CUICYfBunNXNhhEk_AqztTm3uE,30012
|
|
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=9iNasksOFN13zEXap0JeciW88g2K4m0Zs2ji73zr1ig,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=ye0D-cLfYFUHZYYVnvpyRCtNuQ-6XD0a4pkQvibrH2M,18531
|
|
30
|
-
aiinbx/types/__init__.py,sha256=OxaPMNBlWxLJ4AA5mEzVXTUKU6jcvSAMznNZ_Jh5en8,894
|
|
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_forward_params.py,sha256=3Zcc3t9ymleraQ3nKGfwQniA0GP3dMRhNgYWPLalaTc,635
|
|
37
|
-
aiinbx/types/thread_forward_response.py,sha256=DmxnVB38C3R-fsNURfKMf5chNbKamQcx_QaubTk_8Ts,388
|
|
38
|
-
aiinbx/types/thread_retrieve_response.py,sha256=s5jj2iwBfcoVPeybIOJUVwRhvnc_0NdEMcbDGJnheEw,2364
|
|
39
|
-
aiinbx/types/thread_search_params.py,sha256=ioZX11I1Nhu6MTvSXDX7FSmI4Ny0yAbW9PWXOOKellM,1917
|
|
40
|
-
aiinbx/types/thread_search_response.py,sha256=lldugJNQuQ5tsD9BrgxoDNojAYs7Ks8iZDMxwhnjogY,908
|
|
41
|
-
aiinbx-0.3.0.dist-info/METADATA,sha256=Z342mR-k2yo99ybQ3dmloVXgscY3NIYiesLj8lRFTGA,13206
|
|
42
|
-
aiinbx-0.3.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
43
|
-
aiinbx-0.3.0.dist-info/licenses/LICENSE,sha256=i1rY5G0rFWpuWXv5WPoFrQEOrDWycksLhJxuLBF1tZw,11337
|
|
44
|
-
aiinbx-0.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|