whop-sdk 0.0.1__tar.gz → 0.0.2__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.

Potentially problematic release.


This version of whop-sdk might be problematic. Click here for more details.

Files changed (302) hide show
  1. whop_sdk-0.0.2/.release-please-manifest.json +3 -0
  2. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/CHANGELOG.md +19 -0
  3. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/PKG-INFO +2 -2
  4. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/api.md +44 -0
  5. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/pyproject.toml +2 -2
  6. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/requirements-dev.lock +1 -1
  7. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/requirements.lock +1 -1
  8. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_client.py +18 -0
  9. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_version.py +1 -1
  10. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/__init__.py +28 -0
  11. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/checkout_configurations.py +12 -12
  12. whop_sdk-0.0.2/src/whop_sdk/resources/forums.py +446 -0
  13. whop_sdk-0.0.2/src/whop_sdk/resources/members.py +421 -0
  14. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/plans.py +10 -4
  15. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/__init__.py +25 -0
  16. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/app_list_response.py +16 -1
  17. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/checkout_configuration_create_params.py +5 -5
  18. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/checkout_configuration_list_response.py +9 -9
  19. whop_sdk-0.0.2/src/whop_sdk/types/course_lesson_interaction_completed_webhook_event.py +26 -0
  20. whop_sdk-0.0.2/src/whop_sdk/types/entry_approved_webhook_event.py +26 -0
  21. whop_sdk-0.0.2/src/whop_sdk/types/entry_created_webhook_event.py +26 -0
  22. whop_sdk-0.0.2/src/whop_sdk/types/entry_deleted_webhook_event.py +26 -0
  23. whop_sdk-0.0.2/src/whop_sdk/types/entry_denied_webhook_event.py +26 -0
  24. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/experience_list_response.py +27 -1
  25. whop_sdk-0.0.2/src/whop_sdk/types/forum_list_params.py +28 -0
  26. whop_sdk-0.0.2/src/whop_sdk/types/forum_list_response.py +33 -0
  27. whop_sdk-0.0.2/src/whop_sdk/types/forum_update_params.py +23 -0
  28. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_create_params.py +10 -2
  29. whop_sdk-0.0.2/src/whop_sdk/types/member_list_params.py +70 -0
  30. whop_sdk-0.0.2/src/whop_sdk/types/member_list_response.py +65 -0
  31. whop_sdk-0.0.2/src/whop_sdk/types/member_retrieve_response.py +79 -0
  32. whop_sdk-0.0.2/src/whop_sdk/types/membership_activated_webhook_event.py +29 -0
  33. whop_sdk-0.0.2/src/whop_sdk/types/membership_deactivated_webhook_event.py +29 -0
  34. whop_sdk-0.0.2/src/whop_sdk/types/payment_failed_webhook_event.py +26 -0
  35. whop_sdk-0.0.2/src/whop_sdk/types/payment_pending_webhook_event.py +26 -0
  36. whop_sdk-0.0.2/src/whop_sdk/types/payment_succeeded_webhook_event.py +26 -0
  37. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/plan_create_params.py +10 -2
  38. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/__init__.py +7 -0
  39. whop_sdk-0.0.2/src/whop_sdk/types/shared/access_level.py +7 -0
  40. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/app.py +25 -1
  41. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/checkout_configuration.py +9 -9
  42. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/company.py +15 -1
  43. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/course_lesson_interaction.py +20 -1
  44. whop_sdk-0.0.2/src/whop_sdk/types/shared/email_notification_preferences.py +7 -0
  45. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/experience.py +27 -1
  46. whop_sdk-0.0.2/src/whop_sdk/types/shared/forum.py +33 -0
  47. whop_sdk-0.0.2/src/whop_sdk/types/shared/member_most_recent_actions.py +22 -0
  48. whop_sdk-0.0.2/src/whop_sdk/types/shared/member_statuses.py +7 -0
  49. whop_sdk-0.0.2/src/whop_sdk/types/shared/who_can_comment_types.py +7 -0
  50. whop_sdk-0.0.2/src/whop_sdk/types/shared/who_can_post_types.py +7 -0
  51. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/__init__.py +6 -0
  52. whop_sdk-0.0.2/src/whop_sdk/types/shared_params/access_level.py +9 -0
  53. whop_sdk-0.0.2/src/whop_sdk/types/shared_params/email_notification_preferences.py +9 -0
  54. whop_sdk-0.0.2/src/whop_sdk/types/shared_params/member_most_recent_actions.py +24 -0
  55. whop_sdk-0.0.2/src/whop_sdk/types/shared_params/member_statuses.py +9 -0
  56. whop_sdk-0.0.2/src/whop_sdk/types/shared_params/who_can_comment_types.py +9 -0
  57. whop_sdk-0.0.2/src/whop_sdk/types/shared_params/who_can_post_types.py +9 -0
  58. whop_sdk-0.0.2/src/whop_sdk/types/unwrap_webhook_event.py +38 -0
  59. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/user_check_access_response.py +2 -3
  60. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/user_retrieve_response.py +12 -1
  61. whop_sdk-0.0.2/tests/api_resources/test_forums.py +310 -0
  62. whop_sdk-0.0.2/tests/api_resources/test_members.py +224 -0
  63. whop_sdk-0.0.1/.release-please-manifest.json +0 -3
  64. whop_sdk-0.0.1/src/whop_sdk/types/unwrap_webhook_event.py +0 -15
  65. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/.gitignore +0 -0
  66. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/CONTRIBUTING.md +0 -0
  67. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/LICENSE +0 -0
  68. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/README.md +0 -0
  69. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/SECURITY.md +0 -0
  70. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/bin/check-release-environment +0 -0
  71. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/bin/publish-pypi +0 -0
  72. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/examples/.keep +0 -0
  73. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/noxfile.py +0 -0
  74. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/release-please-config.json +0 -0
  75. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/__init__.py +0 -0
  76. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_base_client.py +0 -0
  77. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_compat.py +0 -0
  78. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_constants.py +0 -0
  79. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_exceptions.py +0 -0
  80. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_files.py +0 -0
  81. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_models.py +0 -0
  82. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_qs.py +0 -0
  83. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_resource.py +0 -0
  84. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_response.py +0 -0
  85. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_streaming.py +0 -0
  86. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_types.py +0 -0
  87. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/__init__.py +0 -0
  88. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_compat.py +0 -0
  89. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_datetime_parse.py +0 -0
  90. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_logs.py +0 -0
  91. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_proxy.py +0 -0
  92. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_reflection.py +0 -0
  93. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_resources_proxy.py +0 -0
  94. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_streams.py +0 -0
  95. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_sync.py +0 -0
  96. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_transform.py +0 -0
  97. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_typing.py +0 -0
  98. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_utils.py +0 -0
  99. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/lib/.keep +0 -0
  100. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/pagination.py +0 -0
  101. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/py.typed +0 -0
  102. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/app_builds.py +0 -0
  103. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/apps.py +0 -0
  104. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/authorized_users.py +0 -0
  105. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/chat_channels.py +0 -0
  106. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/companies.py +0 -0
  107. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/course_lesson_interactions.py +0 -0
  108. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/entries.py +0 -0
  109. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/experiences.py +0 -0
  110. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/forum_posts.py +0 -0
  111. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/invoices.py +0 -0
  112. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/ledger_accounts.py +0 -0
  113. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/memberships.py +0 -0
  114. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/messages.py +0 -0
  115. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/payments.py +0 -0
  116. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/products.py +0 -0
  117. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/reactions.py +0 -0
  118. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/shipments.py +0 -0
  119. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/support_channels.py +0 -0
  120. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/transfers.py +0 -0
  121. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/users.py +0 -0
  122. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/webhooks.py +0 -0
  123. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/app_build_create_params.py +0 -0
  124. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/app_build_list_params.py +0 -0
  125. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/app_build_list_response.py +0 -0
  126. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/app_create_params.py +0 -0
  127. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/app_list_params.py +0 -0
  128. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/app_update_params.py +0 -0
  129. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/authorized_user_list_params.py +0 -0
  130. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/authorized_user_list_response.py +0 -0
  131. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/authorized_user_retrieve_response.py +0 -0
  132. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/chat_channel_list_params.py +0 -0
  133. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/chat_channel_list_response.py +0 -0
  134. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/chat_channel_update_params.py +0 -0
  135. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/checkout_configuration_list_params.py +0 -0
  136. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/course_lesson_interaction_list_params.py +0 -0
  137. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/entry_approve_response.py +0 -0
  138. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/entry_list_params.py +0 -0
  139. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/entry_list_response.py +0 -0
  140. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/experience_attach_params.py +0 -0
  141. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/experience_create_params.py +0 -0
  142. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/experience_delete_response.py +0 -0
  143. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/experience_detach_params.py +0 -0
  144. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/experience_list_params.py +0 -0
  145. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/experience_update_params.py +0 -0
  146. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/forum_post_create_params.py +0 -0
  147. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/forum_post_list_params.py +0 -0
  148. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/forum_post_list_response.py +0 -0
  149. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_create_response.py +0 -0
  150. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_created_webhook_event.py +0 -0
  151. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_list_params.py +0 -0
  152. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_paid_webhook_event.py +0 -0
  153. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_past_due_webhook_event.py +0 -0
  154. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_void_response.py +0 -0
  155. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_voided_webhook_event.py +0 -0
  156. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/ledger_account_retrieve_response.py +0 -0
  157. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/membership_cancel_params.py +0 -0
  158. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/membership_list_params.py +0 -0
  159. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/membership_list_response.py +0 -0
  160. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/membership_pause_params.py +0 -0
  161. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/membership_update_params.py +0 -0
  162. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/message_create_params.py +0 -0
  163. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/message_list_params.py +0 -0
  164. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/message_list_response.py +0 -0
  165. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/payment_list_params.py +0 -0
  166. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/payment_list_response.py +0 -0
  167. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/payment_refund_params.py +0 -0
  168. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/plan_delete_response.py +0 -0
  169. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/plan_list_params.py +0 -0
  170. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/plan_list_response.py +0 -0
  171. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/plan_update_params.py +0 -0
  172. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/product_create_params.py +0 -0
  173. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/product_delete_response.py +0 -0
  174. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/product_list_params.py +0 -0
  175. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/product_update_params.py +0 -0
  176. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/reaction_create_params.py +0 -0
  177. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/reaction_list_params.py +0 -0
  178. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/reaction_list_response.py +0 -0
  179. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/access_pass_type.py +0 -0
  180. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/app_build.py +0 -0
  181. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/app_build_platforms.py +0 -0
  182. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/app_build_statuses.py +0 -0
  183. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/app_statuses.py +0 -0
  184. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/app_view_type.py +0 -0
  185. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/authorized_user_roles.py +0 -0
  186. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/business_types.py +0 -0
  187. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/chat_channel.py +0 -0
  188. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/collection_method.py +0 -0
  189. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/course_lesson_interaction_list_item.py +0 -0
  190. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/currency.py +0 -0
  191. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/custom_cta.py +0 -0
  192. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/direction.py +0 -0
  193. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/dms_post_types.py +0 -0
  194. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/entry.py +0 -0
  195. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/entry_status.py +0 -0
  196. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/forum_post.py +0 -0
  197. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/friendly_receipt_status.py +0 -0
  198. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/global_affiliate_status.py +0 -0
  199. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/industry_types.py +0 -0
  200. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/invoice.py +0 -0
  201. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/invoice_list_item.py +0 -0
  202. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/invoice_status.py +0 -0
  203. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/membership.py +0 -0
  204. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/membership_status.py +0 -0
  205. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/message.py +0 -0
  206. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/page_info.py +0 -0
  207. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/payment.py +0 -0
  208. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/plan.py +0 -0
  209. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/plan_type.py +0 -0
  210. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/product.py +0 -0
  211. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/product_list_item.py +0 -0
  212. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/promo_type.py +0 -0
  213. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/reaction.py +0 -0
  214. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/receipt_status.py +0 -0
  215. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/release_method.py +0 -0
  216. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/shipment.py +0 -0
  217. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/shipment_carrier.py +0 -0
  218. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/shipment_status.py +0 -0
  219. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/shipment_substatus.py +0 -0
  220. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/support_channel.py +0 -0
  221. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/tax_type.py +0 -0
  222. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/transfer.py +0 -0
  223. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/visibility.py +0 -0
  224. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/visibility_filter.py +0 -0
  225. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/who_can_post.py +0 -0
  226. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/who_can_react.py +0 -0
  227. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/access_pass_type.py +0 -0
  228. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/app_build_platforms.py +0 -0
  229. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/app_build_statuses.py +0 -0
  230. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/app_statuses.py +0 -0
  231. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/app_view_type.py +0 -0
  232. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/authorized_user_roles.py +0 -0
  233. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/business_types.py +0 -0
  234. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/collection_method.py +0 -0
  235. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/currency.py +0 -0
  236. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/custom_cta.py +0 -0
  237. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/direction.py +0 -0
  238. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/entry_status.py +0 -0
  239. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/friendly_receipt_status.py +0 -0
  240. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/global_affiliate_status.py +0 -0
  241. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/industry_types.py +0 -0
  242. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/invoice_status.py +0 -0
  243. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/membership_status.py +0 -0
  244. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/plan_type.py +0 -0
  245. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/receipt_status.py +0 -0
  246. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/release_method.py +0 -0
  247. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/tax_type.py +0 -0
  248. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/visibility.py +0 -0
  249. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/visibility_filter.py +0 -0
  250. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/who_can_post.py +0 -0
  251. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/who_can_react.py +0 -0
  252. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shipment_create_params.py +0 -0
  253. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shipment_list_params.py +0 -0
  254. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shipment_list_response.py +0 -0
  255. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/support_channel_create_params.py +0 -0
  256. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/support_channel_list_params.py +0 -0
  257. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/support_channel_list_response.py +0 -0
  258. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/transfer_create_params.py +0 -0
  259. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/transfer_list_params.py +0 -0
  260. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/transfer_list_response.py +0 -0
  261. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whopsdk/lib/.keep +0 -0
  262. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/__init__.py +0 -0
  263. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/__init__.py +0 -0
  264. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_app_builds.py +0 -0
  265. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_apps.py +0 -0
  266. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_authorized_users.py +0 -0
  267. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_chat_channels.py +0 -0
  268. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_checkout_configurations.py +0 -0
  269. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_companies.py +0 -0
  270. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_course_lesson_interactions.py +0 -0
  271. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_entries.py +0 -0
  272. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_experiences.py +0 -0
  273. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_forum_posts.py +0 -0
  274. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_invoices.py +0 -0
  275. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_ledger_accounts.py +0 -0
  276. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_memberships.py +0 -0
  277. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_messages.py +0 -0
  278. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_payments.py +0 -0
  279. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_plans.py +0 -0
  280. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_products.py +0 -0
  281. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_reactions.py +0 -0
  282. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_shipments.py +0 -0
  283. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_support_channels.py +0 -0
  284. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_transfers.py +0 -0
  285. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_users.py +0 -0
  286. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_webhooks.py +0 -0
  287. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/conftest.py +0 -0
  288. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/sample_file.txt +0 -0
  289. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_client.py +0 -0
  290. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_deepcopy.py +0 -0
  291. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_extract_files.py +0 -0
  292. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_files.py +0 -0
  293. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_models.py +0 -0
  294. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_qs.py +0 -0
  295. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_required_args.py +0 -0
  296. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_response.py +0 -0
  297. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_streaming.py +0 -0
  298. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_transform.py +0 -0
  299. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_utils/test_datetime_parse.py +0 -0
  300. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_utils/test_proxy.py +0 -0
  301. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_utils/test_typing.py +0 -0
  302. {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/utils.py +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.0.2"
3
+ }
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.0.2 (2025-10-22)
4
+
5
+ Full Changelog: [v0.0.1...v0.0.2](https://github.com/whopio/whopsdk-python/compare/v0.0.1...v0.0.2)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([2d9ebee](https://github.com/whopio/whopsdk-python/commit/2d9ebeebfa02aed3ec8b515d0e5b11de07062a38))
10
+ * **api:** api update ([5663cf4](https://github.com/whopio/whopsdk-python/commit/5663cf45944bf6f9d236b7a77aac23ce7f17fb61))
11
+ * **api:** api update ([d3d6d23](https://github.com/whopio/whopsdk-python/commit/d3d6d2364fbac6ec7e828471093c27e5bdba8527))
12
+ * **api:** api update ([f05be6f](https://github.com/whopio/whopsdk-python/commit/f05be6fd65bbd8fca4400d2e38e727153a72de43))
13
+ * **api:** api update ([cb2935f](https://github.com/whopio/whopsdk-python/commit/cb2935feaef3aa0fe324bf2bb2bb193c96b12275))
14
+ * **api:** api update ([d66c088](https://github.com/whopio/whopsdk-python/commit/d66c08873a123a5b65a5fa6f17e66ec6668e37a3))
15
+ * **api:** manual updates ([e0bea9f](https://github.com/whopio/whopsdk-python/commit/e0bea9ff169b03e85ba7111ccd7cbe1f4a1eb4cf))
16
+
17
+
18
+ ### Chores
19
+
20
+ * bump `httpx-aiohttp` version to 0.1.9 ([a946c15](https://github.com/whopio/whopsdk-python/commit/a946c15a8d418258f8d259714e725922e44c9389))
21
+
3
22
  ## 0.0.1 (2025-10-16)
4
23
 
5
24
  Full Changelog: [v0.0.1...v0.0.1](https://github.com/whopio/whopsdk-python/compare/v0.0.1...v0.0.1)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: whop-sdk
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: The official Python library for the Whop API
5
5
  Project-URL: Homepage, https://github.com/whopio/whopsdk-python
6
6
  Project-URL: Repository, https://github.com/whopio/whopsdk-python
@@ -30,7 +30,7 @@ Requires-Dist: sniffio
30
30
  Requires-Dist: typing-extensions<5,>=4.10
31
31
  Provides-Extra: aiohttp
32
32
  Requires-Dist: aiohttp; extra == 'aiohttp'
33
- Requires-Dist: httpx-aiohttp>=0.1.8; extra == 'aiohttp'
33
+ Requires-Dist: httpx-aiohttp>=0.1.9; extra == 'aiohttp'
34
34
  Provides-Extra: webhooks
35
35
  Requires-Dist: standardwebhooks; extra == 'webhooks'
36
36
  Description-Content-Type: text/markdown
@@ -2,6 +2,7 @@
2
2
 
3
3
  ```python
4
4
  from whop_sdk.types import (
5
+ AccessLevel,
5
6
  AccessPassType,
6
7
  App,
7
8
  AppBuild,
@@ -21,9 +22,11 @@ from whop_sdk.types import (
21
22
  CustomCta,
22
23
  Direction,
23
24
  DmsPostTypes,
25
+ EmailNotificationPreferences,
24
26
  Entry,
25
27
  EntryStatus,
26
28
  Experience,
29
+ Forum,
27
30
  ForumPost,
28
31
  FriendlyReceiptStatus,
29
32
  GlobalAffiliateStatus,
@@ -31,6 +34,8 @@ from whop_sdk.types import (
31
34
  Invoice,
32
35
  InvoiceListItem,
33
36
  InvoiceStatus,
37
+ MemberMostRecentActions,
38
+ MemberStatuses,
34
39
  Membership,
35
40
  MembershipStatus,
36
41
  Message,
@@ -53,7 +58,9 @@ from whop_sdk.types import (
53
58
  Transfer,
54
59
  Visibility,
55
60
  VisibilityFilter,
61
+ WhoCanCommentTypes,
56
62
  WhoCanPost,
63
+ WhoCanPostTypes,
57
64
  WhoCanReact,
58
65
  )
59
66
  ```
@@ -127,6 +134,16 @@ from whop_sdk.types import (
127
134
  InvoicePaidWebhookEvent,
128
135
  InvoicePastDueWebhookEvent,
129
136
  InvoiceVoidedWebhookEvent,
137
+ MembershipActivatedWebhookEvent,
138
+ MembershipDeactivatedWebhookEvent,
139
+ EntryCreatedWebhookEvent,
140
+ EntryApprovedWebhookEvent,
141
+ EntryDeniedWebhookEvent,
142
+ EntryDeletedWebhookEvent,
143
+ CourseLessonInteractionCompletedWebhookEvent,
144
+ PaymentSucceededWebhookEvent,
145
+ PaymentFailedWebhookEvent,
146
+ PaymentPendingWebhookEvent,
130
147
  UnwrapWebhookEvent,
131
148
  )
132
149
  ```
@@ -377,3 +394,30 @@ Methods:
377
394
  - <code title="post /reactions">client.reactions.<a href="./src/whop_sdk/resources/reactions.py">create</a>(\*\*<a href="src/whop_sdk/types/reaction_create_params.py">params</a>) -> <a href="./src/whop_sdk/types/shared/reaction.py">Reaction</a></code>
378
395
  - <code title="get /reactions/{id}">client.reactions.<a href="./src/whop_sdk/resources/reactions.py">retrieve</a>(id) -> <a href="./src/whop_sdk/types/shared/reaction.py">Reaction</a></code>
379
396
  - <code title="get /reactions">client.reactions.<a href="./src/whop_sdk/resources/reactions.py">list</a>(\*\*<a href="src/whop_sdk/types/reaction_list_params.py">params</a>) -> <a href="./src/whop_sdk/types/reaction_list_response.py">SyncCursorPage[ReactionListResponse]</a></code>
397
+
398
+ # Members
399
+
400
+ Types:
401
+
402
+ ```python
403
+ from whop_sdk.types import MemberRetrieveResponse, MemberListResponse
404
+ ```
405
+
406
+ Methods:
407
+
408
+ - <code title="get /members/{id}">client.members.<a href="./src/whop_sdk/resources/members.py">retrieve</a>(id) -> <a href="./src/whop_sdk/types/member_retrieve_response.py">MemberRetrieveResponse</a></code>
409
+ - <code title="get /members">client.members.<a href="./src/whop_sdk/resources/members.py">list</a>(\*\*<a href="src/whop_sdk/types/member_list_params.py">params</a>) -> <a href="./src/whop_sdk/types/member_list_response.py">SyncCursorPage[MemberListResponse]</a></code>
410
+
411
+ # Forums
412
+
413
+ Types:
414
+
415
+ ```python
416
+ from whop_sdk.types import ForumListResponse
417
+ ```
418
+
419
+ Methods:
420
+
421
+ - <code title="get /forums/{id}">client.forums.<a href="./src/whop_sdk/resources/forums.py">retrieve</a>(id) -> <a href="./src/whop_sdk/types/shared/forum.py">Forum</a></code>
422
+ - <code title="patch /forums/{id}">client.forums.<a href="./src/whop_sdk/resources/forums.py">update</a>(id, \*\*<a href="src/whop_sdk/types/forum_update_params.py">params</a>) -> <a href="./src/whop_sdk/types/shared/forum.py">Forum</a></code>
423
+ - <code title="get /forums">client.forums.<a href="./src/whop_sdk/resources/forums.py">list</a>(\*\*<a href="src/whop_sdk/types/forum_list_params.py">params</a>) -> <a href="./src/whop_sdk/types/forum_list_response.py">SyncCursorPage[ForumListResponse]</a></code>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "whop-sdk"
3
- version = "0.0.1"
3
+ version = "0.0.2"
4
4
  description = "The official Python library for the Whop API"
5
5
  dynamic = ["readme"]
6
6
  license = "Apache-2.0"
@@ -39,7 +39,7 @@ Homepage = "https://github.com/whopio/whopsdk-python"
39
39
  Repository = "https://github.com/whopio/whopsdk-python"
40
40
 
41
41
  [project.optional-dependencies]
42
- aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.8"]
42
+ aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.9"]
43
43
  webhooks = ["standardwebhooks"]
44
44
 
45
45
  [tool.rye]
@@ -60,7 +60,7 @@ httpx==0.28.1
60
60
  # via respx
61
61
  # via standardwebhooks
62
62
  # via whop-sdk
63
- httpx-aiohttp==0.1.8
63
+ httpx-aiohttp==0.1.9
64
64
  # via whop-sdk
65
65
  idna==3.4
66
66
  # via anyio
@@ -47,7 +47,7 @@ httpx==0.28.1
47
47
  # via httpx-aiohttp
48
48
  # via standardwebhooks
49
49
  # via whop-sdk
50
- httpx-aiohttp==0.1.8
50
+ httpx-aiohttp==0.1.9
51
51
  # via whop-sdk
52
52
  idna==3.4
53
53
  # via anyio
@@ -25,7 +25,9 @@ from .resources import (
25
25
  apps,
26
26
  plans,
27
27
  users,
28
+ forums,
28
29
  entries,
30
+ members,
29
31
  invoices,
30
32
  messages,
31
33
  payments,
@@ -81,6 +83,8 @@ class Whop(SyncAPIClient):
81
83
  support_channels: support_channels.SupportChannelsResource
82
84
  experiences: experiences.ExperiencesResource
83
85
  reactions: reactions.ReactionsResource
86
+ members: members.MembersResource
87
+ forums: forums.ForumsResource
84
88
  with_raw_response: WhopWithRawResponse
85
89
  with_streaming_response: WhopWithStreamedResponse
86
90
 
@@ -180,6 +184,8 @@ class Whop(SyncAPIClient):
180
184
  self.support_channels = support_channels.SupportChannelsResource(self)
181
185
  self.experiences = experiences.ExperiencesResource(self)
182
186
  self.reactions = reactions.ReactionsResource(self)
187
+ self.members = members.MembersResource(self)
188
+ self.forums = forums.ForumsResource(self)
183
189
  self.with_raw_response = WhopWithRawResponse(self)
184
190
  self.with_streaming_response = WhopWithStreamedResponse(self)
185
191
 
@@ -317,6 +323,8 @@ class AsyncWhop(AsyncAPIClient):
317
323
  support_channels: support_channels.AsyncSupportChannelsResource
318
324
  experiences: experiences.AsyncExperiencesResource
319
325
  reactions: reactions.AsyncReactionsResource
326
+ members: members.AsyncMembersResource
327
+ forums: forums.AsyncForumsResource
320
328
  with_raw_response: AsyncWhopWithRawResponse
321
329
  with_streaming_response: AsyncWhopWithStreamedResponse
322
330
 
@@ -416,6 +424,8 @@ class AsyncWhop(AsyncAPIClient):
416
424
  self.support_channels = support_channels.AsyncSupportChannelsResource(self)
417
425
  self.experiences = experiences.AsyncExperiencesResource(self)
418
426
  self.reactions = reactions.AsyncReactionsResource(self)
427
+ self.members = members.AsyncMembersResource(self)
428
+ self.forums = forums.AsyncForumsResource(self)
419
429
  self.with_raw_response = AsyncWhopWithRawResponse(self)
420
430
  self.with_streaming_response = AsyncWhopWithStreamedResponse(self)
421
431
 
@@ -557,6 +567,8 @@ class WhopWithRawResponse:
557
567
  self.support_channels = support_channels.SupportChannelsResourceWithRawResponse(client.support_channels)
558
568
  self.experiences = experiences.ExperiencesResourceWithRawResponse(client.experiences)
559
569
  self.reactions = reactions.ReactionsResourceWithRawResponse(client.reactions)
570
+ self.members = members.MembersResourceWithRawResponse(client.members)
571
+ self.forums = forums.ForumsResourceWithRawResponse(client.forums)
560
572
 
561
573
 
562
574
  class AsyncWhopWithRawResponse:
@@ -589,6 +601,8 @@ class AsyncWhopWithRawResponse:
589
601
  self.support_channels = support_channels.AsyncSupportChannelsResourceWithRawResponse(client.support_channels)
590
602
  self.experiences = experiences.AsyncExperiencesResourceWithRawResponse(client.experiences)
591
603
  self.reactions = reactions.AsyncReactionsResourceWithRawResponse(client.reactions)
604
+ self.members = members.AsyncMembersResourceWithRawResponse(client.members)
605
+ self.forums = forums.AsyncForumsResourceWithRawResponse(client.forums)
592
606
 
593
607
 
594
608
  class WhopWithStreamedResponse:
@@ -621,6 +635,8 @@ class WhopWithStreamedResponse:
621
635
  self.support_channels = support_channels.SupportChannelsResourceWithStreamingResponse(client.support_channels)
622
636
  self.experiences = experiences.ExperiencesResourceWithStreamingResponse(client.experiences)
623
637
  self.reactions = reactions.ReactionsResourceWithStreamingResponse(client.reactions)
638
+ self.members = members.MembersResourceWithStreamingResponse(client.members)
639
+ self.forums = forums.ForumsResourceWithStreamingResponse(client.forums)
624
640
 
625
641
 
626
642
  class AsyncWhopWithStreamedResponse:
@@ -657,6 +673,8 @@ class AsyncWhopWithStreamedResponse:
657
673
  )
658
674
  self.experiences = experiences.AsyncExperiencesResourceWithStreamingResponse(client.experiences)
659
675
  self.reactions = reactions.AsyncReactionsResourceWithStreamingResponse(client.reactions)
676
+ self.members = members.AsyncMembersResourceWithStreamingResponse(client.members)
677
+ self.forums = forums.AsyncForumsResourceWithStreamingResponse(client.forums)
660
678
 
661
679
 
662
680
  Client = Whop
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "whop_sdk"
4
- __version__ = "0.0.1" # x-release-please-version
4
+ __version__ = "0.0.2" # x-release-please-version
@@ -24,6 +24,14 @@ from .users import (
24
24
  UsersResourceWithStreamingResponse,
25
25
  AsyncUsersResourceWithStreamingResponse,
26
26
  )
27
+ from .forums import (
28
+ ForumsResource,
29
+ AsyncForumsResource,
30
+ ForumsResourceWithRawResponse,
31
+ AsyncForumsResourceWithRawResponse,
32
+ ForumsResourceWithStreamingResponse,
33
+ AsyncForumsResourceWithStreamingResponse,
34
+ )
27
35
  from .entries import (
28
36
  EntriesResource,
29
37
  AsyncEntriesResource,
@@ -32,6 +40,14 @@ from .entries import (
32
40
  EntriesResourceWithStreamingResponse,
33
41
  AsyncEntriesResourceWithStreamingResponse,
34
42
  )
43
+ from .members import (
44
+ MembersResource,
45
+ AsyncMembersResource,
46
+ MembersResourceWithRawResponse,
47
+ AsyncMembersResourceWithRawResponse,
48
+ MembersResourceWithStreamingResponse,
49
+ AsyncMembersResourceWithStreamingResponse,
50
+ )
35
51
  from .invoices import (
36
52
  InvoicesResource,
37
53
  AsyncInvoicesResource,
@@ -313,4 +329,16 @@ __all__ = [
313
329
  "AsyncReactionsResourceWithRawResponse",
314
330
  "ReactionsResourceWithStreamingResponse",
315
331
  "AsyncReactionsResourceWithStreamingResponse",
332
+ "MembersResource",
333
+ "AsyncMembersResource",
334
+ "MembersResourceWithRawResponse",
335
+ "AsyncMembersResourceWithRawResponse",
336
+ "MembersResourceWithStreamingResponse",
337
+ "AsyncMembersResourceWithStreamingResponse",
338
+ "ForumsResource",
339
+ "AsyncForumsResource",
340
+ "ForumsResourceWithRawResponse",
341
+ "AsyncForumsResourceWithRawResponse",
342
+ "ForumsResourceWithStreamingResponse",
343
+ "AsyncForumsResourceWithStreamingResponse",
316
344
  ]
@@ -62,7 +62,7 @@ class CheckoutConfigurationsResource(SyncAPIResource):
62
62
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
63
63
  ) -> CheckoutConfiguration:
64
64
  """
65
- Creates a new checkout session
65
+ Creates a new checkout configuration
66
66
 
67
67
  Required permissions:
68
68
 
@@ -70,15 +70,15 @@ class CheckoutConfigurationsResource(SyncAPIResource):
70
70
  - `plan:create`
71
71
 
72
72
  Args:
73
- affiliate_code: The affiliate code to use for the checkout session
73
+ affiliate_code: The affiliate code to use for the checkout configuration
74
74
 
75
- metadata: The metadata to use for the checkout session
75
+ metadata: The metadata to use for the checkout configuration
76
76
 
77
- plan: Pass this object to create a new plan for this checkout session
77
+ plan: Pass this object to create a new plan for this checkout configuration
78
78
 
79
- plan_id: The ID of the plan to use for the checkout session
79
+ plan_id: The ID of the plan to use for the checkout configuration
80
80
 
81
- redirect_url: The URL to redirect the user to after the checkout session is created
81
+ redirect_url: The URL to redirect the user to after the checkout configuration is created
82
82
 
83
83
  extra_headers: Send extra headers
84
84
 
@@ -251,7 +251,7 @@ class AsyncCheckoutConfigurationsResource(AsyncAPIResource):
251
251
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
252
252
  ) -> CheckoutConfiguration:
253
253
  """
254
- Creates a new checkout session
254
+ Creates a new checkout configuration
255
255
 
256
256
  Required permissions:
257
257
 
@@ -259,15 +259,15 @@ class AsyncCheckoutConfigurationsResource(AsyncAPIResource):
259
259
  - `plan:create`
260
260
 
261
261
  Args:
262
- affiliate_code: The affiliate code to use for the checkout session
262
+ affiliate_code: The affiliate code to use for the checkout configuration
263
263
 
264
- metadata: The metadata to use for the checkout session
264
+ metadata: The metadata to use for the checkout configuration
265
265
 
266
- plan: Pass this object to create a new plan for this checkout session
266
+ plan: Pass this object to create a new plan for this checkout configuration
267
267
 
268
- plan_id: The ID of the plan to use for the checkout session
268
+ plan_id: The ID of the plan to use for the checkout configuration
269
269
 
270
- redirect_url: The URL to redirect the user to after the checkout session is created
270
+ redirect_url: The URL to redirect the user to after the checkout configuration is created
271
271
 
272
272
  extra_headers: Send extra headers
273
273