linq-python 0.17.0__tar.gz → 0.19.0__tar.gz

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.
Files changed (224) hide show
  1. linq_python-0.19.0/.release-please-manifest.json +3 -0
  2. {linq_python-0.17.0 → linq_python-0.19.0}/CHANGELOG.md +26 -0
  3. {linq_python-0.17.0 → linq_python-0.19.0}/PKG-INFO +9 -63
  4. {linq_python-0.17.0 → linq_python-0.19.0}/README.md +8 -62
  5. {linq_python-0.17.0 → linq_python-0.19.0}/api.md +56 -0
  6. {linq_python-0.17.0 → linq_python-0.19.0}/pyproject.toml +1 -1
  7. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_client.py +284 -12
  8. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_version.py +1 -1
  9. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/__init__.py +56 -0
  10. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/available_number.py +36 -4
  11. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/chats/chats.py +46 -0
  12. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/chats/messages.py +10 -0
  13. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/contact_card.py +22 -20
  14. linq_python-0.19.0/src/linq/resources/experiences.py +235 -0
  15. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/messages.py +66 -2
  16. linq_python-0.19.0/src/linq/resources/payment_handles.py +459 -0
  17. linq_python-0.19.0/src/linq/resources/payment_providers.py +274 -0
  18. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/payment_requests.py +4 -4
  19. linq_python-0.19.0/src/linq/resources/payments.py +458 -0
  20. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/__init__.py +10 -0
  21. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/available_number_retrieve_params.py +12 -0
  22. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat.py +11 -0
  23. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_create_params.py +5 -0
  24. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_create_response.py +11 -0
  25. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_created_webhook_event.py +11 -0
  26. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chats/message_send_params.py +5 -0
  27. linq_python-0.19.0/src/linq/types/experience_list_response.py +45 -0
  28. linq_python-0.19.0/src/linq/types/experience_retrieve_response.py +41 -0
  29. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message.py +10 -0
  30. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_content_param.py +64 -12
  31. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_create_params.py +22 -0
  32. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_edited_webhook_event.py +11 -0
  33. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_event_v2.py +22 -0
  34. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_failed_webhook_event.py +5 -0
  35. linq_python-0.19.0/src/linq/types/payment.py +40 -0
  36. linq_python-0.19.0/src/linq/types/payment_create_params.py +29 -0
  37. linq_python-0.19.0/src/linq/types/payment_credentials_response.py +25 -0
  38. linq_python-0.19.0/src/linq/types/payment_handle_connection.py +21 -0
  39. linq_python-0.19.0/src/linq/types/payment_handle_verify_params.py +15 -0
  40. linq_python-0.19.0/src/linq/types/payment_provider.py +14 -0
  41. linq_python-0.19.0/src/linq/types/payment_provider_connect_params.py +12 -0
  42. linq_python-0.19.0/src/linq/types/payment_provider_connect_response.py +16 -0
  43. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/chats/test_messages.py +28 -74
  44. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/test_available_number.py +2 -0
  45. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/test_chats.py +26 -58
  46. linq_python-0.19.0/tests/api_resources/test_experiences.py +164 -0
  47. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/test_messages.py +28 -58
  48. linq_python-0.19.0/tests/api_resources/test_payment_handles.py +376 -0
  49. linq_python-0.19.0/tests/api_resources/test_payment_providers.py +200 -0
  50. linq_python-0.19.0/tests/api_resources/test_payments.py +388 -0
  51. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/test_webhooks.py +2 -2
  52. {linq_python-0.17.0 → linq_python-0.19.0}/tests/test_client.py +10 -108
  53. {linq_python-0.17.0 → linq_python-0.19.0}/uv.lock +1 -1
  54. linq_python-0.17.0/.release-please-manifest.json +0 -3
  55. {linq_python-0.17.0 → linq_python-0.19.0}/.gitignore +0 -0
  56. {linq_python-0.17.0 → linq_python-0.19.0}/CONTRIBUTING.md +0 -0
  57. {linq_python-0.17.0 → linq_python-0.19.0}/LICENSE +0 -0
  58. {linq_python-0.17.0 → linq_python-0.19.0}/SECURITY.md +0 -0
  59. {linq_python-0.17.0 → linq_python-0.19.0}/bin/check-release-environment +0 -0
  60. {linq_python-0.17.0 → linq_python-0.19.0}/bin/publish-pypi +0 -0
  61. {linq_python-0.17.0 → linq_python-0.19.0}/examples/.keep +0 -0
  62. {linq_python-0.17.0 → linq_python-0.19.0}/release-please-config.json +0 -0
  63. {linq_python-0.17.0 → linq_python-0.19.0}/requirements-dev.lock +0 -0
  64. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/__init__.py +0 -0
  65. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_base_client.py +0 -0
  66. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_compat.py +0 -0
  67. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_constants.py +0 -0
  68. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_exceptions.py +0 -0
  69. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_files.py +0 -0
  70. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_models.py +0 -0
  71. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_qs.py +0 -0
  72. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_resource.py +0 -0
  73. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_response.py +0 -0
  74. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_streaming.py +0 -0
  75. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_types.py +0 -0
  76. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_utils/__init__.py +0 -0
  77. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_utils/_compat.py +0 -0
  78. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_utils/_datetime_parse.py +0 -0
  79. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_utils/_json.py +0 -0
  80. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_utils/_logs.py +0 -0
  81. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_utils/_path.py +0 -0
  82. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_utils/_proxy.py +0 -0
  83. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_utils/_reflection.py +0 -0
  84. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_utils/_resources_proxy.py +0 -0
  85. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_utils/_streams.py +0 -0
  86. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_utils/_sync.py +0 -0
  87. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_utils/_transform.py +0 -0
  88. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_utils/_typing.py +0 -0
  89. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/_utils/_utils.py +0 -0
  90. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/lib/.keep +0 -0
  91. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/pagination.py +0 -0
  92. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/py.typed +0 -0
  93. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/attachments.py +0 -0
  94. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/capability.py +0 -0
  95. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/chats/__init__.py +0 -0
  96. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/chats/location.py +0 -0
  97. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/chats/participants.py +0 -0
  98. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/chats/typing.py +0 -0
  99. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/phone_numbers.py +0 -0
  100. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/phonenumbers.py +0 -0
  101. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/webhook_events.py +0 -0
  102. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/webhook_subscriptions.py +0 -0
  103. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/resources/webhooks.py +0 -0
  104. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/attachment_create_params.py +0 -0
  105. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/attachment_create_response.py +0 -0
  106. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/attachment_retrieve_response.py +0 -0
  107. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/available_number_retrieve_response.py +0 -0
  108. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/capability_check_RCS_params.py +0 -0
  109. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/capability_check_i_message_params.py +0 -0
  110. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_group_icon_update_failed_webhook_event.py +0 -0
  111. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_group_icon_updated_webhook_event.py +0 -0
  112. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_group_name_update_failed_webhook_event.py +0 -0
  113. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_group_name_updated_webhook_event.py +0 -0
  114. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_leave_chat_response.py +0 -0
  115. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_list_chats_params.py +0 -0
  116. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_send_voicememo_params.py +0 -0
  117. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_send_voicememo_response.py +0 -0
  118. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_typing_indicator_started_webhook_event.py +0 -0
  119. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_typing_indicator_stopped_webhook_event.py +0 -0
  120. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_update_params.py +0 -0
  121. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chat_update_response.py +0 -0
  122. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chats/__init__.py +0 -0
  123. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chats/get_chat_location_response.py +0 -0
  124. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chats/location_request_response.py +0 -0
  125. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chats/message_list_params.py +0 -0
  126. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chats/message_send_response.py +0 -0
  127. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chats/participant_add_params.py +0 -0
  128. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chats/participant_add_response.py +0 -0
  129. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chats/participant_remove_params.py +0 -0
  130. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chats/participant_remove_response.py +0 -0
  131. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/chats/sent_message.py +0 -0
  132. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/contact_card_create_params.py +0 -0
  133. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/contact_card_retrieve_params.py +0 -0
  134. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/contact_card_retrieve_response.py +0 -0
  135. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/contact_card_update_params.py +0 -0
  136. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/handle_check_response.py +0 -0
  137. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/link_part_param.py +0 -0
  138. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/media_part_param.py +0 -0
  139. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_add_reaction_params.py +0 -0
  140. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_add_reaction_response.py +0 -0
  141. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_create_response.py +0 -0
  142. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_delivered_webhook_event.py +0 -0
  143. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_effect.py +0 -0
  144. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_effect_param.py +0 -0
  145. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_list_messages_thread_params.py +0 -0
  146. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_read_webhook_event.py +0 -0
  147. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_received_webhook_event.py +0 -0
  148. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_sent_webhook_event.py +0 -0
  149. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_update_app_card_params.py +0 -0
  150. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_update_app_card_response.py +0 -0
  151. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/message_update_params.py +0 -0
  152. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/participant_added_webhook_event.py +0 -0
  153. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/participant_removed_webhook_event.py +0 -0
  154. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/payment_request.py +0 -0
  155. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/payment_request_create_params.py +0 -0
  156. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/payment_request_list_params.py +0 -0
  157. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/payment_request_list_response.py +0 -0
  158. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/phone_number_list_response.py +0 -0
  159. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/phone_number_status_updated_webhook_event.py +0 -0
  160. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/phone_number_update_params.py +0 -0
  161. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/phone_number_update_response.py +0 -0
  162. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/phonenumber_list_response.py +0 -0
  163. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/reaction_added_webhook_event.py +0 -0
  164. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/reaction_event_base.py +0 -0
  165. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/reaction_removed_webhook_event.py +0 -0
  166. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/reply_to.py +0 -0
  167. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/reply_to_param.py +0 -0
  168. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/schemas_media_part_response.py +0 -0
  169. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/schemas_message_effect.py +0 -0
  170. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/schemas_text_part_response.py +0 -0
  171. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/set_contact_card.py +0 -0
  172. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/shared/__init__.py +0 -0
  173. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/shared/chat_handle.py +0 -0
  174. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/shared/link_part_response.py +0 -0
  175. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/shared/media_part_response.py +0 -0
  176. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/shared/reaction.py +0 -0
  177. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/shared/reaction_type.py +0 -0
  178. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/shared/service_type.py +0 -0
  179. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/shared/text_decoration.py +0 -0
  180. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/shared/text_part_response.py +0 -0
  181. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/shared_params/__init__.py +0 -0
  182. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/shared_params/reaction_type.py +0 -0
  183. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/shared_params/service_type.py +0 -0
  184. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/shared_params/text_decoration.py +0 -0
  185. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/supported_content_type.py +0 -0
  186. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/text_part_param.py +0 -0
  187. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/unwrap_webhook_event.py +0 -0
  188. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/webhook_event_list_response.py +0 -0
  189. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/webhook_event_type.py +0 -0
  190. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/webhook_subscription.py +0 -0
  191. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/webhook_subscription_create_params.py +0 -0
  192. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/webhook_subscription_create_response.py +0 -0
  193. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/webhook_subscription_list_response.py +0 -0
  194. {linq_python-0.17.0 → linq_python-0.19.0}/src/linq/types/webhook_subscription_update_params.py +0 -0
  195. {linq_python-0.17.0/tests/api_resources/chats → linq_python-0.19.0/tests}/__init__.py +0 -0
  196. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/__init__.py +0 -0
  197. {linq_python-0.17.0/tests → linq_python-0.19.0/tests/api_resources/chats}/__init__.py +0 -0
  198. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/chats/test_location.py +0 -0
  199. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/chats/test_participants.py +0 -0
  200. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/chats/test_typing.py +0 -0
  201. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/test_attachments.py +0 -0
  202. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/test_capability.py +0 -0
  203. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/test_contact_card.py +0 -0
  204. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/test_payment_requests.py +0 -0
  205. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/test_phone_numbers.py +0 -0
  206. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/test_phonenumbers.py +0 -0
  207. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/test_webhook_events.py +0 -0
  208. {linq_python-0.17.0 → linq_python-0.19.0}/tests/api_resources/test_webhook_subscriptions.py +0 -0
  209. {linq_python-0.17.0 → linq_python-0.19.0}/tests/conftest.py +0 -0
  210. {linq_python-0.17.0 → linq_python-0.19.0}/tests/sample_file.txt +0 -0
  211. {linq_python-0.17.0 → linq_python-0.19.0}/tests/test_extract_files.py +0 -0
  212. {linq_python-0.17.0 → linq_python-0.19.0}/tests/test_files.py +0 -0
  213. {linq_python-0.17.0 → linq_python-0.19.0}/tests/test_models.py +0 -0
  214. {linq_python-0.17.0 → linq_python-0.19.0}/tests/test_qs.py +0 -0
  215. {linq_python-0.17.0 → linq_python-0.19.0}/tests/test_required_args.py +0 -0
  216. {linq_python-0.17.0 → linq_python-0.19.0}/tests/test_response.py +0 -0
  217. {linq_python-0.17.0 → linq_python-0.19.0}/tests/test_streaming.py +0 -0
  218. {linq_python-0.17.0 → linq_python-0.19.0}/tests/test_transform.py +0 -0
  219. {linq_python-0.17.0 → linq_python-0.19.0}/tests/test_utils/test_datetime_parse.py +0 -0
  220. {linq_python-0.17.0 → linq_python-0.19.0}/tests/test_utils/test_json.py +0 -0
  221. {linq_python-0.17.0 → linq_python-0.19.0}/tests/test_utils/test_path.py +0 -0
  222. {linq_python-0.17.0 → linq_python-0.19.0}/tests/test_utils/test_proxy.py +0 -0
  223. {linq_python-0.17.0 → linq_python-0.19.0}/tests/test_utils/test_typing.py +0 -0
  224. {linq_python-0.17.0 → linq_python-0.19.0}/tests/utils.py +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.19.0"
