brevo-python 4.0.7__tar.gz → 4.0.9__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 (864) hide show
  1. {brevo_python-4.0.7 → brevo_python-4.0.9}/PKG-INFO +1 -1
  2. {brevo_python-4.0.7 → brevo_python-4.0.9}/pyproject.toml +1 -1
  3. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/__init__.py +33 -0
  4. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/__init__.py +12 -0
  5. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/client.py +96 -18
  6. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/raw_client.py +113 -18
  7. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/__init__.py +18 -0
  8. brevo_python-4.0.9/src/brevo/balance/types/get_loyalty_balance_programs_pid_transaction_history_request_status.py +7 -0
  9. brevo_python-4.0.9/src/brevo/balance/types/get_loyalty_balance_programs_pid_transaction_history_request_transaction_type.py +7 -0
  10. brevo_python-4.0.9/src/brevo/balance/types/post_loyalty_balance_programs_pid_balance_definitions_request_meta.py +30 -0
  11. brevo_python-4.0.9/src/brevo/balance/types/update_balance_definition_request_meta.py +30 -0
  12. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/client.py +6 -6
  13. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/raw_client.py +14 -10
  14. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/client_wrapper.py +2 -2
  15. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/pydantic_utilities.py +70 -13
  16. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/unchecked_base_model.py +4 -2
  17. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/client.py +30 -10
  18. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/raw_client.py +46 -18
  19. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_batch_order_response.py +5 -5
  20. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_batch_products_request_products_item.py +11 -1
  21. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/client.py +158 -4
  22. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/raw_client.py +257 -6
  23. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/client.py +10 -0
  24. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/raw_client.py +10 -0
  25. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/__init__.py +6 -0
  26. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/client.py +22 -0
  27. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/raw_client.py +30 -0
  28. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/__init__.py +6 -0
  29. brevo_python-4.0.9/src/brevo/tier/types/create_tier_group_request_meta.py +30 -0
  30. brevo_python-4.0.9/src/brevo/tier/types/update_tier_group_request_meta.py +30 -0
  31. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/__init__.py +15 -0
  32. brevo_python-4.0.9/src/brevo/types/batch_accepted_response.py +32 -0
  33. brevo_python-4.0.9/src/brevo/types/get_events_list.py +33 -0
  34. brevo_python-4.0.9/src/brevo/types/get_events_list_events_item.py +59 -0
  35. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_product_details.py +10 -0
  36. brevo_python-4.0.9/src/brevo/types/internal_server_error_body.py +29 -0
  37. brevo_python-4.0.9/src/brevo/types/internal_server_error_body_code.py +45 -0
  38. {brevo_python-4.0.7 → brevo_python-4.0.9}/README.md +0 -0
  39. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/__init__.py +0 -0
  40. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/client.py +0 -0
  41. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/raw_client.py +0 -0
  42. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/__init__.py +0 -0
  43. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_activity_response.py +0 -0
  44. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_activity_response_logs_item.py +0 -0
  45. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response.py +0 -0
  46. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_address.py +0 -0
  47. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_date_time_preferences.py +0 -0
  48. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_marketing_automation.py +0 -0
  49. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_plan_item.py +0 -0
  50. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_plan_item_type.py +0 -0
  51. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_plan_verticals_item.py +0 -0
  52. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_plan_verticals_item_plan_category.py +0 -0
  53. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_plan_verticals_item_status.py +0 -0
  54. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_plan_verticals_item_users.py +0 -0
  55. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_relay.py +0 -0
  56. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_relay_data.py +0 -0
  57. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/create_balance_limit_request_constraint_type.py +0 -0
  58. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/create_balance_limit_request_duration_unit.py +0 -0
  59. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/create_balance_limit_request_transaction_type.py +0 -0
  60. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/create_balance_order_response.py +0 -0
  61. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_balance_definition_list_request_sort.py +0 -0
  62. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_balance_definition_list_request_sort_field.py +0 -0
  63. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_balance_definition_list_request_version.py +0 -0
  64. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_balance_definition_list_response.py +0 -0
  65. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_balance_definition_request_version.py +0 -0
  66. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_balance_limit_request_version.py +0 -0
  67. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_contact_balances_response.py +0 -0
  68. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_contact_balances_response_balances_item.py +0 -0
  69. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_loyalty_balance_programs_pid_transaction_history_request_sort.py +0 -0
  70. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_loyalty_balance_programs_pid_transaction_history_response.py +0 -0
  71. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_loyalty_balance_programs_pid_transaction_history_response_transaction_history_item.py +0 -0
  72. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_subscription_balances_response.py +0 -0
  73. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_subscription_balances_response_balance_item.py +0 -0
  74. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/post_loyalty_balance_programs_pid_balance_definitions_request_balance_availability_duration_modifier.py +0 -0
  75. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/post_loyalty_balance_programs_pid_balance_definitions_request_balance_availability_duration_unit.py +0 -0
  76. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/post_loyalty_balance_programs_pid_balance_definitions_request_balance_option_amount_overtaking_strategy.py +0 -0
  77. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/post_loyalty_balance_programs_pid_balance_definitions_request_balance_option_credit_rounding.py +0 -0
  78. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/post_loyalty_balance_programs_pid_balance_definitions_request_balance_option_debit_rounding.py +0 -0
  79. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/post_loyalty_balance_programs_pid_balance_definitions_request_unit.py +0 -0
  80. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/post_loyalty_balance_programs_pid_subscriptions_cid_balances_response.py +0 -0
  81. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_definition_request_balance_availability_duration_modifier.py +0 -0
  82. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_definition_request_balance_availability_duration_unit.py +0 -0
  83. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_definition_request_balance_option_amount_overtaking_strategy.py +0 -0
  84. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_definition_request_balance_option_credit_rounding.py +0 -0
  85. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_definition_request_balance_option_debit_rounding.py +0 -0
  86. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_definition_request_unit.py +0 -0
  87. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_limit_request_constraint_type.py +0 -0
  88. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_limit_request_duration_unit.py +0 -0
  89. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_limit_request_transaction_type.py +0 -0
  90. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/client.py +0 -0
  91. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/__init__.py +0 -0
  92. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/client.py +0 -0
  93. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/raw_client.py +0 -0
  94. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/__init__.py +0 -0
  95. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/get_companies_request_sort.py +0 -0
  96. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/get_companies_response.py +0 -0
  97. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/get_crm_attributes_companies_response_item.py +0 -0
  98. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/patch_crm_attributes_id_request_object_type.py +0 -0
  99. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/patch_crm_attributes_id_request_options_labels_item.py +0 -0
  100. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/post_companies_import_response.py +0 -0
  101. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/post_companies_response.py +0 -0
  102. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/post_crm_attributes_request_attribute_type.py +0 -0
  103. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/post_crm_attributes_request_object_type.py +0 -0
  104. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/post_crm_attributes_response.py +0 -0
  105. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/__init__.py +0 -0
  106. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/__init__.py +0 -0
  107. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/add_contact_to_list_request_body.py +0 -0
  108. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/add_contact_to_list_request_body_emails.py +0 -0
  109. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/add_contact_to_list_request_body_ext_ids.py +0 -0
  110. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/add_contact_to_list_request_body_ids.py +0 -0
  111. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_attribute_request_attribute_category.py +0 -0
  112. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_attribute_request_enumeration_item.py +0 -0
  113. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_attribute_request_type.py +0 -0
  114. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_contact_request_attributes_value.py +0 -0
  115. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_contact_response.py +0 -0
  116. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_doi_contact_request_attributes_value.py +0 -0
  117. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_folder_response.py +0 -0
  118. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_list_response.py +0 -0
  119. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/delete_attribute_request_attribute_category.py +0 -0
  120. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/delete_contact_request_identifier.py +0 -0
  121. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/delete_contact_request_identifier_type.py +0 -0
  122. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_attributes_response.py +0 -0
  123. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_attributes_response_attributes_item.py +0 -0
  124. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_attributes_response_attributes_item_category.py +0 -0
  125. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_attributes_response_attributes_item_enumeration_item.py +0 -0
  126. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_attributes_response_attributes_item_type.py +0 -0
  127. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_request_identifier.py +0 -0
  128. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_request_identifier_type.py +0 -0
  129. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response.py +0 -0
  130. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_attributes.py +0 -0
  131. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics.py +0 -0
  132. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_clicked_item.py +0 -0
  133. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_clicked_item_links_item.py +0 -0
  134. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_complaints_item.py +0 -0
  135. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_delivered_item.py +0 -0
  136. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_hard_bounces_item.py +0 -0
  137. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_messages_sent_item.py +0 -0
  138. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_opened_item.py +0 -0
  139. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_soft_bounces_item.py +0 -0
  140. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_transac_attributes_item.py +0 -0
  141. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_unsubscriptions.py +0 -0
  142. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_unsubscriptions_admin_unsubscription_item.py +0 -0
  143. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_unsubscriptions_user_unsubscription_item.py +0 -0
  144. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_request_identifier.py +0 -0
  145. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response.py +0 -0
  146. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_clicked_item.py +0 -0
  147. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_clicked_item_links_item.py +0 -0
  148. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_complaints_item.py +0 -0
  149. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_delivered_item.py +0 -0
  150. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_hard_bounces_item.py +0 -0
  151. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_messages_sent_item.py +0 -0
  152. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_opened_item.py +0 -0
  153. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_soft_bounces_item.py +0 -0
  154. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_transac_attributes_item.py +0 -0
  155. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_unsubscriptions.py +0 -0
  156. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_unsubscriptions_admin_unsubscription_item.py +0 -0
  157. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_unsubscriptions_user_unsubscription_item.py +0 -0
  158. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contacts_from_list_request_sort.py +0 -0
  159. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contacts_request_sort.py +0 -0
  160. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_folder_lists_request_sort.py +0 -0
  161. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_folder_lists_response.py +0 -0
  162. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_folders_request_sort.py +0 -0
  163. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_folders_response.py +0 -0
  164. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_list_response.py +0 -0
  165. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_list_response_campaign_stats_item.py +0 -0
  166. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_lists_request_sort.py +0 -0
  167. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_lists_response.py +0 -0
  168. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_lists_response_lists_item.py +0 -0
  169. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_segments_request_sort.py +0 -0
  170. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_segments_response.py +0 -0
  171. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_segments_response_segments_item.py +0 -0
  172. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/import_contacts_request_json_body_item.py +0 -0
  173. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/import_contacts_request_new_list.py +0 -0
  174. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/import_contacts_response.py +0 -0
  175. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/remove_contact_from_list_request_body.py +0 -0
  176. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/remove_contact_from_list_request_body_all.py +0 -0
  177. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/remove_contact_from_list_request_body_emails.py +0 -0
  178. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/remove_contact_from_list_request_body_ext_ids.py +0 -0
  179. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/remove_contact_from_list_request_body_ids.py +0 -0
  180. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/request_contact_export_request_custom_contact_filter.py +0 -0
  181. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/request_contact_export_request_custom_contact_filter_action_for_contacts.py +0 -0
  182. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/request_contact_export_request_custom_contact_filter_action_for_email_campaigns.py +0 -0
  183. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/request_contact_export_request_custom_contact_filter_action_for_sms_campaigns.py +0 -0
  184. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/request_contact_export_response.py +0 -0
  185. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/update_attribute_request_attribute_category.py +0 -0
  186. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/update_attribute_request_enumeration_item.py +0 -0
  187. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/update_batch_contacts_request_contacts_item.py +0 -0
  188. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/update_contact_request_attributes_value.py +0 -0
  189. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/update_contact_request_identifier.py +0 -0
  190. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/update_contact_request_identifier_type.py +0 -0
  191. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/conversations/__init__.py +0 -0
  192. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/conversations/client.py +0 -0
  193. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/conversations/raw_client.py +0 -0
  194. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/conversations/types/__init__.py +0 -0
  195. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/conversations/types/put_conversations_visitor_group_response.py +0 -0
  196. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/__init__.py +0 -0
  197. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/api_error.py +0 -0
  198. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/datetime_utils.py +0 -0
  199. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/file.py +0 -0
  200. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/force_multipart.py +0 -0
  201. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/http_client.py +0 -0
  202. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/http_response.py +0 -0
  203. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/http_sse/__init__.py +0 -0
  204. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/http_sse/_api.py +0 -0
  205. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/http_sse/_decoders.py +0 -0
  206. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/http_sse/_exceptions.py +0 -0
  207. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/http_sse/_models.py +0 -0
  208. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/jsonable_encoder.py +0 -0
  209. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/logging.py +0 -0
  210. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/parse_error.py +0 -0
  211. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/query_encoder.py +0 -0
  212. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/remove_none_from_dict.py +0 -0
  213. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/request_options.py +0 -0
  214. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/serialization.py +0 -0
  215. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/__init__.py +0 -0
  216. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/client.py +0 -0
  217. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/raw_client.py +0 -0
  218. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/types/__init__.py +0 -0
  219. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/types/create_coupon_collection_response.py +0 -0
  220. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/types/get_coupon_collections_request_sort.py +0 -0
  221. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/types/get_coupon_collections_request_sort_by.py +0 -0
  222. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/types/update_coupon_collection_response.py +0 -0
  223. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/__init__.py +0 -0
  224. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/client.py +0 -0
  225. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/raw_client.py +0 -0
  226. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/__init__.py +0 -0
  227. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/batch_delete_object_records_request_identifiers.py +0 -0
  228. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/batch_delete_object_records_request_identifiers_ext_ids.py +0 -0
  229. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/batch_delete_object_records_request_identifiers_ids.py +0 -0
  230. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/batch_delete_object_records_response.py +0 -0
  231. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_request_association.py +0 -0
  232. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_request_sort.py +0 -0
  233. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response.py +0 -0
  234. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item.py +0 -0
  235. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item.py +0 -0
  236. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_one.py +0 -0
  237. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_one_records_item.py +0 -0
  238. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_one_records_item_one.py +0 -0
  239. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_one_records_item_one_identifiers.py +0 -0
  240. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_one_records_item_zero.py +0 -0
  241. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_one_records_item_zero_identifiers.py +0 -0
  242. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_zero.py +0 -0
  243. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_zero_records_item.py +0 -0
  244. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_zero_records_item_one.py +0 -0
  245. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_zero_records_item_one_identifiers.py +0 -0
  246. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_zero_records_item_zero.py +0 -0
  247. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_zero_records_item_zero_identifiers.py +0 -0
  248. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_identifiers.py +0 -0
  249. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item.py +0 -0
  250. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item.py +0 -0
  251. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_one.py +0 -0
  252. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_one_records_item.py +0 -0
  253. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_one_records_item_one.py +0 -0
  254. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_one_records_item_zero.py +0 -0
  255. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_one_records_item_zero_identifiers.py +0 -0
  256. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_zero.py +0 -0
  257. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_zero_records_item.py +0 -0
  258. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_zero_records_item_identifiers.py +0 -0
  259. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_identifiers.py +0 -0
  260. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_response.py +0 -0
  261. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/__init__.py +0 -0
  262. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/client.py +0 -0
  263. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/raw_client.py +0 -0
  264. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/types/__init__.py +0 -0
  265. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/types/get_crm_attributes_deals_response_item.py +0 -0
  266. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/types/get_crm_deals_request_sort.py +0 -0
  267. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/types/get_crm_deals_response.py +0 -0
  268. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/types/post_crm_deals_import_response.py +0 -0
  269. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/types/post_crm_deals_response.py +0 -0
  270. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/__init__.py +0 -0
  271. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/client.py +0 -0
  272. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/raw_client.py +0 -0
  273. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/__init__.py +0 -0
  274. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/authenticate_domain_response.py +0 -0
  275. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/create_domain_response.py +0 -0
  276. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/create_domain_response_dns_records.py +0 -0
  277. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/create_domain_response_dns_records_brevo_code.py +0 -0
  278. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/create_domain_response_dns_records_dkim_record.py +0 -0
  279. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/create_domain_response_dns_records_dmarc_record.py +0 -0
  280. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domain_configuration_response.py +0 -0
  281. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domain_configuration_response_dns_records.py +0 -0
  282. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domain_configuration_response_dns_records_brevo_code.py +0 -0
  283. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domain_configuration_response_dns_records_dkim_record.py +0 -0
  284. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domain_configuration_response_dns_records_dmarc_record.py +0 -0
  285. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domains_response.py +0 -0
  286. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domains_response_domains_item.py +0 -0
  287. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domains_response_domains_item_creator.py +0 -0
  288. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/__init__.py +0 -0
  289. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/__init__.py +0 -0
  290. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_product_alert_request_contact_identifiers.py +0 -0
  291. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_batch_category_request_categories_item.py +0 -0
  292. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_batch_category_response.py +0 -0
  293. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_batch_products_request_products_item_meta_info_value.py +0 -0
  294. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_batch_products_response.py +0 -0
  295. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_category_response.py +0 -0
  296. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_product_request_meta_info_value.py +0 -0
  297. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_product_response.py +0 -0
  298. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_categories_request_sort.py +0 -0
  299. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_categories_response.py +0 -0
  300. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_metrics_conversion_source_conversion_source_id_request_conversion_source.py +0 -0
  301. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_metrics_conversion_source_conversion_source_id_response.py +0 -0
  302. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_metrics_conversion_source_conversion_source_id_response_conversion_source.py +0 -0
  303. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_metrics_response.py +0 -0
  304. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_metrics_response_totals.py +0 -0
  305. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_products_conversion_source_conversion_source_id_request_conversion_source.py +0 -0
  306. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_products_conversion_source_conversion_source_id_response.py +0 -0
  307. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_products_conversion_source_conversion_source_id_response_products_item.py +0 -0
  308. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_config_display_currency_response.py +0 -0
  309. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_orders_request_sort.py +0 -0
  310. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_products_request_sort.py +0 -0
  311. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_products_response.py +0 -0
  312. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/set_config_display_currency_response.py +0 -0
  313. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/__init__.py +0 -0
  314. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/client.py +0 -0
  315. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/raw_client.py +0 -0
  316. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/__init__.py +0 -0
  317. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/create_email_campaign_request_email_expiration_date.py +0 -0
  318. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/create_email_campaign_request_email_expiration_date_unit.py +0 -0
  319. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/create_email_campaign_request_recipients.py +0 -0
  320. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/create_email_campaign_request_sender.py +0 -0
  321. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/create_email_campaign_request_winner_criteria.py +0 -0
  322. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/create_email_campaign_response.py +0 -0
  323. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/email_export_recipients_request_recipients_type.py +0 -0
  324. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/email_export_recipients_response.py +0 -0
  325. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_ab_test_campaign_result_response.py +0 -0
  326. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_ab_test_campaign_result_response_clicked_links.py +0 -0
  327. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_ab_test_campaign_result_response_statistics.py +0 -0
  328. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_ab_test_campaign_result_response_winning_criteria.py +0 -0
  329. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_ab_test_campaign_result_response_winning_version.py +0 -0
  330. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaign_request_statistics.py +0 -0
  331. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaign_response.py +0 -0
  332. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaign_response_sender.py +0 -0
  333. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaign_response_status.py +0 -0
  334. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaign_response_type.py +0 -0
  335. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_request_sort.py +0 -0
  336. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_request_statistics.py +0 -0
  337. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_request_status.py +0 -0
  338. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_request_type.py +0 -0
  339. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_response.py +0 -0
  340. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_response_campaigns_item.py +0 -0
  341. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_response_campaigns_item_sender.py +0 -0
  342. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_response_campaigns_item_status.py +0 -0
  343. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_response_campaigns_item_type.py +0 -0
  344. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_shared_template_url_response.py +0 -0
  345. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/update_email_campaign_request_email_expiration_date.py +0 -0
  346. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/update_email_campaign_request_email_expiration_date_unit.py +0 -0
  347. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/update_email_campaign_request_recipients.py +0 -0
  348. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/update_email_campaign_request_sender.py +0 -0
  349. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/update_email_campaign_request_winner_criteria.py +0 -0
  350. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/upload_image_to_gallery_response.py +0 -0
  351. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/environment.py +0 -0
  352. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/__init__.py +0 -0
  353. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/bad_request_error.py +0 -0
  354. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/conflict_error.py +0 -0
  355. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/expectation_failed_error.py +0 -0
  356. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/failed_dependency_error.py +0 -0
  357. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/forbidden_error.py +0 -0
  358. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/internal_server_error.py +0 -0
  359. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/method_not_allowed_error.py +0 -0
  360. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/not_found_error.py +0 -0
  361. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/payment_required_error.py +0 -0
  362. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/precondition_failed_error.py +0 -0
  363. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/too_early_error.py +0 -0
  364. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/too_many_requests_error.py +0 -0
  365. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/unauthorized_error.py +0 -0
  366. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/unprocessable_entity_error.py +0 -0
  367. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/unsupported_media_type_error.py +0 -0
  368. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/__init__.py +0 -0
  369. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/__init__.py +0 -0
  370. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_batch_events_request_item.py +0 -0
  371. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_batch_events_request_item_contact_properties_value.py +0 -0
  372. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_batch_events_request_item_event_properties_value.py +0 -0
  373. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_batch_events_request_item_identifiers.py +0 -0
  374. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_batch_events_request_item_object.py +0 -0
  375. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_batch_events_request_item_object_identifiers.py +0 -0
  376. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_event_request_contact_properties_value.py +0 -0
  377. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_event_request_event_properties_value.py +0 -0
  378. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_event_request_identifiers.py +0 -0
  379. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_event_request_object.py +0 -0
  380. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_event_request_object_identifiers.py +0 -0
  381. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/__init__.py +0 -0
  382. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/client.py +0 -0
  383. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/raw_client.py +0 -0
  384. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/__init__.py +0 -0
  385. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/create_external_feed_request_auth_type.py +0 -0
  386. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/create_external_feed_request_headers_item.py +0 -0
  387. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/create_external_feed_response.py +0 -0
  388. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_all_external_feeds_request_auth_type.py +0 -0
  389. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_all_external_feeds_request_sort.py +0 -0
  390. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_all_external_feeds_response.py +0 -0
  391. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_all_external_feeds_response_feeds_item.py +0 -0
  392. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_all_external_feeds_response_feeds_item_auth_type.py +0 -0
  393. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_all_external_feeds_response_feeds_item_headers_item.py +0 -0
  394. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_external_feed_by_uuid_response.py +0 -0
  395. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_external_feed_by_uuid_response_auth_type.py +0 -0
  396. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_external_feed_by_uuid_response_headers_item.py +0 -0
  397. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/update_external_feed_request_auth_type.py +0 -0
  398. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/update_external_feed_request_headers_item.py +0 -0
  399. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/files/__init__.py +0 -0
  400. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/files/client.py +0 -0
  401. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/files/raw_client.py +0 -0
  402. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/files/types/__init__.py +0 -0
  403. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/files/types/get_crm_files_id_response.py +0 -0
  404. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/files/types/get_crm_files_request_entity.py +0 -0
  405. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/files/types/get_crm_files_request_sort.py +0 -0
  406. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/__init__.py +0 -0
  407. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/client.py +0 -0
  408. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/raw_client.py +0 -0
  409. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/__init__.py +0 -0
  410. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/get_inbound_email_events_by_uuid_response.py +0 -0
  411. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/get_inbound_email_events_by_uuid_response_attachments_item.py +0 -0
  412. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/get_inbound_email_events_by_uuid_response_logs_item.py +0 -0
  413. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/get_inbound_email_events_by_uuid_response_logs_item_type.py +0 -0
  414. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/get_inbound_email_events_request_sort.py +0 -0
  415. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/get_inbound_email_events_response.py +0 -0
  416. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/get_inbound_email_events_response_events_item.py +0 -0
  417. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/__init__.py +0 -0
  418. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/client.py +0 -0
  419. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/raw_client.py +0 -0
  420. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/__init__.py +0 -0
  421. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_group_id_response.py +0 -0
  422. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_group_id_response_group.py +0 -0
  423. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_group_id_response_sub_accounts_item.py +0 -0
  424. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_group_id_response_users_item.py +0 -0
  425. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_invited_users_list_response.py +0 -0
  426. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_invited_users_list_response_users_item.py +0 -0
  427. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_invited_users_list_response_users_item_feature_access.py +0 -0
  428. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_invited_users_list_response_users_item_groups.py +0 -0
  429. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_ip_response_item.py +0 -0
  430. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_master_account_response.py +0 -0
  431. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_master_account_response_billing_info.py +0 -0
  432. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_master_account_response_billing_info_address.py +0 -0
  433. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_master_account_response_billing_info_name.py +0 -0
  434. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_master_account_response_plan_info.py +0 -0
  435. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_master_account_response_plan_info_features_item.py +0 -0
  436. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_master_account_response_plan_info_plan_period.py +0 -0
  437. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response.py +0 -0
  438. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_groups_item.py +0 -0
  439. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info.py +0 -0
  440. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_credits.py +0 -0
  441. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_credits_emails.py +0 -0
  442. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_credits_external_feeds.py +0 -0
  443. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_credits_sms.py +0 -0
  444. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_credits_whatsapp.py +0 -0
  445. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_credits_wp_subscribers.py +0 -0
  446. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_features.py +0 -0
  447. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_features_inbox.py +0 -0
  448. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_features_landing_page.py +0 -0
  449. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_features_sales_users.py +0 -0
  450. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_features_users.py +0 -0
  451. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_response.py +0 -0
  452. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_response_sub_accounts_item.py +0 -0
  453. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_response_sub_accounts_item_groups_item.py +0 -0
  454. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_user_permission_response.py +0 -0
  455. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_user_permission_response_feature_access.py +0 -0
  456. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_user_permission_response_groups_item.py +0 -0
  457. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_sub_account_groups_response_item.py +0 -0
  458. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/invite_admin_user_request_privileges_item.py +0 -0
  459. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/invite_admin_user_request_privileges_item_feature.py +0 -0
  460. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/invite_admin_user_request_privileges_item_permissions_item.py +0 -0
  461. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/invite_admin_user_response.py +0 -0
  462. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/post_corporate_group_response.py +0 -0
  463. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/post_corporate_sub_account_key_response.py +0 -0
  464. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/post_corporate_sub_account_request_language.py +0 -0
  465. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/post_corporate_sub_account_response.py +0 -0
  466. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/post_corporate_sub_account_sso_token_request_target.py +0 -0
  467. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_sub_account_id_plan_request_credits.py +0 -0
  468. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_sub_account_id_plan_request_features.py +0 -0
  469. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_sub_accounts_plan_request_credits.py +0 -0
  470. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_sub_accounts_plan_request_features.py +0 -0
  471. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_user_email_permissions_request_privileges_item.py +0 -0
  472. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_user_email_permissions_request_privileges_item_feature.py +0 -0
  473. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_user_email_permissions_request_privileges_item_permissions_item.py +0 -0
  474. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_user_invitation_action_email_request_action.py +0 -0
  475. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_user_invitation_action_email_response.py +0 -0
  476. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/notes/__init__.py +0 -0
  477. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/notes/client.py +0 -0
  478. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/notes/raw_client.py +0 -0
  479. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/notes/types/__init__.py +0 -0
  480. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/notes/types/get_crm_notes_request_entity.py +0 -0
  481. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/notes/types/get_crm_notes_request_sort.py +0 -0
  482. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/notes/types/post_crm_notes_response.py +0 -0
  483. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/payments/__init__.py +0 -0
  484. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/payments/client.py +0 -0
  485. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/payments/raw_client.py +0 -0
  486. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/payments/types/__init__.py +0 -0
  487. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/payments/types/create_payment_request_response.py +0 -0
  488. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/payments/types/get_payment_request_response.py +0 -0
  489. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/payments/types/get_payment_request_response_status.py +0 -0
  490. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/__init__.py +0 -0
  491. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/client.py +0 -0
  492. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/raw_client.py +0 -0
  493. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/__init__.py +0 -0
  494. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_process_response.py +0 -0
  495. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_process_response_info.py +0 -0
  496. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_process_response_info_export.py +0 -0
  497. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_process_response_info_import.py +0 -0
  498. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_process_response_name.py +0 -0
  499. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_process_response_status.py +0 -0
  500. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_request_sort.py +0 -0
  501. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_response.py +0 -0
  502. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_response_processes_item.py +0 -0
  503. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_response_processes_item_info.py +0 -0
  504. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_response_processes_item_info_export.py +0 -0
  505. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_response_processes_item_info_import.py +0 -0
  506. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_response_processes_item_name.py +0 -0
  507. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_response_processes_item_status.py +0 -0
  508. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/__init__.py +0 -0
  509. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/__init__.py +0 -0
  510. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_lp_list_request_sort_field.py +0 -0
  511. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_lp_list_response.py +0 -0
  512. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_parameter_subscription_info_response.py +0 -0
  513. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_parameter_subscription_info_response_balance.py +0 -0
  514. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_parameter_subscription_info_response_balance_balances_item.py +0 -0
  515. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_parameter_subscription_info_response_members_item.py +0 -0
  516. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_parameter_subscription_info_response_reward_item.py +0 -0
  517. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_parameter_subscription_info_response_tier_item.py +0 -0
  518. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/subscribe_member_to_a_subscription_response.py +0 -0
  519. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/subscribe_to_loyalty_program_response.py +0 -0
  520. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/py.typed +0 -0
  521. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/__init__.py +0 -0
  522. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/client.py +0 -0
  523. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/raw_client.py +0 -0
  524. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/__init__.py +0 -0
  525. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/create_reward_response.py +0 -0
  526. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/create_voucher_response.py +0 -0
  527. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_code_count_response.py +0 -0
  528. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_offers_request_version.py +0 -0
  529. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_offers_response.py +0 -0
  530. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_offers_response_items_item.py +0 -0
  531. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_request_version.py +0 -0
  532. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response.py +0 -0
  533. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_expiration_modifier.py +0 -0
  534. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_generator.py +0 -0
  535. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_limits_item.py +0 -0
  536. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_products_item.py +0 -0
  537. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_reward_configs.py +0 -0
  538. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_rule.py +0 -0
  539. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_rule_event.py +0 -0
  540. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_rule_results_item.py +0 -0
  541. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_rule_results_item_parameters_item.py +0 -0
  542. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_vouchers_request_sort.py +0 -0
  543. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_vouchers_request_sort_field.py +0 -0
  544. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_vouchers_response.py +0 -0
  545. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_vouchers_response_contact_rewards_item.py +0 -0
  546. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/redeem_voucher_request_order.py +0 -0
  547. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/redeem_voucher_request_order_billing.py +0 -0
  548. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/redeem_voucher_request_order_identifiers.py +0 -0
  549. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/redeem_voucher_request_order_products_item.py +0 -0
  550. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/validate_reward_response.py +0 -0
  551. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/__init__.py +0 -0
  552. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/client.py +0 -0
  553. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/raw_client.py +0 -0
  554. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/__init__.py +0 -0
  555. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/create_sender_request_ips_item.py +0 -0
  556. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/create_sender_response.py +0 -0
  557. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/get_ips_from_sender_response.py +0 -0
  558. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/get_ips_from_sender_response_ips_item.py +0 -0
  559. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/get_ips_response.py +0 -0
  560. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/get_ips_response_ips_item.py +0 -0
  561. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/get_senders_response.py +0 -0
  562. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/get_senders_response_senders_item.py +0 -0
  563. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/get_senders_response_senders_item_ips_item.py +0 -0
  564. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/update_sender_request_ips_item.py +0 -0
  565. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/__init__.py +0 -0
  566. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/client.py +0 -0
  567. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/raw_client.py +0 -0
  568. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/__init__.py +0 -0
  569. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/create_sms_campaign_request_recipients.py +0 -0
  570. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/create_sms_campaign_response.py +0 -0
  571. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/get_sms_campaign_response.py +0 -0
  572. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/get_sms_campaign_response_status.py +0 -0
  573. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/get_sms_campaigns_request_sort.py +0 -0
  574. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/get_sms_campaigns_request_status.py +0 -0
  575. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/get_sms_campaigns_response.py +0 -0
  576. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/get_sms_campaigns_response_campaigns_item.py +0 -0
  577. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/get_sms_campaigns_response_campaigns_item_status.py +0 -0
  578. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/request_sms_recipient_export_request_recipients_type.py +0 -0
  579. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/request_sms_recipient_export_response.py +0 -0
  580. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/update_sms_campaign_request_recipients.py +0 -0
  581. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/__init__.py +0 -0
  582. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/client.py +0 -0
  583. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/raw_client.py +0 -0
  584. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/types/__init__.py +0 -0
  585. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/types/get_sms_templates_request_sort.py +0 -0
  586. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/types/get_sms_templates_response.py +0 -0
  587. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/types/get_sms_templates_response_templates_item.py +0 -0
  588. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/types/get_sms_templates_response_templates_item_compliance.py +0 -0
  589. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/__init__.py +0 -0
  590. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/client.py +0 -0
  591. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/raw_client.py +0 -0
  592. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/types/__init__.py +0 -0
  593. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/types/get_crm_tasks_request_filter_date.py +0 -0
  594. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/types/get_crm_tasks_request_filter_status.py +0 -0
  595. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/types/get_crm_tasks_request_sort.py +0 -0
  596. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/types/get_crm_tasks_response.py +0 -0
  597. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/types/get_crm_tasktypes_response.py +0 -0
  598. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/types/post_crm_tasks_response.py +0 -0
  599. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/add_subscription_to_tier_response.py +0 -0
  600. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/create_tier_for_tier_group_request_access_conditions_item.py +0 -0
  601. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/create_tier_for_tier_group_request_tier_rewards_item.py +0 -0
  602. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/create_tier_group_request_downgrade_strategy.py +0 -0
  603. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/create_tier_group_request_upgrade_strategy.py +0 -0
  604. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/get_list_of_tier_groups_request_version.py +0 -0
  605. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/get_list_of_tier_groups_response.py +0 -0
  606. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/get_loyalty_program_tier_request_version.py +0 -0
  607. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/get_loyalty_program_tier_response.py +0 -0
  608. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/get_tier_group_request_version.py +0 -0
  609. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/update_tier_group_request_downgrade_strategy.py +0 -0
  610. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/update_tier_group_request_upgrade_strategy.py +0 -0
  611. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/update_tier_request_access_conditions_item.py +0 -0
  612. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/update_tier_request_tier_rewards_item.py +0 -0
  613. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/__init__.py +0 -0
  614. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/client.py +0 -0
  615. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/raw_client.py +0 -0
  616. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/__init__.py +0 -0
  617. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/create_smtp_template_request_sender.py +0 -0
  618. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/create_smtp_template_response.py +0 -0
  619. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_aggregated_smtp_report_response.py +0 -0
  620. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_blocked_domains_response.py +0 -0
  621. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_email_event_report_request_event.py +0 -0
  622. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_email_event_report_request_sort.py +0 -0
  623. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_email_event_report_response.py +0 -0
  624. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_email_event_report_response_events_item.py +0 -0
  625. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_email_event_report_response_events_item_event.py +0 -0
  626. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_request_sort.py +0 -0
  627. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_request_status.py +0 -0
  628. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_response.py +0 -0
  629. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_response_batches.py +0 -0
  630. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_response_batches_batches_item.py +0 -0
  631. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_response_batches_batches_item_status.py +0 -0
  632. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_response_created_at.py +0 -0
  633. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_response_created_at_status.py +0 -0
  634. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_smtp_report_request_sort.py +0 -0
  635. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_smtp_report_response.py +0 -0
  636. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_smtp_report_response_reports_item.py +0 -0
  637. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_smtp_templates_request_sort.py +0 -0
  638. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_smtp_templates_response.py +0 -0
  639. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_blocked_contacts_request_sort.py +0 -0
  640. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_blocked_contacts_response.py +0 -0
  641. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_blocked_contacts_response_contacts_item.py +0 -0
  642. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_blocked_contacts_response_contacts_item_reason.py +0 -0
  643. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_blocked_contacts_response_contacts_item_reason_code.py +0 -0
  644. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_email_content_response.py +0 -0
  645. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_email_content_response_events_item.py +0 -0
  646. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_emails_list_request_sort.py +0 -0
  647. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_emails_list_response.py +0 -0
  648. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_emails_list_response_transactional_emails_item.py +0 -0
  649. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/post_preview_smtp_email_templates_response.py +0 -0
  650. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_attachment_item.py +0 -0
  651. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_bcc_item.py +0 -0
  652. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_cc_item.py +0 -0
  653. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_message_versions_item.py +0 -0
  654. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_message_versions_item_bcc_item.py +0 -0
  655. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_message_versions_item_cc_item.py +0 -0
  656. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_message_versions_item_reply_to.py +0 -0
  657. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_message_versions_item_to_item.py +0 -0
  658. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_reply_to.py +0 -0
  659. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_sender.py +0 -0
  660. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_to_item.py +0 -0
  661. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_response.py +0 -0
  662. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/update_smtp_template_request_sender.py +0 -0
  663. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/__init__.py +0 -0
  664. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/client.py +0 -0
  665. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/raw_client.py +0 -0
  666. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/__init__.py +0 -0
  667. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_sms_events_request_event.py +0 -0
  668. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_sms_events_request_sort.py +0 -0
  669. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_sms_events_response.py +0 -0
  670. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_sms_events_response_events_item.py +0 -0
  671. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_sms_events_response_events_item_event.py +0 -0
  672. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_transac_aggregated_sms_report_response.py +0 -0
  673. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_transac_sms_report_request_sort.py +0 -0
  674. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_transac_sms_report_response.py +0 -0
  675. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_transac_sms_report_response_reports_item.py +0 -0
  676. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/send_async_transactional_sms_response.py +0 -0
  677. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/send_transac_sms_response.py +0 -0
  678. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/__init__.py +0 -0
  679. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/client.py +0 -0
  680. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/raw_client.py +0 -0
  681. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/__init__.py +0 -0
  682. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/get_whatsapp_event_report_request_event.py +0 -0
  683. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/get_whatsapp_event_report_request_sort.py +0 -0
  684. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/get_whatsapp_event_report_response.py +0 -0
  685. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/get_whatsapp_event_report_response_events_item.py +0 -0
  686. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/get_whatsapp_event_report_response_events_item_event.py +0 -0
  687. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/send_whatsapp_message_request.py +0 -0
  688. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/send_whatsapp_message_request_params.py +0 -0
  689. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/send_whatsapp_message_request_text.py +0 -0
  690. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/send_whatsapp_message_response.py +0 -0
  691. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/ab_test_version_clicks.py +0 -0
  692. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/ab_test_version_clicks_item.py +0 -0
  693. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/ab_test_version_stats.py +0 -0
  694. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/bad_request_error_body.py +0 -0
  695. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/bad_request_error_body_code.py +0 -0
  696. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/balance_definition.py +0 -0
  697. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/balance_definition_balance_availability_duration_modifier.py +0 -0
  698. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/balance_limit.py +0 -0
  699. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/batch_events_response.py +0 -0
  700. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/batch_events_response_errors_item.py +0 -0
  701. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/cart.py +0 -0
  702. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/company.py +0 -0
  703. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/configuration.py +0 -0
  704. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/contact_error_model.py +0 -0
  705. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/contact_error_model_code.py +0 -0
  706. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message.py +0 -0
  707. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_attachments_item.py +0 -0
  708. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_bcc_item.py +0 -0
  709. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_cc_item.py +0 -0
  710. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_file.py +0 -0
  711. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_file_image_info.py +0 -0
  712. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_forwarded_to_source_status.py +0 -0
  713. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_from.py +0 -0
  714. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_reply_to.py +0 -0
  715. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_to_item.py +0 -0
  716. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_type.py +0 -0
  717. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversion_source_metrics.py +0 -0
  718. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversion_source_metrics_conversion_source.py +0 -0
  719. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/create_update_folder.py +0 -0
  720. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/deal.py +0 -0
  721. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/error_model.py +0 -0
  722. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/file_data.py +0 -0
  723. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/forbidden_error_body.py +0 -0
  724. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/forbidden_error_body_code.py +0 -0
  725. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_campaign_recipients.py +0 -0
  726. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_campaign_stats.py +0 -0
  727. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_category_details.py +0 -0
  728. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_contact_details.py +0 -0
  729. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_contact_details_attributes.py +0 -0
  730. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_contacts.py +0 -0
  731. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_coupon_collection.py +0 -0
  732. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_device_browser_stats.py +0 -0
  733. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_extended_campaign_overview.py +0 -0
  734. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_extended_campaign_overview_sender.py +0 -0
  735. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_extended_campaign_overview_status.py +0 -0
  736. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_extended_campaign_overview_type.py +0 -0
  737. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_extended_campaign_stats.py +0 -0
  738. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_extended_campaign_stats_links_stats.py +0 -0
  739. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_extended_campaign_stats_stats_by_device.py +0 -0
  740. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_folder.py +0 -0
  741. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_list.py +0 -0
  742. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_sms_campaign_overview.py +0 -0
  743. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_sms_campaign_overview_status.py +0 -0
  744. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_sms_campaign_stats.py +0 -0
  745. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_smtp_template_overview.py +0 -0
  746. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_smtp_template_overview_sender.py +0 -0
  747. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_sso_token.py +0 -0
  748. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_webhook.py +0 -0
  749. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_webhook_channel.py +0 -0
  750. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_webhook_type.py +0 -0
  751. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/inviteuser.py +0 -0
  752. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/inviteuser_privileges_item.py +0 -0
  753. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/inviteuser_privileges_item_feature.py +0 -0
  754. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/inviteuser_privileges_item_permissions_item.py +0 -0
  755. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/loyalty_program.py +0 -0
  756. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/loyalty_program_state.py +0 -0
  757. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/node_response.py +0 -0
  758. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/not_found_error_body.py +0 -0
  759. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/not_found_error_body_code.py +0 -0
  760. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/note.py +0 -0
  761. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/note_data.py +0 -0
  762. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/notification.py +0 -0
  763. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/order.py +0 -0
  764. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/order_billing.py +0 -0
  765. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/order_identifiers.py +0 -0
  766. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/order_meta_info_value.py +0 -0
  767. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/order_products_item.py +0 -0
  768. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/pipeline.py +0 -0
  769. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/pipeline_stages_item.py +0 -0
  770. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/pipelines.py +0 -0
  771. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/post_contact_info.py +0 -0
  772. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/post_contact_info_contacts.py +0 -0
  773. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/post_contact_info_contacts_failure.py +0 -0
  774. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/post_contact_info_contacts_success.py +0 -0
  775. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/post_send_failed.py +0 -0
  776. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/redeem.py +0 -0
  777. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/rule_condition_response.py +0 -0
  778. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_report.py +0 -0
  779. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_report_email.py +0 -0
  780. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_report_language.py +0 -0
  781. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_test_email.py +0 -0
  782. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_transac_sms.py +0 -0
  783. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_transac_sms_tag.py +0 -0
  784. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_transac_sms_tag_field.py +0 -0
  785. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_transac_sms_type.py +0 -0
  786. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/task.py +0 -0
  787. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/task_reminder.py +0 -0
  788. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/task_reminder_types_item.py +0 -0
  789. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/task_reminder_unit.py +0 -0
  790. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/tier.py +0 -0
  791. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/tier_access_conditions_item.py +0 -0
  792. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/tier_group.py +0 -0
  793. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/tier_group_downgrade_strategy.py +0 -0
  794. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/tier_group_upgrade_strategy.py +0 -0
  795. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/tier_tier_rewards_item.py +0 -0
  796. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/transaction.py +0 -0
  797. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/unauthorized_error_body.py +0 -0
  798. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/unauthorized_error_body_code.py +0 -0
  799. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/update_campaign_status.py +0 -0
  800. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/update_campaign_status_status.py +0 -0
  801. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/value_response.py +0 -0
  802. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/variables_items.py +0 -0
  803. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/whatsapp_camp_stats.py +0 -0
  804. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/__init__.py +0 -0
  805. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/client.py +0 -0
  806. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/raw_client.py +0 -0
  807. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/__init__.py +0 -0
  808. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/edit_user_permission_response.py +0 -0
  809. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/get_invited_users_list_response.py +0 -0
  810. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/get_invited_users_list_response_users_item.py +0 -0
  811. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/get_invited_users_list_response_users_item_feature_access.py +0 -0
  812. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/get_user_permission_response.py +0 -0
  813. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/get_user_permission_response_privileges_item.py +0 -0
  814. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/inviteuser_response.py +0 -0
  815. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/put_revoke_user_permission_response.py +0 -0
  816. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/putresendcancelinvitation_request_action.py +0 -0
  817. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/putresendcancelinvitation_response.py +0 -0
  818. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/version.py +0 -0
  819. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/__init__.py +0 -0
  820. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/client.py +0 -0
  821. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/raw_client.py +0 -0
  822. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/__init__.py +0 -0
  823. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/create_webhook_request_auth.py +0 -0
  824. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/create_webhook_request_channel.py +0 -0
  825. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/create_webhook_request_events_item.py +0 -0
  826. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/create_webhook_request_headers_item.py +0 -0
  827. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/create_webhook_request_type.py +0 -0
  828. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/create_webhook_response.py +0 -0
  829. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/export_webhooks_history_request_event.py +0 -0
  830. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/export_webhooks_history_request_type.py +0 -0
  831. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/export_webhooks_history_response.py +0 -0
  832. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/get_webhooks_request_sort.py +0 -0
  833. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/get_webhooks_request_type.py +0 -0
  834. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/get_webhooks_response.py +0 -0
  835. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/update_webhook_request_auth.py +0 -0
  836. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/update_webhook_request_events_item.py +0 -0
  837. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/update_webhook_request_headers_item.py +0 -0
  838. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/__init__.py +0 -0
  839. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/client.py +0 -0
  840. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/raw_client.py +0 -0
  841. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/__init__.py +0 -0
  842. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/create_whats_app_campaign_request_recipients.py +0 -0
  843. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/create_whats_app_campaign_response.py +0 -0
  844. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/create_whats_app_template_request_category.py +0 -0
  845. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/create_whats_app_template_request_source.py +0 -0
  846. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/create_whats_app_template_response.py +0 -0
  847. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaign_response.py +0 -0
  848. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaign_response_campaign_status.py +0 -0
  849. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaign_response_template.py +0 -0
  850. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaign_response_template_components_item.py +0 -0
  851. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaigns_request_sort.py +0 -0
  852. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaigns_response.py +0 -0
  853. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaigns_response_campaigns_item.py +0 -0
  854. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaigns_response_campaigns_item_campaign_status.py +0 -0
  855. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_config_response.py +0 -0
  856. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_config_response_phone_number_name_status.py +0 -0
  857. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_config_response_phone_number_quality.py +0 -0
  858. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_config_response_whatsapp_business_account_status.py +0 -0
  859. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_templates_request_sort.py +0 -0
  860. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_templates_request_source.py +0 -0
  861. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_templates_response.py +0 -0
  862. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_templates_response_templates_item.py +0 -0
  863. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/update_whats_app_campaign_request_campaign_status.py +0 -0
  864. {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/update_whats_app_campaign_request_recipients.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: brevo-python
3
- Version: 4.0.7
3
+ Version: 4.0.9
4
4
  Summary:
5
5
  Keywords: api,sdk,client,brevo,sendinblue,transactional,email,sms,marketing,automation
6
6
  Requires-Python: >=3.8,<4.0
@@ -4,7 +4,7 @@ dynamic = ["version"]
4
4
 
5
5
  [tool.poetry]
6
6
  name = "brevo-python"
7
- version = "4.0.7"
7
+ version = "4.0.9"
8
8
  description = ""
9
9
  readme = "README.md"
10
10
  authors = []
@@ -15,6 +15,7 @@ if typing.TYPE_CHECKING:
15
15
  BalanceDefinition,
16
16
  BalanceDefinitionBalanceAvailabilityDurationModifier,
17
17
  BalanceLimit,
18
+ BatchAcceptedResponse,
18
19
  BatchEventsResponse,
19
20
  BatchEventsResponseErrorsItem,
20
21
  BrevoError,
@@ -50,6 +51,8 @@ if typing.TYPE_CHECKING:
50
51
  GetContacts,
51
52
  GetCouponCollection,
52
53
  GetDeviceBrowserStats,
54
+ GetEventsList,
55
+ GetEventsListEventsItem,
53
56
  GetExtendedCampaignOverview,
54
57
  GetExtendedCampaignOverviewSender,
55
58
  GetExtendedCampaignOverviewStatus,
@@ -69,6 +72,8 @@ if typing.TYPE_CHECKING:
69
72
  GetWebhook,
70
73
  GetWebhookChannel,
71
74
  GetWebhookType,
75
+ InternalServerErrorBody,
76
+ InternalServerErrorBodyCode,
72
77
  Inviteuser,
73
78
  InviteuserPrivilegesItem,
74
79
  InviteuserPrivilegesItemFeature,
@@ -204,6 +209,8 @@ if typing.TYPE_CHECKING:
204
209
  GetContactBalancesResponse,
205
210
  GetContactBalancesResponseBalancesItem,
206
211
  GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort,
212
+ GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus,
213
+ GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType,
207
214
  GetLoyaltyBalanceProgramsPidTransactionHistoryResponse,
208
215
  GetLoyaltyBalanceProgramsPidTransactionHistoryResponseTransactionHistoryItem,
209
216
  GetSubscriptionBalancesResponse,
@@ -213,6 +220,7 @@ if typing.TYPE_CHECKING:
213
220
  PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionAmountOvertakingStrategy,
214
221
  PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionCreditRounding,
215
222
  PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionDebitRounding,
223
+ PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta,
216
224
  PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestUnit,
217
225
  PostLoyaltyBalanceProgramsPidSubscriptionsCidBalancesResponse,
218
226
  UpdateBalanceDefinitionRequestBalanceAvailabilityDurationModifier,
@@ -220,6 +228,7 @@ if typing.TYPE_CHECKING:
220
228
  UpdateBalanceDefinitionRequestBalanceOptionAmountOvertakingStrategy,
221
229
  UpdateBalanceDefinitionRequestBalanceOptionCreditRounding,
222
230
  UpdateBalanceDefinitionRequestBalanceOptionDebitRounding,
231
+ UpdateBalanceDefinitionRequestMeta,
223
232
  UpdateBalanceDefinitionRequestUnit,
224
233
  UpdateBalanceLimitRequestConstraintType,
225
234
  UpdateBalanceLimitRequestDurationUnit,
@@ -653,6 +662,7 @@ if typing.TYPE_CHECKING:
653
662
  CreateTierForTierGroupRequestAccessConditionsItem,
654
663
  CreateTierForTierGroupRequestTierRewardsItem,
655
664
  CreateTierGroupRequestDowngradeStrategy,
665
+ CreateTierGroupRequestMeta,
656
666
  CreateTierGroupRequestUpgradeStrategy,
657
667
  GetListOfTierGroupsRequestVersion,
658
668
  GetListOfTierGroupsResponse,
@@ -660,6 +670,7 @@ if typing.TYPE_CHECKING:
660
670
  GetLoyaltyProgramTierResponse,
661
671
  GetTierGroupRequestVersion,
662
672
  UpdateTierGroupRequestDowngradeStrategy,
673
+ UpdateTierGroupRequestMeta,
663
674
  UpdateTierGroupRequestUpgradeStrategy,
664
675
  UpdateTierRequestAccessConditionsItem,
665
676
  UpdateTierRequestTierRewardsItem,
@@ -808,6 +819,7 @@ _dynamic_imports: typing.Dict[str, str] = {
808
819
  "BalanceDefinition": ".types",
809
820
  "BalanceDefinitionBalanceAvailabilityDurationModifier": ".types",
810
821
  "BalanceLimit": ".types",
822
+ "BatchAcceptedResponse": ".types",
811
823
  "BatchDeleteObjectRecordsRequestIdentifiers": ".custom_objects",
812
824
  "BatchDeleteObjectRecordsRequestIdentifiersExtIds": ".custom_objects",
813
825
  "BatchDeleteObjectRecordsRequestIdentifiersIds": ".custom_objects",
@@ -887,6 +899,7 @@ _dynamic_imports: typing.Dict[str, str] = {
887
899
  "CreateTierForTierGroupRequestAccessConditionsItem": ".tier",
888
900
  "CreateTierForTierGroupRequestTierRewardsItem": ".tier",
889
901
  "CreateTierGroupRequestDowngradeStrategy": ".tier",
902
+ "CreateTierGroupRequestMeta": ".tier",
890
903
  "CreateTierGroupRequestUpgradeStrategy": ".tier",
891
904
  "CreateUpdateBatchCategoryRequestCategoriesItem": ".ecommerce",
892
905
  "CreateUpdateBatchCategoryResponse": ".ecommerce",
@@ -1100,6 +1113,8 @@ _dynamic_imports: typing.Dict[str, str] = {
1100
1113
  "GetEmailEventReportResponse": ".transactional_emails",
1101
1114
  "GetEmailEventReportResponseEventsItem": ".transactional_emails",
1102
1115
  "GetEmailEventReportResponseEventsItemEvent": ".transactional_emails",
1116
+ "GetEventsList": ".types",
1117
+ "GetEventsListEventsItem": ".types",
1103
1118
  "GetExtendedCampaignOverview": ".types",
1104
1119
  "GetExtendedCampaignOverviewSender": ".types",
1105
1120
  "GetExtendedCampaignOverviewStatus": ".types",
@@ -1138,6 +1153,8 @@ _dynamic_imports: typing.Dict[str, str] = {
1138
1153
  "GetListsResponse": ".contacts",
1139
1154
  "GetListsResponseListsItem": ".contacts",
1140
1155
  "GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort": ".balance",
1156
+ "GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus": ".balance",
1157
+ "GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType": ".balance",
1141
1158
  "GetLoyaltyBalanceProgramsPidTransactionHistoryResponse": ".balance",
1142
1159
  "GetLoyaltyBalanceProgramsPidTransactionHistoryResponseTransactionHistoryItem": ".balance",
1143
1160
  "GetLoyaltyOfferProgramsPidOffersRequestVersion": ".reward",
@@ -1299,6 +1316,8 @@ _dynamic_imports: typing.Dict[str, str] = {
1299
1316
  "ImportContactsRequestNewList": ".contacts",
1300
1317
  "ImportContactsResponse": ".contacts",
1301
1318
  "InternalServerError": ".errors",
1319
+ "InternalServerErrorBody": ".types",
1320
+ "InternalServerErrorBodyCode": ".types",
1302
1321
  "InviteAdminUserRequestPrivilegesItem": ".master_account",
1303
1322
  "InviteAdminUserRequestPrivilegesItemFeature": ".master_account",
1304
1323
  "InviteAdminUserRequestPrivilegesItemPermissionsItem": ".master_account",
@@ -1352,6 +1371,7 @@ _dynamic_imports: typing.Dict[str, str] = {
1352
1371
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionAmountOvertakingStrategy": ".balance",
1353
1372
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionCreditRounding": ".balance",
1354
1373
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionDebitRounding": ".balance",
1374
+ "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta": ".balance",
1355
1375
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestUnit": ".balance",
1356
1376
  "PostLoyaltyBalanceProgramsPidSubscriptionsCidBalancesResponse": ".balance",
1357
1377
  "PostPreviewSmtpEmailTemplatesResponse": ".transactional_emails",
@@ -1442,6 +1462,7 @@ _dynamic_imports: typing.Dict[str, str] = {
1442
1462
  "UpdateBalanceDefinitionRequestBalanceOptionAmountOvertakingStrategy": ".balance",
1443
1463
  "UpdateBalanceDefinitionRequestBalanceOptionCreditRounding": ".balance",
1444
1464
  "UpdateBalanceDefinitionRequestBalanceOptionDebitRounding": ".balance",
1465
+ "UpdateBalanceDefinitionRequestMeta": ".balance",
1445
1466
  "UpdateBalanceDefinitionRequestUnit": ".balance",
1446
1467
  "UpdateBalanceLimitRequestConstraintType": ".balance",
1447
1468
  "UpdateBalanceLimitRequestDurationUnit": ".balance",
@@ -1464,6 +1485,7 @@ _dynamic_imports: typing.Dict[str, str] = {
1464
1485
  "UpdateSmsCampaignRequestRecipients": ".sms_campaigns",
1465
1486
  "UpdateSmtpTemplateRequestSender": ".transactional_emails",
1466
1487
  "UpdateTierGroupRequestDowngradeStrategy": ".tier",
1488
+ "UpdateTierGroupRequestMeta": ".tier",
1467
1489
  "UpdateTierGroupRequestUpgradeStrategy": ".tier",
1468
1490
  "UpdateTierRequestAccessConditionsItem": ".tier",
1469
1491
  "UpdateTierRequestTierRewardsItem": ".tier",
@@ -1563,6 +1585,7 @@ __all__ = [
1563
1585
  "BalanceDefinition",
1564
1586
  "BalanceDefinitionBalanceAvailabilityDurationModifier",
1565
1587
  "BalanceLimit",
1588
+ "BatchAcceptedResponse",
1566
1589
  "BatchDeleteObjectRecordsRequestIdentifiers",
1567
1590
  "BatchDeleteObjectRecordsRequestIdentifiersExtIds",
1568
1591
  "BatchDeleteObjectRecordsRequestIdentifiersIds",
@@ -1642,6 +1665,7 @@ __all__ = [
1642
1665
  "CreateTierForTierGroupRequestAccessConditionsItem",
1643
1666
  "CreateTierForTierGroupRequestTierRewardsItem",
1644
1667
  "CreateTierGroupRequestDowngradeStrategy",
1668
+ "CreateTierGroupRequestMeta",
1645
1669
  "CreateTierGroupRequestUpgradeStrategy",
1646
1670
  "CreateUpdateBatchCategoryRequestCategoriesItem",
1647
1671
  "CreateUpdateBatchCategoryResponse",
@@ -1855,6 +1879,8 @@ __all__ = [
1855
1879
  "GetEmailEventReportResponse",
1856
1880
  "GetEmailEventReportResponseEventsItem",
1857
1881
  "GetEmailEventReportResponseEventsItemEvent",
1882
+ "GetEventsList",
1883
+ "GetEventsListEventsItem",
1858
1884
  "GetExtendedCampaignOverview",
1859
1885
  "GetExtendedCampaignOverviewSender",
1860
1886
  "GetExtendedCampaignOverviewStatus",
@@ -1893,6 +1919,8 @@ __all__ = [
1893
1919
  "GetListsResponse",
1894
1920
  "GetListsResponseListsItem",
1895
1921
  "GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort",
1922
+ "GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus",
1923
+ "GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType",
1896
1924
  "GetLoyaltyBalanceProgramsPidTransactionHistoryResponse",
1897
1925
  "GetLoyaltyBalanceProgramsPidTransactionHistoryResponseTransactionHistoryItem",
1898
1926
  "GetLoyaltyOfferProgramsPidOffersRequestVersion",
@@ -2054,6 +2082,8 @@ __all__ = [
2054
2082
  "ImportContactsRequestNewList",
2055
2083
  "ImportContactsResponse",
2056
2084
  "InternalServerError",
2085
+ "InternalServerErrorBody",
2086
+ "InternalServerErrorBodyCode",
2057
2087
  "InviteAdminUserRequestPrivilegesItem",
2058
2088
  "InviteAdminUserRequestPrivilegesItemFeature",
2059
2089
  "InviteAdminUserRequestPrivilegesItemPermissionsItem",
@@ -2107,6 +2137,7 @@ __all__ = [
2107
2137
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionAmountOvertakingStrategy",
2108
2138
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionCreditRounding",
2109
2139
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionDebitRounding",
2140
+ "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta",
2110
2141
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestUnit",
2111
2142
  "PostLoyaltyBalanceProgramsPidSubscriptionsCidBalancesResponse",
2112
2143
  "PostPreviewSmtpEmailTemplatesResponse",
@@ -2197,6 +2228,7 @@ __all__ = [
2197
2228
  "UpdateBalanceDefinitionRequestBalanceOptionAmountOvertakingStrategy",
2198
2229
  "UpdateBalanceDefinitionRequestBalanceOptionCreditRounding",
2199
2230
  "UpdateBalanceDefinitionRequestBalanceOptionDebitRounding",
2231
+ "UpdateBalanceDefinitionRequestMeta",
2200
2232
  "UpdateBalanceDefinitionRequestUnit",
2201
2233
  "UpdateBalanceLimitRequestConstraintType",
2202
2234
  "UpdateBalanceLimitRequestDurationUnit",
@@ -2219,6 +2251,7 @@ __all__ = [
2219
2251
  "UpdateSmsCampaignRequestRecipients",
2220
2252
  "UpdateSmtpTemplateRequestSender",
2221
2253
  "UpdateTierGroupRequestDowngradeStrategy",
2254
+ "UpdateTierGroupRequestMeta",
2222
2255
  "UpdateTierGroupRequestUpgradeStrategy",
2223
2256
  "UpdateTierRequestAccessConditionsItem",
2224
2257
  "UpdateTierRequestTierRewardsItem",
@@ -20,6 +20,8 @@ if typing.TYPE_CHECKING:
20
20
  GetContactBalancesResponse,
21
21
  GetContactBalancesResponseBalancesItem,
22
22
  GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort,
23
+ GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus,
24
+ GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType,
23
25
  GetLoyaltyBalanceProgramsPidTransactionHistoryResponse,
24
26
  GetLoyaltyBalanceProgramsPidTransactionHistoryResponseTransactionHistoryItem,
25
27
  GetSubscriptionBalancesResponse,
@@ -29,6 +31,7 @@ if typing.TYPE_CHECKING:
29
31
  PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionAmountOvertakingStrategy,
30
32
  PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionCreditRounding,
31
33
  PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionDebitRounding,
34
+ PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta,
32
35
  PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestUnit,
33
36
  PostLoyaltyBalanceProgramsPidSubscriptionsCidBalancesResponse,
34
37
  UpdateBalanceDefinitionRequestBalanceAvailabilityDurationModifier,
@@ -36,6 +39,7 @@ if typing.TYPE_CHECKING:
36
39
  UpdateBalanceDefinitionRequestBalanceOptionAmountOvertakingStrategy,
37
40
  UpdateBalanceDefinitionRequestBalanceOptionCreditRounding,
38
41
  UpdateBalanceDefinitionRequestBalanceOptionDebitRounding,
42
+ UpdateBalanceDefinitionRequestMeta,
39
43
  UpdateBalanceDefinitionRequestUnit,
40
44
  UpdateBalanceLimitRequestConstraintType,
41
45
  UpdateBalanceLimitRequestDurationUnit,
@@ -55,6 +59,8 @@ _dynamic_imports: typing.Dict[str, str] = {
55
59
  "GetContactBalancesResponse": ".types",
56
60
  "GetContactBalancesResponseBalancesItem": ".types",
57
61
  "GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort": ".types",
62
+ "GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus": ".types",
63
+ "GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType": ".types",
58
64
  "GetLoyaltyBalanceProgramsPidTransactionHistoryResponse": ".types",
59
65
  "GetLoyaltyBalanceProgramsPidTransactionHistoryResponseTransactionHistoryItem": ".types",
60
66
  "GetSubscriptionBalancesResponse": ".types",
@@ -64,6 +70,7 @@ _dynamic_imports: typing.Dict[str, str] = {
64
70
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionAmountOvertakingStrategy": ".types",
65
71
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionCreditRounding": ".types",
66
72
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionDebitRounding": ".types",
73
+ "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta": ".types",
67
74
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestUnit": ".types",
68
75
  "PostLoyaltyBalanceProgramsPidSubscriptionsCidBalancesResponse": ".types",
69
76
  "UpdateBalanceDefinitionRequestBalanceAvailabilityDurationModifier": ".types",
@@ -71,6 +78,7 @@ _dynamic_imports: typing.Dict[str, str] = {
71
78
  "UpdateBalanceDefinitionRequestBalanceOptionAmountOvertakingStrategy": ".types",
72
79
  "UpdateBalanceDefinitionRequestBalanceOptionCreditRounding": ".types",
73
80
  "UpdateBalanceDefinitionRequestBalanceOptionDebitRounding": ".types",
81
+ "UpdateBalanceDefinitionRequestMeta": ".types",
74
82
  "UpdateBalanceDefinitionRequestUnit": ".types",
75
83
  "UpdateBalanceLimitRequestConstraintType": ".types",
76
84
  "UpdateBalanceLimitRequestDurationUnit": ".types",
@@ -113,6 +121,8 @@ __all__ = [
113
121
  "GetContactBalancesResponse",
114
122
  "GetContactBalancesResponseBalancesItem",
115
123
  "GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort",
124
+ "GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus",
125
+ "GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType",
116
126
  "GetLoyaltyBalanceProgramsPidTransactionHistoryResponse",
117
127
  "GetLoyaltyBalanceProgramsPidTransactionHistoryResponseTransactionHistoryItem",
118
128
  "GetSubscriptionBalancesResponse",
@@ -122,6 +132,7 @@ __all__ = [
122
132
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionAmountOvertakingStrategy",
123
133
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionCreditRounding",
124
134
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionDebitRounding",
135
+ "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta",
125
136
  "PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestUnit",
126
137
  "PostLoyaltyBalanceProgramsPidSubscriptionsCidBalancesResponse",
127
138
  "UpdateBalanceDefinitionRequestBalanceAvailabilityDurationModifier",
@@ -129,6 +140,7 @@ __all__ = [
129
140
  "UpdateBalanceDefinitionRequestBalanceOptionAmountOvertakingStrategy",
130
141
  "UpdateBalanceDefinitionRequestBalanceOptionCreditRounding",
131
142
  "UpdateBalanceDefinitionRequestBalanceOptionDebitRounding",
143
+ "UpdateBalanceDefinitionRequestMeta",
132
144
  "UpdateBalanceDefinitionRequestUnit",
133
145
  "UpdateBalanceLimitRequestConstraintType",
134
146
  "UpdateBalanceLimitRequestDurationUnit",
@@ -23,6 +23,12 @@ from .types.get_contact_balances_response import GetContactBalancesResponse
23
23
  from .types.get_loyalty_balance_programs_pid_transaction_history_request_sort import (
24
24
  GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort,
25
25
  )
26
+ from .types.get_loyalty_balance_programs_pid_transaction_history_request_status import (
27
+ GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus,
28
+ )
29
+ from .types.get_loyalty_balance_programs_pid_transaction_history_request_transaction_type import (
30
+ GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType,
31
+ )
26
32
  from .types.get_loyalty_balance_programs_pid_transaction_history_response import (
27
33
  GetLoyaltyBalanceProgramsPidTransactionHistoryResponse,
28
34
  )
@@ -42,6 +48,9 @@ from .types.post_loyalty_balance_programs_pid_balance_definitions_request_balanc
42
48
  from .types.post_loyalty_balance_programs_pid_balance_definitions_request_balance_option_debit_rounding import (
43
49
  PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionDebitRounding,
44
50
  )
51
+ from .types.post_loyalty_balance_programs_pid_balance_definitions_request_meta import (
52
+ PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta,
53
+ )
45
54
  from .types.post_loyalty_balance_programs_pid_balance_definitions_request_unit import (
46
55
  PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestUnit,
47
56
  )
@@ -63,6 +72,7 @@ from .types.update_balance_definition_request_balance_option_credit_rounding imp
63
72
  from .types.update_balance_definition_request_balance_option_debit_rounding import (
64
73
  UpdateBalanceDefinitionRequestBalanceOptionDebitRounding,
65
74
  )
75
+ from .types.update_balance_definition_request_meta import UpdateBalanceDefinitionRequestMeta
66
76
  from .types.update_balance_definition_request_unit import UpdateBalanceDefinitionRequestUnit
67
77
  from .types.update_balance_limit_request_constraint_type import UpdateBalanceLimitRequestConstraintType
68
78
  from .types.update_balance_limit_request_duration_unit import UpdateBalanceLimitRequestDurationUnit
@@ -97,6 +107,7 @@ class BalanceClient:
97
107
  offset: typing.Optional[int] = None,
98
108
  sort_field: typing.Optional[str] = None,
99
109
  sort: typing.Optional[str] = None,
110
+ include_internal: typing.Optional[bool] = None,
100
111
  request_options: typing.Optional[RequestOptions] = None,
101
112
  ) -> BalanceLimit:
102
113
  """
@@ -125,6 +136,9 @@ class BalanceClient:
125
136
  sort : typing.Optional[str]
126
137
  Sort Order
127
138
 
139
+ include_internal : typing.Optional[bool]
140
+ Include balances tied to internal definitions.
141
+
128
142
  request_options : typing.Optional[RequestOptions]
129
143
  Request-specific configuration.
130
144
 
@@ -154,6 +168,7 @@ class BalanceClient:
154
168
  offset=offset,
155
169
  sort_field=sort_field,
156
170
  sort=sort,
171
+ include_internal=include_internal,
157
172
  request_options=request_options,
158
173
  )
159
174
  return _response.data
@@ -250,7 +265,7 @@ class BalanceClient:
250
265
  max_amount: typing.Optional[float] = OMIT,
251
266
  max_credit_amount_limit: typing.Optional[float] = OMIT,
252
267
  max_debit_amount_limit: typing.Optional[float] = OMIT,
253
- meta: typing.Optional[typing.Dict[str, typing.Any]] = OMIT,
268
+ meta: typing.Optional[PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta] = OMIT,
254
269
  min_amount: typing.Optional[float] = OMIT,
255
270
  request_options: typing.Optional[RequestOptions] = None,
256
271
  ) -> BalanceDefinition:
@@ -304,7 +319,7 @@ class BalanceClient:
304
319
  max_debit_amount_limit : typing.Optional[float]
305
320
  Maximum debit allowed per operation.
306
321
 
307
- meta : typing.Optional[typing.Dict[str, typing.Any]]
322
+ meta : typing.Optional[PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta]
308
323
  Additional metadata for the balance definition.
309
324
 
310
325
  min_amount : typing.Optional[float]
@@ -425,7 +440,7 @@ class BalanceClient:
425
440
  max_amount: typing.Optional[float] = OMIT,
426
441
  max_credit_amount_limit: typing.Optional[float] = OMIT,
427
442
  max_debit_amount_limit: typing.Optional[float] = OMIT,
428
- meta: typing.Optional[typing.Dict[str, typing.Any]] = OMIT,
443
+ meta: typing.Optional[UpdateBalanceDefinitionRequestMeta] = OMIT,
429
444
  min_amount: typing.Optional[float] = OMIT,
430
445
  request_options: typing.Optional[RequestOptions] = None,
431
446
  ) -> BalanceDefinition:
@@ -482,7 +497,7 @@ class BalanceClient:
482
497
  max_debit_amount_limit : typing.Optional[float]
483
498
  Maximum debit allowed per operation.
484
499
 
485
- meta : typing.Optional[typing.Dict[str, typing.Any]]
500
+ meta : typing.Optional[UpdateBalanceDefinitionRequestMeta]
486
501
  Optional metadata for the balance definition.
487
502
 
488
503
  min_amount : typing.Optional[float]
@@ -828,7 +843,11 @@ class BalanceClient:
828
843
  return _response.data
829
844
 
830
845
  def get_contact_balances(
831
- self, pid: str, *, request_options: typing.Optional[RequestOptions] = None
846
+ self,
847
+ pid: str,
848
+ *,
849
+ include_internal: typing.Optional[bool] = None,
850
+ request_options: typing.Optional[RequestOptions] = None,
832
851
  ) -> GetContactBalancesResponse:
833
852
  """
834
853
  Returns balance list
@@ -838,6 +857,9 @@ class BalanceClient:
838
857
  pid : str
839
858
  Loyalty Program Id
840
859
 
860
+ include_internal : typing.Optional[bool]
861
+ Include balances tied to internal definitions.
862
+
841
863
  request_options : typing.Optional[RequestOptions]
842
864
  Request-specific configuration.
843
865
 
@@ -857,7 +879,9 @@ class BalanceClient:
857
879
  pid="pid",
858
880
  )
859
881
  """
860
- _response = self._raw_client.get_contact_balances(pid, request_options=request_options)
882
+ _response = self._raw_client.get_contact_balances(
883
+ pid, include_internal=include_internal, request_options=request_options
884
+ )
861
885
  return _response.data
862
886
 
863
887
  def create_balance_order(
@@ -940,7 +964,12 @@ class BalanceClient:
940
964
  return _response.data
941
965
 
942
966
  def get_subscription_balances(
943
- self, pid: str, cid: str, *, request_options: typing.Optional[RequestOptions] = None
967
+ self,
968
+ pid: str,
969
+ cid: str,
970
+ *,
971
+ include_internal: typing.Optional[bool] = None,
972
+ request_options: typing.Optional[RequestOptions] = None,
944
973
  ) -> GetSubscriptionBalancesResponse:
945
974
  """
946
975
  Returns subscription balances
@@ -953,6 +982,9 @@ class BalanceClient:
953
982
  cid : str
954
983
  Contact Id
955
984
 
985
+ include_internal : typing.Optional[bool]
986
+ Include balances tied to internal definitions.
987
+
956
988
  request_options : typing.Optional[RequestOptions]
957
989
  Request-specific configuration.
958
990
 
@@ -973,7 +1005,9 @@ class BalanceClient:
973
1005
  cid="cid",
974
1006
  )
975
1007
  """
976
- _response = self._raw_client.get_subscription_balances(pid, cid, request_options=request_options)
1008
+ _response = self._raw_client.get_subscription_balances(
1009
+ pid, cid, include_internal=include_internal, request_options=request_options
1010
+ )
977
1011
  return _response.data
978
1012
 
979
1013
  def create_subscription_balances(
@@ -1030,6 +1064,8 @@ class BalanceClient:
1030
1064
  sort_field: typing.Optional[typing.Literal["createdAt"]] = None,
1031
1065
  sort: typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort] = None,
1032
1066
  filters: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
1067
+ status: typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus] = None,
1068
+ transaction_type: typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType] = None,
1033
1069
  request_options: typing.Optional[RequestOptions] = None,
1034
1070
  ) -> GetLoyaltyBalanceProgramsPidTransactionHistoryResponse:
1035
1071
  """
@@ -1050,7 +1086,7 @@ class BalanceClient:
1050
1086
  Limit the number of records returned
1051
1087
 
1052
1088
  offset : typing.Optional[int]
1053
- Skip a number of records
1089
+ Page number to retrieve
1054
1090
 
1055
1091
  sort_field : typing.Optional[typing.Literal["createdAt"]]
1056
1092
  Field to sort by
@@ -1061,6 +1097,12 @@ class BalanceClient:
1061
1097
  filters : typing.Optional[typing.Union[str, typing.Sequence[str]]]
1062
1098
  Filters to apply
1063
1099
 
1100
+ status : typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus]
1101
+ Transaction status filter. Allowed values: draft, completed, rejected, cancelled, expired
1102
+
1103
+ transaction_type : typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType]
1104
+ Transaction type filter. Allowed values: credit, debit
1105
+
1064
1106
  request_options : typing.Optional[RequestOptions]
1065
1107
  Request-specific configuration.
1066
1108
 
@@ -1091,6 +1133,8 @@ class BalanceClient:
1091
1133
  sort_field=sort_field,
1092
1134
  sort=sort,
1093
1135
  filters=filters,
1136
+ status=status,
1137
+ transaction_type=transaction_type,
1094
1138
  request_options=request_options,
1095
1139
  )
1096
1140
  return _response.data
@@ -1281,6 +1325,7 @@ class AsyncBalanceClient:
1281
1325
  offset: typing.Optional[int] = None,
1282
1326
  sort_field: typing.Optional[str] = None,
1283
1327
  sort: typing.Optional[str] = None,
1328
+ include_internal: typing.Optional[bool] = None,
1284
1329
  request_options: typing.Optional[RequestOptions] = None,
1285
1330
  ) -> BalanceLimit:
1286
1331
  """
@@ -1309,6 +1354,9 @@ class AsyncBalanceClient:
1309
1354
  sort : typing.Optional[str]
1310
1355
  Sort Order
1311
1356
 
1357
+ include_internal : typing.Optional[bool]
1358
+ Include balances tied to internal definitions.
1359
+
1312
1360
  request_options : typing.Optional[RequestOptions]
1313
1361
  Request-specific configuration.
1314
1362
 
@@ -1346,6 +1394,7 @@ class AsyncBalanceClient:
1346
1394
  offset=offset,
1347
1395
  sort_field=sort_field,
1348
1396
  sort=sort,
1397
+ include_internal=include_internal,
1349
1398
  request_options=request_options,
1350
1399
  )
1351
1400
  return _response.data
@@ -1450,7 +1499,7 @@ class AsyncBalanceClient:
1450
1499
  max_amount: typing.Optional[float] = OMIT,
1451
1500
  max_credit_amount_limit: typing.Optional[float] = OMIT,
1452
1501
  max_debit_amount_limit: typing.Optional[float] = OMIT,
1453
- meta: typing.Optional[typing.Dict[str, typing.Any]] = OMIT,
1502
+ meta: typing.Optional[PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta] = OMIT,
1454
1503
  min_amount: typing.Optional[float] = OMIT,
1455
1504
  request_options: typing.Optional[RequestOptions] = None,
1456
1505
  ) -> BalanceDefinition:
@@ -1504,7 +1553,7 @@ class AsyncBalanceClient:
1504
1553
  max_debit_amount_limit : typing.Optional[float]
1505
1554
  Maximum debit allowed per operation.
1506
1555
 
1507
- meta : typing.Optional[typing.Dict[str, typing.Any]]
1556
+ meta : typing.Optional[PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta]
1508
1557
  Additional metadata for the balance definition.
1509
1558
 
1510
1559
  min_amount : typing.Optional[float]
@@ -1643,7 +1692,7 @@ class AsyncBalanceClient:
1643
1692
  max_amount: typing.Optional[float] = OMIT,
1644
1693
  max_credit_amount_limit: typing.Optional[float] = OMIT,
1645
1694
  max_debit_amount_limit: typing.Optional[float] = OMIT,
1646
- meta: typing.Optional[typing.Dict[str, typing.Any]] = OMIT,
1695
+ meta: typing.Optional[UpdateBalanceDefinitionRequestMeta] = OMIT,
1647
1696
  min_amount: typing.Optional[float] = OMIT,
1648
1697
  request_options: typing.Optional[RequestOptions] = None,
1649
1698
  ) -> BalanceDefinition:
@@ -1700,7 +1749,7 @@ class AsyncBalanceClient:
1700
1749
  max_debit_amount_limit : typing.Optional[float]
1701
1750
  Maximum debit allowed per operation.
1702
1751
 
1703
- meta : typing.Optional[typing.Dict[str, typing.Any]]
1752
+ meta : typing.Optional[UpdateBalanceDefinitionRequestMeta]
1704
1753
  Optional metadata for the balance definition.
1705
1754
 
1706
1755
  min_amount : typing.Optional[float]
@@ -2094,7 +2143,11 @@ class AsyncBalanceClient:
2094
2143
  return _response.data
2095
2144
 
2096
2145
  async def get_contact_balances(
2097
- self, pid: str, *, request_options: typing.Optional[RequestOptions] = None
2146
+ self,
2147
+ pid: str,
2148
+ *,
2149
+ include_internal: typing.Optional[bool] = None,
2150
+ request_options: typing.Optional[RequestOptions] = None,
2098
2151
  ) -> GetContactBalancesResponse:
2099
2152
  """
2100
2153
  Returns balance list
@@ -2104,6 +2157,9 @@ class AsyncBalanceClient:
2104
2157
  pid : str
2105
2158
  Loyalty Program Id
2106
2159
 
2160
+ include_internal : typing.Optional[bool]
2161
+ Include balances tied to internal definitions.
2162
+
2107
2163
  request_options : typing.Optional[RequestOptions]
2108
2164
  Request-specific configuration.
2109
2165
 
@@ -2131,7 +2187,9 @@ class AsyncBalanceClient:
2131
2187
 
2132
2188
  asyncio.run(main())
2133
2189
  """
2134
- _response = await self._raw_client.get_contact_balances(pid, request_options=request_options)
2190
+ _response = await self._raw_client.get_contact_balances(
2191
+ pid, include_internal=include_internal, request_options=request_options
2192
+ )
2135
2193
  return _response.data
2136
2194
 
2137
2195
  async def create_balance_order(
@@ -2222,7 +2280,12 @@ class AsyncBalanceClient:
2222
2280
  return _response.data
2223
2281
 
2224
2282
  async def get_subscription_balances(
2225
- self, pid: str, cid: str, *, request_options: typing.Optional[RequestOptions] = None
2283
+ self,
2284
+ pid: str,
2285
+ cid: str,
2286
+ *,
2287
+ include_internal: typing.Optional[bool] = None,
2288
+ request_options: typing.Optional[RequestOptions] = None,
2226
2289
  ) -> GetSubscriptionBalancesResponse:
2227
2290
  """
2228
2291
  Returns subscription balances
@@ -2235,6 +2298,9 @@ class AsyncBalanceClient:
2235
2298
  cid : str
2236
2299
  Contact Id
2237
2300
 
2301
+ include_internal : typing.Optional[bool]
2302
+ Include balances tied to internal definitions.
2303
+
2238
2304
  request_options : typing.Optional[RequestOptions]
2239
2305
  Request-specific configuration.
2240
2306
 
@@ -2263,7 +2329,9 @@ class AsyncBalanceClient:
2263
2329
 
2264
2330
  asyncio.run(main())
2265
2331
  """
2266
- _response = await self._raw_client.get_subscription_balances(pid, cid, request_options=request_options)
2332
+ _response = await self._raw_client.get_subscription_balances(
2333
+ pid, cid, include_internal=include_internal, request_options=request_options
2334
+ )
2267
2335
  return _response.data
2268
2336
 
2269
2337
  async def create_subscription_balances(
@@ -2328,6 +2396,8 @@ class AsyncBalanceClient:
2328
2396
  sort_field: typing.Optional[typing.Literal["createdAt"]] = None,
2329
2397
  sort: typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort] = None,
2330
2398
  filters: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
2399
+ status: typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus] = None,
2400
+ transaction_type: typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType] = None,
2331
2401
  request_options: typing.Optional[RequestOptions] = None,
2332
2402
  ) -> GetLoyaltyBalanceProgramsPidTransactionHistoryResponse:
2333
2403
  """
@@ -2348,7 +2418,7 @@ class AsyncBalanceClient:
2348
2418
  Limit the number of records returned
2349
2419
 
2350
2420
  offset : typing.Optional[int]
2351
- Skip a number of records
2421
+ Page number to retrieve
2352
2422
 
2353
2423
  sort_field : typing.Optional[typing.Literal["createdAt"]]
2354
2424
  Field to sort by
@@ -2359,6 +2429,12 @@ class AsyncBalanceClient:
2359
2429
  filters : typing.Optional[typing.Union[str, typing.Sequence[str]]]
2360
2430
  Filters to apply
2361
2431
 
2432
+ status : typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus]
2433
+ Transaction status filter. Allowed values: draft, completed, rejected, cancelled, expired
2434
+
2435
+ transaction_type : typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType]
2436
+ Transaction type filter. Allowed values: credit, debit
2437
+
2362
2438
  request_options : typing.Optional[RequestOptions]
2363
2439
  Request-specific configuration.
2364
2440
 
@@ -2397,6 +2473,8 @@ class AsyncBalanceClient:
2397
2473
  sort_field=sort_field,
2398
2474
  sort=sort,
2399
2475
  filters=filters,
2476
+ status=status,
2477
+ transaction_type=transaction_type,
2400
2478
  request_options=request_options,
2401
2479
  )
2402
2480
  return _response.data