aiinbx 0.109.0__py3-none-any.whl → 0.117.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.
- aiinbx/_version.py +1 -1
- aiinbx/resources/emails.py +16 -0
- aiinbx/resources/threads.py +8 -0
- aiinbx/types/email_reply_params.py +4 -0
- aiinbx/types/email_send_params.py +4 -0
- aiinbx/types/thread_forward_params.py +4 -0
- {aiinbx-0.109.0.dist-info → aiinbx-0.117.0.dist-info}/METADATA +1 -1
- {aiinbx-0.109.0.dist-info → aiinbx-0.117.0.dist-info}/RECORD +10 -10
- {aiinbx-0.109.0.dist-info → aiinbx-0.117.0.dist-info}/WHEEL +0 -0
- {aiinbx-0.109.0.dist-info → aiinbx-0.117.0.dist-info}/licenses/LICENSE +0 -0
aiinbx/_version.py
CHANGED
aiinbx/resources/emails.py
CHANGED
|
@@ -93,6 +93,8 @@ class EmailsResource(SyncAPIResource):
|
|
|
93
93
|
subject: str | Omit = omit,
|
|
94
94
|
text: str | Omit = omit,
|
|
95
95
|
to: Union[str, SequenceNotStr[str]] | Omit = omit,
|
|
96
|
+
track_clicks: bool | Omit = omit,
|
|
97
|
+
track_opens: bool | Omit = omit,
|
|
96
98
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
97
99
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
98
100
|
extra_headers: Headers | None = None,
|
|
@@ -132,6 +134,8 @@ class EmailsResource(SyncAPIResource):
|
|
|
132
134
|
"subject": subject,
|
|
133
135
|
"text": text,
|
|
134
136
|
"to": to,
|
|
137
|
+
"track_clicks": track_clicks,
|
|
138
|
+
"track_opens": track_opens,
|
|
135
139
|
},
|
|
136
140
|
email_reply_params.EmailReplyParams,
|
|
137
141
|
),
|
|
@@ -158,6 +162,8 @@ class EmailsResource(SyncAPIResource):
|
|
|
158
162
|
reply_to: Union[str, SequenceNotStr[str]] | Omit = omit,
|
|
159
163
|
text: str | Omit = omit,
|
|
160
164
|
thread_id: str | Omit = omit,
|
|
165
|
+
track_clicks: bool | Omit = omit,
|
|
166
|
+
track_opens: bool | Omit = omit,
|
|
161
167
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
162
168
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
163
169
|
extra_headers: Headers | None = None,
|
|
@@ -198,6 +204,8 @@ class EmailsResource(SyncAPIResource):
|
|
|
198
204
|
"reply_to": reply_to,
|
|
199
205
|
"text": text,
|
|
200
206
|
"thread_id": thread_id,
|
|
207
|
+
"track_clicks": track_clicks,
|
|
208
|
+
"track_opens": track_opens,
|
|
201
209
|
},
|
|
202
210
|
email_send_params.EmailSendParams,
|
|
203
211
|
),
|
|
@@ -276,6 +284,8 @@ class AsyncEmailsResource(AsyncAPIResource):
|
|
|
276
284
|
subject: str | Omit = omit,
|
|
277
285
|
text: str | Omit = omit,
|
|
278
286
|
to: Union[str, SequenceNotStr[str]] | Omit = omit,
|
|
287
|
+
track_clicks: bool | Omit = omit,
|
|
288
|
+
track_opens: bool | Omit = omit,
|
|
279
289
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
280
290
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
281
291
|
extra_headers: Headers | None = None,
|
|
@@ -315,6 +325,8 @@ class AsyncEmailsResource(AsyncAPIResource):
|
|
|
315
325
|
"subject": subject,
|
|
316
326
|
"text": text,
|
|
317
327
|
"to": to,
|
|
328
|
+
"track_clicks": track_clicks,
|
|
329
|
+
"track_opens": track_opens,
|
|
318
330
|
},
|
|
319
331
|
email_reply_params.EmailReplyParams,
|
|
320
332
|
),
|
|
@@ -341,6 +353,8 @@ class AsyncEmailsResource(AsyncAPIResource):
|
|
|
341
353
|
reply_to: Union[str, SequenceNotStr[str]] | Omit = omit,
|
|
342
354
|
text: str | Omit = omit,
|
|
343
355
|
thread_id: str | Omit = omit,
|
|
356
|
+
track_clicks: bool | Omit = omit,
|
|
357
|
+
track_opens: bool | Omit = omit,
|
|
344
358
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
345
359
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
346
360
|
extra_headers: Headers | None = None,
|
|
@@ -381,6 +395,8 @@ class AsyncEmailsResource(AsyncAPIResource):
|
|
|
381
395
|
"reply_to": reply_to,
|
|
382
396
|
"text": text,
|
|
383
397
|
"thread_id": thread_id,
|
|
398
|
+
"track_clicks": track_clicks,
|
|
399
|
+
"track_opens": track_opens,
|
|
384
400
|
},
|
|
385
401
|
email_send_params.EmailSendParams,
|
|
386
402
|
),
|
aiinbx/resources/threads.py
CHANGED
|
@@ -93,6 +93,8 @@ class ThreadsResource(SyncAPIResource):
|
|
|
93
93
|
include_attachments: bool | Omit = omit,
|
|
94
94
|
is_draft: bool | Omit = omit,
|
|
95
95
|
note: str | Omit = omit,
|
|
96
|
+
track_clicks: bool | Omit = omit,
|
|
97
|
+
track_opens: bool | Omit = omit,
|
|
96
98
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
97
99
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
98
100
|
extra_headers: Headers | None = None,
|
|
@@ -127,6 +129,8 @@ class ThreadsResource(SyncAPIResource):
|
|
|
127
129
|
"include_attachments": include_attachments,
|
|
128
130
|
"is_draft": is_draft,
|
|
129
131
|
"note": note,
|
|
132
|
+
"track_clicks": track_clicks,
|
|
133
|
+
"track_opens": track_opens,
|
|
130
134
|
},
|
|
131
135
|
thread_forward_params.ThreadForwardParams,
|
|
132
136
|
),
|
|
@@ -284,6 +288,8 @@ class AsyncThreadsResource(AsyncAPIResource):
|
|
|
284
288
|
include_attachments: bool | Omit = omit,
|
|
285
289
|
is_draft: bool | Omit = omit,
|
|
286
290
|
note: str | Omit = omit,
|
|
291
|
+
track_clicks: bool | Omit = omit,
|
|
292
|
+
track_opens: bool | Omit = omit,
|
|
287
293
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
288
294
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
289
295
|
extra_headers: Headers | None = None,
|
|
@@ -318,6 +324,8 @@ class AsyncThreadsResource(AsyncAPIResource):
|
|
|
318
324
|
"include_attachments": include_attachments,
|
|
319
325
|
"is_draft": is_draft,
|
|
320
326
|
"note": note,
|
|
327
|
+
"track_clicks": track_clicks,
|
|
328
|
+
"track_opens": track_opens,
|
|
321
329
|
},
|
|
322
330
|
thread_forward_params.ThreadForwardParams,
|
|
323
331
|
),
|
|
@@ -11,7 +11,7 @@ aiinbx/_resource.py,sha256=R_-4UEtw4XqdaVP9kNZE-XgrsuRBrQeFB0x4vbgWM_k,1100
|
|
|
11
11
|
aiinbx/_response.py,sha256=bN_uhJdOtEIu7WonnaRndk73_0N7bpUqEqUx_rZUxH8,28788
|
|
12
12
|
aiinbx/_streaming.py,sha256=u-0UUgwRBaD_lIoxSkzfS1Kh8Dzk5zZbhS9Zbqmrh40,10149
|
|
13
13
|
aiinbx/_types.py,sha256=k1TfzLVNmuxwSkopIgy03zuljyVxSEiekHlbSzCR9U0,7236
|
|
14
|
-
aiinbx/_version.py,sha256=
|
|
14
|
+
aiinbx/_version.py,sha256=jaIQ6__foOWWDiPWkTl035qk2gGDEsiv2m1K2OWrr28,160
|
|
15
15
|
aiinbx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
aiinbx/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
17
17
|
aiinbx/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
@@ -28,9 +28,9 @@ aiinbx/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
|
|
|
28
28
|
aiinbx/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
29
29
|
aiinbx/resources/__init__.py,sha256=A9igPOfiP9soOFOLpVfUBwR7looj88eofftT1jXV-jw,2017
|
|
30
30
|
aiinbx/resources/domains.py,sha256=-MNGBG7p7acT_ck-47NDX2nOiJ_pH-9qUrVWjbbjmsk,17432
|
|
31
|
-
aiinbx/resources/emails.py,sha256=
|
|
31
|
+
aiinbx/resources/emails.py,sha256=MABHkkRly_2KdDK2IU3CHhx_gH2DUCci0lTG81AZeWU,17839
|
|
32
32
|
aiinbx/resources/meta.py,sha256=pG0ICZDnENRpvhVDPjoCZW509jhxgIpjhb8gG4hRusw,5464
|
|
33
|
-
aiinbx/resources/threads.py,sha256=
|
|
33
|
+
aiinbx/resources/threads.py,sha256=jjP_jR2Mi7W5bqweTy9ZBqgfYlIPX0mjFSKr13oKz_k,18845
|
|
34
34
|
aiinbx/resources/webhooks.py,sha256=2aBYtHvVy4Ngpq_GEEMk0U6Vn_LKFwommXaguEjhhj0,962
|
|
35
35
|
aiinbx/types/__init__.py,sha256=Nax8UISh-wdV5r4vKVb8h1DXCgEhtidtyIjX0ZcBcnE,2424
|
|
36
36
|
aiinbx/types/domain_create_params.py,sha256=6VplEi2RZNbhYkfQ0E08gOYQ9nJyQvvOYu9yUsKfpq8,285
|
|
@@ -39,10 +39,10 @@ aiinbx/types/domain_delete_response.py,sha256=SKlha3uajVd7dDu2U33WUd-PuG0l6J7HAV
|
|
|
39
39
|
aiinbx/types/domain_list_response.py,sha256=XQMVuZ8DGHOChARhJPScf7dnTUIDCGb4HpDNzJLq_ro,1293
|
|
40
40
|
aiinbx/types/domain_retrieve_response.py,sha256=z34VlmWhzzygh0Jz9g_pA5Yj4TzAw0g45nWwoNtcozQ,1220
|
|
41
41
|
aiinbx/types/domain_verify_response.py,sha256=63ZL5MDhPQuYC1eIIoJw8ZIGMctoLqz08qJiv_SXP88,3454
|
|
42
|
-
aiinbx/types/email_reply_params.py,sha256=
|
|
42
|
+
aiinbx/types/email_reply_params.py,sha256=ofWm2uV0VAdWTtgKAYFvouplo-ZcuvSLBxAgH87VpzA,976
|
|
43
43
|
aiinbx/types/email_reply_response.py,sha256=Uq8CkHQx_O577ydGONz34JjK4yMkFUOYEXWqDnu2h9s,382
|
|
44
44
|
aiinbx/types/email_retrieve_response.py,sha256=qycc6BSOHvZ_jqXfTW5sdncL3m-QUnwPYa6vtvIH43s,2188
|
|
45
|
-
aiinbx/types/email_send_params.py,sha256=
|
|
45
|
+
aiinbx/types/email_send_params.py,sha256=JTp8HthcdxPSQoizNlAlNGDtVYIOVGPDPaT2e13VPAM,1142
|
|
46
46
|
aiinbx/types/email_send_response.py,sha256=WGJVnCc1IR762j6KHEmYGHuaTUggrylTV9c1GudIjDw,380
|
|
47
47
|
aiinbx/types/inbound_email_received_webhook_event.py,sha256=gzScx4szJgJO9bgZtnak46UOtRCpgsEH5YZDOPICyjE,2608
|
|
48
48
|
aiinbx/types/meta_webhooks_schema_response.py,sha256=eHTx-1la-ByKUarx0wdWa7KyxMb62-3HAUQfj-q435g,7434
|
|
@@ -52,13 +52,13 @@ aiinbx/types/outbound_email_complained_webhook_event.py,sha256=VPXgnyYr9zb6hXnQU
|
|
|
52
52
|
aiinbx/types/outbound_email_delivered_webhook_event.py,sha256=Ftn1Rz2sn7y67qb9Ymkxqd4OMR5Fn4b-LuyOHF1bHwA,932
|
|
53
53
|
aiinbx/types/outbound_email_opened_webhook_event.py,sha256=sMsbjWJDFOqmMe1mmWdUS277-JF1PzQUDe22AxkAzao,782
|
|
54
54
|
aiinbx/types/outbound_email_rejected_webhook_event.py,sha256=kmpVDzZvSPLaPktrySAnrND9MY4PN-j-GEhz0nrBxdg,674
|
|
55
|
-
aiinbx/types/thread_forward_params.py,sha256=
|
|
55
|
+
aiinbx/types/thread_forward_params.py,sha256=Ad9J1pcj-gXyHwvnDad_0z6mgn7sG26GHN97fkODCHE,1002
|
|
56
56
|
aiinbx/types/thread_forward_response.py,sha256=DmxnVB38C3R-fsNURfKMf5chNbKamQcx_QaubTk_8Ts,388
|
|
57
57
|
aiinbx/types/thread_retrieve_response.py,sha256=s5jj2iwBfcoVPeybIOJUVwRhvnc_0NdEMcbDGJnheEw,2364
|
|
58
58
|
aiinbx/types/thread_search_params.py,sha256=ZvlTTw4b_swhuC0VoLnU2QI1hYjROiEAyJ4HJXCrR9M,1939
|
|
59
59
|
aiinbx/types/thread_search_response.py,sha256=lldugJNQuQ5tsD9BrgxoDNojAYs7Ks8iZDMxwhnjogY,908
|
|
60
60
|
aiinbx/types/unwrap_webhook_event.py,sha256=6Hp4c5iHNs2lw3DYgRrgvRFBOmms0NADJ5XExEZrICI,1091
|
|
61
|
-
aiinbx-0.
|
|
62
|
-
aiinbx-0.
|
|
63
|
-
aiinbx-0.
|
|
64
|
-
aiinbx-0.
|
|
61
|
+
aiinbx-0.117.0.dist-info/METADATA,sha256=jxNcJxYSrfMScm9EBNa1jEAR0lB9AfGE6BRRpvJSvp0,13209
|
|
62
|
+
aiinbx-0.117.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
63
|
+
aiinbx-0.117.0.dist-info/licenses/LICENSE,sha256=i1rY5G0rFWpuWXv5WPoFrQEOrDWycksLhJxuLBF1tZw,11337
|
|
64
|
+
aiinbx-0.117.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|