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.
- whop_sdk-0.0.2/.release-please-manifest.json +3 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/CHANGELOG.md +19 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/PKG-INFO +2 -2
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/api.md +44 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/pyproject.toml +2 -2
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/requirements-dev.lock +1 -1
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/requirements.lock +1 -1
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_client.py +18 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_version.py +1 -1
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/__init__.py +28 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/checkout_configurations.py +12 -12
- whop_sdk-0.0.2/src/whop_sdk/resources/forums.py +446 -0
- whop_sdk-0.0.2/src/whop_sdk/resources/members.py +421 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/plans.py +10 -4
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/__init__.py +25 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/app_list_response.py +16 -1
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/checkout_configuration_create_params.py +5 -5
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/checkout_configuration_list_response.py +9 -9
- whop_sdk-0.0.2/src/whop_sdk/types/course_lesson_interaction_completed_webhook_event.py +26 -0
- whop_sdk-0.0.2/src/whop_sdk/types/entry_approved_webhook_event.py +26 -0
- whop_sdk-0.0.2/src/whop_sdk/types/entry_created_webhook_event.py +26 -0
- whop_sdk-0.0.2/src/whop_sdk/types/entry_deleted_webhook_event.py +26 -0
- whop_sdk-0.0.2/src/whop_sdk/types/entry_denied_webhook_event.py +26 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/experience_list_response.py +27 -1
- whop_sdk-0.0.2/src/whop_sdk/types/forum_list_params.py +28 -0
- whop_sdk-0.0.2/src/whop_sdk/types/forum_list_response.py +33 -0
- whop_sdk-0.0.2/src/whop_sdk/types/forum_update_params.py +23 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_create_params.py +10 -2
- whop_sdk-0.0.2/src/whop_sdk/types/member_list_params.py +70 -0
- whop_sdk-0.0.2/src/whop_sdk/types/member_list_response.py +65 -0
- whop_sdk-0.0.2/src/whop_sdk/types/member_retrieve_response.py +79 -0
- whop_sdk-0.0.2/src/whop_sdk/types/membership_activated_webhook_event.py +29 -0
- whop_sdk-0.0.2/src/whop_sdk/types/membership_deactivated_webhook_event.py +29 -0
- whop_sdk-0.0.2/src/whop_sdk/types/payment_failed_webhook_event.py +26 -0
- whop_sdk-0.0.2/src/whop_sdk/types/payment_pending_webhook_event.py +26 -0
- whop_sdk-0.0.2/src/whop_sdk/types/payment_succeeded_webhook_event.py +26 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/plan_create_params.py +10 -2
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/__init__.py +7 -0
- whop_sdk-0.0.2/src/whop_sdk/types/shared/access_level.py +7 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/app.py +25 -1
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/checkout_configuration.py +9 -9
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/company.py +15 -1
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/course_lesson_interaction.py +20 -1
- whop_sdk-0.0.2/src/whop_sdk/types/shared/email_notification_preferences.py +7 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/experience.py +27 -1
- whop_sdk-0.0.2/src/whop_sdk/types/shared/forum.py +33 -0
- whop_sdk-0.0.2/src/whop_sdk/types/shared/member_most_recent_actions.py +22 -0
- whop_sdk-0.0.2/src/whop_sdk/types/shared/member_statuses.py +7 -0
- whop_sdk-0.0.2/src/whop_sdk/types/shared/who_can_comment_types.py +7 -0
- whop_sdk-0.0.2/src/whop_sdk/types/shared/who_can_post_types.py +7 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/__init__.py +6 -0
- whop_sdk-0.0.2/src/whop_sdk/types/shared_params/access_level.py +9 -0
- whop_sdk-0.0.2/src/whop_sdk/types/shared_params/email_notification_preferences.py +9 -0
- whop_sdk-0.0.2/src/whop_sdk/types/shared_params/member_most_recent_actions.py +24 -0
- whop_sdk-0.0.2/src/whop_sdk/types/shared_params/member_statuses.py +9 -0
- whop_sdk-0.0.2/src/whop_sdk/types/shared_params/who_can_comment_types.py +9 -0
- whop_sdk-0.0.2/src/whop_sdk/types/shared_params/who_can_post_types.py +9 -0
- whop_sdk-0.0.2/src/whop_sdk/types/unwrap_webhook_event.py +38 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/user_check_access_response.py +2 -3
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/user_retrieve_response.py +12 -1
- whop_sdk-0.0.2/tests/api_resources/test_forums.py +310 -0
- whop_sdk-0.0.2/tests/api_resources/test_members.py +224 -0
- whop_sdk-0.0.1/.release-please-manifest.json +0 -3
- whop_sdk-0.0.1/src/whop_sdk/types/unwrap_webhook_event.py +0 -15
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/.gitignore +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/CONTRIBUTING.md +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/LICENSE +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/README.md +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/SECURITY.md +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/bin/check-release-environment +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/bin/publish-pypi +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/examples/.keep +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/noxfile.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/release-please-config.json +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/__init__.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_base_client.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_compat.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_constants.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_exceptions.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_files.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_models.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_qs.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_resource.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_streaming.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_types.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/__init__.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_compat.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_datetime_parse.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_logs.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_proxy.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_reflection.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_resources_proxy.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_streams.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_sync.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_transform.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_typing.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/_utils/_utils.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/lib/.keep +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/pagination.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/py.typed +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/app_builds.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/apps.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/authorized_users.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/chat_channels.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/companies.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/course_lesson_interactions.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/entries.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/experiences.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/forum_posts.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/invoices.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/ledger_accounts.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/memberships.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/messages.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/payments.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/products.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/reactions.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/shipments.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/support_channels.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/transfers.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/users.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/resources/webhooks.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/app_build_create_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/app_build_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/app_build_list_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/app_create_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/app_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/app_update_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/authorized_user_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/authorized_user_list_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/authorized_user_retrieve_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/chat_channel_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/chat_channel_list_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/chat_channel_update_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/checkout_configuration_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/course_lesson_interaction_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/entry_approve_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/entry_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/entry_list_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/experience_attach_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/experience_create_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/experience_delete_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/experience_detach_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/experience_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/experience_update_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/forum_post_create_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/forum_post_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/forum_post_list_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_create_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_created_webhook_event.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_paid_webhook_event.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_past_due_webhook_event.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_void_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/invoice_voided_webhook_event.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/ledger_account_retrieve_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/membership_cancel_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/membership_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/membership_list_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/membership_pause_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/membership_update_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/message_create_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/message_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/message_list_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/payment_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/payment_list_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/payment_refund_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/plan_delete_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/plan_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/plan_list_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/plan_update_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/product_create_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/product_delete_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/product_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/product_update_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/reaction_create_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/reaction_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/reaction_list_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/access_pass_type.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/app_build.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/app_build_platforms.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/app_build_statuses.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/app_statuses.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/app_view_type.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/authorized_user_roles.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/business_types.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/chat_channel.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/collection_method.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/course_lesson_interaction_list_item.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/currency.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/custom_cta.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/direction.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/dms_post_types.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/entry.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/entry_status.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/forum_post.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/friendly_receipt_status.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/global_affiliate_status.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/industry_types.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/invoice.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/invoice_list_item.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/invoice_status.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/membership.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/membership_status.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/message.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/page_info.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/payment.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/plan.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/plan_type.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/product.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/product_list_item.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/promo_type.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/reaction.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/receipt_status.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/release_method.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/shipment.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/shipment_carrier.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/shipment_status.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/shipment_substatus.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/support_channel.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/tax_type.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/transfer.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/visibility.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/visibility_filter.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/who_can_post.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared/who_can_react.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/access_pass_type.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/app_build_platforms.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/app_build_statuses.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/app_statuses.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/app_view_type.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/authorized_user_roles.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/business_types.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/collection_method.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/currency.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/custom_cta.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/direction.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/entry_status.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/friendly_receipt_status.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/global_affiliate_status.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/industry_types.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/invoice_status.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/membership_status.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/plan_type.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/receipt_status.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/release_method.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/tax_type.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/visibility.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/visibility_filter.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/who_can_post.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shared_params/who_can_react.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shipment_create_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shipment_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/shipment_list_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/support_channel_create_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/support_channel_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/support_channel_list_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/transfer_create_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/transfer_list_params.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whop_sdk/types/transfer_list_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/src/whopsdk/lib/.keep +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/__init__.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/__init__.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_app_builds.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_apps.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_authorized_users.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_chat_channels.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_checkout_configurations.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_companies.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_course_lesson_interactions.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_entries.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_experiences.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_forum_posts.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_invoices.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_ledger_accounts.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_memberships.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_messages.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_payments.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_plans.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_products.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_reactions.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_shipments.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_support_channels.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_transfers.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_users.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/api_resources/test_webhooks.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/conftest.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/sample_file.txt +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_client.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_deepcopy.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_extract_files.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_files.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_models.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_qs.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_required_args.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_response.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_streaming.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_transform.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_utils/test_datetime_parse.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_utils/test_proxy.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/test_utils/test_typing.py +0 -0
- {whop_sdk-0.0.1 → whop_sdk-0.0.2}/tests/utils.py +0 -0
|
@@ -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.
|
|
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.
|
|
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.
|
|
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.
|
|
42
|
+
aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.9"]
|
|
43
43
|
webhooks = ["standardwebhooks"]
|
|
44
44
|
|
|
45
45
|
[tool.rye]
|
|
@@ -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
|
|
@@ -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
|
|
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
|
|
73
|
+
affiliate_code: The affiliate code to use for the checkout configuration
|
|
74
74
|
|
|
75
|
-
metadata: The metadata to use for the checkout
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
262
|
+
affiliate_code: The affiliate code to use for the checkout configuration
|
|
263
263
|
|
|
264
|
-
metadata: The metadata to use for the checkout
|
|
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
|
|
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
|
|
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
|
|
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
|
|