3
+ }
@@ -1,5 +1,31 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.19.0](https://github.com/linq-team/linq-python/compare/v0.18.0...v0.19.0) (2026-08-04)
4
+
5
+
6
+ ### Features
7
+
8
+ * add action field to message content for app experiences ([e3e1944](https://github.com/linq-team/linq-python/commit/e3e194457f75c8a10e242c3e22ab2bac7fbf9a87))
9
+ * add agentcard payment provider api ([e3e1944](https://github.com/linq-team/linq-python/commit/e3e194457f75c8a10e242c3e22ab2bac7fbf9a87))
10
+ * add exclude_from parameter to control line selection ([e3e1944](https://github.com/linq-team/linq-python/commit/e3e194457f75c8a10e242c3e22ab2bac7fbf9a87))
11
+ * add reconciled_at field to message objects ([e3e1944](https://github.com/linq-team/linq-python/commit/e3e194457f75c8a10e242c3e22ab2bac7fbf9a87))
12
+ * support url-type fields in message action parameters ([e3e1944](https://github.com/linq-team/linq-python/commit/e3e194457f75c8a10e242c3e22ab2bac7fbf9a87))
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * clarify contact card creation and update behavior ([e3e1944](https://github.com/linq-team/linq-python/commit/e3e194457f75c8a10e242c3e22ab2bac7fbf9a87))
18
+ * clarify idempotency key behavior with deleted messages ([e3e1944](https://github.com/linq-team/linq-python/commit/e3e194457f75c8a10e242c3e22ab2bac7fbf9a87))
19
+ * clarify message.failed webhook delivery behavior ([e3e1944](https://github.com/linq-team/linq-python/commit/e3e194457f75c8a10e242c3e22ab2bac7fbf9a87))
20
+ * clarify opt-out keyword matching requirements for chat health ([e3e1944](https://github.com/linq-team/linq-python/commit/e3e194457f75c8a10e242c3e22ab2bac7fbf9a87))
21
+
22
+ ## [0.18.0](https://github.com/linq-team/linq-python/compare/v0.17.0...v0.18.0) (2026-07-26)
23
+
24
+
25
+ ### Features
26
+
27
+ * regenerate SDKs from updated API spec ([#40](https://github.com/linq-team/linq-python/issues/40)) ([4072b73](https://github.com/linq-team/linq-python/commit/4072b739b5b806b207c0e24ac1cce389524a87dd))
28
+
3
29
  ## [0.17.0](https://github.com/linq-team/linq-python/compare/v0.16.0...v0.17.0) (2026-07-26)
4
30
 
5
31
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: linq-python
3
- Version: 0.17.0
3
+ Version: 0.19.0
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
@@ -80,14 +80,7 @@ client = LinqAPIV3(
80
80
 
81
81
  chat = client.chats.create(
82
82
  from_="+12052535597",
83
- message={
84
- "parts": [
85
- {
86
- "type": "text",
87
- "value": "Hello! How can I help you today?",
88
- }
89
- ]
90
- },
83
+ message={},
91
84
  to=["+12052532136"],
92
85
  )
93
86
  print(chat.chat)
@@ -115,14 +108,7 @@ client = AsyncLinqAPIV3(
115
108
  async def main() -> None:
116
109
  chat = await client.chats.create(
117
110
  from_="+12052535597",
118
- message={
119
- "parts": [
120
- {
121
- "type": "text",
122
- "value": "Hello! How can I help you today?",
123
- }
124
- ]
125
- },
111
+ message={},
126
112
  to=["+12052532136"],
127
113
  )
128
114
  print(chat.chat)
@@ -160,14 +146,7 @@ async def main() -> None:
160
146
  ) as client:
161
147
  chat = await client.chats.create(
162
148
  from_="+12052535597",
163
- message={
164
- "parts": [
165
- {
166
- "type": "text",
167
- "value": "Hello! How can I help you today?",
168
- }
169
- ]
170
- },
149
+ message={},
171
150
  to=["+12052532136"],
172
151
  )
173
152
  print(chat.chat)
@@ -290,14 +269,7 @@ client = LinqAPIV3()
290
269
  try:
291
270
  client.chats.create(
292
271
  from_="+12052535597",
293
- message={
294
- "parts": [
295
- {
296
- "type": "text",
297
- "value": "Hello! How can I help you today?",
298
- }
299
- ]
300
- },
272
+ message={},
301
273
  to=["+12052532136"],
302
274
  )
303
275
  except linq.APIConnectionError as e:
@@ -344,14 +316,7 @@ client = LinqAPIV3(
344
316
  # Or, configure per-request:
345
317
  client.with_options(max_retries=5).chats.create(
346
318
  from_="+12052535597",
347
- message={
348
- "parts": [
349
- {
350
- "type": "text",
351
- "value": "Hello! How can I help you today?",
352
- }
353
- ]
354
- },
319
+ message={},
355
320
  to=["+12052532136"],
356
321
  )
357
322
  ```
@@ -378,14 +343,7 @@ client = LinqAPIV3(
378
343
  # Override per-request:
379
344
  client.with_options(timeout=5.0).chats.create(
380
345
  from_="+12052535597",
381
- message={
382
- "parts": [
383
- {
384
- "type": "text",
385
- "value": "Hello! How can I help you today?",
386
- }
387
- ]
388
- },
346
+ message={},
389
347
  to=["+12052532136"],
390
348
  )
391
349
  ```
@@ -430,12 +388,7 @@ from linq import LinqAPIV3
430
388
  client = LinqAPIV3()
431
389
  response = client.chats.with_raw_response.create(
432
390
  from_="+12052535597",
433
- message={
434
- "parts": [{
435
- "type": "text",
436
- "value": "Hello! How can I help you today?",
437
- }]
438
- },
391
+ message={},
439
392
  to=["+12052532136"],
440
393
  )
441
394
  print(response.headers.get('X-My-Header'))
@@ -457,14 +410,7 @@ To stream the response body, use `.with_streaming_response` instead, which requi
457
410
  ```python
458
411
  with client.chats.with_streaming_response.create(
459
412
  from_="+12052535597",
460
- message={
461
- "parts": [
462
- {
463
- "type": "text",
464
- "value": "Hello! How can I help you today?",
465
- }
466
- ]
467
- },
413
+ message={},
468
414
  to=["+12052532136"],
469
415
  ) as response:
470
416
  print(response.headers.get("X-My-Header"))
@@ -43,14 +43,7 @@ client = LinqAPIV3(
43
43
 
44
44
  chat = client.chats.create(
45
45
  from_="+12052535597",
46
- message={
47
- "parts": [
48
- {
49
- "type": "text",
50
- "value": "Hello! How can I help you today?",
51
- }
52
- ]
53
- },
46
+ message={},
54
47
  to=["+12052532136"],
55
48
  )
56
49
  print(chat.chat)
@@ -78,14 +71,7 @@ client = AsyncLinqAPIV3(
78
71
  async def main() -> None:
79
72
  chat = await client.chats.create(
80
73
  from_="+12052535597",
81
- message={
82
- "parts": [
83
- {
84
- "type": "text",
85
- "value": "Hello! How can I help you today?",
86
- }
87
- ]
88
- },
74
+ message={},
89
75
  to=["+12052532136"],
90
76
  )
91
77
  print(chat.chat)
@@ -123,14 +109,7 @@ async def main() -> None:
123
109
  ) as client:
124
110
  chat = await client.chats.create(
125
111
  from_="+12052535597",
126
- message={
127
- "parts": [
128
- {
129
- "type": "text",
130
- "value": "Hello! How can I help you today?",
131
- }
132
- ]
133
- },
112
+ message={},
134
113
  to=["+12052532136"],
135
114
  )
136
115
  print(chat.chat)
@@ -253,14 +232,7 @@ client = LinqAPIV3()
253
232
  try:
254
233
  client.chats.create(
255
234
  from_="+12052535597",
256
- message={
257
- "parts": [
258
- {
259
- "type": "text",
260
- "value": "Hello! How can I help you today?",
261
- }
262
- ]
263
- },
235
+ message={},
264
236
  to=["+12052532136"],
265
237
  )
266
238
  except linq.APIConnectionError as e:
@@ -307,14 +279,7 @@ client = LinqAPIV3(
307
279
  # Or, configure per-request:
308
280
  client.with_options(max_retries=5).chats.create(
309
281
  from_="+12052535597",
310
- message={
311
- "parts": [
312
- {
313
- "type": "text",
314
- "value": "Hello! How can I help you today?",
315
- }
316
- ]
317
- },
282
+ message={},
318
283
  to=["+12052532136"],
319
284
  )
320
285
  ```
@@ -341,14 +306,7 @@ client = LinqAPIV3(
341
306
  # Override per-request:
342
307
  client.with_options(timeout=5.0).chats.create(
343
308
  from_="+12052535597",
344
- message={
345
- "parts": [
346
- {
347
- "type": "text",
348
- "value": "Hello! How can I help you today?",
349
- }
350
- ]
351
- },
309
+ message={},
352
310
  to=["+12052532136"],
353
311
  )
354
312
  ```
@@ -393,12 +351,7 @@ from linq import LinqAPIV3
393
351
  client = LinqAPIV3()
394
352
  response = client.chats.with_raw_response.create(
395
353
  from_="+12052535597",
396
- message={
397
- "parts": [{
398
- "type": "text",
399
- "value": "Hello! How can I help you today?",
400
- }]
401
- },
354
+ message={},
402
355
  to=["+12052532136"],
403
356
  )
404
357
  print(response.headers.get('X-My-Header'))
@@ -420,14 +373,7 @@ To stream the response body, use `.with_streaming_response` instead, which requi
420
373
  ```python
421
374
  with client.chats.with_streaming_response.create(
422
375
  from_="+12052535597",
423
- message={
424
- "parts": [
425
- {
426
- "type": "text",
427
- "value": "Hello! How can I help you today?",
428
- }
429
- ]
430
- },
376
+ message={},
431
377
  to=["+12052532136"],
432
378
  ) as response:
433
379
  print(response.headers.get("X-My-Header"))
@@ -179,6 +179,62 @@ Methods:
179
179
  - <code title="get /v3/payment_requests">client.payment_requests.<a href="./src/linq/resources/payment_requests.py">list</a>(\*\*<a href="src/linq/types/payment_request_list_params.py">params</a>) -> <a href="./src/linq/types/payment_request_list_response.py">PaymentRequestListResponse</a></code>
180
180
  - <code title="post /v3/payment_requests/{paymentRequestId}/cancel">client.payment_requests.<a href="./src/linq/resources/payment_requests.py">cancel</a>(payment_request_id) -> <a href="./src/linq/types/payment_request.py">PaymentRequest</a></code>
181
181
 
182
+ # PaymentProviders
183
+
184
+ Types:
185
+
186
+ ```python
187
+ from linq.types import PaymentProvider, PaymentProviderConnectResponse
188
+ ```
189
+
190
+ Methods:
191
+
192
+ - <code title="get /v3/payments/providers/{provider}">client.payment_providers.<a href="./src/linq/resources/payment_providers.py">retrieve</a>(provider) -> <a href="./src/linq/types/payment_provider.py">PaymentProvider</a></code>
193
+ - <code title="post /v3/payments/providers/{provider}/connect">client.payment_providers.<a href="./src/linq/resources/payment_providers.py">connect</a>(provider, \*\*<a href="src/linq/types/payment_provider_connect_params.py">params</a>) -> <a href="./src/linq/types/payment_provider_connect_response.py">PaymentProviderConnectResponse</a></code>
194
+
195
+ # PaymentHandles
196
+
197
+ Types:
198
+
199
+ ```python
200
+ from linq.types import PaymentHandleConnection
201
+ ```
202
+
203
+ Methods:
204
+
205
+ - <code title="post /v3/payments/handles/{handle}/connect">client.payment_handles.<a href="./src/linq/resources/payment_handles.py">connect</a>(handle) -> <a href="./src/linq/types/payment_handle_connection.py">PaymentHandleConnection</a></code>
206
+ - <code title="get /v3/payments/handles/{handle}/connection">client.payment_handles.<a href="./src/linq/resources/payment_handles.py">connection</a>(handle) -> <a href="./src/linq/types/payment_handle_connection.py">PaymentHandleConnection</a></code>
207
+ - <code title="delete /v3/payments/handles/{handle}/connection">client.payment_handles.<a href="./src/linq/resources/payment_handles.py">revoke</a>(handle) -> <a href="./src/linq/types/payment_handle_connection.py">PaymentHandleConnection</a></code>
208
+ - <code title="post /v3/payments/handles/{handle}/verify">client.payment_handles.<a href="./src/linq/resources/payment_handles.py">verify</a>(handle, \*\*<a href="src/linq/types/payment_handle_verify_params.py">params</a>) -> <a href="./src/linq/types/payment_handle_connection.py">PaymentHandleConnection</a></code>
209
+
210
+ # Payments
211
+
212
+ Types:
213
+
214
+ ```python
215
+ from linq.types import Payment, PaymentCredentialsResponse
216
+ ```
217
+
218
+ Methods:
219
+
220
+ - <code title="post /v3/payments">client.payments.<a href="./src/linq/resources/payments.py">create</a>(\*\*<a href="src/linq/types/payment_create_params.py">params</a>) -> <a href="./src/linq/types/payment.py">Payment</a></code>
221
+ - <code title="get /v3/payments/{paymentId}">client.payments.<a href="./src/linq/resources/payments.py">retrieve</a>(payment_id) -> <a href="./src/linq/types/payment.py">Payment</a></code>
222
+ - <code title="post /v3/payments/{paymentId}/cancel">client.payments.<a href="./src/linq/resources/payments.py">cancel</a>(payment_id) -> <a href="./src/linq/types/payment.py">Payment</a></code>
223
+ - <code title="get /v3/payments/{paymentId}/credentials">client.payments.<a href="./src/linq/resources/payments.py">credentials</a>(payment_id) -> <a href="./src/linq/types/payment_credentials_response.py">PaymentCredentialsResponse</a></code>
224
+
225
+ # Experiences
226
+
227
+ Types:
228
+
229
+ ```python
230
+ from linq.types import ExperienceRetrieveResponse, ExperienceListResponse
231
+ ```
232
+
233
+ Methods:
234
+
235
+ - <code title="get /v3/experiences/{experience}">client.experiences.<a href="./src/linq/resources/experiences.py">retrieve</a>(experience) -> <a href="./src/linq/types/experience_retrieve_response.py">ExperienceRetrieveResponse</a></code>
236
+ - <code title="get /v3/experiences">client.experiences.<a href="./src/linq/resources/experiences.py">list</a>() -> <a href="./src/linq/types/experience_list_response.py">ExperienceListResponse</a></code>
237
+
182
238
  # WebhookEvents
183
239
 
184
240
  Types:
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "linq-python"
3
- version = "0.17.0"
3
+ version = "0.19.0"
4
4
  description = "The official Python library for the linq-api-v3 API"
5
5
  dynamic = ["readme"]
6
6
  license = "Apache-2.0"