paid-python 1.9.0__tar.gz → 1.11.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 (543) hide show
  1. {paid_python-1.9.0 → paid_python-1.11.0}/PKG-INFO +4 -1
  2. {paid_python-1.9.0 → paid_python-1.11.0}/README.md +1 -0
  3. {paid_python-1.9.0 → paid_python-1.11.0}/pyproject.toml +5 -2
  4. paid_python-1.11.0/src/paid/__init__.py +1448 -0
  5. paid_python-1.11.0/src/paid/analytics_experimental/client.py +300 -0
  6. paid_python-1.11.0/src/paid/analytics_experimental/raw_client.py +504 -0
  7. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/checkouts/client.py +13 -2
  8. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/checkouts/raw_client.py +17 -2
  9. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/client.py +133 -0
  10. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/client_wrapper.py +2 -2
  11. paid_python-1.11.0/src/paid/costs/client.py +132 -0
  12. {paid_python-1.9.0/src/paid/credits → paid_python-1.11.0/src/paid/costs}/raw_client.py +71 -21
  13. paid_python-1.11.0/src/paid/credits/__init__.py +37 -0
  14. paid_python-1.11.0/src/paid/credits/client.py +330 -0
  15. paid_python-1.11.0/src/paid/credits/raw_client.py +555 -0
  16. paid_python-1.11.0/src/paid/credits/types/__init__.py +38 -0
  17. paid_python-1.11.0/src/paid/credits/types/list_credit_currencies_request_status.py +5 -0
  18. paid_python-1.11.0/src/paid/credits/types/update_credit_currency_request_status.py +5 -0
  19. paid_python-1.11.0/src/paid/custom_views_experimental/__init__.py +61 -0
  20. paid_python-1.11.0/src/paid/custom_views_experimental/client.py +898 -0
  21. {paid_python-1.9.0/src/paid/customers → paid_python-1.11.0/src/paid/custom_views_experimental}/raw_client.py +459 -980
  22. paid_python-1.11.0/src/paid/custom_views_experimental/types/__init__.py +59 -0
  23. paid_python-1.11.0/src/paid/custom_views_experimental/types/create_custom_view_request_period.py +48 -0
  24. paid_python-1.11.0/src/paid/custom_views_experimental/types/create_custom_view_request_period_kind.py +5 -0
  25. paid_python-1.11.0/src/paid/custom_views_experimental/types/create_custom_view_request_period_unit.py +5 -0
  26. paid_python-1.11.0/src/paid/custom_views_experimental/types/get_custom_view_data_request_period_kind.py +5 -0
  27. paid_python-1.11.0/src/paid/custom_views_experimental/types/get_custom_view_data_request_period_unit.py +5 -0
  28. paid_python-1.11.0/src/paid/custom_views_experimental/types/update_custom_view_period_request_period.py +48 -0
  29. paid_python-1.11.0/src/paid/custom_views_experimental/types/update_custom_view_period_request_period_kind.py +5 -0
  30. paid_python-1.11.0/src/paid/custom_views_experimental/types/update_custom_view_period_request_period_unit.py +5 -0
  31. paid_python-1.11.0/src/paid/customer_groups/client.py +708 -0
  32. paid_python-1.11.0/src/paid/customer_groups/raw_client.py +1235 -0
  33. paid_python-1.11.0/src/paid/customers/client.py +2237 -0
  34. paid_python-1.11.0/src/paid/customers/raw_client.py +4024 -0
  35. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/errors/__init__.py +13 -1
  36. paid_python-1.11.0/src/paid/errors/request_timeout_error.py +11 -0
  37. paid_python-1.11.0/src/paid/errors/too_many_requests_error.py +11 -0
  38. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/orders/client.py +97 -0
  39. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/orders/raw_client.py +197 -0
  40. paid_python-1.11.0/src/paid/plans/__init__.py +4 -0
  41. paid_python-1.11.0/src/paid/plans/client.py +836 -0
  42. paid_python-1.11.0/src/paid/plans/raw_client.py +1430 -0
  43. paid_python-1.11.0/src/paid/pricing/__init__.py +4 -0
  44. paid_python-1.11.0/src/paid/pricing/client.py +304 -0
  45. paid_python-1.11.0/src/paid/pricing/raw_client.py +465 -0
  46. paid_python-1.11.0/src/paid/products/__init__.py +4 -0
  47. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/products/client.py +44 -24
  48. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/products/raw_client.py +67 -40
  49. paid_python-1.11.0/src/paid/signals/__init__.py +4 -0
  50. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/anthropic_patches/patches.py +18 -18
  51. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/autoinstrumentation.py +31 -1
  52. paid_python-1.11.0/src/paid/types/__init__.py +1402 -0
  53. paid_python-1.11.0/src/paid/types/add_members_response.py +25 -0
  54. paid_python-1.11.0/src/paid/types/analytics_column.py +23 -0
  55. paid_python-1.11.0/src/paid/types/analytics_query_response.py +27 -0
  56. paid_python-1.11.0/src/paid/types/analytics_query_response_meta.py +26 -0
  57. paid_python-1.11.0/src/paid/types/analytics_schema_column.py +25 -0
  58. paid_python-1.11.0/src/paid/types/analytics_schema_response.py +20 -0
  59. paid_python-1.11.0/src/paid/types/analytics_schema_view.py +22 -0
  60. paid_python-1.11.0/src/paid/types/backfill_response.py +24 -0
  61. paid_python-1.9.0/src/paid/types/checkout_details.py → paid_python-1.11.0/src/paid/types/checkout.py +9 -9
  62. paid_python-1.11.0/src/paid/types/checkout_custom_card.py +40 -0
  63. paid_python-1.11.0/src/paid/types/checkout_custom_card_input.py +40 -0
  64. paid_python-1.9.0/src/paid/types/checkout.py → paid_python-1.11.0/src/paid/types/checkout_details.py +23 -1
  65. paid_python-1.9.0/src/paid/types/checkout_product.py → paid_python-1.11.0/src/paid/types/checkout_plan.py +2 -1
  66. paid_python-1.11.0/src/paid/types/checkout_plan_input.py +27 -0
  67. paid_python-1.11.0/src/paid/types/checkout_product.py +24 -0
  68. paid_python-1.11.0/src/paid/types/checkout_product_input.py +24 -0
  69. paid_python-1.11.0/src/paid/types/checkout_selected_product.py +25 -0
  70. paid_python-1.11.0/src/paid/types/cost.py +62 -0
  71. paid_python-1.11.0/src/paid/types/cost_ingest_response.py +27 -0
  72. paid_python-1.11.0/src/paid/types/cost_override.py +27 -0
  73. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request_pricing.py +27 -3
  74. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request_pricing_credit_benefits_item_credit_grant_timing.py +1 -1
  75. paid_python-1.11.0/src/paid/types/create_order_line_attribute_request_pricing_credit_unit_brackets_item.py +26 -0
  76. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request_pricing_price_points.py +4 -0
  77. paid_python-1.11.0/src/paid/types/create_order_line_attribute_request_pricing_pricing_input.py +22 -0
  78. paid_python-1.11.0/src/paid/types/create_order_line_attribute_request_pricing_pricing_input_kind.py +5 -0
  79. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request_pricing_pricing_model.py +2 -1
  80. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_request.py +8 -0
  81. paid_python-1.11.0/src/paid/types/credit_balance.py +65 -0
  82. paid_python-1.11.0/src/paid/types/credit_benefit_input.py +53 -0
  83. paid_python-1.11.0/src/paid/types/credit_benefit_input_allocation_cadence.py +5 -0
  84. paid_python-1.11.0/src/paid/types/credit_benefit_input_credit_grant_timing.py +7 -0
  85. paid_python-1.11.0/src/paid/types/credit_benefit_input_recipient.py +5 -0
  86. paid_python-1.11.0/src/paid/types/credit_benefit_output.py +47 -0
  87. paid_python-1.11.0/src/paid/types/credit_currency.py +64 -0
  88. paid_python-1.11.0/src/paid/types/credit_currency_status.py +5 -0
  89. paid_python-1.9.0/src/paid/types/credit_balance.py → paid_python-1.11.0/src/paid/types/credit_grant.py +12 -14
  90. paid_python-1.11.0/src/paid/types/credit_grant_create_request.py +50 -0
  91. paid_python-1.11.0/src/paid/types/credit_grant_currency.py +27 -0
  92. paid_python-1.11.0/src/paid/types/credit_grant_customer.py +30 -0
  93. paid_python-1.11.0/src/paid/types/credit_grant_result.py +42 -0
  94. paid_python-1.11.0/src/paid/types/credit_grant_result_status.py +5 -0
  95. paid_python-1.11.0/src/paid/types/currency_code.py +3 -0
  96. paid_python-1.11.0/src/paid/types/custom_view.py +40 -0
  97. paid_python-1.11.0/src/paid/types/custom_view_authoring_detail.py +52 -0
  98. paid_python-1.11.0/src/paid/types/custom_view_authoring_detail_period.py +48 -0
  99. paid_python-1.11.0/src/paid/types/custom_view_authoring_detail_period_kind.py +5 -0
  100. paid_python-1.11.0/src/paid/types/custom_view_authoring_detail_period_unit.py +5 -0
  101. paid_python-1.11.0/src/paid/types/custom_view_authoring_detail_status.py +5 -0
  102. paid_python-1.11.0/src/paid/types/custom_view_authoring_guide.py +33 -0
  103. paid_python-1.11.0/src/paid/types/custom_view_detail.py +43 -0
  104. paid_python-1.11.0/src/paid/types/custom_view_detail_period.py +48 -0
  105. paid_python-1.11.0/src/paid/types/custom_view_detail_period_kind.py +5 -0
  106. paid_python-1.11.0/src/paid/types/custom_view_detail_period_unit.py +5 -0
  107. paid_python-1.11.0/src/paid/types/custom_view_detail_status.py +5 -0
  108. paid_python-1.11.0/src/paid/types/custom_view_embed_token_response.py +31 -0
  109. paid_python-1.11.0/src/paid/types/custom_view_list_response.py +20 -0
  110. paid_python-1.11.0/src/paid/types/custom_view_preview_harness.py +22 -0
  111. paid_python-1.11.0/src/paid/types/custom_view_preview_harness_request.py +32 -0
  112. paid_python-1.11.0/src/paid/types/custom_view_query.py +27 -0
  113. paid_python-1.11.0/src/paid/types/custom_view_status.py +5 -0
  114. paid_python-1.11.0/src/paid/types/custom_view_summary.py +41 -0
  115. paid_python-1.11.0/src/paid/types/custom_view_summary_period.py +48 -0
  116. paid_python-1.11.0/src/paid/types/custom_view_summary_period_kind.py +5 -0
  117. paid_python-1.11.0/src/paid/types/custom_view_summary_period_unit.py +5 -0
  118. paid_python-1.11.0/src/paid/types/custom_view_summary_status.py +5 -0
  119. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/customer.py +11 -4
  120. paid_python-1.11.0/src/paid/types/customer_alias.py +39 -0
  121. paid_python-1.11.0/src/paid/types/customer_alias_create_request.py +32 -0
  122. paid_python-1.11.0/src/paid/types/customer_alias_list_response.py +22 -0
  123. paid_python-1.9.0/src/paid/types/customer_billing_address.py → paid_python-1.11.0/src/paid/types/customer_billing_address_input.py +1 -1
  124. paid_python-1.11.0/src/paid/types/customer_billing_address_response.py +32 -0
  125. paid_python-1.11.0/src/paid/types/customer_connections.py +24 -0
  126. paid_python-1.11.0/src/paid/types/customer_group_delete_response.py +26 -0
  127. paid_python-1.11.0/src/paid/types/customer_group_detail.py +35 -0
  128. paid_python-1.11.0/src/paid/types/customer_group_list_response.py +22 -0
  129. paid_python-1.11.0/src/paid/types/customer_group_member.py +25 -0
  130. paid_python-1.9.0/src/paid/types/credit_currency.py → paid_python-1.11.0/src/paid/types/customer_group_summary.py +4 -5
  131. paid_python-1.11.0/src/paid/types/customer_state.py +40 -0
  132. paid_python-1.11.0/src/paid/types/customer_state_checkout_link.py +35 -0
  133. paid_python-1.11.0/src/paid/types/customer_state_checkout_link_status.py +5 -0
  134. paid_python-1.11.0/src/paid/types/customer_state_credit_balance.py +30 -0
  135. paid_python-1.11.0/src/paid/types/customer_state_credit_summary.py +20 -0
  136. paid_python-1.11.0/src/paid/types/customer_state_customer.py +35 -0
  137. paid_python-1.11.0/src/paid/types/customer_state_order.py +43 -0
  138. paid_python-1.11.0/src/paid/types/customer_state_order_state.py +5 -0
  139. paid_python-1.11.0/src/paid/types/customer_state_product_ref.py +25 -0
  140. paid_python-1.11.0/src/paid/types/customer_state_seat.py +34 -0
  141. paid_python-1.11.0/src/paid/types/customer_state_seat_assignee.py +24 -0
  142. paid_python-1.11.0/src/paid/types/customer_state_seat_status.py +5 -0
  143. paid_python-1.11.0/src/paid/types/customer_state_seats.py +23 -0
  144. paid_python-1.11.0/src/paid/types/grant_customer_credits_response.py +37 -0
  145. paid_python-1.11.0/src/paid/types/member_request.py +25 -0
  146. paid_python-1.11.0/src/paid/types/one_time_per_unit_input.py +34 -0
  147. paid_python-1.11.0/src/paid/types/one_time_per_unit_input_billing_type.py +5 -0
  148. paid_python-1.11.0/src/paid/types/one_time_per_unit_input_fee_type.py +7 -0
  149. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/order.py +14 -0
  150. paid_python-1.11.0/src/paid/types/order_billing_frequency_override.py +25 -0
  151. paid_python-1.11.0/src/paid/types/order_billing_frequency_override_frequency.py +7 -0
  152. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/order_line.py +4 -0
  153. paid_python-1.11.0/src/paid/types/order_line_type.py +5 -0
  154. paid_python-1.11.0/src/paid/types/plan.py +47 -0
  155. paid_python-1.11.0/src/paid/types/plan_attribute.py +31 -0
  156. paid_python-1.11.0/src/paid/types/plan_attribute_input.py +33 -0
  157. paid_python-1.11.0/src/paid/types/plan_credit_benefit.py +54 -0
  158. paid_python-1.11.0/src/paid/types/plan_credit_benefit_allocation_cadence.py +5 -0
  159. paid_python-1.11.0/src/paid/types/plan_credit_benefit_credit_grant_timing.py +7 -0
  160. paid_python-1.11.0/src/paid/types/plan_credit_benefit_recipient.py +5 -0
  161. paid_python-1.11.0/src/paid/types/plan_credit_benefit_rollover_duration_unit.py +5 -0
  162. paid_python-1.11.0/src/paid/types/plan_list_response.py +22 -0
  163. paid_python-1.11.0/src/paid/types/plan_pricing.py +37 -0
  164. paid_python-1.11.0/src/paid/types/plan_pricing_pricing_type.py +24 -0
  165. paid_python-1.11.0/src/paid/types/plan_ref.py +25 -0
  166. paid_python-1.11.0/src/paid/types/plan_status.py +5 -0
  167. paid_python-1.11.0/src/paid/types/plan_upgrade_path_group.py +24 -0
  168. paid_python-1.9.0/src/paid/types/checkout_product_input.py → paid_python-1.11.0/src/paid/types/plan_upgrade_path_response.py +3 -2
  169. paid_python-1.11.0/src/paid/types/precomputed_cost.py +52 -0
  170. paid_python-1.11.0/src/paid/types/pricing_input.py +661 -0
  171. paid_python-1.11.0/src/paid/types/pricing_list_response.py +20 -0
  172. paid_python-1.11.0/src/paid/types/pricing_output.py +60 -0
  173. paid_python-1.11.0/src/paid/types/pricing_output_pricing_type.py +24 -0
  174. paid_python-1.11.0/src/paid/types/pricing_output_signal_type.py +5 -0
  175. paid_python-1.11.0/src/paid/types/pricing_price_point_output.py +33 -0
  176. paid_python-1.11.0/src/paid/types/pricing_price_point_output_tiers_item.py +40 -0
  177. paid_python-1.11.0/src/paid/types/pricing_price_point_output_tiers_item_tier_billing_type.py +5 -0
  178. paid_python-1.11.0/src/paid/types/pricing_response.py +30 -0
  179. paid_python-1.11.0/src/paid/types/product_attribute_output.py +33 -0
  180. paid_python-1.11.0/src/paid/types/product_attribute_upsert.py +33 -0
  181. paid_python-1.11.0/src/paid/types/product_attribution.py +8 -0
  182. paid_python-1.11.0/src/paid/types/product_credit_benefit_input.py +53 -0
  183. paid_python-1.11.0/src/paid/types/product_credit_benefit_input_allocation_cadence.py +5 -0
  184. paid_python-1.11.0/src/paid/types/product_credit_benefit_input_credit_grant_timing.py +7 -0
  185. paid_python-1.11.0/src/paid/types/product_credit_benefit_input_recipient.py +5 -0
  186. paid_python-1.11.0/src/paid/types/product_credit_benefit_output.py +47 -0
  187. paid_python-1.11.0/src/paid/types/product_detail.py +47 -0
  188. paid_python-1.11.0/src/paid/types/product_one_time_per_unit_input.py +36 -0
  189. paid_python-1.11.0/src/paid/types/product_one_time_per_unit_input_billing_type.py +5 -0
  190. paid_python-1.11.0/src/paid/types/product_one_time_per_unit_input_fee_type.py +7 -0
  191. paid_python-1.11.0/src/paid/types/product_price_point_output.py +33 -0
  192. paid_python-1.11.0/src/paid/types/product_price_point_output_tiers_item.py +40 -0
  193. paid_python-1.11.0/src/paid/types/product_price_point_output_tiers_item_tier_billing_type.py +5 -0
  194. paid_python-1.11.0/src/paid/types/product_pricing_input.py +675 -0
  195. paid_python-1.11.0/src/paid/types/product_pricing_output.py +62 -0
  196. paid_python-1.11.0/src/paid/types/product_pricing_output_pricing_type.py +24 -0
  197. paid_python-1.11.0/src/paid/types/product_pricing_output_signal_type.py +5 -0
  198. paid_python-1.11.0/src/paid/types/product_recurring_graduated_input.py +41 -0
  199. paid_python-1.11.0/src/paid/types/product_recurring_graduated_input_billing_frequency.py +7 -0
  200. paid_python-1.11.0/src/paid/types/product_recurring_graduated_input_billing_type.py +5 -0
  201. paid_python-1.11.0/src/paid/types/product_recurring_per_unit_input.py +41 -0
  202. paid_python-1.11.0/src/paid/types/product_recurring_per_unit_input_billing_frequency.py +7 -0
  203. paid_python-1.11.0/src/paid/types/product_recurring_per_unit_input_billing_type.py +5 -0
  204. paid_python-1.11.0/src/paid/types/product_recurring_percent_of_total_input.py +48 -0
  205. paid_python-1.11.0/src/paid/types/product_recurring_percent_of_total_input_billing_frequency.py +7 -0
  206. paid_python-1.11.0/src/paid/types/product_recurring_percent_of_total_input_billing_type.py +5 -0
  207. paid_python-1.11.0/src/paid/types/product_recurring_volume_input.py +41 -0
  208. paid_python-1.11.0/src/paid/types/product_recurring_volume_input_billing_frequency.py +7 -0
  209. paid_python-1.11.0/src/paid/types/product_recurring_volume_input_billing_type.py +5 -0
  210. paid_python-1.11.0/src/paid/types/product_seat_based_graduated_input.py +41 -0
  211. paid_python-1.11.0/src/paid/types/product_seat_based_graduated_input_billing_frequency.py +7 -0
  212. paid_python-1.11.0/src/paid/types/product_seat_based_graduated_input_billing_type.py +5 -0
  213. paid_python-1.11.0/src/paid/types/product_seat_based_per_unit_input.py +41 -0
  214. paid_python-1.11.0/src/paid/types/product_seat_based_per_unit_input_billing_frequency.py +7 -0
  215. paid_python-1.11.0/src/paid/types/product_seat_based_per_unit_input_billing_type.py +5 -0
  216. paid_python-1.11.0/src/paid/types/product_seat_based_prepaid_credits_input.py +54 -0
  217. paid_python-1.11.0/src/paid/types/product_seat_based_prepaid_credits_input_billing_frequency.py +7 -0
  218. paid_python-1.11.0/src/paid/types/product_seat_based_prepaid_credits_input_billing_type.py +5 -0
  219. paid_python-1.11.0/src/paid/types/product_seat_based_volume_input.py +41 -0
  220. paid_python-1.11.0/src/paid/types/product_seat_based_volume_input_billing_frequency.py +7 -0
  221. paid_python-1.11.0/src/paid/types/product_seat_based_volume_input_billing_type.py +5 -0
  222. paid_python-1.11.0/src/paid/types/product_simple_price_point.py +33 -0
  223. paid_python-1.11.0/src/paid/types/product_simple_price_point_tiers_item.py +40 -0
  224. paid_python-1.11.0/src/paid/types/product_simple_price_point_tiers_item_tier_billing_type.py +5 -0
  225. paid_python-1.11.0/src/paid/types/product_tiered_price_point.py +33 -0
  226. paid_python-1.11.0/src/paid/types/product_tiered_price_point_tiers_item.py +40 -0
  227. paid_python-1.11.0/src/paid/types/product_tiered_price_point_tiers_item_tier_billing_type.py +5 -0
  228. paid_python-1.11.0/src/paid/types/product_usage_bracketed_prepaid_credits_input.py +86 -0
  229. paid_python-1.11.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_billing_frequency.py +7 -0
  230. paid_python-1.11.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_billing_type.py +5 -0
  231. paid_python-1.11.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_credit_unit_brackets_item.py +26 -0
  232. paid_python-1.11.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_pricing_input.py +22 -0
  233. paid_python-1.11.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_pricing_input_kind.py +5 -0
  234. paid_python-1.11.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_signal_type.py +5 -0
  235. paid_python-1.11.0/src/paid/types/product_usage_cost_plus_input.py +52 -0
  236. paid_python-1.11.0/src/paid/types/product_usage_cost_plus_input_billing_frequency.py +7 -0
  237. paid_python-1.11.0/src/paid/types/product_usage_cost_plus_input_billing_type.py +5 -0
  238. paid_python-1.11.0/src/paid/types/product_usage_cost_plus_input_signal_type.py +5 -0
  239. paid_python-1.11.0/src/paid/types/product_usage_graduated_input.py +48 -0
  240. paid_python-1.11.0/src/paid/types/product_usage_graduated_input_billing_frequency.py +7 -0
  241. paid_python-1.11.0/src/paid/types/product_usage_graduated_input_billing_type.py +5 -0
  242. paid_python-1.11.0/src/paid/types/product_usage_graduated_input_signal_type.py +5 -0
  243. paid_python-1.11.0/src/paid/types/product_usage_per_unit_input.py +48 -0
  244. paid_python-1.11.0/src/paid/types/product_usage_per_unit_input_billing_frequency.py +7 -0
  245. paid_python-1.11.0/src/paid/types/product_usage_per_unit_input_billing_type.py +5 -0
  246. paid_python-1.11.0/src/paid/types/product_usage_per_unit_input_signal_type.py +5 -0
  247. paid_python-1.11.0/src/paid/types/product_usage_prepaid_credits_input.py +59 -0
  248. paid_python-1.11.0/src/paid/types/product_usage_prepaid_credits_input_billing_frequency.py +7 -0
  249. paid_python-1.11.0/src/paid/types/product_usage_prepaid_credits_input_billing_type.py +5 -0
  250. paid_python-1.11.0/src/paid/types/product_usage_prepaid_credits_input_signal_type.py +5 -0
  251. paid_python-1.11.0/src/paid/types/product_usage_volume_input.py +48 -0
  252. paid_python-1.11.0/src/paid/types/product_usage_volume_input_billing_frequency.py +7 -0
  253. paid_python-1.11.0/src/paid/types/product_usage_volume_input_billing_type.py +5 -0
  254. paid_python-1.11.0/src/paid/types/product_usage_volume_input_signal_type.py +5 -0
  255. paid_python-1.11.0/src/paid/types/recurring_graduated_input.py +41 -0
  256. paid_python-1.11.0/src/paid/types/recurring_graduated_input_billing_frequency.py +7 -0
  257. paid_python-1.11.0/src/paid/types/recurring_graduated_input_billing_type.py +5 -0
  258. paid_python-1.11.0/src/paid/types/recurring_per_unit_input.py +41 -0
  259. paid_python-1.11.0/src/paid/types/recurring_per_unit_input_billing_frequency.py +7 -0
  260. paid_python-1.11.0/src/paid/types/recurring_per_unit_input_billing_type.py +5 -0
  261. paid_python-1.11.0/src/paid/types/recurring_percent_of_total_input.py +46 -0
  262. paid_python-1.11.0/src/paid/types/recurring_percent_of_total_input_billing_frequency.py +7 -0
  263. paid_python-1.11.0/src/paid/types/recurring_percent_of_total_input_billing_type.py +5 -0
  264. paid_python-1.11.0/src/paid/types/recurring_volume_input.py +41 -0
  265. paid_python-1.11.0/src/paid/types/recurring_volume_input_billing_frequency.py +7 -0
  266. paid_python-1.11.0/src/paid/types/recurring_volume_input_billing_type.py +5 -0
  267. paid_python-1.11.0/src/paid/types/remove_members_response.py +25 -0
  268. paid_python-1.11.0/src/paid/types/rotate_webhook_secret_response.py +28 -0
  269. paid_python-1.11.0/src/paid/types/seat_based_graduated_input.py +41 -0
  270. paid_python-1.11.0/src/paid/types/seat_based_graduated_input_billing_frequency.py +7 -0
  271. paid_python-1.11.0/src/paid/types/seat_based_graduated_input_billing_type.py +5 -0
  272. paid_python-1.11.0/src/paid/types/seat_based_per_unit_input.py +41 -0
  273. paid_python-1.11.0/src/paid/types/seat_based_per_unit_input_billing_frequency.py +7 -0
  274. paid_python-1.11.0/src/paid/types/seat_based_per_unit_input_billing_type.py +5 -0
  275. paid_python-1.11.0/src/paid/types/seat_based_prepaid_credits_input.py +52 -0
  276. paid_python-1.11.0/src/paid/types/seat_based_prepaid_credits_input_billing_frequency.py +7 -0
  277. paid_python-1.11.0/src/paid/types/seat_based_prepaid_credits_input_billing_type.py +5 -0
  278. paid_python-1.11.0/src/paid/types/seat_based_volume_input.py +41 -0
  279. paid_python-1.11.0/src/paid/types/seat_based_volume_input_billing_frequency.py +7 -0
  280. paid_python-1.11.0/src/paid/types/seat_based_volume_input_billing_type.py +5 -0
  281. paid_python-1.11.0/src/paid/types/set_members_response.py +26 -0
  282. paid_python-1.11.0/src/paid/types/signals_metadata_response.py +22 -0
  283. paid_python-1.11.0/src/paid/types/signals_metadata_response_meta.py +22 -0
  284. paid_python-1.11.0/src/paid/types/signals_metadata_response_signals_item.py +23 -0
  285. paid_python-1.11.0/src/paid/types/signals_metadata_response_signals_item_paths_item.py +27 -0
  286. paid_python-1.11.0/src/paid/types/simple_price_point.py +33 -0
  287. paid_python-1.11.0/src/paid/types/simple_price_point_tiers_item.py +40 -0
  288. paid_python-1.11.0/src/paid/types/simple_price_point_tiers_item_tier_billing_type.py +5 -0
  289. paid_python-1.11.0/src/paid/types/stripe_connection.py +27 -0
  290. paid_python-1.11.0/src/paid/types/tiered_price_point.py +33 -0
  291. paid_python-1.11.0/src/paid/types/tiered_price_point_tiers_item.py +40 -0
  292. paid_python-1.11.0/src/paid/types/tiered_price_point_tiers_item_tier_billing_type.py +5 -0
  293. paid_python-1.11.0/src/paid/types/token_usage.py +54 -0
  294. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/update_customer_request.py +2 -2
  295. paid_python-1.11.0/src/paid/types/update_plan_request.py +40 -0
  296. paid_python-1.11.0/src/paid/types/update_plan_request_status.py +5 -0
  297. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/update_product_request.py +6 -0
  298. paid_python-1.11.0/src/paid/types/usage_bracketed_prepaid_credits_input.py +78 -0
  299. paid_python-1.11.0/src/paid/types/usage_bracketed_prepaid_credits_input_billing_frequency.py +7 -0
  300. paid_python-1.11.0/src/paid/types/usage_bracketed_prepaid_credits_input_billing_type.py +5 -0
  301. paid_python-1.11.0/src/paid/types/usage_bracketed_prepaid_credits_input_credit_unit_brackets_item.py +26 -0
  302. paid_python-1.11.0/src/paid/types/usage_bracketed_prepaid_credits_input_pricing_input.py +20 -0
  303. paid_python-1.11.0/src/paid/types/usage_bracketed_prepaid_credits_input_pricing_input_kind.py +5 -0
  304. paid_python-1.11.0/src/paid/types/usage_bracketed_prepaid_credits_input_signal_type.py +5 -0
  305. paid_python-1.11.0/src/paid/types/usage_cost.py +51 -0
  306. paid_python-1.11.0/src/paid/types/usage_cost_plus_input.py +52 -0
  307. paid_python-1.11.0/src/paid/types/usage_cost_plus_input_billing_frequency.py +7 -0
  308. paid_python-1.11.0/src/paid/types/usage_cost_plus_input_billing_type.py +5 -0
  309. paid_python-1.11.0/src/paid/types/usage_cost_plus_input_signal_type.py +5 -0
  310. paid_python-1.11.0/src/paid/types/usage_graduated_input.py +48 -0
  311. paid_python-1.11.0/src/paid/types/usage_graduated_input_billing_frequency.py +7 -0
  312. paid_python-1.11.0/src/paid/types/usage_graduated_input_billing_type.py +5 -0
  313. paid_python-1.11.0/src/paid/types/usage_graduated_input_signal_type.py +5 -0
  314. paid_python-1.11.0/src/paid/types/usage_per_unit_input.py +48 -0
  315. paid_python-1.11.0/src/paid/types/usage_per_unit_input_billing_frequency.py +7 -0
  316. paid_python-1.11.0/src/paid/types/usage_per_unit_input_billing_type.py +5 -0
  317. paid_python-1.11.0/src/paid/types/usage_per_unit_input_signal_type.py +5 -0
  318. paid_python-1.11.0/src/paid/types/usage_prepaid_credits_input.py +59 -0
  319. paid_python-1.11.0/src/paid/types/usage_prepaid_credits_input_billing_frequency.py +7 -0
  320. paid_python-1.11.0/src/paid/types/usage_prepaid_credits_input_billing_type.py +5 -0
  321. paid_python-1.11.0/src/paid/types/usage_prepaid_credits_input_signal_type.py +5 -0
  322. paid_python-1.11.0/src/paid/types/usage_volume_input.py +48 -0
  323. paid_python-1.11.0/src/paid/types/usage_volume_input_billing_frequency.py +7 -0
  324. paid_python-1.11.0/src/paid/types/usage_volume_input_billing_type.py +5 -0
  325. paid_python-1.11.0/src/paid/types/usage_volume_input_signal_type.py +5 -0
  326. paid_python-1.11.0/src/paid/types/value_model_content.py +43 -0
  327. paid_python-1.11.0/src/paid/types/value_model_content_formulas_item.py +37 -0
  328. paid_python-1.11.0/src/paid/types/value_model_content_formulas_item_conditions_item.py +27 -0
  329. paid_python-1.11.0/src/paid/types/value_model_content_formulas_item_conditions_item_operator.py +7 -0
  330. paid_python-1.11.0/src/paid/types/value_model_content_formulas_item_conditions_item_result.py +24 -0
  331. paid_python-1.11.0/src/paid/types/value_model_content_formulas_item_conditions_item_result_type.py +7 -0
  332. paid_python-1.11.0/src/paid/types/value_model_content_formulas_item_conditions_item_value.py +5 -0
  333. paid_python-1.11.0/src/paid/types/value_model_content_formulas_item_default_result.py +22 -0
  334. paid_python-1.11.0/src/paid/types/value_model_content_formulas_item_default_result_type.py +5 -0
  335. paid_python-1.11.0/src/paid/types/value_model_content_formulas_item_variables_item.py +33 -0
  336. paid_python-1.11.0/src/paid/types/value_model_content_formulas_item_variables_item_derived_from.py +31 -0
  337. paid_python-1.11.0/src/paid/types/value_model_content_formulas_item_variables_item_derived_from_target_unit.py +7 -0
  338. paid_python-1.11.0/src/paid/types/value_model_content_formulas_item_variables_item_type.py +7 -0
  339. paid_python-1.11.0/src/paid/types/value_model_content_overrides_item.py +49 -0
  340. paid_python-1.11.0/src/paid/types/value_model_content_overrides_item_additional_signals_item.py +42 -0
  341. paid_python-1.11.0/src/paid/types/value_model_content_overrides_item_additional_signals_item_defaults_value.py +5 -0
  342. paid_python-1.11.0/src/paid/types/value_model_content_overrides_item_monetary_conversion_overrides_value.py +19 -0
  343. paid_python-1.11.0/src/paid/types/value_model_content_overrides_item_scope.py +28 -0
  344. paid_python-1.11.0/src/paid/types/value_model_content_overrides_item_signal_overrides_value.py +22 -0
  345. paid_python-1.11.0/src/paid/types/value_model_content_overrides_item_signal_overrides_value_defaults_value.py +5 -0
  346. paid_python-1.11.0/src/paid/types/value_model_content_segment_tables_item.py +32 -0
  347. paid_python-1.11.0/src/paid/types/value_model_content_segment_tables_item_columns_item.py +24 -0
  348. paid_python-1.11.0/src/paid/types/value_model_content_segment_tables_item_columns_item_type.py +5 -0
  349. paid_python-1.11.0/src/paid/types/value_model_content_segment_tables_item_rows_item.py +24 -0
  350. paid_python-1.11.0/src/paid/types/value_model_content_signals_item.py +40 -0
  351. paid_python-1.11.0/src/paid/types/value_model_content_signals_item_defaults_value.py +5 -0
  352. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item.py +36 -0
  353. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_monetary_conversion.py +27 -0
  354. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_monetary_conversion_conditions_item.py +31 -0
  355. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_monetary_conversion_conditions_item_operator.py +7 -0
  356. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_monetary_conversion_conditions_item_result.py +24 -0
  357. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_monetary_conversion_conditions_item_result_type.py +7 -0
  358. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_monetary_conversion_conditions_item_value.py +5 -0
  359. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_monetary_conversion_variables_item.py +21 -0
  360. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_unit.py +13 -0
  361. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_unit_duration_unit.py +32 -0
  362. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_unit_duration_unit_duration_unit.py +7 -0
  363. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_unit_duration_unit_type.py +5 -0
  364. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_unit_type.py +22 -0
  365. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_unit_type_type.py +5 -0
  366. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_unit_zero.py +20 -0
  367. paid_python-1.11.0/src/paid/types/value_model_content_value_types_item_unit_zero_type.py +5 -0
  368. paid_python-1.11.0/src/paid/types/value_model_detail.py +45 -0
  369. paid_python-1.11.0/src/paid/types/value_model_summary.py +40 -0
  370. paid_python-1.11.0/src/paid/types/value_model_summary_status.py +5 -0
  371. paid_python-1.11.0/src/paid/types/value_model_version_list_response.py +22 -0
  372. paid_python-1.11.0/src/paid/types/view_data_response.py +22 -0
  373. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/webhook_list_response.py +10 -0
  374. paid_python-1.11.0/src/paid/types/webhook_update_response.py +42 -0
  375. paid_python-1.11.0/src/paid/types/webhook_update_response_name.py +18 -0
  376. paid_python-1.11.0/src/paid/types/writable_order_line_type.py +5 -0
  377. paid_python-1.11.0/src/paid/value_models/__init__.py +4 -0
  378. paid_python-1.11.0/src/paid/value_models/client.py +501 -0
  379. paid_python-1.11.0/src/paid/value_models/raw_client.py +674 -0
  380. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/webhooks/client.py +72 -7
  381. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/webhooks/raw_client.py +160 -11
  382. paid_python-1.9.0/src/paid/__init__.py +0 -370
  383. paid_python-1.9.0/src/paid/credits/client.py +0 -104
  384. paid_python-1.9.0/src/paid/customers/client.py +0 -1197
  385. paid_python-1.9.0/src/paid/types/__init__.py +0 -316
  386. {paid_python-1.9.0 → paid_python-1.11.0}/LICENSE +0 -0
  387. {paid_python-1.9.0/src/paid/credits → paid_python-1.11.0/src/paid/analytics_experimental}/__init__.py +0 -0
  388. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/checkouts/__init__.py +0 -0
  389. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/checkouts/types/__init__.py +0 -0
  390. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/checkouts/types/list_checkouts_request_status.py +0 -0
  391. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/contacts/__init__.py +0 -0
  392. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/contacts/client.py +0 -0
  393. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/contacts/raw_client.py +0 -0
  394. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/contacts/types/__init__.py +0 -0
  395. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/contacts/types/create_contact_request_roles_item.py +0 -0
  396. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/__init__.py +0 -0
  397. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/api_error.py +0 -0
  398. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/datetime_utils.py +0 -0
  399. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/file.py +0 -0
  400. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/force_multipart.py +0 -0
  401. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/http_client.py +0 -0
  402. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/http_response.py +0 -0
  403. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/http_sse/__init__.py +0 -0
  404. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/http_sse/_api.py +0 -0
  405. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/http_sse/_decoders.py +0 -0
  406. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/http_sse/_exceptions.py +0 -0
  407. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/http_sse/_models.py +0 -0
  408. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/jsonable_encoder.py +0 -0
  409. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/pydantic_utilities.py +0 -0
  410. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/query_encoder.py +0 -0
  411. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/remove_none_from_dict.py +0 -0
  412. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/request_options.py +0 -0
  413. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/core/serialization.py +0 -0
  414. {paid_python-1.9.0/src/paid/customer_portals → paid_python-1.11.0/src/paid/costs}/__init__.py +0 -0
  415. {paid_python-1.9.0/src/paid/customers → paid_python-1.11.0/src/paid/customer_groups}/__init__.py +0 -0
  416. {paid_python-1.9.0/src/paid/invoices → paid_python-1.11.0/src/paid/customer_portals}/__init__.py +0 -0
  417. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/customer_portals/client.py +0 -0
  418. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/customer_portals/raw_client.py +0 -0
  419. {paid_python-1.9.0/src/paid/products → paid_python-1.11.0/src/paid/customers}/__init__.py +0 -0
  420. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/environment.py +0 -0
  421. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/errors/bad_request_error.py +0 -0
  422. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/errors/conflict_error.py +0 -0
  423. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/errors/forbidden_error.py +0 -0
  424. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/errors/internal_server_error.py +0 -0
  425. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/errors/not_found_error.py +0 -0
  426. {paid_python-1.9.0/src/paid/signals → paid_python-1.11.0/src/paid/invoices}/__init__.py +0 -0
  427. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/invoices/client.py +0 -0
  428. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/invoices/raw_client.py +0 -0
  429. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/logger.py +0 -0
  430. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/orders/__init__.py +0 -0
  431. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/orders/types/__init__.py +0 -0
  432. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/orders/types/batch_seat_assignments_request_assignments_item.py +0 -0
  433. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/orders/types/list_order_seats_request_status.py +0 -0
  434. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/py.typed +0 -0
  435. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/signals/client.py +0 -0
  436. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/signals/raw_client.py +0 -0
  437. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/__init__.py +0 -0
  438. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/anthropic_patches/__init__.py +0 -0
  439. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/context_data.py +0 -0
  440. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/context_manager.py +0 -0
  441. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/distributed_tracing.py +0 -0
  442. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/gemini_patches/__init__.py +0 -0
  443. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/gemini_patches/patches.py +0 -0
  444. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/openai_agents_patches/__init__.py +0 -0
  445. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/openai_agents_patches/patches.py +0 -0
  446. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/openai_patches/__init__.py +0 -0
  447. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/openai_patches/patches.py +0 -0
  448. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/signal.py +0 -0
  449. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/tracing.py +0 -0
  450. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/__init__.py +0 -0
  451. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/anthropic/__init__.py +0 -0
  452. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/anthropic/anthropicWrapper.py +0 -0
  453. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/bedrock/__init__.py +0 -0
  454. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/bedrock/bedrockWrapper.py +0 -0
  455. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/gemini/__init__.py +0 -0
  456. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/gemini/geminiWrapper.py +0 -0
  457. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/langchain/__init__.py +0 -0
  458. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/langchain/paidLangChainCallback.py +0 -0
  459. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/mistral/__init__.py +0 -0
  460. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/mistral/mistralWrapper.py +0 -0
  461. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/openai/__init__.py +0 -0
  462. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/openai/openAiWrapper.py +0 -0
  463. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/openai_agents/__init__.py +0 -0
  464. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/openai_agents/openaiAgentsHook.py +0 -0
  465. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/tracing/wrappers/utils.py +0 -0
  466. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/attribution.py +0 -0
  467. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/batch_seat_assignments_response.py +0 -0
  468. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/bulk_signals_response.py +0 -0
  469. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/checkout_list_response.py +0 -0
  470. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/checkout_status.py +0 -0
  471. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/contact.py +0 -0
  472. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/contact_billing_address.py +0 -0
  473. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/contact_list_response.py +0 -0
  474. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/contact_roles_item.py +0 -0
  475. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request.py +0 -0
  476. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request_pricing_billing_frequency.py +0 -0
  477. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request_pricing_billing_type.py +0 -0
  478. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request_pricing_charge_type.py +0 -0
  479. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request_pricing_credit_benefits_item.py +0 -0
  480. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request_pricing_credit_benefits_item_allocation_cadence.py +0 -0
  481. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request_pricing_credit_benefits_item_recipient.py +0 -0
  482. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request_pricing_credit_benefits_item_rollover_duration_unit.py +0 -0
  483. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request_pricing_price_points_tiers_item.py +0 -0
  484. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request_pricing_price_points_tiers_item_tier_billing_type.py +0 -0
  485. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/create_order_line_attribute_request_pricing_signal_type.py +0 -0
  486. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/credit_balance_list_response.py +0 -0
  487. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/credit_balance_recipient.py +0 -0
  488. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/credit_currency_list_response.py +0 -0
  489. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/customer_attribution.py +0 -0
  490. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/customer_by_external_id.py +0 -0
  491. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/customer_by_id.py +0 -0
  492. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/customer_creation_state.py +0 -0
  493. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/customer_list_response.py +0 -0
  494. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/customer_portal.py +0 -0
  495. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/customer_portal_status.py +0 -0
  496. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/customer_user.py +0 -0
  497. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/customer_user_status.py +0 -0
  498. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/empty_response.py +0 -0
  499. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/error_response.py +0 -0
  500. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/invoice.py +0 -0
  501. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/invoice_line.py +0 -0
  502. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/invoice_line_payment_status.py +0 -0
  503. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/invoice_lines_response.py +0 -0
  504. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/invoice_list_response.py +0 -0
  505. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/invoice_payment_status.py +0 -0
  506. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/invoice_source.py +0 -0
  507. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/invoice_status.py +0 -0
  508. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/invoice_tax_status.py +0 -0
  509. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/order_creation_state.py +0 -0
  510. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/order_lines_response.py +0 -0
  511. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/order_list_response.py +0 -0
  512. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/order_seat.py +0 -0
  513. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/order_seat_list_response.py +0 -0
  514. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/pagination.py +0 -0
  515. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/product.py +0 -0
  516. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/product_by_external_id.py +0 -0
  517. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/product_by_id.py +0 -0
  518. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/product_list_response.py +0 -0
  519. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/seat_assignee.py +0 -0
  520. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/seat_assignment_status.py +0 -0
  521. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/signal.py +0 -0
  522. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/success_response.py +0 -0
  523. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/update_contact_request.py +0 -0
  524. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/update_contact_request_roles_item.py +0 -0
  525. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/value_receipt_detail.py +0 -0
  526. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/value_receipt_list_response.py +0 -0
  527. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/value_receipt_summary.py +0 -0
  528. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/value_receipt_sync_response.py +0 -0
  529. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/webhook.py +0 -0
  530. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/webhook_delivery_status.py +0 -0
  531. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/webhook_name.py +0 -0
  532. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/types/webhook_test_response.py +0 -0
  533. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/value_receipts/__init__.py +0 -0
  534. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/value_receipts/client.py +0 -0
  535. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/value_receipts/raw_client.py +0 -0
  536. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/value_receipts/types/__init__.py +0 -0
  537. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/value_receipts/types/list_value_receipts_request_archived.py +0 -0
  538. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/value_receipts/types/sync_value_receipt_request_product.py +0 -0
  539. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/version.py +0 -0
  540. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/webhooks/__init__.py +0 -0
  541. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/webhooks/types/__init__.py +0 -0
  542. {paid_python-1.9.0 → paid_python-1.11.0}/src/paid/webhooks/types/test_webhook_request_webhook_name.py +0 -0
  543. {paid_python-1.9.0 → paid_python-1.11.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.11.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.11.0"
8
8
  description = ""
9
9
  readme = "README.md"
10
10
  authors = []
@@ -47,10 +47,12 @@ openinference-instrumentation-openai = ">=0.1.40"
47
47
  openinference-instrumentation-openai-agents = ">=1.0.0"
48
48
  opentelemetry-api = ">=1.23.0"
49
49
  opentelemetry-exporter-otlp-proto-http = ">=1.23.0"
50
+ opentelemetry-instrumentation-cohere = ">=0.51.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,13 +63,14 @@ 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"
67
70
  mistralai = ">=1.9.0 <2.0.0"
68
71
  openai = ">=1.12.0"
69
72
  openai-agents = ">=0.2.0"
70
- pydantic-ai = ">=1.41.0"
73
+ pydantic-ai = ">=1.41.0,<2"
71
74
  pytest-recording = ">=0.13.0"
72
75
  ruff = "==0.11.5"
73
76
  vcrpy = ">=6.0.0"