linq-python 0.2.0__py3-none-any.whl → 0.2.2__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.
- linq/_base_client.py +4 -0
- linq/_version.py +1 -1
- linq/resources/attachments.py +42 -18
- linq/types/attachment_create_params.py +21 -9
- linq/types/attachment_retrieve_response.py +21 -9
- linq/types/supported_content_type.py +11 -13
- {linq_python-0.2.0.dist-info → linq_python-0.2.2.dist-info}/METADATA +1 -1
- {linq_python-0.2.0.dist-info → linq_python-0.2.2.dist-info}/RECORD +10 -10
- {linq_python-0.2.0.dist-info → linq_python-0.2.2.dist-info}/WHEEL +0 -0
- {linq_python-0.2.0.dist-info → linq_python-0.2.2.dist-info}/licenses/LICENSE +0 -0
linq/_base_client.py
CHANGED
|
@@ -558,6 +558,10 @@ class BaseClient(Generic[_HttpxClientT, _DefaultStreamT]):
|
|
|
558
558
|
files = cast(HttpxRequestFiles, ForceMultipartDict())
|
|
559
559
|
|
|
560
560
|
prepared_url = self._prepare_url(options.url)
|
|
561
|
+
# preserve hard-coded query params from the url
|
|
562
|
+
if params and prepared_url.query:
|
|
563
|
+
params = {**dict(prepared_url.params.items()), **params}
|
|
564
|
+
prepared_url = prepared_url.copy_with(raw_path=prepared_url.raw_path.split(b"?", 1)[0])
|
|
561
565
|
if "_" in prepared_url.host:
|
|
562
566
|
# work around https://github.com/encode/httpx/discussions/2880
|
|
563
567
|
kwargs["extensions"] = {"sni_hostname": prepared_url.host.replace("_", "-")}
|
linq/_version.py
CHANGED
linq/resources/attachments.py
CHANGED
|
@@ -199,25 +199,37 @@ class AttachmentsResource(SyncAPIResource):
|
|
|
199
199
|
content_type: Supported MIME types for file attachments and media URLs.
|
|
200
200
|
|
|
201
201
|
**Images:** image/jpeg, image/png, image/gif, image/heic, image/heif,
|
|
202
|
-
image/tiff, image/bmp
|
|
202
|
+
image/tiff, image/bmp, image/svg+xml, image/webp, image/x-icon
|
|
203
203
|
|
|
204
|
-
**Videos:** video/mp4, video/quicktime, video/mpeg, video/
|
|
204
|
+
**Videos:** video/mp4, video/quicktime, video/mpeg, video/mpeg2,
|
|
205
|
+
video/x-msvideo, video/3gpp
|
|
205
206
|
|
|
206
|
-
**Audio:** audio/mpeg, audio/
|
|
207
|
-
audio/
|
|
207
|
+
**Audio:** audio/mpeg, audio/x-m4a, audio/x-caf, audio/x-wav, audio/x-aiff,
|
|
208
|
+
audio/aac, audio/midi, audio/amr
|
|
208
209
|
|
|
209
210
|
**Documents:** application/pdf, text/plain, text/markdown, text/vcard, text/rtf,
|
|
210
|
-
text/csv, text/html, text/calendar, application/
|
|
211
|
+
text/csv, text/html, text/calendar, text/xml, application/json,
|
|
212
|
+
application/msword,
|
|
211
213
|
application/vnd.openxmlformats-officedocument.wordprocessingml.document,
|
|
212
214
|
application/vnd.ms-excel,
|
|
213
215
|
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,
|
|
214
216
|
application/vnd.ms-powerpoint,
|
|
215
217
|
application/vnd.openxmlformats-officedocument.presentationml.presentation,
|
|
216
|
-
application/
|
|
217
|
-
application/
|
|
218
|
+
application/x-iwork-pages-sffpages, application/x-iwork-numbers-sffnumbers,
|
|
219
|
+
application/x-iwork-keynote-sffkey, application/epub+zip, application/zip,
|
|
220
|
+
application/x-gzip
|
|
218
221
|
|
|
219
|
-
**
|
|
220
|
-
|
|
222
|
+
**Deprecated (accepted but transcoded):**
|
|
223
|
+
|
|
224
|
+
- `audio/mp3` — Deprecated. Use `audio/mpeg` instead. Files sent as audio/mp3
|
|
225
|
+
will be delivered as audio/mpeg.
|
|
226
|
+
- `audio/mp4` — Deprecated. Use `audio/x-m4a` instead. Files sent as audio/mp4
|
|
227
|
+
will be delivered as audio/x-m4a.
|
|
228
|
+
- `audio/aiff` — Deprecated. Use `audio/x-aiff` instead. Files sent as
|
|
229
|
+
audio/aiff will be delivered as audio/x-aiff.
|
|
230
|
+
- `image/tiff` — Accepted, but TIFF images are transcoded to JPEG for delivery.
|
|
231
|
+
|
|
232
|
+
**Unsupported:** FLAC, OGG, and executable files are explicitly rejected.
|
|
221
233
|
|
|
222
234
|
filename: Name of the file to upload
|
|
223
235
|
|
|
@@ -458,25 +470,37 @@ class AsyncAttachmentsResource(AsyncAPIResource):
|
|
|
458
470
|
content_type: Supported MIME types for file attachments and media URLs.
|
|
459
471
|
|
|
460
472
|
**Images:** image/jpeg, image/png, image/gif, image/heic, image/heif,
|
|
461
|
-
image/tiff, image/bmp
|
|
473
|
+
image/tiff, image/bmp, image/svg+xml, image/webp, image/x-icon
|
|
462
474
|
|
|
463
|
-
**Videos:** video/mp4, video/quicktime, video/mpeg, video/
|
|
475
|
+
**Videos:** video/mp4, video/quicktime, video/mpeg, video/mpeg2,
|
|
476
|
+
video/x-msvideo, video/3gpp
|
|
464
477
|
|
|
465
|
-
**Audio:** audio/mpeg, audio/
|
|
466
|
-
audio/
|
|
478
|
+
**Audio:** audio/mpeg, audio/x-m4a, audio/x-caf, audio/x-wav, audio/x-aiff,
|
|
479
|
+
audio/aac, audio/midi, audio/amr
|
|
467
480
|
|
|
468
481
|
**Documents:** application/pdf, text/plain, text/markdown, text/vcard, text/rtf,
|
|
469
|
-
text/csv, text/html, text/calendar, application/
|
|
482
|
+
text/csv, text/html, text/calendar, text/xml, application/json,
|
|
483
|
+
application/msword,
|
|
470
484
|
application/vnd.openxmlformats-officedocument.wordprocessingml.document,
|
|
471
485
|
application/vnd.ms-excel,
|
|
472
486
|
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,
|
|
473
487
|
application/vnd.ms-powerpoint,
|
|
474
488
|
application/vnd.openxmlformats-officedocument.presentationml.presentation,
|
|
475
|
-
application/
|
|
476
|
-
application/
|
|
489
|
+
application/x-iwork-pages-sffpages, application/x-iwork-numbers-sffnumbers,
|
|
490
|
+
application/x-iwork-keynote-sffkey, application/epub+zip, application/zip,
|
|
491
|
+
application/x-gzip
|
|
492
|
+
|
|
493
|
+
**Deprecated (accepted but transcoded):**
|
|
494
|
+
|
|
495
|
+
- `audio/mp3` — Deprecated. Use `audio/mpeg` instead. Files sent as audio/mp3
|
|
496
|
+
will be delivered as audio/mpeg.
|
|
497
|
+
- `audio/mp4` — Deprecated. Use `audio/x-m4a` instead. Files sent as audio/mp4
|
|
498
|
+
will be delivered as audio/x-m4a.
|
|
499
|
+
- `audio/aiff` — Deprecated. Use `audio/x-aiff` instead. Files sent as
|
|
500
|
+
audio/aiff will be delivered as audio/x-aiff.
|
|
501
|
+
- `image/tiff` — Accepted, but TIFF images are transcoded to JPEG for delivery.
|
|
477
502
|
|
|
478
|
-
**Unsupported:**
|
|
479
|
-
rejected.
|
|
503
|
+
**Unsupported:** FLAC, OGG, and executable files are explicitly rejected.
|
|
480
504
|
|
|
481
505
|
filename: Name of the file to upload
|
|
482
506
|
|
|
@@ -14,25 +14,37 @@ class AttachmentCreateParams(TypedDict, total=False):
|
|
|
14
14
|
"""Supported MIME types for file attachments and media URLs.
|
|
15
15
|
|
|
16
16
|
**Images:** image/jpeg, image/png, image/gif, image/heic, image/heif,
|
|
17
|
-
image/tiff, image/bmp
|
|
17
|
+
image/tiff, image/bmp, image/svg+xml, image/webp, image/x-icon
|
|
18
18
|
|
|
19
|
-
**Videos:** video/mp4, video/quicktime, video/mpeg, video/
|
|
19
|
+
**Videos:** video/mp4, video/quicktime, video/mpeg, video/mpeg2,
|
|
20
|
+
video/x-msvideo, video/3gpp
|
|
20
21
|
|
|
21
|
-
**Audio:** audio/mpeg, audio/
|
|
22
|
-
audio/
|
|
22
|
+
**Audio:** audio/mpeg, audio/x-m4a, audio/x-caf, audio/x-wav, audio/x-aiff,
|
|
23
|
+
audio/aac, audio/midi, audio/amr
|
|
23
24
|
|
|
24
25
|
**Documents:** application/pdf, text/plain, text/markdown, text/vcard, text/rtf,
|
|
25
|
-
text/csv, text/html, text/calendar, application/
|
|
26
|
+
text/csv, text/html, text/calendar, text/xml, application/json,
|
|
27
|
+
application/msword,
|
|
26
28
|
application/vnd.openxmlformats-officedocument.wordprocessingml.document,
|
|
27
29
|
application/vnd.ms-excel,
|
|
28
30
|
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,
|
|
29
31
|
application/vnd.ms-powerpoint,
|
|
30
32
|
application/vnd.openxmlformats-officedocument.presentationml.presentation,
|
|
31
|
-
application/
|
|
32
|
-
application/
|
|
33
|
+
application/x-iwork-pages-sffpages, application/x-iwork-numbers-sffnumbers,
|
|
34
|
+
application/x-iwork-keynote-sffkey, application/epub+zip, application/zip,
|
|
35
|
+
application/x-gzip
|
|
33
36
|
|
|
34
|
-
**
|
|
35
|
-
|
|
37
|
+
**Deprecated (accepted but transcoded):**
|
|
38
|
+
|
|
39
|
+
- `audio/mp3` — Deprecated. Use `audio/mpeg` instead. Files sent as audio/mp3
|
|
40
|
+
will be delivered as audio/mpeg.
|
|
41
|
+
- `audio/mp4` — Deprecated. Use `audio/x-m4a` instead. Files sent as audio/mp4
|
|
42
|
+
will be delivered as audio/x-m4a.
|
|
43
|
+
- `audio/aiff` — Deprecated. Use `audio/x-aiff` instead. Files sent as
|
|
44
|
+
audio/aiff will be delivered as audio/x-aiff.
|
|
45
|
+
- `image/tiff` — Accepted, but TIFF images are transcoded to JPEG for delivery.
|
|
46
|
+
|
|
47
|
+
**Unsupported:** FLAC, OGG, and executable files are explicitly rejected.
|
|
36
48
|
"""
|
|
37
49
|
|
|
38
50
|
filename: Required[str]
|
|
@@ -18,25 +18,37 @@ class AttachmentRetrieveResponse(BaseModel):
|
|
|
18
18
|
"""Supported MIME types for file attachments and media URLs.
|
|
19
19
|
|
|
20
20
|
**Images:** image/jpeg, image/png, image/gif, image/heic, image/heif,
|
|
21
|
-
image/tiff, image/bmp
|
|
21
|
+
image/tiff, image/bmp, image/svg+xml, image/webp, image/x-icon
|
|
22
22
|
|
|
23
|
-
**Videos:** video/mp4, video/quicktime, video/mpeg, video/
|
|
23
|
+
**Videos:** video/mp4, video/quicktime, video/mpeg, video/mpeg2,
|
|
24
|
+
video/x-msvideo, video/3gpp
|
|
24
25
|
|
|
25
|
-
**Audio:** audio/mpeg, audio/
|
|
26
|
-
audio/
|
|
26
|
+
**Audio:** audio/mpeg, audio/x-m4a, audio/x-caf, audio/x-wav, audio/x-aiff,
|
|
27
|
+
audio/aac, audio/midi, audio/amr
|
|
27
28
|
|
|
28
29
|
**Documents:** application/pdf, text/plain, text/markdown, text/vcard, text/rtf,
|
|
29
|
-
text/csv, text/html, text/calendar, application/
|
|
30
|
+
text/csv, text/html, text/calendar, text/xml, application/json,
|
|
31
|
+
application/msword,
|
|
30
32
|
application/vnd.openxmlformats-officedocument.wordprocessingml.document,
|
|
31
33
|
application/vnd.ms-excel,
|
|
32
34
|
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,
|
|
33
35
|
application/vnd.ms-powerpoint,
|
|
34
36
|
application/vnd.openxmlformats-officedocument.presentationml.presentation,
|
|
35
|
-
application/
|
|
36
|
-
application/
|
|
37
|
+
application/x-iwork-pages-sffpages, application/x-iwork-numbers-sffnumbers,
|
|
38
|
+
application/x-iwork-keynote-sffkey, application/epub+zip, application/zip,
|
|
39
|
+
application/x-gzip
|
|
37
40
|
|
|
38
|
-
**
|
|
39
|
-
|
|
41
|
+
**Deprecated (accepted but transcoded):**
|
|
42
|
+
|
|
43
|
+
- `audio/mp3` — Deprecated. Use `audio/mpeg` instead. Files sent as audio/mp3
|
|
44
|
+
will be delivered as audio/mpeg.
|
|
45
|
+
- `audio/mp4` — Deprecated. Use `audio/x-m4a` instead. Files sent as audio/mp4
|
|
46
|
+
will be delivered as audio/x-m4a.
|
|
47
|
+
- `audio/aiff` — Deprecated. Use `audio/x-aiff` instead. Files sent as
|
|
48
|
+
audio/aiff will be delivered as audio/x-aiff.
|
|
49
|
+
- `image/tiff` — Accepted, but TIFF images are transcoded to JPEG for delivery.
|
|
50
|
+
|
|
51
|
+
**Unsupported:** FLAC, OGG, and executable files are explicitly rejected.
|
|
40
52
|
"""
|
|
41
53
|
|
|
42
54
|
created_at: datetime
|
|
@@ -6,39 +6,38 @@ __all__ = ["SupportedContentType"]
|
|
|
6
6
|
|
|
7
7
|
SupportedContentType: TypeAlias = Literal[
|
|
8
8
|
"image/jpeg",
|
|
9
|
-
"image/jpg",
|
|
10
9
|
"image/png",
|
|
11
10
|
"image/gif",
|
|
12
11
|
"image/heic",
|
|
13
12
|
"image/heif",
|
|
14
13
|
"image/tiff",
|
|
15
14
|
"image/bmp",
|
|
16
|
-
"image/
|
|
15
|
+
"image/svg+xml",
|
|
16
|
+
"image/webp",
|
|
17
|
+
"image/x-icon",
|
|
17
18
|
"video/mp4",
|
|
18
19
|
"video/quicktime",
|
|
19
20
|
"video/mpeg",
|
|
21
|
+
"video/mpeg2",
|
|
20
22
|
"video/x-m4v",
|
|
23
|
+
"video/x-msvideo",
|
|
21
24
|
"video/3gpp",
|
|
22
25
|
"audio/mpeg",
|
|
23
26
|
"audio/mp3",
|
|
24
|
-
"audio/mp4",
|
|
25
27
|
"audio/x-m4a",
|
|
26
|
-
"audio/
|
|
28
|
+
"audio/mp4",
|
|
27
29
|
"audio/x-caf",
|
|
28
|
-
"audio/wav",
|
|
29
30
|
"audio/x-wav",
|
|
30
|
-
"audio/aiff",
|
|
31
31
|
"audio/x-aiff",
|
|
32
|
+
"audio/aiff",
|
|
32
33
|
"audio/aac",
|
|
33
|
-
"audio/
|
|
34
|
+
"audio/midi",
|
|
34
35
|
"audio/amr",
|
|
35
36
|
"application/pdf",
|
|
36
37
|
"text/plain",
|
|
37
38
|
"text/markdown",
|
|
38
39
|
"text/vcard",
|
|
39
|
-
"text/x-vcard",
|
|
40
40
|
"text/rtf",
|
|
41
|
-
"application/rtf",
|
|
42
41
|
"text/csv",
|
|
43
42
|
"text/html",
|
|
44
43
|
"text/calendar",
|
|
@@ -48,13 +47,12 @@ SupportedContentType: TypeAlias = Literal[
|
|
|
48
47
|
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
|
49
48
|
"application/vnd.ms-powerpoint",
|
|
50
49
|
"application/vnd.openxmlformats-officedocument.presentationml.presentation",
|
|
51
|
-
"application/vnd.apple.pages",
|
|
52
50
|
"application/x-iwork-pages-sffpages",
|
|
53
|
-
"application/vnd.apple.numbers",
|
|
54
51
|
"application/x-iwork-numbers-sffnumbers",
|
|
55
|
-
"application/vnd.apple.keynote",
|
|
56
52
|
"application/x-iwork-keynote-sffkey",
|
|
57
53
|
"application/epub+zip",
|
|
54
|
+
"text/xml",
|
|
55
|
+
"application/json",
|
|
58
56
|
"application/zip",
|
|
59
|
-
"application/x-
|
|
57
|
+
"application/x-gzip",
|
|
60
58
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: linq-python
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: The official Python library for the linq-api-v3 API
|
|
5
5
|
Project-URL: Homepage, https://github.com/linq-team/linq-python
|
|
6
6
|
Project-URL: Repository, https://github.com/linq-team/linq-python
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
linq/__init__.py,sha256=ts1KFx6BRdf6QRm0qZxY7dikdKavSr5G-nGo1IXXQcw,2677
|
|
2
|
-
linq/_base_client.py,sha256=
|
|
2
|
+
linq/_base_client.py,sha256=TBqez8P-mEvS7VuLXqKFoGLSGinzJsUjI5_LBOcR2ig,74557
|
|
3
3
|
linq/_client.py,sha256=Z0Zu3KsWLftXW6xJuFeYWKqMMIpbJY6Wx8E_L_j7pSs,101591
|
|
4
4
|
linq/_compat.py,sha256=_9guQfzYnL3DNtudX5W7T2cdSskx89B5AFfhPQDxMUk,6811
|
|
5
5
|
linq/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
|
@@ -11,7 +11,7 @@ linq/_resource.py,sha256=IvbBkxho8w_Ru0GHWOBUDwiuaI-CQoi8WWQJZCkfhyg,1118
|
|
|
11
11
|
linq/_response.py,sha256=Pyf_g81OCXWawxoGZDNp6h1sHMlDgCOsM5vI9fGEBKE,28923
|
|
12
12
|
linq/_streaming.py,sha256=zmn_k0MQ0d2f4KisSxNc4cqa3mTw2j75iPRyTL5jk9I,10562
|
|
13
13
|
linq/_types.py,sha256=C3roEXRjDIicI14d6zJMb2C_vkZ8cffHg00DP0UrGYI,7639
|
|
14
|
-
linq/_version.py,sha256=
|
|
14
|
+
linq/_version.py,sha256=PPI3DKy8U4Yx3FKD2_EbIewlbp2cVzzL5DuFlVqziCo,156
|
|
15
15
|
linq/pagination.py,sha256=LxWl_sqhWdi6dYzDK1QyEIJd43fvxXMcCwF6Y4ill9I,2464
|
|
16
16
|
linq/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
linq/_utils/__init__.py,sha256=DJEWihdzRWrZI23vwocBkgvZCwn9iG7yV0c_9vKaysU,2355
|
|
@@ -30,7 +30,7 @@ linq/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
|
30
30
|
linq/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
|
|
31
31
|
linq/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
32
32
|
linq/resources/__init__.py,sha256=5K3fxu-Cf8pMBrTWLLy_9XX2VJXIvs66Wc-DbDgnQeE,4895
|
|
33
|
-
linq/resources/attachments.py,sha256=
|
|
33
|
+
linq/resources/attachments.py,sha256=uRn1P0YXK3dp89sdBrwSS8aENx1FMs4qzDBEnvDYOPc,24737
|
|
34
34
|
linq/resources/capability.py,sha256=-DRB5r-wGMKsTFpYiqK9ktvtwrjBgyrlqF24u8bN4vA,11076
|
|
35
35
|
linq/resources/contact_card.py,sha256=g2QNjPay7Be2NyYZEMAPVWn4GPLQCc8Kmb5m7F-I6z4,18507
|
|
36
36
|
linq/resources/messages.py,sha256=kycQ5K8tL3fGQ3jkeJ1eqnuvhTbn6K4A5QyD_8MGTK4,27140
|
|
@@ -45,9 +45,9 @@ linq/resources/chats/messages.py,sha256=7Bp4RFLxHjldQiMruvZAds4EjLgU-PmlDhdXkeVP
|
|
|
45
45
|
linq/resources/chats/participants.py,sha256=8Y0Qo84yWIDF9YJ-wm1s5fatPPkKs2cD8dGhPhO82sI,12959
|
|
46
46
|
linq/resources/chats/typing.py,sha256=6Z0AVRF3ing2rAC_RyGKksnze-U5z_l5XKagmyvob7g,11808
|
|
47
47
|
linq/types/__init__.py,sha256=ECn8TN-qe2XWCa5VE_8HVYKPjSUhZmuQi9vmwQT8jOI,6536
|
|
48
|
-
linq/types/attachment_create_params.py,sha256=
|
|
48
|
+
linq/types/attachment_create_params.py,sha256=mf00dk0j0xKsHTlE4D0VDZs21iJoFn9pn1jCdcBwaRc,2196
|
|
49
49
|
linq/types/attachment_create_response.py,sha256=MmZjUj2HMrvt1A6EKM5INSUwc_VNSmjtWdLfRZpFuIA,1230
|
|
50
|
-
linq/types/attachment_retrieve_response.py,sha256=
|
|
50
|
+
linq/types/attachment_retrieve_response.py,sha256=V-MdGCPwXb4vfGVEbaOHutz1CIXyLxNfnkjet1C_-Uw,2519
|
|
51
51
|
linq/types/capability_check_RCS_params.py,sha256=uyKe5xDP1G62NRTBCv4PTh6SZ4o0Qomdjszoei4DXDE,581
|
|
52
52
|
linq/types/capability_check_i_message_params.py,sha256=bEFb6sJE_IfAyASwmK3CTlLouXJjgvSjTuOYteFUeVI,591
|
|
53
53
|
linq/types/chat.py,sha256=mAlHuAkTyisq1_ZaO0-nr1qkZo5AdKeRXhApY7Okoyw,1067
|
|
@@ -103,7 +103,7 @@ linq/types/schemas_media_part_response.py,sha256=FQDn6dRtjaffytIBcyCvh3mzjI8zQGu
|
|
|
103
103
|
linq/types/schemas_message_effect.py,sha256=YsHH-ym9WLnHhNdfXCGi_ki-CvXNem4wr2283_YpWXA,517
|
|
104
104
|
linq/types/schemas_text_part_response.py,sha256=sa1HjW09GgMm8RDLEJxHKCcjpj3IYfxYAeicLqjBfBc,603
|
|
105
105
|
linq/types/set_contact_card.py,sha256=1S60p6eaIEn5yZlL0-l80a9CiJ1Wg47b-MvABRQWBSg,609
|
|
106
|
-
linq/types/supported_content_type.py,sha256=
|
|
106
|
+
linq/types/supported_content_type.py,sha256=7Vn4_YvFBtUmeKFOhwSz_SbiTd5lhLCpeKfps_sHSuA,1461
|
|
107
107
|
linq/types/text_part_param.py,sha256=JqJpJcZ4yVtR-EquSJ_-0MFjEJ4zzR70QwsQ9PAt4A0,1521
|
|
108
108
|
linq/types/webhook_event_list_response.py,sha256=o0cDkl7LtzhDekeb53lF9soeKd66shICT36opN-OKrg,535
|
|
109
109
|
linq/types/webhook_event_type.py,sha256=ZNxNfMlN7i_spd83IaIG_IiHGFffY7XBOr89SjMy8w8,849
|
|
@@ -134,7 +134,7 @@ linq/types/shared_params/__init__.py,sha256=FZWRsA1D5DW6IXxenxo9U8-bDW6YiizL-xaw
|
|
|
134
134
|
linq/types/shared_params/reaction_type.py,sha256=MP4ekeDAr9lK0wqdvl6FMVa5s0j2w6JhwF8TcF48aSA,317
|
|
135
135
|
linq/types/shared_params/service_type.py,sha256=AV_VS3d0v059_wou2dts8Jy-NzbGFXa3_VRRpG42N48,259
|
|
136
136
|
linq/types/shared_params/text_decoration.py,sha256=H-ph17ldBaFRNhajm77DfqjjtQbTNFJj9sepoHHcD80,881
|
|
137
|
-
linq_python-0.2.
|
|
138
|
-
linq_python-0.2.
|
|
139
|
-
linq_python-0.2.
|
|
140
|
-
linq_python-0.2.
|
|
137
|
+
linq_python-0.2.2.dist-info/METADATA,sha256=DsfByi6E7f6NXalo5mQ3lqIxFnBQRTsaPpiTJyC-dc4,17384
|
|
138
|
+
linq_python-0.2.2.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
139
|
+
linq_python-0.2.2.dist-info/licenses/LICENSE,sha256=zP4mO5gBwuMBJx2-sVWVdjklSfevmIQT68JUQfvjy40,11341
|
|
140
|
+
linq_python-0.2.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|