whop-sdk 0.0.10__py3-none-any.whl

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 (352) hide show
  1. whop_sdk/__init__.py +94 -0
  2. whop_sdk/_base_client.py +1995 -0
  3. whop_sdk/_client.py +800 -0
  4. whop_sdk/_compat.py +219 -0
  5. whop_sdk/_constants.py +14 -0
  6. whop_sdk/_exceptions.py +112 -0
  7. whop_sdk/_files.py +123 -0
  8. whop_sdk/_models.py +857 -0
  9. whop_sdk/_qs.py +150 -0
  10. whop_sdk/_resource.py +43 -0
  11. whop_sdk/_response.py +830 -0
  12. whop_sdk/_streaming.py +333 -0
  13. whop_sdk/_types.py +260 -0
  14. whop_sdk/_utils/__init__.py +64 -0
  15. whop_sdk/_utils/_compat.py +45 -0
  16. whop_sdk/_utils/_datetime_parse.py +136 -0
  17. whop_sdk/_utils/_logs.py +25 -0
  18. whop_sdk/_utils/_proxy.py +65 -0
  19. whop_sdk/_utils/_reflection.py +42 -0
  20. whop_sdk/_utils/_resources_proxy.py +24 -0
  21. whop_sdk/_utils/_streams.py +12 -0
  22. whop_sdk/_utils/_sync.py +58 -0
  23. whop_sdk/_utils/_transform.py +457 -0
  24. whop_sdk/_utils/_typing.py +156 -0
  25. whop_sdk/_utils/_utils.py +421 -0
  26. whop_sdk/_version.py +4 -0
  27. whop_sdk/lib/.keep +4 -0
  28. whop_sdk/pagination.py +61 -0
  29. whop_sdk/py.typed +0 -0
  30. whop_sdk/resources/__init__.py +540 -0
  31. whop_sdk/resources/access_tokens.py +341 -0
  32. whop_sdk/resources/account_links.py +211 -0
  33. whop_sdk/resources/app_builds.py +587 -0
  34. whop_sdk/resources/apps.py +684 -0
  35. whop_sdk/resources/authorized_users.py +353 -0
  36. whop_sdk/resources/chat_channels.py +469 -0
  37. whop_sdk/resources/checkout_configurations.py +776 -0
  38. whop_sdk/resources/companies.py +465 -0
  39. whop_sdk/resources/course_chapters.py +602 -0
  40. whop_sdk/resources/course_lesson_interactions.py +343 -0
  41. whop_sdk/resources/course_lessons.py +1040 -0
  42. whop_sdk/resources/course_students.py +327 -0
  43. whop_sdk/resources/courses.py +776 -0
  44. whop_sdk/resources/disputes.py +693 -0
  45. whop_sdk/resources/entries.py +556 -0
  46. whop_sdk/resources/experiences.py +983 -0
  47. whop_sdk/resources/forum_posts.py +656 -0
  48. whop_sdk/resources/forums.py +446 -0
  49. whop_sdk/resources/invoices.py +1099 -0
  50. whop_sdk/resources/ledger_accounts.py +171 -0
  51. whop_sdk/resources/members.py +429 -0
  52. whop_sdk/resources/memberships.py +818 -0
  53. whop_sdk/resources/messages.py +558 -0
  54. whop_sdk/resources/notifications.py +388 -0
  55. whop_sdk/resources/payment_tokens.py +359 -0
  56. whop_sdk/resources/payments.py +1040 -0
  57. whop_sdk/resources/plans.py +1001 -0
  58. whop_sdk/resources/products.py +970 -0
  59. whop_sdk/resources/promo_codes.py +668 -0
  60. whop_sdk/resources/reactions.py +423 -0
  61. whop_sdk/resources/refunds.py +347 -0
  62. whop_sdk/resources/reviews.py +332 -0
  63. whop_sdk/resources/setup_intents.py +349 -0
  64. whop_sdk/resources/shipments.py +451 -0
  65. whop_sdk/resources/support_channels.py +455 -0
  66. whop_sdk/resources/transfers.py +513 -0
  67. whop_sdk/resources/users.py +248 -0
  68. whop_sdk/resources/webhooks.py +69 -0
  69. whop_sdk/resources/withdrawals.py +341 -0
  70. whop_sdk/types/__init__.py +262 -0
  71. whop_sdk/types/access_token_create_params.py +64 -0
  72. whop_sdk/types/access_token_create_response.py +15 -0
  73. whop_sdk/types/account_link_create_params.py +27 -0
  74. whop_sdk/types/account_link_create_response.py +15 -0
  75. whop_sdk/types/app_build_create_params.py +72 -0
  76. whop_sdk/types/app_build_list_params.py +42 -0
  77. whop_sdk/types/app_build_list_response.py +50 -0
  78. whop_sdk/types/app_create_params.py +19 -0
  79. whop_sdk/types/app_list_params.py +59 -0
  80. whop_sdk/types/app_list_response.py +110 -0
  81. whop_sdk/types/app_type.py +7 -0
  82. whop_sdk/types/app_update_params.py +67 -0
  83. whop_sdk/types/assessment_question_types.py +7 -0
  84. whop_sdk/types/authorized_user_list_params.py +41 -0
  85. whop_sdk/types/authorized_user_list_response.py +33 -0
  86. whop_sdk/types/authorized_user_retrieve_response.py +33 -0
  87. whop_sdk/types/billing_reasons.py +9 -0
  88. whop_sdk/types/card_brands.py +25 -0
  89. whop_sdk/types/chat_channel_list_params.py +28 -0
  90. whop_sdk/types/chat_channel_list_response.py +43 -0
  91. whop_sdk/types/chat_channel_update_params.py +32 -0
  92. whop_sdk/types/checkout_configuration_create_params.py +373 -0
  93. whop_sdk/types/checkout_configuration_list_params.py +41 -0
  94. whop_sdk/types/checkout_configuration_list_response.py +104 -0
  95. whop_sdk/types/checkout_modes.py +7 -0
  96. whop_sdk/types/company_create_params.py +22 -0
  97. whop_sdk/types/company_list_params.py +38 -0
  98. whop_sdk/types/company_list_response.py +76 -0
  99. whop_sdk/types/course.py +122 -0
  100. whop_sdk/types/course_chapter.py +32 -0
  101. whop_sdk/types/course_chapter_create_params.py +16 -0
  102. whop_sdk/types/course_chapter_delete_response.py +7 -0
  103. whop_sdk/types/course_chapter_list_params.py +25 -0
  104. whop_sdk/types/course_chapter_list_response.py +16 -0
  105. whop_sdk/types/course_chapter_update_params.py +12 -0
  106. whop_sdk/types/course_create_params.py +78 -0
  107. whop_sdk/types/course_delete_response.py +7 -0
  108. whop_sdk/types/course_lesson_create_params.py +63 -0
  109. whop_sdk/types/course_lesson_delete_response.py +7 -0
  110. whop_sdk/types/course_lesson_interaction_completed_webhook_event.py +26 -0
  111. whop_sdk/types/course_lesson_interaction_list_params.py +34 -0
  112. whop_sdk/types/course_lesson_list_params.py +28 -0
  113. whop_sdk/types/course_lesson_list_response.py +57 -0
  114. whop_sdk/types/course_lesson_mark_as_completed_response.py +7 -0
  115. whop_sdk/types/course_lesson_start_response.py +7 -0
  116. whop_sdk/types/course_lesson_submit_assessment_params.py +26 -0
  117. whop_sdk/types/course_lesson_submit_assessment_response.py +62 -0
  118. whop_sdk/types/course_lesson_update_params.py +222 -0
  119. whop_sdk/types/course_list_params.py +28 -0
  120. whop_sdk/types/course_list_response.py +90 -0
  121. whop_sdk/types/course_student_list_params.py +28 -0
  122. whop_sdk/types/course_student_list_response.py +42 -0
  123. whop_sdk/types/course_student_retrieve_response.py +61 -0
  124. whop_sdk/types/course_update_params.py +114 -0
  125. whop_sdk/types/course_visibilities.py +7 -0
  126. whop_sdk/types/dispute.py +284 -0
  127. whop_sdk/types/dispute_created_webhook_event.py +26 -0
  128. whop_sdk/types/dispute_list_params.py +38 -0
  129. whop_sdk/types/dispute_list_response.py +77 -0
  130. whop_sdk/types/dispute_statuses.py +17 -0
  131. whop_sdk/types/dispute_update_evidence_params.py +159 -0
  132. whop_sdk/types/dispute_updated_webhook_event.py +26 -0
  133. whop_sdk/types/embed_type.py +7 -0
  134. whop_sdk/types/entry_approve_response.py +10 -0
  135. whop_sdk/types/entry_approved_webhook_event.py +26 -0
  136. whop_sdk/types/entry_created_webhook_event.py +26 -0
  137. whop_sdk/types/entry_deleted_webhook_event.py +26 -0
  138. whop_sdk/types/entry_denied_webhook_event.py +26 -0
  139. whop_sdk/types/entry_list_params.py +52 -0
  140. whop_sdk/types/entry_list_response.py +56 -0
  141. whop_sdk/types/experience_attach_params.py +12 -0
  142. whop_sdk/types/experience_create_params.py +22 -0
  143. whop_sdk/types/experience_delete_response.py +7 -0
  144. whop_sdk/types/experience_detach_params.py +12 -0
  145. whop_sdk/types/experience_duplicate_params.py +13 -0
  146. whop_sdk/types/experience_list_params.py +40 -0
  147. whop_sdk/types/experience_list_response.py +73 -0
  148. whop_sdk/types/experience_update_params.py +46 -0
  149. whop_sdk/types/forum_list_params.py +28 -0
  150. whop_sdk/types/forum_list_response.py +33 -0
  151. whop_sdk/types/forum_post_create_params.py +101 -0
  152. whop_sdk/types/forum_post_list_params.py +31 -0
  153. whop_sdk/types/forum_post_list_response.py +60 -0
  154. whop_sdk/types/forum_post_update_params.py +56 -0
  155. whop_sdk/types/forum_post_visibility_type.py +7 -0
  156. whop_sdk/types/forum_update_params.py +23 -0
  157. whop_sdk/types/invoice_create_params.py +515 -0
  158. whop_sdk/types/invoice_created_webhook_event.py +26 -0
  159. whop_sdk/types/invoice_list_params.py +53 -0
  160. whop_sdk/types/invoice_paid_webhook_event.py +26 -0
  161. whop_sdk/types/invoice_past_due_webhook_event.py +26 -0
  162. whop_sdk/types/invoice_void_response.py +7 -0
  163. whop_sdk/types/invoice_voided_webhook_event.py +26 -0
  164. whop_sdk/types/languages.py +30 -0
  165. whop_sdk/types/ledger_account_retrieve_response.py +93 -0
  166. whop_sdk/types/lesson.py +219 -0
  167. whop_sdk/types/lesson_types.py +7 -0
  168. whop_sdk/types/lesson_visibilities.py +7 -0
  169. whop_sdk/types/member_list_params.py +73 -0
  170. whop_sdk/types/member_list_response.py +65 -0
  171. whop_sdk/types/member_retrieve_response.py +79 -0
  172. whop_sdk/types/membership_activated_webhook_event.py +29 -0
  173. whop_sdk/types/membership_cancel_params.py +13 -0
  174. whop_sdk/types/membership_deactivated_webhook_event.py +29 -0
  175. whop_sdk/types/membership_list_params.py +73 -0
  176. whop_sdk/types/membership_list_response.py +128 -0
  177. whop_sdk/types/membership_pause_params.py +16 -0
  178. whop_sdk/types/membership_update_params.py +13 -0
  179. whop_sdk/types/message_create_params.py +63 -0
  180. whop_sdk/types/message_list_params.py +30 -0
  181. whop_sdk/types/message_list_response.py +90 -0
  182. whop_sdk/types/message_update_params.py +45 -0
  183. whop_sdk/types/notification_create_params.py +93 -0
  184. whop_sdk/types/notification_create_response.py +10 -0
  185. whop_sdk/types/payment_create_params.py +162 -0
  186. whop_sdk/types/payment_failed_webhook_event.py +26 -0
  187. whop_sdk/types/payment_list_params.py +67 -0
  188. whop_sdk/types/payment_list_response.py +273 -0
  189. whop_sdk/types/payment_method_types.py +94 -0
  190. whop_sdk/types/payment_pending_webhook_event.py +26 -0
  191. whop_sdk/types/payment_provider.py +9 -0
  192. whop_sdk/types/payment_refund_params.py +13 -0
  193. whop_sdk/types/payment_succeeded_webhook_event.py +26 -0
  194. whop_sdk/types/payment_token_list_params.py +38 -0
  195. whop_sdk/types/payment_token_list_response.py +41 -0
  196. whop_sdk/types/payment_token_retrieve_params.py +12 -0
  197. whop_sdk/types/payment_token_retrieve_response.py +41 -0
  198. whop_sdk/types/plan_create_params.py +162 -0
  199. whop_sdk/types/plan_delete_response.py +7 -0
  200. whop_sdk/types/plan_list_params.py +57 -0
  201. whop_sdk/types/plan_list_response.py +128 -0
  202. whop_sdk/types/plan_update_params.py +155 -0
  203. whop_sdk/types/product_create_params.py +147 -0
  204. whop_sdk/types/product_delete_response.py +7 -0
  205. whop_sdk/types/product_list_params.py +49 -0
  206. whop_sdk/types/product_update_params.py +82 -0
  207. whop_sdk/types/promo_code.py +90 -0
  208. whop_sdk/types/promo_code_create_params.py +70 -0
  209. whop_sdk/types/promo_code_delete_response.py +7 -0
  210. whop_sdk/types/promo_code_list_params.py +45 -0
  211. whop_sdk/types/promo_code_list_response.py +79 -0
  212. whop_sdk/types/promo_code_status.py +7 -0
  213. whop_sdk/types/promo_duration.py +7 -0
  214. whop_sdk/types/reaction_create_params.py +19 -0
  215. whop_sdk/types/reaction_list_params.py +25 -0
  216. whop_sdk/types/reaction_list_response.py +32 -0
  217. whop_sdk/types/refund_created_webhook_event.py +154 -0
  218. whop_sdk/types/refund_list_params.py +38 -0
  219. whop_sdk/types/refund_list_response.py +53 -0
  220. whop_sdk/types/refund_reference_status.py +7 -0
  221. whop_sdk/types/refund_reference_type.py +9 -0
  222. whop_sdk/types/refund_retrieve_response.py +129 -0
  223. whop_sdk/types/refund_status.py +7 -0
  224. whop_sdk/types/refund_updated_webhook_event.py +154 -0
  225. whop_sdk/types/review_list_params.py +40 -0
  226. whop_sdk/types/review_list_response.py +78 -0
  227. whop_sdk/types/review_retrieve_response.py +103 -0
  228. whop_sdk/types/review_status.py +7 -0
  229. whop_sdk/types/setup_intent.py +111 -0
  230. whop_sdk/types/setup_intent_canceled_webhook_event.py +29 -0
  231. whop_sdk/types/setup_intent_list_params.py +38 -0
  232. whop_sdk/types/setup_intent_list_response.py +111 -0
  233. whop_sdk/types/setup_intent_requires_action_webhook_event.py +29 -0
  234. whop_sdk/types/setup_intent_status.py +7 -0
  235. whop_sdk/types/setup_intent_succeeded_webhook_event.py +29 -0
  236. whop_sdk/types/shared/__init__.py +62 -0
  237. whop_sdk/types/shared/access_level.py +7 -0
  238. whop_sdk/types/shared/access_pass_type.py +7 -0
  239. whop_sdk/types/shared/app.py +187 -0
  240. whop_sdk/types/shared/app_build.py +50 -0
  241. whop_sdk/types/shared/app_build_platforms.py +7 -0
  242. whop_sdk/types/shared/app_build_statuses.py +7 -0
  243. whop_sdk/types/shared/app_statuses.py +7 -0
  244. whop_sdk/types/shared/app_view_type.py +7 -0
  245. whop_sdk/types/shared/authorized_user_roles.py +9 -0
  246. whop_sdk/types/shared/business_types.py +22 -0
  247. whop_sdk/types/shared/chat_channel.py +43 -0
  248. whop_sdk/types/shared/checkout_configuration.py +104 -0
  249. whop_sdk/types/shared/collection_method.py +7 -0
  250. whop_sdk/types/shared/company.py +91 -0
  251. whop_sdk/types/shared/course_lesson_interaction.py +63 -0
  252. whop_sdk/types/shared/course_lesson_interaction_list_item.py +44 -0
  253. whop_sdk/types/shared/currency.py +93 -0
  254. whop_sdk/types/shared/custom_cta.py +21 -0
  255. whop_sdk/types/shared/direction.py +7 -0
  256. whop_sdk/types/shared/dms_post_types.py +7 -0
  257. whop_sdk/types/shared/email_notification_preferences.py +7 -0
  258. whop_sdk/types/shared/entry.py +70 -0
  259. whop_sdk/types/shared/entry_status.py +7 -0
  260. whop_sdk/types/shared/experience.py +91 -0
  261. whop_sdk/types/shared/forum.py +33 -0
  262. whop_sdk/types/shared/forum_post.py +60 -0
  263. whop_sdk/types/shared/friendly_receipt_status.py +24 -0
  264. whop_sdk/types/shared/global_affiliate_status.py +7 -0
  265. whop_sdk/types/shared/industry_types.py +67 -0
  266. whop_sdk/types/shared/invoice.py +64 -0
  267. whop_sdk/types/shared/invoice_list_item.py +64 -0
  268. whop_sdk/types/shared/invoice_status.py +7 -0
  269. whop_sdk/types/shared/member_most_recent_actions.py +22 -0
  270. whop_sdk/types/shared/member_statuses.py +7 -0
  271. whop_sdk/types/shared/membership.py +128 -0
  272. whop_sdk/types/shared/membership_status.py +9 -0
  273. whop_sdk/types/shared/message.py +90 -0
  274. whop_sdk/types/shared/page_info.py +21 -0
  275. whop_sdk/types/shared/payment.py +273 -0
  276. whop_sdk/types/shared/plan.py +159 -0
  277. whop_sdk/types/shared/plan_type.py +7 -0
  278. whop_sdk/types/shared/product.py +132 -0
  279. whop_sdk/types/shared/product_list_item.py +57 -0
  280. whop_sdk/types/shared/promo_type.py +7 -0
  281. whop_sdk/types/shared/reaction.py +32 -0
  282. whop_sdk/types/shared/receipt_status.py +7 -0
  283. whop_sdk/types/shared/release_method.py +7 -0
  284. whop_sdk/types/shared/shipment.py +48 -0
  285. whop_sdk/types/shared/shipment_carrier.py +84 -0
  286. whop_sdk/types/shared/shipment_status.py +18 -0
  287. whop_sdk/types/shared/shipment_substatus.py +36 -0
  288. whop_sdk/types/shared/support_channel.py +39 -0
  289. whop_sdk/types/shared/tax_type.py +7 -0
  290. whop_sdk/types/shared/transfer.py +112 -0
  291. whop_sdk/types/shared/visibility.py +7 -0
  292. whop_sdk/types/shared/visibility_filter.py +9 -0
  293. whop_sdk/types/shared/who_can_comment_types.py +7 -0
  294. whop_sdk/types/shared/who_can_post.py +7 -0
  295. whop_sdk/types/shared/who_can_post_types.py +7 -0
  296. whop_sdk/types/shared/who_can_react.py +7 -0
  297. whop_sdk/types/shared_params/__init__.py +34 -0
  298. whop_sdk/types/shared_params/access_level.py +9 -0
  299. whop_sdk/types/shared_params/access_pass_type.py +9 -0
  300. whop_sdk/types/shared_params/app_build_platforms.py +9 -0
  301. whop_sdk/types/shared_params/app_build_statuses.py +9 -0
  302. whop_sdk/types/shared_params/app_statuses.py +9 -0
  303. whop_sdk/types/shared_params/app_view_type.py +9 -0
  304. whop_sdk/types/shared_params/authorized_user_roles.py +11 -0
  305. whop_sdk/types/shared_params/business_types.py +24 -0
  306. whop_sdk/types/shared_params/collection_method.py +9 -0
  307. whop_sdk/types/shared_params/currency.py +95 -0
  308. whop_sdk/types/shared_params/custom_cta.py +23 -0
  309. whop_sdk/types/shared_params/direction.py +9 -0
  310. whop_sdk/types/shared_params/email_notification_preferences.py +9 -0
  311. whop_sdk/types/shared_params/entry_status.py +9 -0
  312. whop_sdk/types/shared_params/friendly_receipt_status.py +26 -0
  313. whop_sdk/types/shared_params/global_affiliate_status.py +9 -0
  314. whop_sdk/types/shared_params/industry_types.py +69 -0
  315. whop_sdk/types/shared_params/invoice_status.py +9 -0
  316. whop_sdk/types/shared_params/member_most_recent_actions.py +24 -0
  317. whop_sdk/types/shared_params/member_statuses.py +9 -0
  318. whop_sdk/types/shared_params/membership_status.py +11 -0
  319. whop_sdk/types/shared_params/plan_type.py +9 -0
  320. whop_sdk/types/shared_params/promo_type.py +9 -0
  321. whop_sdk/types/shared_params/receipt_status.py +9 -0
  322. whop_sdk/types/shared_params/release_method.py +9 -0
  323. whop_sdk/types/shared_params/tax_type.py +9 -0
  324. whop_sdk/types/shared_params/visibility.py +9 -0
  325. whop_sdk/types/shared_params/visibility_filter.py +11 -0
  326. whop_sdk/types/shared_params/who_can_comment_types.py +9 -0
  327. whop_sdk/types/shared_params/who_can_post.py +9 -0
  328. whop_sdk/types/shared_params/who_can_post_types.py +9 -0
  329. whop_sdk/types/shared_params/who_can_react.py +9 -0
  330. whop_sdk/types/shipment_create_params.py +18 -0
  331. whop_sdk/types/shipment_list_params.py +31 -0
  332. whop_sdk/types/shipment_list_response.py +48 -0
  333. whop_sdk/types/support_channel_create_params.py +15 -0
  334. whop_sdk/types/support_channel_list_params.py +40 -0
  335. whop_sdk/types/support_channel_list_response.py +39 -0
  336. whop_sdk/types/transfer_create_params.py +39 -0
  337. whop_sdk/types/transfer_list_params.py +50 -0
  338. whop_sdk/types/transfer_list_response.py +38 -0
  339. whop_sdk/types/unwrap_webhook_event.py +52 -0
  340. whop_sdk/types/user_check_access_response.py +14 -0
  341. whop_sdk/types/user_retrieve_response.py +36 -0
  342. whop_sdk/types/withdrawal_fee_types.py +7 -0
  343. whop_sdk/types/withdrawal_list_params.py +38 -0
  344. whop_sdk/types/withdrawal_list_response.py +45 -0
  345. whop_sdk/types/withdrawal_retrieve_response.py +154 -0
  346. whop_sdk/types/withdrawal_speeds.py +7 -0
  347. whop_sdk/types/withdrawal_status.py +9 -0
  348. whop_sdk/types/withdrawal_types.py +7 -0
  349. whop_sdk-0.0.10.dist-info/METADATA +509 -0
  350. whop_sdk-0.0.10.dist-info/RECORD +352 -0
  351. whop_sdk-0.0.10.dist-info/WHEEL +4 -0
  352. whop_sdk-0.0.10.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,352 @@
