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.
- {paid_python-1.9.0 → paid_python-1.10.0}/PKG-INFO +4 -1
- {paid_python-1.9.0 → paid_python-1.10.0}/README.md +1 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/pyproject.toml +4 -1
- paid_python-1.10.0/src/paid/__init__.py +984 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/client.py +38 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/client_wrapper.py +2 -2
- paid_python-1.10.0/src/paid/costs/client.py +132 -0
- {paid_python-1.9.0/src/paid/credits → paid_python-1.10.0/src/paid/costs}/raw_client.py +71 -21
- paid_python-1.10.0/src/paid/credits/__init__.py +37 -0
- paid_python-1.10.0/src/paid/credits/client.py +330 -0
- paid_python-1.10.0/src/paid/credits/raw_client.py +555 -0
- paid_python-1.10.0/src/paid/credits/types/__init__.py +38 -0
- paid_python-1.10.0/src/paid/credits/types/list_credit_currencies_request_status.py +5 -0
- paid_python-1.10.0/src/paid/credits/types/update_credit_currency_request_status.py +5 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/customers/client.py +204 -37
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/customers/raw_client.py +332 -27
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/orders/client.py +29 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/orders/raw_client.py +33 -0
- paid_python-1.10.0/src/paid/pricing/client.py +304 -0
- paid_python-1.10.0/src/paid/pricing/raw_client.py +465 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/products/client.py +44 -24
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/products/raw_client.py +67 -40
- paid_python-1.10.0/src/paid/signals/__init__.py +4 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/anthropic_patches/patches.py +18 -18
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/autoinstrumentation.py +31 -1
- paid_python-1.10.0/src/paid/types/__init__.py +947 -0
- paid_python-1.10.0/src/paid/types/cost.py +62 -0
- paid_python-1.10.0/src/paid/types/cost_ingest_response.py +27 -0
- paid_python-1.10.0/src/paid/types/cost_override.py +27 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing.py +23 -2
- paid_python-1.10.0/src/paid/types/create_order_line_attribute_request_pricing_credit_unit_brackets_item.py +26 -0
- paid_python-1.10.0/src/paid/types/create_order_line_attribute_request_pricing_pricing_input.py +22 -0
- paid_python-1.10.0/src/paid/types/create_order_line_attribute_request_pricing_pricing_input_kind.py +5 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_pricing_model.py +2 -1
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_request.py +8 -0
- paid_python-1.10.0/src/paid/types/credit_balance.py +65 -0
- paid_python-1.10.0/src/paid/types/credit_benefit_input.py +53 -0
- paid_python-1.10.0/src/paid/types/credit_benefit_input_allocation_cadence.py +5 -0
- paid_python-1.10.0/src/paid/types/credit_benefit_input_credit_grant_timing.py +7 -0
- paid_python-1.10.0/src/paid/types/credit_benefit_input_recipient.py +5 -0
- paid_python-1.10.0/src/paid/types/credit_benefit_output.py +47 -0
- paid_python-1.10.0/src/paid/types/credit_currency.py +64 -0
- paid_python-1.10.0/src/paid/types/credit_currency_status.py +5 -0
- paid_python-1.9.0/src/paid/types/credit_balance.py → paid_python-1.10.0/src/paid/types/credit_grant.py +12 -14
- paid_python-1.10.0/src/paid/types/currency_code.py +3 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer.py +9 -4
- 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
- paid_python-1.10.0/src/paid/types/customer_billing_address_response.py +32 -0
- paid_python-1.10.0/src/paid/types/customer_state.py +40 -0
- paid_python-1.10.0/src/paid/types/customer_state_checkout_link.py +35 -0
- paid_python-1.10.0/src/paid/types/customer_state_checkout_link_status.py +5 -0
- paid_python-1.10.0/src/paid/types/customer_state_credit_balance.py +30 -0
- paid_python-1.10.0/src/paid/types/customer_state_credit_summary.py +20 -0
- paid_python-1.10.0/src/paid/types/customer_state_customer.py +35 -0
- paid_python-1.10.0/src/paid/types/customer_state_order.py +43 -0
- paid_python-1.10.0/src/paid/types/customer_state_order_state.py +5 -0
- paid_python-1.10.0/src/paid/types/customer_state_product_ref.py +25 -0
- paid_python-1.10.0/src/paid/types/customer_state_seat.py +34 -0
- paid_python-1.10.0/src/paid/types/customer_state_seat_assignee.py +24 -0
- paid_python-1.10.0/src/paid/types/customer_state_seat_status.py +5 -0
- paid_python-1.10.0/src/paid/types/customer_state_seats.py +23 -0
- paid_python-1.10.0/src/paid/types/one_time_per_unit_input.py +34 -0
- paid_python-1.10.0/src/paid/types/one_time_per_unit_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/one_time_per_unit_input_fee_type.py +7 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/order.py +14 -0
- paid_python-1.10.0/src/paid/types/order_billing_frequency_override.py +25 -0
- paid_python-1.10.0/src/paid/types/order_billing_frequency_override_frequency.py +7 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/order_line.py +4 -0
- paid_python-1.10.0/src/paid/types/order_line_type.py +5 -0
- paid_python-1.10.0/src/paid/types/precomputed_cost.py +52 -0
- paid_python-1.10.0/src/paid/types/pricing_input.py +625 -0
- paid_python-1.10.0/src/paid/types/pricing_list_response.py +20 -0
- paid_python-1.10.0/src/paid/types/pricing_output.py +56 -0
- paid_python-1.10.0/src/paid/types/pricing_output_pricing_type.py +24 -0
- paid_python-1.10.0/src/paid/types/pricing_price_point_output.py +33 -0
- paid_python-1.10.0/src/paid/types/pricing_price_point_output_tiers_item.py +40 -0
- paid_python-1.10.0/src/paid/types/pricing_price_point_output_tiers_item_tier_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/pricing_response.py +30 -0
- paid_python-1.10.0/src/paid/types/product_attribute_output.py +33 -0
- paid_python-1.10.0/src/paid/types/product_attribute_upsert.py +33 -0
- paid_python-1.10.0/src/paid/types/product_attribution.py +8 -0
- paid_python-1.10.0/src/paid/types/product_credit_benefit_input.py +53 -0
- paid_python-1.10.0/src/paid/types/product_credit_benefit_input_allocation_cadence.py +5 -0
- paid_python-1.10.0/src/paid/types/product_credit_benefit_input_credit_grant_timing.py +7 -0
- paid_python-1.10.0/src/paid/types/product_credit_benefit_input_recipient.py +5 -0
- paid_python-1.10.0/src/paid/types/product_credit_benefit_output.py +47 -0
- paid_python-1.9.0/src/paid/types/credit_currency.py → paid_python-1.10.0/src/paid/types/product_detail.py +18 -5
- paid_python-1.10.0/src/paid/types/product_one_time_per_unit_input.py +36 -0
- paid_python-1.10.0/src/paid/types/product_one_time_per_unit_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_one_time_per_unit_input_fee_type.py +7 -0
- paid_python-1.10.0/src/paid/types/product_price_point_output.py +33 -0
- paid_python-1.10.0/src/paid/types/product_price_point_output_tiers_item.py +40 -0
- paid_python-1.10.0/src/paid/types/product_price_point_output_tiers_item_tier_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_pricing_input.py +637 -0
- paid_python-1.10.0/src/paid/types/product_pricing_output.py +56 -0
- paid_python-1.10.0/src/paid/types/product_pricing_output_pricing_type.py +24 -0
- paid_python-1.10.0/src/paid/types/product_recurring_graduated_input.py +41 -0
- paid_python-1.10.0/src/paid/types/product_recurring_graduated_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/product_recurring_graduated_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_recurring_per_unit_input.py +41 -0
- paid_python-1.10.0/src/paid/types/product_recurring_per_unit_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/product_recurring_per_unit_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_recurring_percent_of_total_input.py +48 -0
- paid_python-1.10.0/src/paid/types/product_recurring_percent_of_total_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/product_recurring_percent_of_total_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_recurring_volume_input.py +41 -0
- paid_python-1.10.0/src/paid/types/product_recurring_volume_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/product_recurring_volume_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_seat_based_graduated_input.py +41 -0
- paid_python-1.10.0/src/paid/types/product_seat_based_graduated_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/product_seat_based_graduated_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_seat_based_per_unit_input.py +41 -0
- paid_python-1.10.0/src/paid/types/product_seat_based_per_unit_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/product_seat_based_per_unit_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_seat_based_prepaid_credits_input.py +54 -0
- paid_python-1.10.0/src/paid/types/product_seat_based_prepaid_credits_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/product_seat_based_prepaid_credits_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_seat_based_volume_input.py +41 -0
- paid_python-1.10.0/src/paid/types/product_seat_based_volume_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/product_seat_based_volume_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_simple_price_point.py +33 -0
- paid_python-1.10.0/src/paid/types/product_simple_price_point_tiers_item.py +40 -0
- paid_python-1.10.0/src/paid/types/product_simple_price_point_tiers_item_tier_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_tiered_price_point.py +33 -0
- paid_python-1.10.0/src/paid/types/product_tiered_price_point_tiers_item.py +40 -0
- paid_python-1.10.0/src/paid/types/product_tiered_price_point_tiers_item_tier_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_usage_bracketed_prepaid_credits_input.py +78 -0
- paid_python-1.10.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_credit_unit_brackets_item.py +26 -0
- paid_python-1.10.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_pricing_input.py +22 -0
- paid_python-1.10.0/src/paid/types/product_usage_bracketed_prepaid_credits_input_pricing_input_kind.py +5 -0
- paid_python-1.10.0/src/paid/types/product_usage_cost_plus_input.py +46 -0
- paid_python-1.10.0/src/paid/types/product_usage_cost_plus_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/product_usage_cost_plus_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_usage_graduated_input.py +42 -0
- paid_python-1.10.0/src/paid/types/product_usage_graduated_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/product_usage_graduated_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_usage_per_unit_input.py +42 -0
- paid_python-1.10.0/src/paid/types/product_usage_per_unit_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/product_usage_per_unit_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_usage_prepaid_credits_input.py +53 -0
- paid_python-1.10.0/src/paid/types/product_usage_prepaid_credits_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/product_usage_prepaid_credits_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/product_usage_volume_input.py +42 -0
- paid_python-1.10.0/src/paid/types/product_usage_volume_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/product_usage_volume_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/recurring_graduated_input.py +41 -0
- paid_python-1.10.0/src/paid/types/recurring_graduated_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/recurring_graduated_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/recurring_per_unit_input.py +41 -0
- paid_python-1.10.0/src/paid/types/recurring_per_unit_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/recurring_per_unit_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/recurring_percent_of_total_input.py +46 -0
- paid_python-1.10.0/src/paid/types/recurring_percent_of_total_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/recurring_percent_of_total_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/recurring_volume_input.py +41 -0
- paid_python-1.10.0/src/paid/types/recurring_volume_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/recurring_volume_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/rotate_webhook_secret_response.py +28 -0
- paid_python-1.10.0/src/paid/types/seat_based_graduated_input.py +41 -0
- paid_python-1.10.0/src/paid/types/seat_based_graduated_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/seat_based_graduated_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/seat_based_per_unit_input.py +41 -0
- paid_python-1.10.0/src/paid/types/seat_based_per_unit_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/seat_based_per_unit_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/seat_based_prepaid_credits_input.py +52 -0
- paid_python-1.10.0/src/paid/types/seat_based_prepaid_credits_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/seat_based_prepaid_credits_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/seat_based_volume_input.py +41 -0
- paid_python-1.10.0/src/paid/types/seat_based_volume_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/seat_based_volume_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/simple_price_point.py +33 -0
- paid_python-1.10.0/src/paid/types/simple_price_point_tiers_item.py +40 -0
- paid_python-1.10.0/src/paid/types/simple_price_point_tiers_item_tier_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/tiered_price_point.py +33 -0
- paid_python-1.10.0/src/paid/types/tiered_price_point_tiers_item.py +40 -0
- paid_python-1.10.0/src/paid/types/tiered_price_point_tiers_item_tier_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/token_usage.py +54 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/update_customer_request.py +2 -2
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/update_product_request.py +6 -0
- paid_python-1.10.0/src/paid/types/usage_bracketed_prepaid_credits_input.py +72 -0
- paid_python-1.10.0/src/paid/types/usage_bracketed_prepaid_credits_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/usage_bracketed_prepaid_credits_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/usage_bracketed_prepaid_credits_input_credit_unit_brackets_item.py +26 -0
- paid_python-1.10.0/src/paid/types/usage_bracketed_prepaid_credits_input_pricing_input.py +20 -0
- paid_python-1.10.0/src/paid/types/usage_bracketed_prepaid_credits_input_pricing_input_kind.py +5 -0
- paid_python-1.10.0/src/paid/types/usage_cost.py +51 -0
- paid_python-1.10.0/src/paid/types/usage_cost_plus_input.py +46 -0
- paid_python-1.10.0/src/paid/types/usage_cost_plus_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/usage_cost_plus_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/usage_graduated_input.py +42 -0
- paid_python-1.10.0/src/paid/types/usage_graduated_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/usage_graduated_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/usage_per_unit_input.py +42 -0
- paid_python-1.10.0/src/paid/types/usage_per_unit_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/usage_per_unit_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/usage_prepaid_credits_input.py +53 -0
- paid_python-1.10.0/src/paid/types/usage_prepaid_credits_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/usage_prepaid_credits_input_billing_type.py +5 -0
- paid_python-1.10.0/src/paid/types/usage_volume_input.py +42 -0
- paid_python-1.10.0/src/paid/types/usage_volume_input_billing_frequency.py +7 -0
- paid_python-1.10.0/src/paid/types/usage_volume_input_billing_type.py +5 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/webhook_list_response.py +10 -0
- paid_python-1.10.0/src/paid/types/webhook_update_response.py +42 -0
- paid_python-1.10.0/src/paid/types/webhook_update_response_name.py +18 -0
- paid_python-1.10.0/src/paid/types/writable_order_line_type.py +5 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/webhooks/client.py +72 -7
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/webhooks/raw_client.py +160 -11
- paid_python-1.9.0/src/paid/__init__.py +0 -370
- paid_python-1.9.0/src/paid/credits/client.py +0 -104
- paid_python-1.9.0/src/paid/types/__init__.py +0 -316
- {paid_python-1.9.0 → paid_python-1.10.0}/LICENSE +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/checkouts/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/checkouts/client.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/checkouts/raw_client.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/checkouts/types/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/checkouts/types/list_checkouts_request_status.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/contacts/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/contacts/client.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/contacts/raw_client.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/contacts/types/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/contacts/types/create_contact_request_roles_item.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/api_error.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/datetime_utils.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/file.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/force_multipart.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/http_client.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/http_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/http_sse/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/http_sse/_api.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/http_sse/_decoders.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/http_sse/_exceptions.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/http_sse/_models.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/jsonable_encoder.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/pydantic_utilities.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/query_encoder.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/remove_none_from_dict.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/request_options.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/core/serialization.py +0 -0
- {paid_python-1.9.0/src/paid/credits → paid_python-1.10.0/src/paid/costs}/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/customer_portals/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/customer_portals/client.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/customer_portals/raw_client.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/customers/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/environment.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/errors/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/errors/bad_request_error.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/errors/conflict_error.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/errors/forbidden_error.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/errors/internal_server_error.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/errors/not_found_error.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/invoices/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/invoices/client.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/invoices/raw_client.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/logger.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/orders/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/orders/types/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/orders/types/batch_seat_assignments_request_assignments_item.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/orders/types/list_order_seats_request_status.py +0 -0
- {paid_python-1.9.0/src/paid/products → paid_python-1.10.0/src/paid/pricing}/__init__.py +0 -0
- {paid_python-1.9.0/src/paid/signals → paid_python-1.10.0/src/paid/products}/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/py.typed +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/signals/client.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/signals/raw_client.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/anthropic_patches/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/context_data.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/context_manager.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/distributed_tracing.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/gemini_patches/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/gemini_patches/patches.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/openai_agents_patches/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/openai_agents_patches/patches.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/openai_patches/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/openai_patches/patches.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/signal.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/tracing.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/anthropic/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/anthropic/anthropicWrapper.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/bedrock/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/bedrock/bedrockWrapper.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/gemini/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/gemini/geminiWrapper.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/langchain/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/langchain/paidLangChainCallback.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/mistral/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/mistral/mistralWrapper.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/openai/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/openai/openAiWrapper.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/openai_agents/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/openai_agents/openaiAgentsHook.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/tracing/wrappers/utils.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/attribution.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/batch_seat_assignments_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/bulk_signals_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/checkout.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/checkout_details.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/checkout_list_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/checkout_product.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/checkout_product_input.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/checkout_status.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/contact.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/contact_billing_address.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/contact_list_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/contact_roles_item.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_billing_frequency.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_billing_type.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_charge_type.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_price_points.py +0 -0
- {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
- {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
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/create_order_line_attribute_request_pricing_signal_type.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/credit_balance_list_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/credit_balance_recipient.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/credit_currency_list_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_attribution.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_by_external_id.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_by_id.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_creation_state.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_list_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_portal.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_portal_status.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_user.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/customer_user_status.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/empty_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/error_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_line.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_line_payment_status.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_lines_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_list_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_payment_status.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_source.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_status.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/invoice_tax_status.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/order_creation_state.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/order_lines_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/order_list_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/order_seat.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/order_seat_list_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/pagination.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/product.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/product_by_external_id.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/product_by_id.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/product_list_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/seat_assignee.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/seat_assignment_status.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/signal.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/success_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/update_contact_request.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/update_contact_request_roles_item.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/value_receipt_detail.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/value_receipt_list_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/value_receipt_summary.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/value_receipt_sync_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/webhook.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/webhook_delivery_status.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/webhook_name.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/types/webhook_test_response.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/value_receipts/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/value_receipts/client.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/value_receipts/raw_client.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/value_receipts/types/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/value_receipts/types/list_value_receipts_request_archived.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/value_receipts/types/sync_value_receipt_request_product.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/version.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/webhooks/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/webhooks/types/__init__.py +0 -0
- {paid_python-1.9.0 → paid_python-1.10.0}/src/paid/webhooks/types/test_webhook_request_webhook_name.py +0 -0
- {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.
|
|
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
|
|
@@ -4,7 +4,7 @@ dynamic = ["version"]
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "paid-python"
|
|
7
|
-
version = "1.
|
|
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"
|