linq-python 0.2.2__py3-none-any.whl → 0.2.3__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/_version.py +1 -1
- linq/resources/attachments.py +8 -0
- linq/types/attachment_create_params.py +4 -0
- linq/types/attachment_retrieve_response.py +4 -0
- linq/types/chats/sent_message.py +5 -2
- {linq_python-0.2.2.dist-info → linq_python-0.2.3.dist-info}/METADATA +1 -1
- {linq_python-0.2.2.dist-info → linq_python-0.2.3.dist-info}/RECORD +9 -9
- {linq_python-0.2.2.dist-info → linq_python-0.2.3.dist-info}/WHEEL +0 -0
- {linq_python-0.2.2.dist-info → linq_python-0.2.3.dist-info}/licenses/LICENSE +0 -0
linq/_version.py
CHANGED
linq/resources/attachments.py
CHANGED
|
@@ -219,6 +219,10 @@ class AttachmentsResource(SyncAPIResource):
|
|
|
219
219
|
application/x-iwork-keynote-sffkey, application/epub+zip, application/zip,
|
|
220
220
|
application/x-gzip
|
|
221
221
|
|
|
222
|
+
**Transcoded on delivery:**
|
|
223
|
+
|
|
224
|
+
- `audio/x-caf` — CAF files are transcoded to `audio/mp4` for delivery.
|
|
225
|
+
|
|
222
226
|
**Deprecated (accepted but transcoded):**
|
|
223
227
|
|
|
224
228
|
- `audio/mp3` — Deprecated. Use `audio/mpeg` instead. Files sent as audio/mp3
|
|
@@ -490,6 +494,10 @@ class AsyncAttachmentsResource(AsyncAPIResource):
|
|
|
490
494
|
application/x-iwork-keynote-sffkey, application/epub+zip, application/zip,
|
|
491
495
|
application/x-gzip
|
|
492
496
|
|
|
497
|
+
**Transcoded on delivery:**
|
|
498
|
+
|
|
499
|
+
- `audio/x-caf` — CAF files are transcoded to `audio/mp4` for delivery.
|
|
500
|
+
|
|
493
501
|
**Deprecated (accepted but transcoded):**
|
|
494
502
|
|
|
495
503
|
- `audio/mp3` — Deprecated. Use `audio/mpeg` instead. Files sent as audio/mp3
|
|
@@ -34,6 +34,10 @@ class AttachmentCreateParams(TypedDict, total=False):
|
|
|
34
34
|
application/x-iwork-keynote-sffkey, application/epub+zip, application/zip,
|
|
35
35
|
application/x-gzip
|
|
36
36
|
|
|
37
|
+
**Transcoded on delivery:**
|
|
38
|
+
|
|
39
|
+
- `audio/x-caf` — CAF files are transcoded to `audio/mp4` for delivery.
|
|
40
|
+
|
|
37
41
|
**Deprecated (accepted but transcoded):**
|
|
38
42
|
|
|
39
43
|
- `audio/mp3` — Deprecated. Use `audio/mpeg` instead. Files sent as audio/mp3
|
|
@@ -38,6 +38,10 @@ class AttachmentRetrieveResponse(BaseModel):
|
|
|
38
38
|
application/x-iwork-keynote-sffkey, application/epub+zip, application/zip,
|
|
39
39
|
application/x-gzip
|
|
40
40
|
|
|
41
|
+
**Transcoded on delivery:**
|
|
42
|
+
|
|
43
|
+
- `audio/x-caf` — CAF files are transcoded to `audio/mp4` for delivery.
|
|
44
|
+
|
|
41
45
|
**Deprecated (accepted but transcoded):**
|
|
42
46
|
|
|
43
47
|
- `audio/mp3` — Deprecated. Use `audio/mpeg` instead. Files sent as audio/mp3
|
linq/types/chats/sent_message.py
CHANGED
|
@@ -24,6 +24,9 @@ class SentMessage(BaseModel):
|
|
|
24
24
|
id: str
|
|
25
25
|
"""Message identifier (UUID)"""
|
|
26
26
|
|
|
27
|
+
created_at: datetime
|
|
28
|
+
"""When the message was created"""
|
|
29
|
+
|
|
27
30
|
delivery_status: Literal["pending", "queued", "sent", "delivered", "failed"]
|
|
28
31
|
"""Current delivery status of a message"""
|
|
29
32
|
|
|
@@ -33,8 +36,8 @@ class SentMessage(BaseModel):
|
|
|
33
36
|
parts: List[Part]
|
|
34
37
|
"""Message parts in order (text, media, and link)"""
|
|
35
38
|
|
|
36
|
-
sent_at: datetime
|
|
37
|
-
"""When the message was sent"""
|
|
39
|
+
sent_at: Optional[datetime] = None
|
|
40
|
+
"""When the message was actually sent (null if still queued)"""
|
|
38
41
|
|
|
39
42
|
delivered_at: Optional[datetime] = None
|
|
40
43
|
"""When the message was delivered"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: linq-python
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
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
|
|
@@ -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=ff5ZCbMuq9M_5i_xlPYRU6jHOgxj64M_eaq2f45JmMo,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=uwtQ0Wz-I7-NdRdijoIHnSz5NURPPATBN3ckpEdIhbw,25001
|
|
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=PBW1lQ1uC10MUHUexA9D0MrgzZbIjoLWUiebv4ZyfVA,2308
|
|
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=YN6nj88bhRbp2P2mFLVMOyfWYGhRRRtm-P_Aed-2r-A,2631
|
|
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
|
|
@@ -120,7 +120,7 @@ linq/types/chats/participant_add_params.py,sha256=x6Yg1J87R2n095Kg6K0ITz9H1HEVvP
|
|
|
120
120
|
linq/types/chats/participant_add_response.py,sha256=JKe4-m-UHb_HgLbw1eZdQx62uWcnPWqX2PMcxAHYe0Q,334
|
|
121
121
|
linq/types/chats/participant_remove_params.py,sha256=tURRmQZ_Pz2WWxV-ntMpD6CCG65YczQCkRkohn8KxTo,379
|
|
122
122
|
linq/types/chats/participant_remove_response.py,sha256=qTAxe-rn4T0cengfi-WVGvYLVBXNyT0v5xTRXOYgNx4,340
|
|
123
|
-
linq/types/chats/sent_message.py,sha256=
|
|
123
|
+
linq/types/chats/sent_message.py,sha256=H0weXn2x2vk8qA4OsIn471dw-ouSxhd4Ee5t3O8rjMA,1884
|
|
124
124
|
linq/types/shared/__init__.py,sha256=fUnCGZmx3ThjYwmh42i-kMaWvqSnYWzSnEEeAxkEDTM,561
|
|
125
125
|
linq/types/shared/chat_handle.py,sha256=eIzMPnOFVs-Ved8RtM_1Ub_97n7KDvc_Z2Dd2Y_8pag,867
|
|
126
126
|
linq/types/shared/link_part_response.py,sha256=8xOaGAKFnZPGYik2D1X0j8HQZYj84Fh-VI_n06gQIMU,531
|
|
@@ -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.3.dist-info/METADATA,sha256=UJyEgT8whKz9QeWqu2IDutsVNC5QQxpdGwAIFto6nsM,17384
|
|
138
|
+
linq_python-0.2.3.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
139
|
+
linq_python-0.2.3.dist-info/licenses/LICENSE,sha256=zP4mO5gBwuMBJx2-sVWVdjklSfevmIQT68JUQfvjy40,11341
|
|
140
|
+
linq_python-0.2.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|