1
+ whop_sdk/__init__.py,sha256=1-_P7bfil6VZ7WVmzaDWkobCAoQWv7_fJtShXoWDQFE,2682
2
+ whop_sdk/_base_client.py,sha256=WHFMkjQKDVrvYyQlx6s2cnrsB7zVPjumcvidv2HE4cs,67049
3
+ whop_sdk/_client.py,sha256=-ZVpT_0evhQRmHEb11BTl9NpHNcuj9lcYmumGbCfAWA,40974
4
+ whop_sdk/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
+ whop_sdk/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
+ whop_sdk/_exceptions.py,sha256=WLpHjglUG1JKCXZ47NAbLiu_k1wM6cVOIx_e9iiqVwM,3270
7
+ whop_sdk/_files.py,sha256=KnEzGi_O756MvKyJ4fOCW_u3JhOeWPQ4RsmDvqihDQU,3545
8
+ whop_sdk/_models.py,sha256=3D65psj_C02Mw0K2zpBWrn1khmrvtEXgTTQ6P4r3tUY,31837
9
+ whop_sdk/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
10
+ whop_sdk/_resource.py,sha256=MAjz0qGWd9NQdpzpoR9h1pRNKrTecHn_D0tSNXkdQm8,1088
11
+ whop_sdk/_response.py,sha256=zCR9-kvNBixi25j7UxW6l67RtEwiI33bcyqnNfpaE4s,28792
12
+ whop_sdk/_streaming.py,sha256=7ER2kO1QIDf1HBXhxqHVruLN0k1_SK7Zpw1D-TWKJEU,10213
13
+ whop_sdk/_types.py,sha256=3QRJ0uLiy_mkSFK0vo51i10hSurNAe2IFeqmLfAJLSw,7238
14
+ whop_sdk/_version.py,sha256=azaaO-lBFc6pxlmDu1amPMiyNlAJ0EjLKHjnnnLdruU,161
15
+ whop_sdk/pagination.py,sha256=IazBrVQLZzCXYvm-Lwe-dFZ_I2YQJAEMpYN30EaW8AI,1717
16
+ whop_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ whop_sdk/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
18
+ whop_sdk/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
19
+ whop_sdk/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
20
+ whop_sdk/_utils/_logs.py,sha256=Oiblha6uEO_cIp8SgTilP1k2PqrT-IuhJAjT6r0-PP0,776
21
+ whop_sdk/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
22
+ whop_sdk/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
23
+ whop_sdk/_utils/_resources_proxy.py,sha256=JuTss0k9kP3HbdTnDhhiCTKqg3Xc_GkHamY30PEHZx8,599
24
+ whop_sdk/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
25
+ whop_sdk/_utils/_sync.py,sha256=HBnZkkBnzxtwOZe0212C4EyoRvxhTVtTrLFDz2_xVCg,1589
26
+ whop_sdk/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
27
+ whop_sdk/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
28
+ whop_sdk/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
29
+ whop_sdk/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
30
+ whop_sdk/resources/__init__.py,sha256=lLOSpQ0qkhn2J3YcGq91EKqy4AKqcxm0jb5Egvv4Uwk,19544
31
+ whop_sdk/resources/access_tokens.py,sha256=Nd9YnWcmHB-kJywS02SBd7BxrC1FCnwKR5-TmD_F4So,14879
32
+ whop_sdk/resources/account_links.py,sha256=2Uy9tO_IO_kar-AAo0FAXo3Idd3_rUMFAxb8gvSEWc4,8136
33
+ whop_sdk/resources/app_builds.py,sha256=gDULqqOciTvszszhloR0cYPRk4csCdBtme7iaiVdisg,21919
34
+ whop_sdk/resources/apps.py,sha256=Y_TlNtv5X6fMZvQ59EGWDirm9Am_N0gSbrk_x_rys14,24463
35
+ whop_sdk/resources/authorized_users.py,sha256=u1qsxMKaylUDX2RYbIimALQ1UIYWIL7MR_hNZ_k4Jl8,13338
36
+ whop_sdk/resources/chat_channels.py,sha256=WEJwOKXnMawEtPVfxoQpM0LXRB_-CbFTgtwbZan9dVw,17320
37
+ whop_sdk/resources/checkout_configurations.py,sha256=Qbin0HjlWN_MIrTkgKpvUGSPtZt0xXUA64emDiatbr0,31647
38
+ whop_sdk/resources/companies.py,sha256=y9nGJnY2pislGwTzst57nZGIC-kO37IwdewAB5SnQuk,16724
39
+ whop_sdk/resources/course_chapters.py,sha256=rYn3S7HLc2EDwc81YKcuY5h1-xRDewC47yxqY4CHTXM,21658
40
+ whop_sdk/resources/course_lesson_interactions.py,sha256=nEdcYdUKYBfFP4j_GqlF_Ths2bNndo9c7ntecTdJRNk,13381
41
+ whop_sdk/resources/course_lessons.py,sha256=_ZKB-fkwLkqePhAILf0eK9siVZ4HaO0M2F1ga7HkJAY,40459
42
+ whop_sdk/resources/course_students.py,sha256=3hlMw82NpdWwQ4ffQ8ogjkwW6onixzPP76nCrSp9-mo,12034
43
+ whop_sdk/resources/courses.py,sha256=YoF_Aml5zFCSxHHQSE6X-eHoIvnU3AkWZIuEHrA9wMQ,29282
44
+ whop_sdk/resources/disputes.py,sha256=fsKaFF654nrzDY0XWgl4bxS80_tDi7OkC3XI7ZuIPUA,27170
45
+ whop_sdk/resources/entries.py,sha256=_76jiK4adFNJe2iDjfub0baZO9pcg0PIxJJP9hfT-AY,19798
46
+ whop_sdk/resources/experiences.py,sha256=gUCSiLDeOFRecG2P0w60kyvn0PFfhl2kK1Ycl7rDNi8,36352
47
+ whop_sdk/resources/forum_posts.py,sha256=Uw4dKurMzhw3daAkCsOi8WIyzbYRkzEjDBYI5N3CyR8,24724
48
+ whop_sdk/resources/forums.py,sha256=5Y7AnLgs4AiuncPRPKNuiw7HIhknn8eFBT5LcMsOg3c,15991
49
+ whop_sdk/resources/invoices.py,sha256=FdAHtdZihCyZirLmbsvFyO8_0STR8aSezZAUkjsqgYg,43594
50
+ whop_sdk/resources/ledger_accounts.py,sha256=xF-It9ibN0p-NZ99SFI3iv440od9eLBcUaIPPgwlhBs,6352
51
+ whop_sdk/resources/members.py,sha256=UCdvMILjkmJz2B-FIIgNoxCOoD-FZgfQuoIf-riGHLs,16375
52
+ whop_sdk/resources/memberships.py,sha256=PktBojIYv-Dj2pOhhuNPyj_lZSZMHq5I6G4g_R8tMZc,30211
53
+ whop_sdk/resources/messages.py,sha256=zJvwvEJOT-hw1_5Zf9UWQo-eiLuM-OKmYHvY72IW9uw,19906
54
+ whop_sdk/resources/notifications.py,sha256=fViR62FL_hmSq3S4JSCrRuxgemVo4aQ0_1rGOcq5200,15647
55
+ whop_sdk/resources/payment_tokens.py,sha256=vRrB69jJEJcXQ8YxpB6EULOimjRMZ8CA3-5lVJK_1O4,13362
56
+ whop_sdk/resources/payments.py,sha256=EHuGq0OY1oYp47YiZTp30MMpEHl-oqbudXfTJe-gbjU,37391
57
+ whop_sdk/resources/plans.py,sha256=IfXmFL0rNbej7UmHD22FAYovPKFXgBpFdQMELfiB06Y,39967
58
+ whop_sdk/resources/products.py,sha256=CKQGukD5x-huIUXRCT6mNfAAiiJO8NYtN-eVwqtmAW8,39737
59
+ whop_sdk/resources/promo_codes.py,sha256=245lC5X56R8S43L16ZPNtD9Io82W9yHU0_uWtK36jUM,25353
60
+ whop_sdk/resources/reactions.py,sha256=X_VwJlRIBUvNdExUYwLlvKauYNrcnHftM-SH8_cKG2M,14909
61
+ whop_sdk/resources/refunds.py,sha256=ZbX9cPLfreDiL5nOPp6QBJX3WTLEt7OfkFST2uuPE1Y,12409
62
+ whop_sdk/resources/reviews.py,sha256=ktoSWYl4XLK7skA5RkBmB-7J8-LOavYAnNgu5hq7Dbo,12242
63
+ whop_sdk/resources/setup_intents.py,sha256=DS97D2jX50fjjRzrCI7lfphNQ4l4wM9g6ZECxnqkcO0,12754
64
+ whop_sdk/resources/shipments.py,sha256=RVVvBm6EktoE20lZ-3VjraE1Iwgaz36XsWAN14EWx7U,15791
65
+ whop_sdk/resources/support_channels.py,sha256=--36UQGIv8xeV5w7yjbQNSKWx_IKfZ5zhVePLc99aE0,16820
66
+ whop_sdk/resources/transfers.py,sha256=G5jtKKgxMk2IavLLAltVqoJvG8q8Awp5KsmtF2HJsa0,18886
67
+ whop_sdk/resources/users.py,sha256=4dVcQymtuwq2iKtksHaMmU8I3Ynh_SwBmxXWC7FOQio,9220
68
+ whop_sdk/resources/webhooks.py,sha256=c31UbEQNh25xhyrkWeTXzJDZpIE9CA1sfTbHowqRER4,2323
69
+ whop_sdk/resources/withdrawals.py,sha256=JdvksGcywVjOQUHhrywJwTD94bndN9KCRQknKGG6dAg,12495
70
+ whop_sdk/types/__init__.py,sha256=1FsPmXPEPjk2NXmdoWGTluMySA0csa21gqu-9LfOW7c,17767
71
+ whop_sdk/types/access_token_create_params.py,sha256=KhPxRzluCUB_5eu5Oz6i2rSc3N5wrXh3lyYGfgiBEqI,2458
72
+ whop_sdk/types/access_token_create_response.py,sha256=DBK1LAc3Q6SDZ4ghEK4QpWpOPe2MrUFa9LEzg5P6idM,373
73
+ whop_sdk/types/account_link_create_params.py,sha256=oau4JCeqb4TmbX3PONKLwI4KdCfKoGFOtcyjt2jqGuU,839
74
+ whop_sdk/types/account_link_create_response.py,sha256=eCXOY1vbl80npT-wKXTc9rpbspyE5YEhwQrDytPIFLg,366
75
+ whop_sdk/types/app_build_create_params.py,sha256=C5qQVXK7aMFB-1guSAtQ_ogdIjAEIIS7fsxJfqD8Yq4,2259
76
+ whop_sdk/types/app_build_list_params.py,sha256=dlMaAKXb1ovnmeN3lRQTs1TritM5yHbiDlbp-bvTIhc,1417
77
+ whop_sdk/types/app_build_list_response.py,sha256=6dGteWLT3O2RbQajLkFB2k8WpGI--H8fLe0dbnGuckM,1525
78
+ whop_sdk/types/app_create_params.py,sha256=RcR6h2iGfaDnHDazGa_1x7yBPWGGYXDhJrEAt2REbOw,511
79
+ whop_sdk/types/app_list_params.py,sha256=mhtHR10gUk1V_Ep_s5GV_EK9b7Su9S3M2L9RTB7wXxc,1676
80
+ whop_sdk/types/app_list_response.py,sha256=L8C3W-npylDiF7dvOmbL9KN_sD8jAp3Fg55aZLKmLDY,2905
81
+ whop_sdk/types/app_type.py,sha256=YL8QV0UmWkZBib04VeFQB_SpJuXQHmISD9DvvhHm6QM,239
82
+ whop_sdk/types/app_update_params.py,sha256=-XhXAKhvwbWrw8x5OYEQyEyoFCFKtt0ar7N609uGwM8,2086
83
+ whop_sdk/types/assessment_question_types.py,sha256=MDtAx-iDP4zGxDX9O64ysqgxag39rIOzlHltkb57MvY,289
84
+ whop_sdk/types/authorized_user_list_params.py,sha256=tQnvhn6HGAlnGQY35IlPVlr_8RsAeOLrCTxYX3ji74I,1389
85
+ whop_sdk/types/authorized_user_list_response.py,sha256=J4ZeQNpWHpJxfeU14N2DVE7obqX8DaCieeNf1bNADJc,851
86
+ whop_sdk/types/authorized_user_retrieve_response.py,sha256=GxjI33yhdXVSnI-jcJk2nicVlFiLljvnFLQcf6O94G4,859
87
+ whop_sdk/types/billing_reasons.py,sha256=6R9xVBuXfrZZnwt2zfwfrdaK3XNfGE0W5GrxNzxX-tI,315
88
+ whop_sdk/types/card_brands.py,sha256=7kGkFLr0Us2QMKd3An3_lW1KgIxwDjfUsRiTBALdUBk,455
89
+ whop_sdk/types/chat_channel_list_params.py,sha256=Izu0iL0wlzKih6nPx54UdFZs7oncfzmoGIdG2V6xofk,871
90
+ whop_sdk/types/chat_channel_list_response.py,sha256=wgFxMHi9nVZu4tdm2GKHxtUOvaDT5gg930uMw04ECn0,1119
91
+ whop_sdk/types/chat_channel_update_params.py,sha256=FjHT2YsQ2X4FqYJGnm9oBUV2NUCECVakBd98QleWtcY,938
92
+ whop_sdk/types/checkout_configuration_create_params.py,sha256=lZ-SoVZUrQC71NlXkN6itk9Guui1n081JGIPBx-ToTA,13960
93
+ whop_sdk/types/checkout_configuration_list_params.py,sha256=O5eu2N2SYhojVdtzaaWCIt93vw8DXtIgRkyoekjsayY,1358
94
+ whop_sdk/types/checkout_configuration_list_response.py,sha256=lEATQ-93H3cTfd8MQy_OILbbzQoyAFDE9khFe2nGGjQ,3462
95
+ whop_sdk/types/checkout_modes.py,sha256=IQPsPLobcvWbkyI3yTBbdpp9qZY6r5e5rST0tIOp2Os,221
96
+ whop_sdk/types/company_create_params.py,sha256=RvXABl9_A_NSviH4ZE99Zt_-CR4SZ8qU1fg50MBwvHE,650
97
+ whop_sdk/types/company_list_params.py,sha256=y_o_-pF0OL2Q02zKT1UCp98dIzrGRnhljdFByrTS218,1240
98
+ whop_sdk/types/company_list_response.py,sha256=1mObhV9Fe1DvyN7qCU_pz9Jrb3KcoaXCw7YAzYlUxZ0,1978
99
+ whop_sdk/types/course.py,sha256=H3qiPAYDH6UNaRgR7DSQRZZKdeMTmdPeu9jMUXXbdRA,3142
100
+ whop_sdk/types/course_chapter.py,sha256=oORwvfiA-J1nBTxQOoh7Ya3R7aGvgYHAIsOuw5YOVgQ,656
101
+ whop_sdk/types/course_chapter_create_params.py,sha256=JHkEnFM9zVB8vCxsAfcheR_nBjd_yG4ZmbpNmEOfXp0,447
102
+ whop_sdk/types/course_chapter_delete_response.py,sha256=Y8c4It-MgkuRBq03KaxQq3t_mpr7DF-VtZQVEcenW28,217
103
+ whop_sdk/types/course_chapter_list_params.py,sha256=pwcTwoQj6jXdOvTj6iooUDT_uaJg15Wi_RVINZ8hDO0,735
104
+ whop_sdk/types/course_chapter_list_response.py,sha256=FgaQIKMoHHAX20iYL69oYA2Ol3Q_Mir2y4MEs0jKQQw,391
105
+ whop_sdk/types/course_chapter_update_params.py,sha256=lIoXucBuT9Q8ZtcdySyhSY8lnaMkQ3DtVLdvq45e-cM,333
106
+ whop_sdk/types/course_create_params.py,sha256=lP3wQFUPc1khk6SgAbX0RjXwu6mZREpSlbkW3_wcY1w,2327
107
+ whop_sdk/types/course_delete_response.py,sha256=q5O6RTs1qA_19wY7Eu11b_04BFztt1mfp_aEDLcNwi0,203
108
+ whop_sdk/types/course_lesson_create_params.py,sha256=Dq5ho5LYCJolQRRPmHlKzijGWcJTipIynKA2QCb_FvI,1860
109
+ whop_sdk/types/course_lesson_delete_response.py,sha256=xXu5YlYTFPL0pOO7H4jy-dUsYqHKhHujiCvymeN16KQ,215
110
+ whop_sdk/types/course_lesson_interaction_completed_webhook_event.py,sha256=f1VgWame1Cj-St_7Ogpj6fFILJEiVmSfNTHyFjGJX9I,827
111
+ whop_sdk/types/course_lesson_interaction_list_params.py,sha256=z793oKOqjDrEB-dO_slo4driup4bRcUwk-A1YBhhdUA,1071
112
+ whop_sdk/types/course_lesson_list_params.py,sha256=5KVj9TqTN7FjglQ1ktWIneu0moPRrBaEWslzEqwl2D4,868
113
+ whop_sdk/types/course_lesson_list_response.py,sha256=eGvD5uxK31obhzcYe5sS_INJNvS-jNakaFlHodAPBm0,1552
114
+ whop_sdk/types/course_lesson_mark_as_completed_response.py,sha256=OeP2pcH6AVoMKMtJH9Olcjm0pZ0AogzdQk6ZBwuDDWw,233
115
+ whop_sdk/types/course_lesson_start_response.py,sha256=SP3fZT5lGE8hjtKgQiywpt6YDOIJ-nf2U4VhneIpnRU,213
116
+ whop_sdk/types/course_lesson_submit_assessment_params.py,sha256=sF3YHR3J1rXRG-L7L8VPDYV6zyDiP00KMbeOsL0Ghjo,830
117
+ whop_sdk/types/course_lesson_submit_assessment_response.py,sha256=aUTQ0a5N3QApedeHyELgLQcJBFEZAm803u9pBcKtbo8,1496
118
+ whop_sdk/types/course_lesson_update_params.py,sha256=cpwhrRtqmq2HMi7TEHIrrwzld95Z1IsI8JRVXKFpVeg,6969
119
+ whop_sdk/types/course_list_params.py,sha256=SfywPr3IRNcJ5mr_XzMd-zZz_4ICsIFgaOTQAVqiWe8,782
120
+ whop_sdk/types/course_list_response.py,sha256=R3ptO9Pkss83R6tmnmCJTfUa5yqj-TyNHnko-piJQ5Y,2434
121
+ whop_sdk/types/course_student_list_params.py,sha256=ydICXVKQxLpHN6fJ85SRwP7AhJamHQ64_hCNULyXamQ,846
122
+ whop_sdk/types/course_student_list_response.py,sha256=jR2bFW00UL-lkA0VkO86SntIR7ZMHK9xO2fsTSC7Q7s,1111
123
+ whop_sdk/types/course_student_retrieve_response.py,sha256=M1yy6CWU7fVtRwvR6hQQSvSNPwIyCsvJEwUSVC7ON60,1563
124
+ whop_sdk/types/course_update_params.py,sha256=VABGA-0-nJhMa4iW1s2GMJQFJFgJlOpTKB1d3myqImM,3208
125
+ whop_sdk/types/course_visibilities.py,sha256=YEscvrxbx1vSmxRugeyiu9B6Vu4b3qTcBf4NzBUZe5c,232
126
+ whop_sdk/types/dispute.py,sha256=6XJFTWz6saRW78Od-5mzTP1TPwdc8-6VtSgMpdjoezE,7882
127
+ whop_sdk/types/dispute_created_webhook_event.py,sha256=teMoKTej1tH6oCD6ROLBlB2NcHfHj_E5jwFtwa0dmus,711
128
+ whop_sdk/types/dispute_list_params.py,sha256=7DmL9BWeUP4c8B3s4Dc-koZYDWxuGRcNE7PYNAFzIT8,1221
129
+ whop_sdk/types/dispute_list_response.py,sha256=J2AebaVLY659yEBYDiTnCRzSZC0dStAEOgmDfSj3898,1850
130
+ whop_sdk/types/dispute_statuses.py,sha256=7w3DS1v-MlhOwbDYCVFvTtbGKEkpqwblpFBO4a07XXk,380
131
+ whop_sdk/types/dispute_update_evidence_params.py,sha256=XGy_biqaxLZxsV8sFhcEX9MRE9TZaEH8nOZltdauZnM,5717
132
+ whop_sdk/types/dispute_updated_webhook_event.py,sha256=cwEymMV6orfCg30v3CNK-KPQPbFl6_87oGnYYoKkULo,711
133
+ whop_sdk/types/embed_type.py,sha256=A4ED9ldSWieLoBsEUklpHiBYornIjSrxYcoTBHiPXak,212
134
+ whop_sdk/types/entry_approve_response.py,sha256=BmQRUFLmg7ksfGDvWbZM-uhn0crO15ObIle1llpJ4gs,241
135
+ whop_sdk/types/entry_approved_webhook_event.py,sha256=n2kVx6N6vVt0CVFh6uMqZdjfB2CMB_IKmk1w1QQMqj0,704
136
+ whop_sdk/types/entry_created_webhook_event.py,sha256=dTYvW_UWI4jNFjTh67F9M1wptRVJkFRsjpvFvPDVCAs,701
137
+ whop_sdk/types/entry_deleted_webhook_event.py,sha256=KUEvWUNGRjmoIa2SSQPz8nGHo9FdpuOgxgQTKRzpgPg,701
138
+ whop_sdk/types/entry_denied_webhook_event.py,sha256=zkH1WEQLxL9jfkTIWybvks_IvqE26KpPbpLV0lcSY0s,698
139
+ whop_sdk/types/entry_list_params.py,sha256=hzbhW15pCTTOuF78dOuhBXObvMRubg25EZuuFCOQROw,1670
140
+ whop_sdk/types/entry_list_response.py,sha256=oje2JJPn6QdnC0Lrytetj0WDon3GkP1CSQ2jpbCxiCg,1292
141
+ whop_sdk/types/experience_attach_params.py,sha256=r3Fylz1c_FRsVPbCjkgLp9CWqda0-ebrovWkyB1NLn0,359
142
+ whop_sdk/types/experience_create_params.py,sha256=Gdo78F8kdPfUqg1h6PRac6gXX5PUxqyV6UON4hOfxIE,623
143
+ whop_sdk/types/experience_delete_response.py,sha256=Ow-sVPect-rArzOFYmzgYH6tTQBSvZ9LHBCH1qQHX7o,211
144
+ whop_sdk/types/experience_detach_params.py,sha256=3zo-blS5PXafwtkosZDevESVX9OZZcWvox-v1cYYl5I,359
145
+ whop_sdk/types/experience_duplicate_params.py,sha256=tuNFJL4M0XhXB8Xy6eE7anMvBbCxAvQ3sXHPGXtlg1o,356
146
+ whop_sdk/types/experience_list_params.py,sha256=KumQjoP15L9v6TnqDKFyYSBcmzuVbHJh_5AzbShKeQU,1286
147
+ whop_sdk/types/experience_list_response.py,sha256=fMyJp-eKEoWBeUlvBDOsJPSGznp0k31i8nQGX9wdv8Q,1674
148
+ whop_sdk/types/experience_update_params.py,sha256=PI7uKBMGjnxSL8gDIJaqtma1fCzcM6yUzQYsbh1qErM,1499
149
+ whop_sdk/types/forum_list_params.py,sha256=FEokFwoFtW5G2kVRxKsOkrBRvD9p51sTkvBvTIMdwFc,845
150
+ whop_sdk/types/forum_list_response.py,sha256=chmhKtDweIZbdQLp8qnldDQNbKhDsMbKP2_myYIZSwg,962
151
+ whop_sdk/types/forum_post_create_params.py,sha256=K-lzk0xM8cT4Ni9Cyfj7fIFXSuMzB-8axM3oamW3e18,2997
152
+ whop_sdk/types/forum_post_list_params.py,sha256=LhexqLe4l5rgCpK9mDZvBcigr_R0oHdIwBA9cJOj7ZY,935
153
+ whop_sdk/types/forum_post_list_response.py,sha256=8ZIRCIvNLil2nb8SKEn_hfuuUi-Pi70lvdpk3f_s4rE,1541
154
+ whop_sdk/types/forum_post_update_params.py,sha256=ujoD3NLjzkn3PFq73cmehwOJmxkPhENtMeh720uilCk,1760
155
+ whop_sdk/types/forum_post_visibility_type.py,sha256=gkDiW2naLG1IfTq-XGa8CRDOq6CvYc7DH8EjipIUEEE,257
156
+ whop_sdk/types/forum_update_params.py,sha256=rJdsyF7Vp-KG9NRO3C2rWoTv4HM_bOPteO_TTZEw_Kk,787
157
+ whop_sdk/types/invoice_create_params.py,sha256=7ZYqNhTDAORw2EW0Tjt7hzJz44KxmUhnoVU0cBR4-Y0,16901
158
+ whop_sdk/types/invoice_created_webhook_event.py,sha256=vOqs7dvVugMyGxGQwsaR-RLMt1H99Q5RIcBqUJjUm4A,720
159
+ whop_sdk/types/invoice_list_params.py,sha256=7Jmb5jRaic0I06IfnBRmKJnMIFHG7gkPz3CXpCx0MYU,1806
160
+ whop_sdk/types/invoice_paid_webhook_event.py,sha256=eKuyy-mtYbci-tD3z6FXhYPBFOMF_RoRkCyhxEeVyWE,711
161
+ whop_sdk/types/invoice_past_due_webhook_event.py,sha256=fQ8iolFKF5JlBPTO0eJ3AV07HwPHp5Q3xejDv4UjOn4,721
162
+ whop_sdk/types/invoice_void_response.py,sha256=UCzKF3gIwlrUtPKetjkFCWchtuHHlTF6DhjQifpG4Zs,201
163
+ whop_sdk/types/invoice_voided_webhook_event.py,sha256=uZPampFky1O9ezhZr6qQUiZKt7FrkrQikkJ7Qy3XL0Y,717
164
+ whop_sdk/types/languages.py,sha256=yf7-lk4lbyzux4SRq__fxI8yUFtMnUT5ktFY9eUm_ec,416
165
+ whop_sdk/types/ledger_account_retrieve_response.py,sha256=dBkp_RhnZK0mFO-6ZE0zbVPsqIB0U6At-4JW50Iy26Q,2532
166
+ whop_sdk/types/lesson.py,sha256=UHijXbuSs850_xRS9JjoQWOFmTM3fLGqgL0YWIfesHM,5814
167
+ whop_sdk/types/lesson_types.py,sha256=RSoNTuYFskruZpCA0p1YDz_uXEBY7QuOXcDSNqSqb-Y,257
168
+ whop_sdk/types/lesson_visibilities.py,sha256=RIsBgh6BlCSYW_QWUmLC018ssXRvD2ArUCrrHgBEMss,232
169
+ whop_sdk/types/member_list_params.py,sha256=yO8dmb7ahgwthfUm40xctP-FRSei-SXdiE0MCrtWTPo,2516
170
+ whop_sdk/types/member_list_response.py,sha256=9xx0BZ_zMpDSSKhsCExQtAr_rTnMsXp2JxFp4ZQyJFI,1868
171
+ whop_sdk/types/member_retrieve_response.py,sha256=cOgmwzP7pW6l4nD1_vWutRwUQG_8k7lATLsPeIkOKOI,2152
172
+ whop_sdk/types/membership_activated_webhook_event.py,sha256=hMDfOIZ2yh05Ce9sCtRqmmqCDR0rCMzCkGrhUojI19c,792
173
+ whop_sdk/types/membership_cancel_params.py,sha256=gpbjdIyKDsEyK7EjASp6EPpDG0_s7n28WA8cZQ4J0zA,417
174
+ whop_sdk/types/membership_deactivated_webhook_event.py,sha256=jCmZwseCIRLMxZOVi0ItX_H300j0Ty0NECcX8uUB3u8,798
175
+ whop_sdk/types/membership_list_params.py,sha256=nWHD4_gIRpHMmUQDffC2KqTOyPCW12FwDprwK3Jq1Rg,2372
176
+ whop_sdk/types/membership_list_response.py,sha256=LhSOJ0xhDMTv8EcyhSssfmwKnwp0nIR4jvnHgKTjZPk,3461
177
+ whop_sdk/types/membership_pause_params.py,sha256=vVIkqP0WT7biDlQA2hpFOeHUxJ3JBFaH2iVOxmAMKco,442
178
+ whop_sdk/types/membership_update_params.py,sha256=HE4wrvXC3NkJbltvfDJ-Set7mkoPQ80ri3UJVNL18NI,387
179
+ whop_sdk/types/message_create_params.py,sha256=RD9W3EvzT_oxviLqMeDqmwdMq3K7hL2CnGiOWqVN7eQ,1873
180
+ whop_sdk/types/message_list_params.py,sha256=8AN7GhxDnZ5qy2H3IQd8PTNmWw27l8HRFpBifC0yBu0,881
181
+ whop_sdk/types/message_list_response.py,sha256=cqgljAE4crUqrWVBDW6QjzEPKUBd67QLBsAXIFgxNHg,2201
182
+ whop_sdk/types/message_update_params.py,sha256=SeV2obPTM276p-be6qU_wH3cd2QYkngnhfm4Mt25g5Y,1384
183
+ whop_sdk/types/notification_create_params.py,sha256=4BzZk1GABRdsofnmqvxXtGwSp5kd4Io5hZTMgu1nHPU,2693
184
+ whop_sdk/types/notification_create_response.py,sha256=XUt47DOzl7Oeo5ZZlhb0oqi3sU7AUu4_ocaaRoMrSy0,298
185
+ whop_sdk/types/payment_create_params.py,sha256=obJDIooehiumyziGBbDN_jcL3sadOgspW6KJrEC_Qsg,5225
186
+ whop_sdk/types/payment_failed_webhook_event.py,sha256=xkX7Y0YNW-qosVNgLh3aVvrtzRRaeMHFkMEngr3u1to,714
187
+ whop_sdk/types/payment_list_params.py,sha256=8vTFWA_OW2S3sgZDDa05OUR8f5V6r4HFsYJBkP8tTi4,2169
188
+ whop_sdk/types/payment_list_response.py,sha256=mDlobk2kRDsOgSMZGy4QlUNSKgs-kLj6Sxf90t89CSc,7341
189
+ whop_sdk/types/payment_method_types.py,sha256=V1cQyTWzjZfAiXPsEfWlg9ZpxLAsw7RPGr7Yqd3d6tM,1570
190
+ whop_sdk/types/payment_pending_webhook_event.py,sha256=qU3UYBemWv1p61oI9Wffk7XwlPZs7n4N13IVVU26Zhw,717
191
+ whop_sdk/types/payment_provider.py,sha256=gNFxqWEGvcLVkvxbypcyOZRu5JHK_m0JPM8Sv5zgjq4,306
192
+ whop_sdk/types/payment_refund_params.py,sha256=yufV4xStyhADySf4R-0tTLAfQt9b-cPEcxVbS-_h9cs,376
193
+ whop_sdk/types/payment_succeeded_webhook_event.py,sha256=scfJM32qif2sO2A8Gxmymn0D8vCh93KKOCd0jJ0u6kg,723
194
+ whop_sdk/types/payment_token_list_params.py,sha256=I2hsBR12qH7hx9EdF8arzBx4Tx11ghjfSzZqBDyRKlk,1235
195
+ whop_sdk/types/payment_token_list_response.py,sha256=JtT3yd6fUAdwgzheIN0oPp9iGW2LOLKTBvRfuqtpPOw,1110
196
+ whop_sdk/types/payment_token_retrieve_params.py,sha256=qmtzo8B90fKnecfd3IUxAV8U1AkGHLqfh9v3j6oCxMc,368
197
+ whop_sdk/types/payment_token_retrieve_response.py,sha256=omS17EW5QEGJq8cetsRw_T-u-DjC-qPvdjWN-1-f4nk,1118
198
+ whop_sdk/types/plan_create_params.py,sha256=qMlTMJXYezYUN9xw8lB6PVEgNo7qx8wtv4k3atrjBSk,5155
199
+ whop_sdk/types/plan_delete_response.py,sha256=thq9RzCvOC4gst4SCDe_1h52qEM4fLQnCmmAi7OozQE,199
200
+ whop_sdk/types/plan_list_params.py,sha256=0YmTTzf1hRt_dwC1y3VUWX4EErNx4B7TqC0ofYGHrZA,1938
201
+ whop_sdk/types/plan_list_response.py,sha256=vTJadXd5re0Uwy995DRzFm8BK7jw6gEDvbgZHvzVqMU,3922
202
+ whop_sdk/types/plan_update_params.py,sha256=OXnkUa4RyxQnFlqPtXCpdzpJovT1hpRK7wHbPseLt1Q,4901
203
+ whop_sdk/types/product_create_params.py,sha256=FuGquTSosprh0ceaMji0rVqodr_6TguyXgWsUuvhYjI,4884
204
+ whop_sdk/types/product_delete_response.py,sha256=2e54l5an6skrKyKMVMQTlG0Tpi1uGgXr7ilORT-d_A4,205
205
+ whop_sdk/types/product_list_params.py,sha256=NX7NZDZ6ZZR8j-WxLc5Yim_z-broWG84wo533IRQSEs,1708
206
+ whop_sdk/types/product_update_params.py,sha256=PAj7xTAM4C6uXNJmmH8u4dZMFEjEcwwXDOWY1OvLNNg,2827
207
+ whop_sdk/types/promo_code.py,sha256=GsiQjtxjChRTe19E1aK2jmTGtlow5l0_Y5n9sVq9uH0,2404
208
+ whop_sdk/types/promo_code_create_params.py,sha256=Cb0UBzL1Csgf5kAlLxhdk2wvtsd7T3Lc4pP74gzYAR0,2252
209
+ whop_sdk/types/promo_code_delete_response.py,sha256=xFNnDLo0mFfc0WZqEXwbyrEn66r5nmxuN5zU4iJ5BTc,209
210
+ whop_sdk/types/promo_code_list_params.py,sha256=HGCO_YX1PYqV9jQ78CwLtqa78fLdw5DpvdYmpj2oqu4,1454
211
+ whop_sdk/types/promo_code_list_response.py,sha256=MIMFZSAEv-ymqCStlhu8i4UcIuQ44H8p-piXZfBF0TQ,2222
212
+ whop_sdk/types/promo_code_status.py,sha256=gtzWBJuxq8OXqIEd_5i5xR8bHSv1g8_J57JtfMs-Up8,239
213
+ whop_sdk/types/promo_duration.py,sha256=0yGCaOHTtE1GS5yrsGufXuIfIX__zNxb9r9pjYIbFAI,233
214
+ whop_sdk/types/reaction_create_params.py,sha256=Ob-TfU6l7YoV_4q2464OGNV5GnEO9dmOKQkZnwKZIU4,532
215
+ whop_sdk/types/reaction_list_params.py,sha256=iM965s_0f8Ruv25l2nDuIWIwV6zDvtWTMINQp3GT0yo,758
216
+ whop_sdk/types/reaction_list_response.py,sha256=STth_z9bRkHtNT8HXka6j0FImUxArTG0l8aDSN5Xizo,767
217
+ whop_sdk/types/refund_created_webhook_event.py,sha256=N3MiLV2lplivZV1Gt68B245_IbJBGZjwti9E_xP_s90,4326
218
+ whop_sdk/types/refund_list_params.py,sha256=gUb46HljhaYyiANhoZiWumHtaGgmCui1tjCGVlofghc,1218
219
+ whop_sdk/types/refund_list_response.py,sha256=vglZyFGFuggP5eH8QTJ9ttj4A9feZALQl9SmdF6MQF0,1461
220
+ whop_sdk/types/refund_reference_status.py,sha256=HiEYaewqXhOOYrJi0ytQ7noFWTseQM7OiIHUqBEvg4A,256
221
+ whop_sdk/types/refund_reference_type.py,sha256=8lbC01S3WeGoHLRf8gdHbiqwXgVnvGEEY8kaBHHYErM,307
222
+ whop_sdk/types/refund_retrieve_response.py,sha256=zaSrJqwlpGSmAbGfn4Mn-O4NooYd3JfBnWbE7n-89Eo,3774
223
+ whop_sdk/types/refund_status.py,sha256=8_1d75qXTJSqa6hGQ8CkaKgPoN9C0CMbXgiqCNR3q4M,264
224
+ whop_sdk/types/refund_updated_webhook_event.py,sha256=pqoWH6MCo68onLNtHZ0FfersCO2LGzEVbX4wIEpx8nA,4326
225
+ whop_sdk/types/review_list_params.py,sha256=oY7gtmuWMFDNWELZAp5_cxyhIsqVqj_N6b1rb--deuw,1265
226
+ whop_sdk/types/review_list_response.py,sha256=0_WDVei7fasePcX4qNkYvkuAeuVl7LzCM1yfMtPdv5c,1985
227
+ whop_sdk/types/review_retrieve_response.py,sha256=PmtYWDacQ-2KAx6Lx7GM27O4ozxu4lhrjruyRDvG4Hk,2505
228
+ whop_sdk/types/review_status.py,sha256=DowGOhyh8SJ_ogcO2ZjyA32kAbh0P8xBDiE4OqY0fno,234
229
+ whop_sdk/types/setup_intent.py,sha256=oeb0n9y5_IOrvvpvLKiNKqUG14Vc-Jftxd5evyRI4qk,2732
230
+ whop_sdk/types/setup_intent_canceled_webhook_event.py,sha256=MSb6a6LrVi1RlvBpfOLWa8zSbP5e2dBJHS1N4Db1ND4,849
231
+ whop_sdk/types/setup_intent_list_params.py,sha256=JmvegvAvmjheSrZFoBjh-zvpMym2AFx_akiPgHuluzA,1234
232
+ whop_sdk/types/setup_intent_list_response.py,sha256=NOwu0ZrAS3VnpJKGZNWUgywiCJ0TvOcPPhPviPJLqRU,2756
233
+ whop_sdk/types/setup_intent_requires_action_webhook_event.py,sha256=MvMjbfhd2xVsU13iwu0oDXw45__WCGz1oxhPG1Icd30,868
234
+ whop_sdk/types/setup_intent_status.py,sha256=sQfiDJJuibHw5xZLGpuMOglUfpA79o4cwZzosSyF3dg,267
235
+ whop_sdk/types/setup_intent_succeeded_webhook_event.py,sha256=Gfnehrr6xfvZWPp_F3q_zDrhphWJv9ubFouxSBEWElw,852
236
+ whop_sdk/types/shipment_create_params.py,sha256=hEs6yhudBM-0seQh3fMJnMenVLiT4ciKLL_dg-2yxNQ,521
237
+ whop_sdk/types/shipment_list_params.py,sha256=PE8psyKWx5oHZzf_CiZGxa5hPOdO7mzu0qcV7J3XdM0,837
238
+ whop_sdk/types/shipment_list_response.py,sha256=s8iM8zgcRLhuJsiiGkOx5jBEvGx-XdMKXI2O7iTnmfM,1238
239
+ whop_sdk/types/support_channel_create_params.py,sha256=u6HTWwkn0CwB97571-u3m4ZByeSnwVrSC3SO5_6pTMs,455
240
+ whop_sdk/types/support_channel_list_params.py,sha256=jOwBG5Sq43CqtBgCASXhIK7iSaVZKo-xYYizk4DI9Xs,1224
241
+ whop_sdk/types/support_channel_list_response.py,sha256=cGk6aD2MnitEl0vBcU9Zo6fcv3fgcL5W-_Fof66WEdM,1074
242
+ whop_sdk/types/transfer_create_params.py,sha256=aX9rhw6CcUEBlwmWP72QQk77KjNe7wAcpE7I5-yd5Uo,1104
243
+ whop_sdk/types/transfer_list_params.py,sha256=KTs1VBqr9Lftd4DX8x_2iqjc8cYL5FVF4iffbS4WJVM,1549
244
+ whop_sdk/types/transfer_list_response.py,sha256=NqBCkrPYnplMe8EVOxYXwgjnbMzOANm_Bu0X5ygVAAw,1099
245
+ whop_sdk/types/unwrap_webhook_event.py,sha256=gVA304XIxN0lG281WA2s0fKfzXwd_CMEXpoMce07vFY,2495
246
+ whop_sdk/types/user_check_access_response.py,sha256=yTVX5bG179Fje7eHE963tb0uIyhfgwdTnG6blPgXZpA,396
247
+ whop_sdk/types/user_retrieve_response.py,sha256=TLw1hQLx1iMrzLIIUo-dVS0S2Khz9eDTM4sPLzh0Kq4,887
248
+ whop_sdk/types/withdrawal_fee_types.py,sha256=3RErAGDktZBYYyEHsLd88RwRs-5mFaYp_hXVwuSdqxM,237
249
+ whop_sdk/types/withdrawal_list_params.py,sha256=oLcU-ULwE_UfquHMPFFdZAySYb3PIBawqO6IGFBws9o,1230
250
+ whop_sdk/types/withdrawal_list_response.py,sha256=__RpEaznOAeg5XFvrRnqnFRyP1gbQtgRs2M58PMchY0,1255
251
+ whop_sdk/types/withdrawal_retrieve_response.py,sha256=6est1-sOw_vYmshx-QcF22eMW5TNPeHbJQytr_-S2mI,4720
252
+ whop_sdk/types/withdrawal_speeds.py,sha256=bYQ4WRflxXaUD36i_QiBidXwMh9hTyo8ocQTxGraVdQ,230
253
+ whop_sdk/types/withdrawal_status.py,sha256=rRR_jNRRJi8WoOgVqGGFs-Vit0QRI_pu-IU1FxXmnto,305
254
+ whop_sdk/types/withdrawal_types.py,sha256=RTw1zE36_-ZkshIGO693ZoWYhs2cb5b-oyexBuTmvAQ,228
255
+ whop_sdk/types/shared/__init__.py,sha256=jBpAXGYGFIEzQHVStxhmxzxxS0rq6_CEG34-vGNkDyc,3552
256
+ whop_sdk/types/shared/access_level.py,sha256=N7AFb1LLSNelE3SsFxMYEMs6LLpPWpJ0CcITlKAw5Vg,231
257
+ whop_sdk/types/shared/access_pass_type.py,sha256=vOnYDBbtPgYMkBE3vNkesf56de3KyywrMfnHMP2Wo1E,254
258
+ whop_sdk/types/shared/app.py,sha256=T_fItDpuf8SZESi1pyl14qtKpFPo7PsnXsrrdEDSsJ4,4611
259
+ whop_sdk/types/shared/app_build.py,sha256=iUWV4VMzB0BF-6hGDFU3LILnJFyilaWyAlRQY1qNzdQ,1481
260
+ whop_sdk/types/shared/app_build_platforms.py,sha256=tN38K5SwZIuz8x6cOK2QRm-w2PQ9gqVzv5K4CUTUH6s,234
261
+ whop_sdk/types/shared/app_build_statuses.py,sha256=nXqvSTMpBwxoba3vwR271mo74ONYD0LbQNIvSyXErEI,251
262
+ whop_sdk/types/shared/app_statuses.py,sha256=mec_JZ22J1J8tyrYDQahXdCqVIKSu20_hBWWJoFI0Mk,227
263
+ whop_sdk/types/shared/app_view_type.py,sha256=6onJFEgYVOR-PWOAjuATIhaoEd4PBuEasM9aSrLgByk,250
264
+ whop_sdk/types/shared/authorized_user_roles.py,sha256=OYgikViNkaPlJC1Z74O_0pNoqrudRCAHwv_-q6EiFh0,304
265
+ whop_sdk/types/shared/business_types.py,sha256=na6rDTUq-7mNEEtSklo9bQpAbPvCDYtaqdt-_Ujfj5U,458
266
+ whop_sdk/types/shared/chat_channel.py,sha256=XhNU--uRengXLAw1V0j_-ywxKr98AHJR6RQ2mOzY3HM,1082
267
+ whop_sdk/types/shared/checkout_configuration.py,sha256=TjFWq5-KCxrE5S4pQ4-rLYSctQ0uddO1l6ejos0f4J0,3413
268
+ whop_sdk/types/shared/collection_method.py,sha256=AR0whMXigNq3T2485SM7L81EggDveDDTysf5S1dG7UA,247
269
+ whop_sdk/types/shared/company.py,sha256=dXUW6TFEQvdoGO-7elcyjsXL_DRFfAaQo9-BT5JObxE,2316
270
+ whop_sdk/types/shared/course_lesson_interaction.py,sha256=VLtj-5luIoX3BTCp1Ph9rycOu1o8M7a6dXIoKvysaTY,1424
271
+ whop_sdk/types/shared/course_lesson_interaction_list_item.py,sha256=xTHCIjXRAT0tGN2NAc53ldFUBuPIZY2O-hueJc2-L7I,995
272
+ whop_sdk/types/shared/currency.py,sha256=zUCSMOJ487GDpWunoBJQ-5UpzQ6RKdsh6ytq5qUtH5A,1129
273
+ whop_sdk/types/shared/custom_cta.py,sha256=cxxI2TdSIhhChZbnXhvg-LjbYT4v1xKBRCYewxlDkOw,415
274
+ whop_sdk/types/shared/direction.py,sha256=3CnMHCfeUHLJnvsSi2DzBOK8j8XZOx64VEIJV_DyA-s,208
275
+ whop_sdk/types/shared/dms_post_types.py,sha256=aJbOqR2tG4-3Xw8yR61GI2OTVYhiqetwPpke5urG6lk,233
276
+ whop_sdk/types/shared/email_notification_preferences.py,sha256=TIZRfJobb8k3BaHvh1_si3BGnfHMWTiqNZnVmGskI1k,281
277
+ whop_sdk/types/shared/entry.py,sha256=dIawL5U2eyJvysAKyABKFe4w78P6LYq5VSFn-bfq7U0,1685
278
+ whop_sdk/types/shared/entry_status.py,sha256=rKScfzuhErlTftwt5s8ytwjzMxRdgF_fDHt675SSzmw,248
279
+ whop_sdk/types/shared/experience.py,sha256=Cxt3NteMJamx4QBScvLrSMjVmxT8fVweigXOBpg9ORY,2137
280
+ whop_sdk/types/shared/forum.py,sha256=uEWVfvcspdS8rO3hF4vmJCMNHKOjxgdr8jmtl-_vI28,918
281
+ whop_sdk/types/shared/forum_post.py,sha256=VQ4PtnyxQ0T_oEL140S-pLaLsVm4OCGog3VnAzNFO18,1518
282
+ whop_sdk/types/shared/friendly_receipt_status.py,sha256=m7RwLFQAff-vIxe1AKxxzCA6zTIACt2jaBFfyYeEklY,520
283
+ whop_sdk/types/shared/global_affiliate_status.py,sha256=84JL0I8eA8cBbuC1atl9LSkIIj1tQ_N_FAaVQYoaU6g,240
284
+ whop_sdk/types/shared/industry_types.py,sha256=6Jc8-qhJK9VZjXvLSIyPWKwcqLL0PXhzXBaHQ84Z90A,1360
285
+ whop_sdk/types/shared/invoice.py,sha256=jpjir0eRA5_s2X54l6IMVBXsNaWRJ2DPI5_eSm-O2Jw,1559
286
+ whop_sdk/types/shared/invoice_list_item.py,sha256=e0SiuZaazYQ0_enOGaRYPtFd1cgY8tdbtJtjz7Udv2k,1575
287
+ whop_sdk/types/shared/invoice_status.py,sha256=iQTeslUW9cGMKugyrxMyt1RLnb8G7rnS4HN4cSy470k,237
288
+ whop_sdk/types/shared/member_most_recent_actions.py,sha256=WoE8SC61ONdYfHdbgGQqhxrZCcXYbBn2GzOvCgA5ieE,462
289
+ whop_sdk/types/shared/member_statuses.py,sha256=F70TZW6OAUUPCjyWj5Kg9qf9QVh8mmiexQPHPHlIKGc,232
290
+ whop_sdk/types/shared/membership.py,sha256=ivMZZ3tJff1VhZYiLHAwG4pTuPtBm6ZsJ4buncRE8Qc,3424
291
+ whop_sdk/types/shared/membership_status.py,sha256=fVBZTFA0kTdA8Iw1G2Bvbw0-5LeDuQGOjXWJ20eGLzE,308
292
+ whop_sdk/types/shared/message.py,sha256=rlWnVzyHRbWzViQXHHtIGJ3r1tDtt-HdBBRrU99SwAI,2171
293
+ whop_sdk/types/shared/page_info.py,sha256=XW0HkyfhapnBBGpIq8nU8XUXNqLMEnpclAkgTM-qoQ0,571
294
+ whop_sdk/types/shared/payment.py,sha256=GLDwMI0TQD15cAfu7SWWOnpLeW6LHtVzC85m0-QV4ak,7286
295
+ whop_sdk/types/shared/plan.py,sha256=LnCgB-wdiOjYAfR1vHhiniGofrwNkEufZYUDlDzXZL0,4693
296
+ whop_sdk/types/shared/plan_type.py,sha256=Nw7Ve84zWz5Yh2JXpIX2u3fYYXlvXxgSVVAN-f7dbtM,214
297
+ whop_sdk/types/shared/product.py,sha256=robHaE4XPytnxuSSVdUaD1xIto8O8YEzNORtq9jdWxg,3825
298
+ whop_sdk/types/shared/product_list_item.py,sha256=I9jvjHv_NWOsW2aRwtZh4yekcvYzSU9a4_X6Qf1Zq3o,1618
299
+ whop_sdk/types/shared/promo_type.py,sha256=CzfzRc2tMZ5saK9a9ALjoP9dCUBdN96UiNgMDK6sdMQ,222
300
+ whop_sdk/types/shared/reaction.py,sha256=n0EAXiE63khprKkvfTGyFvji0aYnbaz2cb2OL2GHmWo,744
301
+ whop_sdk/types/shared/receipt_status.py,sha256=g9uJKsc6K_Ysp4A1BM7gljCDlNj-LAJXpzjr-4MqeVo,276
302
+ whop_sdk/types/shared/release_method.py,sha256=zSSnOB8PuZ9ze_HvWcfGTVP_-Yckz2V-AzK7DmwVpAY,224
303
+ whop_sdk/types/shared/shipment.py,sha256=moV9XlUdXgCTPd8BIUqm6ybsp1CRDFRhydSMqgE_Idk,1194
304
+ whop_sdk/types/shared/shipment_carrier.py,sha256=lL9XIRtQQEz0VX-079T13IMjSb2T6cozjyken0DgG9E,1531
305
+ whop_sdk/types/shared/shipment_status.py,sha256=CcgO43npz8EEdV0HD-juZ6tt_O1gIALRmw-4Z9Rv1Ps,396
306
+ whop_sdk/types/shared/shipment_substatus.py,sha256=OL5-P8OiDqMiXIDeyQS_LHdCQT8iZZSSWIIUtnQaQcI,899
307
+ whop_sdk/types/shared/support_channel.py,sha256=gZogdwkPC15ZA4RKE9rDQz8bUsY46fHLEuVLqXofT3s,1051
308
+ whop_sdk/types/shared/tax_type.py,sha256=3xkFY5q6bzTXzmJW5wcwQmkeR2PsGLunhxFtiQPHmVI,230
309
+ whop_sdk/types/shared/transfer.py,sha256=ImU1lwF9o2haGav0tceEZczy0LQHORTQF9F5kYZJrWU,2924
310
+ whop_sdk/types/shared/visibility.py,sha256=Dc2FJHw5BM-qcc0R8HLm4zD9nbv6c0JkzxF8q9cugQ0,242
311
+ whop_sdk/types/shared/visibility_filter.py,sha256=nXeayOEKvmvE-yUyVypykZkqMdtZZLMN10x5J2dL4j8,301
312
+ whop_sdk/types/shared/who_can_comment_types.py,sha256=FxL9Z9ub-0s7MxQOf_svBvzm1Rdg38DuGsL9819Fr6M,233
313
+ whop_sdk/types/shared/who_can_post.py,sha256=K1TZ_qDl5rHFQw5sqX90o28wlPiUSRVgnmVH1L6pHtI,217
314
+ whop_sdk/types/shared/who_can_post_types.py,sha256=c774fUMq3kVFusrXSCFAtCVKvnk3_N3aX4KiwYKqyfo,227
315
+ whop_sdk/types/shared/who_can_react.py,sha256=oo08NdKK8ScuRbUKtK59MiyzxuwTLf-FYrOM6AfQV58,219
316
+ whop_sdk/types/shared_params/__init__.py,sha256=uSP1kbLG39vlTGRS1pA5qEjeVbZ7KdqYAkayLJ57tEY,2072
317
+ whop_sdk/types/shared_params/access_level.py,sha256=uFky0YRTNFk5dxQG2-wROvrR9vEKvgzIZ7bPzWPS0uU,267
318
+ whop_sdk/types/shared_params/access_pass_type.py,sha256=SSomnqDwTTdQJ6M7EM43foWE2vqwbG5Dc83DNM3DGdo,290
319
+ whop_sdk/types/shared_params/app_build_platforms.py,sha256=_oLIXVAEBhiXW4R-eqm6zL0PcauvcBKElKpPzz0wqpI,270
320
+ whop_sdk/types/shared_params/app_build_statuses.py,sha256=l-u8VTKQ11GD312NLVldwWkMI98XeQtdejpkG4kb6qg,287
321
+ whop_sdk/types/shared_params/app_statuses.py,sha256=D5AbmKY60CCkynf6aMdYMl26GzrsEByHICirN0pHfMU,263
322
+ whop_sdk/types/shared_params/app_view_type.py,sha256=JcmEvBxr5X1_BP06SX_aahaRcJlQvuc3eR1mlDUlMXE,286
323
+ whop_sdk/types/shared_params/authorized_user_roles.py,sha256=zn-gA2F-vsgXIv5j5uJCQL6EVu9XUYHoEH98ip_a_Sc,340
324
+ whop_sdk/types/shared_params/business_types.py,sha256=RXiGNWEc4LfZsLSmHKZiX_b5yLVS0gl27KTvb60SXEc,494
325
+ whop_sdk/types/shared_params/collection_method.py,sha256=GIpsoCsE6DMyaIkxuBHPmjyNWQ9-0aJH4Eb1Kf0A0rs,283
326
+ whop_sdk/types/shared_params/currency.py,sha256=SvFaFoVgry4UuOTm7cpAO6lC2yLMvTXXikIpv9dPBEc,1165
327
+ whop_sdk/types/shared_params/custom_cta.py,sha256=OKDtP2xPdA_LysC6QEbslWjLwAvUq1-zJmuVKnb7NUk,451
328
+ whop_sdk/types/shared_params/direction.py,sha256=iwSFDEp8XmieJjuy_LRSg9UwTG7U3gBVDkXQko73X2I,244
329
+ whop_sdk/types/shared_params/email_notification_preferences.py,sha256=rWpF34PiBqgZVHAjtc4fLWubLIDxRoSWOmEwt5Ru3Yc,317
330
+ whop_sdk/types/shared_params/entry_status.py,sha256=U8GTkxFoZdRQdeSpYomOgm1HRloWSUqFcYXKIv8N0zA,284
331
+ whop_sdk/types/shared_params/friendly_receipt_status.py,sha256=diw88gkPihPIRQOg05cS3GsAMJdHQV7P5cZbRwSC8aw,556
332
+ whop_sdk/types/shared_params/global_affiliate_status.py,sha256=GzjSgcqUZTmKIdWJjwPNmX3ic7o2bD7SUgExDyR2Vl8,276
333
+ whop_sdk/types/shared_params/industry_types.py,sha256=uO9iCDnBjtLHSlcsdctzfozJhA3w0QhWXrqi-26phjE,1396
334
+ whop_sdk/types/shared_params/invoice_status.py,sha256=-BBL8I9jacsoVvOdcs2uVFPiuEw9KHbtcEuv3DNG2aE,273
335
+ whop_sdk/types/shared_params/member_most_recent_actions.py,sha256=t357Wgm0lTXwr0HC-YRbUZZV5wJVMNOTdSVt8wTjGdk,498
336
+ whop_sdk/types/shared_params/member_statuses.py,sha256=4pk6hb401llxxFXKDN5pykN-Y60ddFOLZ0-cCoz-jQc,268
337
+ whop_sdk/types/shared_params/membership_status.py,sha256=s2Zr4Bmrq-mMyOLNujPG1obYhCpvrKlIup9dVGhUa0U,344
338
+ whop_sdk/types/shared_params/plan_type.py,sha256=vLiqJk-xnhEHe8803G6PpUyvUseasKyKrwgLw3IgQYI,250
339
+ whop_sdk/types/shared_params/promo_type.py,sha256=1MhPY80JG4-2BynNqFp-f-UBboXPxNNT_tabVWHtfqc,258
340
+ whop_sdk/types/shared_params/receipt_status.py,sha256=a-SrHrWV1wTFBQZOxps2WkKfTtDNfsGL2GL0qFc9wSc,312
341
+ whop_sdk/types/shared_params/release_method.py,sha256=0hlhVIuK0yBP1wK4RvBV2xdITXiZ30SWAX8OEetU4Uc,260
342
+ whop_sdk/types/shared_params/tax_type.py,sha256=6aw3Efg3azcK1MPSsq5qLTcjhoGRN67TcctnUEYDgmw,266
343
+ whop_sdk/types/shared_params/visibility.py,sha256=GN9LjM8wvN4WsxvncNf_FCyV-kndHTdSYUirgZ2GfPI,278
344
+ whop_sdk/types/shared_params/visibility_filter.py,sha256=SloM0PBtpC7_cNWkjwEvn1bt2PpTeB0zpKHHeDS5xXA,337
345
+ whop_sdk/types/shared_params/who_can_comment_types.py,sha256=4Y_BSVriBrwVzBo1QECLv-qquKUOoW1Pf2xKTBYSYD8,269
346
+ whop_sdk/types/shared_params/who_can_post.py,sha256=dkso3iA30UJVB255dDPJwTzlp8B89Y-Z15FZu2WiUz4,253
347
+ whop_sdk/types/shared_params/who_can_post_types.py,sha256=LjS1SstlxV2dCHPPvQindwsMNdzN8WI1VobpgMzZcSk,263
348
+ whop_sdk/types/shared_params/who_can_react.py,sha256=4YUupIaV-Yhsp2QdjgkpsW3VQJXNSwWzdRB8ZG7glSU,255
349
+ whop_sdk-0.0.10.dist-info/METADATA,sha256=wzVUvvJb-LOpjHARtBd_OaEK5KtDaEfQ7zByl52RN0k,15868
350
+ whop_sdk-0.0.10.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
351
+ whop_sdk-0.0.10.dist-info/licenses/LICENSE,sha256=NTOvHnUCfOM0SRYc0Fp2aPGV8m4Ftb124ILIlNNeGzI,11334
352
+ whop_sdk-0.0.10.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.26.3
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2025 Whop
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.