paid-python 1.9.0__tar.gz → 1.10.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 (379) hide show
  1. {paid_python-1.9.0 → paid_python-1.10.0}/PKG-INFO +4 -1
  2. {paid_python-1.9.0 → paid_python-1.10.0}/README.md +1 -0
  3. {paid_python-1.9.0 → paid_python-1.10.0}/pyproject.toml +4 -1
  4. paid_python-1.10.0/src/paid/__init__.py +984 -0
  5. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/client.py +38 -0
  6. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/client_wrapper.py +2 -2
  7. paid_python-1.10.0/src/paid/costs/client.py +132 -0
  8. {paid_python-1.9.0/src/paid/credits → paid_python-1.10.0/src/paid/costs}/raw_client.py +71 -21
  9. paid_python-1.10.0/src/paid/credits/__init__.py +37 -0
  10. paid_python-1.10.0/src/paid/credits/client.py +330 -0
  11. paid_python-1.10.0/src/paid/credits/raw_client.py +555 -0
  12. paid_python-1.10.0/src/paid/credits/types/__init__.py +38 -0
  13. paid_python-1.10.0/src/paid/credits/types/list_credit_currencies_request_status.py +5 -0
  14. paid_python-1.10.0/src/paid/credits/types/update_credit_currency_request_status.py +5 -0
  15. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/customers/client.py +204 -37
  16. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/customers/raw_client.py +332 -27
  17. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/orders/client.py +29 -0
  18. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/orders/raw_client.py +33 -0
  19. paid_python-1.10.0/src/paid/pricing/client.py +304 -0
  20. paid_python-1.10.0/src/paid/pricing/raw_client.py +465 -0
  21. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/products/client.py +44 -24
  22. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/products/raw_client.py +67 -40
  23. paid_python-1.10.0/src/paid/signals/__init__.py +4 -0
  24. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/anthropic_patches/patches.py +18 -18
  25. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/autoinstrumentation.py +31 -1
  26. paid_python-1.10.0/src/paid/types/__init__.py +947 -0
  27. paid_python-1.10.0/src/paid/types/cost.py +62 -0
  28. paid_python-1.10.0/src/paid/types/cost_ingest_response.py +27 -0
  29. paid_python-1.10.0/src/paid/types/cost_override.py +27 -0
  30. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing.py +23 -2
  31. paid_python-1.10.0/src/paid/types/create_order_line_attribute_request_pricing_credit_unit_brackets_item.py +26 -0
  32. paid_python-1.10.0/src/paid/types/create_order_line_attribute_request_pricing_pricing_input.py +22 -0
  33. paid_python-1.10.0/src/paid/types/create_order_line_attribute_request_pricing_pricing_input_kind.py +5 -0
  34. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_pricing_model.py +2 -1
  35. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_request.py +8 -0
  36. paid_python-1.10.0/src/paid/types/credit_balance.py +65 -0
  37. paid_python-1.10.0/src/paid/types/credit_benefit_input.py +53 -0
  38. paid_python-1.10.0/src/paid/types/credit_benefit_input_allocation_cadence.py +5 -0
  39. paid_python-1.10.0/src/paid/types/credit_benefit_input_credit_grant_timing.py +7 -0
  40. paid_python-1.10.0/src/paid/types/credit_benefit_input_recipient.py +5 -0
  41. paid_python-1.10.0/src/paid/types/credit_benefit_output.py +47 -0
  42. paid_python-1.10.0/src/paid/types/credit_currency.py +64 -0
  43. paid_python-1.10.0/src/paid/types/credit_currency_status.py +5 -0
  44. paid_python-1.9.0/src/paid/types/credit_balance.py → paid_python-1.10.0/src/paid/types/credit_grant.py +12 -14
  45. paid_python-1.10.0/src/paid/types/currency_code.py +3 -0
  46. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer.py +9 -4
  47. paid_python-1.9.0/src/paid/types/customer_billing_address.py → paid_python-1.10.0/src/paid/types/customer_billing_address_input.py +1 -1
  48. paid_python-1.10.0/src/paid/types/customer_billing_address_response.py +32 -0
  49. paid_python-1.10.0/src/paid/types/customer_state.py +40 -0
  50. paid_python-1.10.0/src/paid/types/customer_state_checkout_link.py +35 -0
  51. paid_python-1.10.0/src/paid/types/customer_state_checkout_link_status.py +5 -0
  52. paid_python-1.10.0/src/paid/types/customer_state_credit_balance.py +30 -0
  53. paid_python-1.10.0/src/paid/types/customer_state_credit_summary.py +20 -0
  54. paid_python-1.10.0/src/paid/types/customer_state_customer.py +35 -0
  55. paid_python-1.10.0/src/paid/types/customer_state_order.py +43 -0
  56. paid_python-1.10.0/src/paid/types/customer_state_order_state.py +5 -0
  57. paid_python-1.10.0/src/paid/types/customer_state_product_ref.py +25 -0
  58. paid_python-1.10.0/src/paid/types/customer_state_seat.py +34 -0
  59. paid_python-1.10.0/src/paid/types/customer_state_seat_assignee.py +24 -0
  60. paid_python-1.10.0/src/paid/types/customer_state_seat_status.py +5 -0
  61. paid_python-1.10.0/src/paid/types/customer_state_seats.py +23 -0
  62. paid_python-1.10.0/src/paid/types/one_time_per_unit_input.py +34 -0
  63. paid_python-1.10.0/src/paid/types/one_time_per_unit_input_billing_type.py +5 -0
  64. paid_python-1.10.0/src/paid/types/one_time_per_unit_input_fee_type.py +7 -0
  65. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/order.py +14 -0
  66. paid_python-1.10.0/src/paid/types/order_billing_frequency_override.py +25 -0
  67. paid_python-1.10.0/src/paid/types/order_billing_frequency_override_frequency.py +7 -0
  68. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/order_line.py +4 -0
  69. paid_python-1.10.0/src/paid/types/order_line_type.py +5 -0
  70. paid_python-1.10.0/src/paid/types/precomputed_cost.py +52 -0
  71. paid_python-1.10.0/src/paid/types/pricing_input.py +625 -0
  72. paid_python-1.10.0/src/paid/types/pricing_list_response.py +20 -0
  73. paid_python-1.10.0/src/paid/types/pricing_output.py +56 -0
  74. paid_python-1.10.0/src/paid/types/pricing_output_pricing_type.py +24 -0
  75. paid_python-1.10.0/src/paid/types/pricing_price_point_output.py +33 -0
  76. paid_python-1.10.0/src/paid/types/pricing_price_point_output_tiers_item.py +40 -0
  77. paid_python-1.10.0/src/paid/types/pricing_price_point_output_tiers_item_tier_billing_type.py +5 -0
  78. paid_python-1.10.0/src/paid/types/pricing_response.py +30 -0
  79. paid_python-1.10.0/src/paid/types/product_attribute_output.py +33 -0
  80. paid_python-1.10.0/src/paid/types/product_attribute_upsert.py +33 -0
  81. paid_python-1.10.0/src/paid/types/product_attribution.py +8 -0
  82. paid_python-1.10.0/src/paid/types/product_credit_benefit_input.py +53 -0
  83. paid_python-1.10.0/src/paid/types/product_credit_benefit_input_allocation_cadence.py +5 -0
  84. paid_python-1.10.0/src/paid/types/product_credit_benefit_input_credit_grant_timing.py +7 -0
  85. paid_python-1.10.0/src/paid/types/product_credit_benefit_input_recipient.py +5 -0
  86. paid_python-1.10.0/src/paid/types/product_credit_benefit_output.py +47 -0
  87. paid_python-1.9.0/src/paid/types/credit_currency.py → paid_python-1.10.0/src/paid/types/product_detail.py +18 -5
  88. paid_python-1.10.0/src/paid/types/product_one_time_per_unit_input.py +36 -0
  89. paid_python-1.10.0/src/paid/types/product_one_time_per_unit_input_billing_type.py +5 -0
  90. paid_python-1.10.0/src/paid/types/product_one_time_per_unit_input_fee_type.py +7 -0
  91. paid_python-1.10.0/src/paid/types/product_price_point_output.py +33 -0
  92. paid_python-1.10.0/src/paid/types/product_price_point_output_tiers_item.py +40 -0
  93. paid_python-1.10.0/src/paid/types/product_price_point_output_tiers_item_tier_billing_type.py +5 -0
  94. paid_python-1.10.0/src/paid/types/product_pricing_input.py +637 -0
  95. paid_python-1.10.0/src/paid/types/product_pricing_output.py +56 -0
  96. paid_python-1.10.0/src/paid/types/product_pricing_output_pricing_type.py +24 -0
  97. paid_python-1.10.0/src/paid/types/product_recurring_graduated_input.py +41 -0
  98. paid_python-1.10.0/src/paid/types/product_recurring_graduated_input_billing_frequency.py +7 -0
  99. paid_python-1.10.0/src/paid/types/product_recurring_graduated_input_billing_type.py +5 -0
  100. paid_python-1.10.0/src/paid/types/product_recurring_per_unit_input.py +41 -0
  101. paid_python-1.10.0/src/paid/types/product_recurring_per_unit_input_billing_frequency.py +7 -0
  102. paid_python-1.10.0/src/paid/types/product_recurring_per_unit_input_billing_type.py +5 -0
  103. paid_python-1.10.0/src/paid/types/product_recurring_percent_of_total_input.py +48 -0
  104. paid_python-1.10.0/src/paid/types/product_recurring_percent_of_total_input_billing_frequency.py +7 -0
  105. paid_python-1.10.0/src/paid/types/product_recurring_percent_of_total_input_billing_type.py +5 -0
  106. paid_python-1.10.0/src/paid/types/product_recurring_volume_input.py +41 -0
  107. paid_python-1.10.0/src/paid/types/product_recurring_volume_input_billing_frequency.py +7 -0
  108. paid_python-1.10.0/src/paid/types/product_recurring_volume_input_billing_type.py +5 -0
  109. paid_python-1.10.0/src/paid/types/product_seat_based_graduated_input.py +41 -0
  110. paid_python-1.10.0/src/paid/types/product_seat_based_graduated_input_billing_frequency.py +7 -0
  111. paid_python-1.10.0/src/paid/types/product_seat_based_graduated_input_billing_type.py +5 -0
  112. paid_python-1.10.0/src/paid/types/product_seat_based_per_unit_input.py +41 -0
  113. paid_python-1.10.0/src/paid/types/product_seat_based_per_unit_input_billing_frequency.py +7 -0
  114. paid_python-1.10.0/src/paid/types/product_seat_based_per_unit_input_billing_type.py +5 -0
  115. paid_python-1.10.0/src/paid/types/product_seat_based_prepaid_credits_input.py +54 -0
  116. paid_python-1.10.0/src/paid/types/product_seat_based_prepaid_credits_input_billing_frequency.py +7 -0
  117. paid_python-1.10.0/src/paid/types/product_seat_based_prepaid_credits_input_billing_type.py +5 -0
  118. paid_python-1.10.0/src/paid/types/product_seat_based_volume_input.py +41 -0
  119. paid_python-1.10.0/src/paid/types/product_seat_based_volume_input_billing_frequency.py +7 -0
  120. paid_python-1.10.0/src/paid/types/product_seat_based_volume_input_billing_type.py +5 -0
  121. paid_python-1.10.0/src/paid/types/product_simple_price_point.py +33 -0
  122. paid_python-1.10.0/src/paid/types/product_simple_price_point_tiers_item.py +40 -0
  123. paid_python-1.10.0/src/paid/types/product_simple_price_point_tiers_item_tier_billing_type.py +5 -0
  124. paid_python-1.10.0/src/paid/types/product_tiered_price_point.py +33 -0
  125. paid_python-1.10.0/src/paid/types/product_tiered_price_point_tiers_item.py +40 -0
  126. paid_python-1.10.0/src/paid/types/product_tiered_price_point_tiers_item_tier_billing_type.py +5 -0
  127. paid_python-1.10.0/src/paid/types/product_usage_bracketed_prepaid_credits_input.py +78 -0
  128. paid_python-1.10.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_billing_frequency.py +7 -0
  129. paid_python-1.10.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_billing_type.py +5 -0
  130. paid_python-1.10.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_credit_unit_brackets_item.py +26 -0
  131. paid_python-1.10.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_pricing_input.py +22 -0
  132. paid_python-1.10.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_pricing_input_kind.py +5 -0
  133. paid_python-1.10.0/src/paid/types/product_usage_cost_plus_input.py +46 -0
  134. paid_python-1.10.0/src/paid/types/product_usage_cost_plus_input_billing_frequency.py +7 -0
  135. paid_python-1.10.0/src/paid/types/product_usage_cost_plus_input_billing_type.py +5 -0
  136. paid_python-1.10.0/src/paid/types/product_usage_graduated_input.py +42 -0
  137. paid_python-1.10.0/src/paid/types/product_usage_graduated_input_billing_frequency.py +7 -0
  138. paid_python-1.10.0/src/paid/types/product_usage_graduated_input_billing_type.py +5 -0
  139. paid_python-1.10.0/src/paid/types/product_usage_per_unit_input.py +42 -0
  140. paid_python-1.10.0/src/paid/types/product_usage_per_unit_input_billing_frequency.py +7 -0
  141. paid_python-1.10.0/src/paid/types/product_usage_per_unit_input_billing_type.py +5 -0
  142. paid_python-1.10.0/src/paid/types/product_usage_prepaid_credits_input.py +53 -0
  143. paid_python-1.10.0/src/paid/types/product_usage_prepaid_credits_input_billing_frequency.py +7 -0
  144. paid_python-1.10.0/src/paid/types/product_usage_prepaid_credits_input_billing_type.py +5 -0
  145. paid_python-1.10.0/src/paid/types/product_usage_volume_input.py +42 -0
  146. paid_python-1.10.0/src/paid/types/product_usage_volume_input_billing_frequency.py +7 -0
  147. paid_python-1.10.0/src/paid/types/product_usage_volume_input_billing_type.py +5 -0
  148. paid_python-1.10.0/src/paid/types/recurring_graduated_input.py +41 -0
  149. paid_python-1.10.0/src/paid/types/recurring_graduated_input_billing_frequency.py +7 -0
  150. paid_python-1.10.0/src/paid/types/recurring_graduated_input_billing_type.py +5 -0
  151. paid_python-1.10.0/src/paid/types/recurring_per_unit_input.py +41 -0
  152. paid_python-1.10.0/src/paid/types/recurring_per_unit_input_billing_frequency.py +7 -0
  153. paid_python-1.10.0/src/paid/types/recurring_per_unit_input_billing_type.py +5 -0
  154. paid_python-1.10.0/src/paid/types/recurring_percent_of_total_input.py +46 -0
  155. paid_python-1.10.0/src/paid/types/recurring_percent_of_total_input_billing_frequency.py +7 -0
  156. paid_python-1.10.0/src/paid/types/recurring_percent_of_total_input_billing_type.py +5 -0
  157. paid_python-1.10.0/src/paid/types/recurring_volume_input.py +41 -0
  158. paid_python-1.10.0/src/paid/types/recurring_volume_input_billing_frequency.py +7 -0
  159. paid_python-1.10.0/src/paid/types/recurring_volume_input_billing_type.py +5 -0
  160. paid_python-1.10.0/src/paid/types/rotate_webhook_secret_response.py +28 -0
  161. paid_python-1.10.0/src/paid/types/seat_based_graduated_input.py +41 -0
  162. paid_python-1.10.0/src/paid/types/seat_based_graduated_input_billing_frequency.py +7 -0
  163. paid_python-1.10.0/src/paid/types/seat_based_graduated_input_billing_type.py +5 -0
  164. paid_python-1.10.0/src/paid/types/seat_based_per_unit_input.py +41 -0
  165. paid_python-1.10.0/src/paid/types/seat_based_per_unit_input_billing_frequency.py +7 -0
  166. paid_python-1.10.0/src/paid/types/seat_based_per_unit_input_billing_type.py +5 -0
  167. paid_python-1.10.0/src/paid/types/seat_based_prepaid_credits_input.py +52 -0
  168. paid_python-1.10.0/src/paid/types/seat_based_prepaid_credits_input_billing_frequency.py +7 -0
  169. paid_python-1.10.0/src/paid/types/seat_based_prepaid_credits_input_billing_type.py +5 -0
  170. paid_python-1.10.0/src/paid/types/seat_based_volume_input.py +41 -0
  171. paid_python-1.10.0/src/paid/types/seat_based_volume_input_billing_frequency.py +7 -0
  172. paid_python-1.10.0/src/paid/types/seat_based_volume_input_billing_type.py +5 -0
  173. paid_python-1.10.0/src/paid/types/simple_price_point.py +33 -0
  174. paid_python-1.10.0/src/paid/types/simple_price_point_tiers_item.py +40 -0
  175. paid_python-1.10.0/src/paid/types/simple_price_point_tiers_item_tier_billing_type.py +5 -0
  176. paid_python-1.10.0/src/paid/types/tiered_price_point.py +33 -0
  177. paid_python-1.10.0/src/paid/types/tiered_price_point_tiers_item.py +40 -0
  178. paid_python-1.10.0/src/paid/types/tiered_price_point_tiers_item_tier_billing_type.py +5 -0
  179. paid_python-1.10.0/src/paid/types/token_usage.py +54 -0
  180. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/update_customer_request.py +2 -2
  181. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/update_product_request.py +6 -0
  182. paid_python-1.10.0/src/paid/types/usage_bracketed_prepaid_credits_input.py +72 -0
  183. paid_python-1.10.0/src/paid/types/usage_bracketed_prepaid_credits_input_billing_frequency.py +7 -0
  184. paid_python-1.10.0/src/paid/types/usage_bracketed_prepaid_credits_input_billing_type.py +5 -0
  185. paid_python-1.10.0/src/paid/types/usage_bracketed_prepaid_credits_input_credit_unit_brackets_item.py +26 -0
  186. paid_python-1.10.0/src/paid/types/usage_bracketed_prepaid_credits_input_pricing_input.py +20 -0
  187. paid_python-1.10.0/src/paid/types/usage_bracketed_prepaid_credits_input_pricing_input_kind.py +5 -0
  188. paid_python-1.10.0/src/paid/types/usage_cost.py +51 -0
  189. paid_python-1.10.0/src/paid/types/usage_cost_plus_input.py +46 -0
  190. paid_python-1.10.0/src/paid/types/usage_cost_plus_input_billing_frequency.py +7 -0
  191. paid_python-1.10.0/src/paid/types/usage_cost_plus_input_billing_type.py +5 -0
  192. paid_python-1.10.0/src/paid/types/usage_graduated_input.py +42 -0
  193. paid_python-1.10.0/src/paid/types/usage_graduated_input_billing_frequency.py +7 -0
  194. paid_python-1.10.0/src/paid/types/usage_graduated_input_billing_type.py +5 -0
  195. paid_python-1.10.0/src/paid/types/usage_per_unit_input.py +42 -0
  196. paid_python-1.10.0/src/paid/types/usage_per_unit_input_billing_frequency.py +7 -0
  197. paid_python-1.10.0/src/paid/types/usage_per_unit_input_billing_type.py +5 -0
  198. paid_python-1.10.0/src/paid/types/usage_prepaid_credits_input.py +53 -0
  199. paid_python-1.10.0/src/paid/types/usage_prepaid_credits_input_billing_frequency.py +7 -0
  200. paid_python-1.10.0/src/paid/types/usage_prepaid_credits_input_billing_type.py +5 -0
  201. paid_python-1.10.0/src/paid/types/usage_volume_input.py +42 -0
  202. paid_python-1.10.0/src/paid/types/usage_volume_input_billing_frequency.py +7 -0
  203. paid_python-1.10.0/src/paid/types/usage_volume_input_billing_type.py +5 -0
  204. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/webhook_list_response.py +10 -0
  205. paid_python-1.10.0/src/paid/types/webhook_update_response.py +42 -0
  206. paid_python-1.10.0/src/paid/types/webhook_update_response_name.py +18 -0
  207. paid_python-1.10.0/src/paid/types/writable_order_line_type.py +5 -0
  208. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/webhooks/client.py +72 -7
  209. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/webhooks/raw_client.py +160 -11
  210. paid_python-1.9.0/src/paid/__init__.py +0 -370
  211. paid_python-1.9.0/src/paid/credits/client.py +0 -104
  212. paid_python-1.9.0/src/paid/types/__init__.py +0 -316
  213. {paid_python-1.9.0 → paid_python-1.10.0}/LICENSE +0 -0
  214. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/checkouts/__init__.py +0 -0
  215. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/checkouts/client.py +0 -0
  216. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/checkouts/raw_client.py +0 -0
  217. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/checkouts/types/__init__.py +0 -0
  218. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/checkouts/types/list_checkouts_request_status.py +0 -0
  219. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/contacts/__init__.py +0 -0
  220. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/contacts/client.py +0 -0
  221. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/contacts/raw_client.py +0 -0
  222. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/contacts/types/__init__.py +0 -0
  223. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/contacts/types/create_contact_request_roles_item.py +0 -0
  224. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/__init__.py +0 -0
  225. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/api_error.py +0 -0
  226. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/datetime_utils.py +0 -0
  227. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/file.py +0 -0
  228. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/force_multipart.py +0 -0
  229. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/http_client.py +0 -0
  230. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/http_response.py +0 -0
  231. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/http_sse/__init__.py +0 -0
  232. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/http_sse/_api.py +0 -0
  233. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/http_sse/_decoders.py +0 -0
  234. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/http_sse/_exceptions.py +0 -0
  235. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/http_sse/_models.py +0 -0
  236. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/jsonable_encoder.py +0 -0
  237. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/pydantic_utilities.py +0 -0
  238. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/query_encoder.py +0 -0
  239. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/remove_none_from_dict.py +0 -0
  240. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/request_options.py +0 -0
  241. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/serialization.py +0 -0
  242. {paid_python-1.9.0/src/paid/credits → paid_python-1.10.0/src/paid/costs}/__init__.py +0 -0
  243. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/customer_portals/__init__.py +0 -0
  244. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/customer_portals/client.py +0 -0
  245. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/customer_portals/raw_client.py +0 -0
  246. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/customers/__init__.py +0 -0
  247. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/environment.py +0 -0
  248. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/errors/__init__.py +0 -0
  249. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/errors/bad_request_error.py +0 -0
  250. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/errors/conflict_error.py +0 -0
  251. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/errors/forbidden_error.py +0 -0
  252. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/errors/internal_server_error.py +0 -0
  253. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/errors/not_found_error.py +0 -0
  254. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/invoices/__init__.py +0 -0
  255. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/invoices/client.py +0 -0
  256. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/invoices/raw_client.py +0 -0
  257. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/logger.py +0 -0
  258. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/orders/__init__.py +0 -0
  259. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/orders/types/__init__.py +0 -0
  260. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/orders/types/batch_seat_assignments_request_assignments_item.py +0 -0
  261. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/orders/types/list_order_seats_request_status.py +0 -0
  262. {paid_python-1.9.0/src/paid/products → paid_python-1.10.0/src/paid/pricing}/__init__.py +0 -0
  263. {paid_python-1.9.0/src/paid/signals → paid_python-1.10.0/src/paid/products}/__init__.py +0 -0
  264. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/py.typed +0 -0
  265. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/signals/client.py +0 -0
  266. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/signals/raw_client.py +0 -0
  267. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/__init__.py +0 -0
  268. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/anthropic_patches/__init__.py +0 -0
  269. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/context_data.py +0 -0
  270. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/context_manager.py +0 -0
  271. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/distributed_tracing.py +0 -0
  272. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/gemini_patches/__init__.py +0 -0
  273. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/gemini_patches/patches.py +0 -0
  274. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/openai_agents_patches/__init__.py +0 -0
  275. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/openai_agents_patches/patches.py +0 -0
  276. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/openai_patches/__init__.py +0 -0
  277. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/openai_patches/patches.py +0 -0
  278. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/signal.py +0 -0
  279. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/tracing.py +0 -0
  280. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/__init__.py +0 -0
  281. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/anthropic/__init__.py +0 -0
  282. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/anthropic/anthropicWrapper.py +0 -0
  283. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/bedrock/__init__.py +0 -0
  284. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/bedrock/bedrockWrapper.py +0 -0
  285. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/gemini/__init__.py +0 -0
  286. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/gemini/geminiWrapper.py +0 -0
  287. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/langchain/__init__.py +0 -0
  288. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/langchain/paidLangChainCallback.py +0 -0
  289. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/mistral/__init__.py +0 -0
  290. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/mistral/mistralWrapper.py +0 -0
  291. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/openai/__init__.py +0 -0
  292. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/openai/openAiWrapper.py +0 -0
  293. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/openai_agents/__init__.py +0 -0
  294. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/openai_agents/openaiAgentsHook.py +0 -0
  295. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/utils.py +0 -0
  296. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/attribution.py +0 -0
  297. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/batch_seat_assignments_response.py +0 -0
  298. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/bulk_signals_response.py +0 -0
  299. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/checkout.py +0 -0
  300. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/checkout_details.py +0 -0
  301. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/checkout_list_response.py +0 -0
  302. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/checkout_product.py +0 -0
  303. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/checkout_product_input.py +0 -0
  304. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/checkout_status.py +0 -0
  305. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/contact.py +0 -0
  306. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/contact_billing_address.py +0 -0
  307. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/contact_list_response.py +0 -0
  308. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/contact_roles_item.py +0 -0
  309. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request.py +0 -0
  310. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_billing_frequency.py +0 -0
  311. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_billing_type.py +0 -0
  312. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_charge_type.py +0 -0
  313. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_credit_benefits_item.py +0 -0
  314. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_credit_benefits_item_allocation_cadence.py +0 -0
  315. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_credit_benefits_item_credit_grant_timing.py +0 -0
  316. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_credit_benefits_item_recipient.py +0 -0
  317. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_credit_benefits_item_rollover_duration_unit.py +0 -0
  318. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_price_points.py +0 -0
  319. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_price_points_tiers_item.py +0 -0
  320. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_price_points_tiers_item_tier_billing_type.py +0 -0
  321. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_signal_type.py +0 -0
  322. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/credit_balance_list_response.py +0 -0
  323. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/credit_balance_recipient.py +0 -0
  324. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/credit_currency_list_response.py +0 -0
  325. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_attribution.py +0 -0
  326. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_by_external_id.py +0 -0
  327. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_by_id.py +0 -0
  328. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_creation_state.py +0 -0
  329. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_list_response.py +0 -0
  330. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_portal.py +0 -0
  331. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_portal_status.py +0 -0
  332. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_user.py +0 -0
  333. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_user_status.py +0 -0
  334. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/empty_response.py +0 -0
  335. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/error_response.py +0 -0
  336. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice.py +0 -0
  337. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_line.py +0 -0
  338. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_line_payment_status.py +0 -0
  339. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_lines_response.py +0 -0
  340. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_list_response.py +0 -0
  341. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_payment_status.py +0 -0
  342. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_source.py +0 -0
  343. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_status.py +0 -0
  344. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_tax_status.py +0 -0
  345. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/order_creation_state.py +0 -0
  346. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/order_lines_response.py +0 -0
  347. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/order_list_response.py +0 -0
  348. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/order_seat.py +0 -0
  349. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/order_seat_list_response.py +0 -0
  350. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/pagination.py +0 -0
  351. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/product.py +0 -0
  352. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/product_by_external_id.py +0 -0
  353. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/product_by_id.py +0 -0
  354. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/product_list_response.py +0 -0
  355. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/seat_assignee.py +0 -0
  356. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/seat_assignment_status.py +0 -0
  357. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/signal.py +0 -0
  358. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/success_response.py +0 -0
  359. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/update_contact_request.py +0 -0
  360. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/update_contact_request_roles_item.py +0 -0
  361. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/value_receipt_detail.py +0 -0
  362. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/value_receipt_list_response.py +0 -0
  363. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/value_receipt_summary.py +0 -0
  364. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/value_receipt_sync_response.py +0 -0
  365. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/webhook.py +0 -0
  366. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/webhook_delivery_status.py +0 -0
  367. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/webhook_name.py +0 -0
  368. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/webhook_test_response.py +0 -0
  369. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/value_receipts/__init__.py +0 -0
  370. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/value_receipts/client.py +0 -0
  371. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/value_receipts/raw_client.py +0 -0
  372. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/value_receipts/types/__init__.py +0 -0
  373. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/value_receipts/types/list_value_receipts_request_archived.py +0 -0
  374. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/value_receipts/types/sync_value_receipt_request_product.py +0 -0
  375. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/version.py +0 -0
  376. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/webhooks/__init__.py +0 -0
  377. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/webhooks/types/__init__.py +0 -0
  378. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/webhooks/types/test_webhook_request_webhook_name.py +0 -0
  379. {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/webhooks/types/update_webhook_request_webhook_name.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: paid-python
3
- Version: 1.9.0
3
+ Version: 1.10.0
4
4
  Summary:
5
5
  Requires-Python: >=3.10,<3.14
6
6
  Classifier: Intended Audience :: Developers
@@ -29,10 +29,12 @@ Requires-Dist: openinference-instrumentation-openai (>=0.1.40)
29
29
  Requires-Dist: openinference-instrumentation-openai-agents (>=1.0.0)
30
30
  Requires-Dist: opentelemetry-api (>=1.23.0)
31
31
  Requires-Dist: opentelemetry-exporter-otlp-proto-http (>=1.23.0)
32
+ Requires-Dist: opentelemetry-instrumentation-cohere (>=0.51.0)
32
33
  Requires-Dist: opentelemetry-sdk (>=1.23.0)
33
34
  Requires-Dist: pydantic (>=1.9.2)
34
35
  Requires-Dist: pydantic-core (>=2.18.2)
35
36
  Requires-Dist: typing_extensions (>=4.0.0)
37
+ Requires-Dist: wrapt (<2)
36
38
  Project-URL: Repository, https://github.com/paid-ai/paid-python
37
39
  Description-Content-Type: text/markdown
38
40
 
@@ -386,6 +388,7 @@ claude-agent-sdk - Claude Agent SDK
386
388
  bedrock - AWS Bedrock (boto3)
387
389
  langchain - LangChain framework
388
390
  instructor - Instructor
391
+ cohere - Cohere SDK
389
392
  ```
390
393
 
391
394
  #### Selective Instrumentation
@@ -348,6 +348,7 @@ claude-agent-sdk - Claude Agent SDK
348
348
  bedrock - AWS Bedrock (boto3)
349
349
  langchain - LangChain framework
350
350
  instructor - Instructor
351
+ cohere - Cohere SDK
351
352
  ```
352
353
 
353
354
  #### Selective Instrumentation
@@ -4,7 +4,7 @@ dynamic = ["version"]
4
4
 
5
5
  [tool.poetry]
6
6
  name = "paid-python"
7
- version = "1.9.0"
7
+ version = "1.10.0"
8
8
  description = ""
9
9
  readme = "README.md"
10
10
  authors = []
@@ -45,12 +45,14 @@ openinference-instrumentation-instructor = ">=0.1.0"
45
45
  openinference-instrumentation-langchain = ">=0.1.55"
46
46
  openinference-instrumentation-openai = ">=0.1.40"
47
47
  openinference-instrumentation-openai-agents = ">=1.0.0"
48
+ opentelemetry-instrumentation-cohere = ">=0.51.0"
48
49
  opentelemetry-api = ">=1.23.0"
49
50
  opentelemetry-exporter-otlp-proto-http = ">=1.23.0"
50
51
  opentelemetry-sdk = ">=1.23.0"
51
52
  pydantic = ">= 1.9.2"
52
53
  pydantic-core = ">=2.18.2"
53
54
  typing_extensions = ">= 4.0.0"
55
+ wrapt = "<2"
54
56
 
55
57
  [tool.poetry.group.dev.dependencies]
56
58
  mypy = "==1.13.0"
@@ -61,6 +63,7 @@ python-dateutil = "^2.9.0"
61
63
  types-python-dateutil = "^2.9.0.20240316"
62
64
  anthropic = ">=0.57.0"
63
65
  claude-agent-sdk = ">=0.1.0,<0.1.49"
66
+ cohere = ">=5.0.0"
64
67
  google-genai = ">=1.19.0"
65
68
  instructor = ">=1.0.0"
66
69
  langchain-core = ">=0.1.0"