diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 73a114de..34ac707c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.29" + ".": "0.0.30" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index c320243a..f91f6ee2 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 173 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/frostedinc%2Fwhopsdk-a31feaddba91a6f9add1ab7e57c9d03f60c5aea5fd18d5cebeb180bd78853cd0.yml -openapi_spec_hash: 15788ce9abb169053dc150c176bdc2c9 -config_hash: a3ec073d5f42f198e0ad21d85906c97e +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/frostedinc%2Fwhopsdk-cc6caefebc5d0c5b09a38a2ca3de9b07a8af8017a45a3a8ae4687eea30e5df93.yml +openapi_spec_hash: 384c511adb0c53319ac3ece08843f485 +config_hash: 8ac153ea57fa6460b13cded3f7c9c7a6 diff --git a/CHANGELOG.md b/CHANGELOG.md index e0f05d0d..dd2e1246 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.0.30 (2026-02-26) + +Full Changelog: [v0.0.29...v0.0.30](https://github.com/whopio/whopsdk-python/compare/v0.0.29...v0.0.30) + +### Features + +* **api:** api update ([8bacc15](https://github.com/whopio/whopsdk-python/commit/8bacc150c24deaf43874fc8bab9001c7eee0b707)) + ## 0.0.29 (2026-02-25) Full Changelog: [v0.0.28...v0.0.29](https://github.com/whopio/whopsdk-python/compare/v0.0.28...v0.0.29) diff --git a/api.md b/api.md index ff9ba50e..679a9af1 100644 --- a/api.md +++ b/api.md @@ -11,7 +11,6 @@ from whop_sdk.types import ( AppStatuses, AppViewType, AuthorizedUserRoles, - BusinessTypes, ChatChannel, CheckoutConfiguration, CollectionMethod, @@ -30,7 +29,6 @@ from whop_sdk.types import ( ForumPost, FriendlyReceiptStatus, GlobalAffiliateStatus, - IndustryTypes, Invoice, InvoiceListItem, InvoiceStatus, @@ -107,7 +105,7 @@ Methods: Types: ```python -from whop_sdk.types import IndustryGroups, ProductDeleteResponse +from whop_sdk.types import ProductDeleteResponse ``` Methods: diff --git a/pyproject.toml b/pyproject.toml index af38690d..80fe5263 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "whop-sdk" -version = "0.0.29" +version = "0.0.30" description = "The official Python library for the Whop API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/whop_sdk/_version.py b/src/whop_sdk/_version.py index 4817a4d5..c674ff57 100644 --- a/src/whop_sdk/_version.py +++ b/src/whop_sdk/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "whop_sdk" -__version__ = "0.0.29" # x-release-please-version +__version__ = "0.0.30" # x-release-please-version diff --git a/src/whop_sdk/resources/companies.py b/src/whop_sdk/resources/companies.py index 60a05f7b..37cb0775 100644 --- a/src/whop_sdk/resources/companies.py +++ b/src/whop_sdk/resources/companies.py @@ -7,7 +7,7 @@ import httpx -from ..types import IndustryGroups, company_list_params, company_create_params, company_update_params +from ..types import company_list_params, company_create_params, company_update_params from .._types import Body, Omit, Query, Headers, NotGiven, omit, not_given from .._utils import maybe_transform, async_maybe_transform from .._compat import cached_property @@ -21,11 +21,8 @@ from ..pagination import SyncCursorPage, AsyncCursorPage from .._base_client import AsyncPaginator, make_request_options from ..types.shared.company import Company -from ..types.industry_groups import IndustryGroups from ..types.shared.direction import Direction from ..types.company_list_response import CompanyListResponse -from ..types.shared.business_types import BusinessTypes -from ..types.shared.industry_types import IndustryTypes __all__ = ["CompaniesResource", "AsyncCompaniesResource"] @@ -54,11 +51,8 @@ def create( self, *, title: str, - business_type: Optional[BusinessTypes] | Omit = omit, description: Optional[str] | Omit = omit, email: Optional[str] | Omit = omit, - industry_group: Optional[IndustryGroups] | Omit = omit, - industry_type: Optional[IndustryTypes] | Omit = omit, logo: Optional[company_create_params.Logo] | Omit = omit, metadata: Optional[Dict[str, object]] | Omit = omit, parent_company_id: Optional[str] | Omit = omit, @@ -83,18 +77,12 @@ def create( Args: title: The display name of the company shown to customers. - business_type: The different business types a company can be. - description: A promotional pitch displayed to potential customers on the company's store page. email: The email address of the user who will own the connected account. Required when parent_company_id is provided. - industry_group: The different industry groups a company can be in. - - industry_type: The different industry types a company can be in. - logo: The company's logo image. Accepts PNG, JPEG, or GIF format. metadata: A key-value JSON object of custom metadata to store on the company. @@ -119,11 +107,8 @@ def create( body=maybe_transform( { "title": title, - "business_type": business_type, "description": description, "email": email, - "industry_group": industry_group, - "industry_type": industry_type, "logo": logo, "metadata": metadata, "parent_company_id": parent_company_id, @@ -179,10 +164,7 @@ def update( id: str, *, banner_image: Optional[company_update_params.BannerImage] | Omit = omit, - business_type: Optional[BusinessTypes] | Omit = omit, description: Optional[str] | Omit = omit, - industry_group: Optional[IndustryGroups] | Omit = omit, - industry_type: Optional[IndustryTypes] | Omit = omit, logo: Optional[company_update_params.Logo] | Omit = omit, route: Optional[str] | Omit = omit, send_customer_emails: Optional[bool] | Omit = omit, @@ -206,15 +188,9 @@ def update( Args: banner_image: The company's banner image. Accepts PNG or JPEG format. - business_type: The different business types a company can be. - description: A promotional pitch displayed to potential customers on the company's store page. - industry_group: The different industry groups a company can be in. - - industry_type: The different industry types a company can be in. - logo: The company's logo image. Accepts PNG, JPEG, or GIF format. route: The unique URL slug for the company's store page. Must be lowercase and can @@ -244,10 +220,7 @@ def update( body=maybe_transform( { "banner_image": banner_image, - "business_type": business_type, "description": description, - "industry_group": industry_group, - "industry_type": industry_type, "logo": logo, "route": route, "send_customer_emails": send_customer_emails, @@ -367,11 +340,8 @@ async def create( self, *, title: str, - business_type: Optional[BusinessTypes] | Omit = omit, description: Optional[str] | Omit = omit, email: Optional[str] | Omit = omit, - industry_group: Optional[IndustryGroups] | Omit = omit, - industry_type: Optional[IndustryTypes] | Omit = omit, logo: Optional[company_create_params.Logo] | Omit = omit, metadata: Optional[Dict[str, object]] | Omit = omit, parent_company_id: Optional[str] | Omit = omit, @@ -396,18 +366,12 @@ async def create( Args: title: The display name of the company shown to customers. - business_type: The different business types a company can be. - description: A promotional pitch displayed to potential customers on the company's store page. email: The email address of the user who will own the connected account. Required when parent_company_id is provided. - industry_group: The different industry groups a company can be in. - - industry_type: The different industry types a company can be in. - logo: The company's logo image. Accepts PNG, JPEG, or GIF format. metadata: A key-value JSON object of custom metadata to store on the company. @@ -432,11 +396,8 @@ async def create( body=await async_maybe_transform( { "title": title, - "business_type": business_type, "description": description, "email": email, - "industry_group": industry_group, - "industry_type": industry_type, "logo": logo, "metadata": metadata, "parent_company_id": parent_company_id, @@ -492,10 +453,7 @@ async def update( id: str, *, banner_image: Optional[company_update_params.BannerImage] | Omit = omit, - business_type: Optional[BusinessTypes] | Omit = omit, description: Optional[str] | Omit = omit, - industry_group: Optional[IndustryGroups] | Omit = omit, - industry_type: Optional[IndustryTypes] | Omit = omit, logo: Optional[company_update_params.Logo] | Omit = omit, route: Optional[str] | Omit = omit, send_customer_emails: Optional[bool] | Omit = omit, @@ -519,15 +477,9 @@ async def update( Args: banner_image: The company's banner image. Accepts PNG or JPEG format. - business_type: The different business types a company can be. - description: A promotional pitch displayed to potential customers on the company's store page. - industry_group: The different industry groups a company can be in. - - industry_type: The different industry types a company can be in. - logo: The company's logo image. Accepts PNG, JPEG, or GIF format. route: The unique URL slug for the company's store page. Must be lowercase and can @@ -557,10 +509,7 @@ async def update( body=await async_maybe_transform( { "banner_image": banner_image, - "business_type": business_type, "description": description, - "industry_group": industry_group, - "industry_type": industry_type, "logo": logo, "route": route, "send_customer_emails": send_customer_emails, diff --git a/src/whop_sdk/resources/products.py b/src/whop_sdk/resources/products.py index 3dd61216..a4b6793a 100644 --- a/src/whop_sdk/resources/products.py +++ b/src/whop_sdk/resources/products.py @@ -8,7 +8,7 @@ import httpx -from ..types import IndustryGroups, product_list_params, product_create_params, product_update_params +from ..types import product_list_params, product_create_params, product_update_params from .._types import Body, Omit, Query, Headers, NotGiven, SequenceNotStr, omit, not_given from .._utils import maybe_transform, async_maybe_transform from .._compat import cached_property @@ -22,12 +22,9 @@ from ..pagination import SyncCursorPage, AsyncCursorPage from .._base_client import AsyncPaginator, make_request_options from ..types.shared.product import Product -from ..types.industry_groups import IndustryGroups from ..types.shared.direction import Direction from ..types.shared.custom_cta import CustomCta from ..types.shared.visibility import Visibility -from ..types.shared.business_types import BusinessTypes -from ..types.shared.industry_types import IndustryTypes from ..types.product_delete_response import ProductDeleteResponse from ..types.shared.access_pass_type import AccessPassType from ..types.shared.product_list_item import ProductListItem @@ -62,7 +59,6 @@ def create( *, company_id: str, title: str, - business_type: Optional[BusinessTypes] | Omit = omit, collect_shipping_address: Optional[bool] | Omit = omit, custom_cta: Optional[CustomCta] | Omit = omit, custom_cta_url: Optional[str] | Omit = omit, @@ -72,8 +68,6 @@ def create( global_affiliate_percentage: Optional[float] | Omit = omit, global_affiliate_status: Optional[GlobalAffiliateStatus] | Omit = omit, headline: Optional[str] | Omit = omit, - industry_group: Optional[IndustryGroups] | Omit = omit, - industry_type: Optional[IndustryTypes] | Omit = omit, member_affiliate_percentage: Optional[float] | Omit = omit, member_affiliate_status: Optional[GlobalAffiliateStatus] | Omit = omit, plan_options: Optional[product_create_params.PlanOptions] | Omit = omit, @@ -103,8 +97,6 @@ def create( title: The display name of the product. Maximum 40 characters. - business_type: The different business types a company can be. - collect_shipping_address: Whether the checkout flow collects a shipping address from the customer. custom_cta: The different types of custom CTAs that can be selected. @@ -127,10 +119,6 @@ def create( headline: A short marketing headline displayed prominently on the product page. - industry_group: The different industry groups a company can be in. - - industry_type: The different industry types a company can be in. - member_affiliate_percentage: The commission rate as a percentage that members earn through the member affiliate program. @@ -160,7 +148,6 @@ def create( { "company_id": company_id, "title": title, - "business_type": business_type, "collect_shipping_address": collect_shipping_address, "custom_cta": custom_cta, "custom_cta_url": custom_cta_url, @@ -170,8 +157,6 @@ def create( "global_affiliate_percentage": global_affiliate_percentage, "global_affiliate_status": global_affiliate_status, "headline": headline, - "industry_group": industry_group, - "industry_type": industry_type, "member_affiliate_percentage": member_affiliate_percentage, "member_affiliate_status": member_affiliate_status, "plan_options": plan_options, @@ -229,7 +214,6 @@ def update( self, id: str, *, - business_type: Optional[BusinessTypes] | Omit = omit, collect_shipping_address: Optional[bool] | Omit = omit, custom_cta: Optional[CustomCta] | Omit = omit, custom_cta_url: Optional[str] | Omit = omit, @@ -239,8 +223,6 @@ def update( global_affiliate_percentage: Optional[float] | Omit = omit, global_affiliate_status: Optional[GlobalAffiliateStatus] | Omit = omit, headline: Optional[str] | Omit = omit, - industry_group: Optional[IndustryGroups] | Omit = omit, - industry_type: Optional[IndustryTypes] | Omit = omit, member_affiliate_percentage: Optional[float] | Omit = omit, member_affiliate_status: Optional[GlobalAffiliateStatus] | Omit = omit, product_tax_code_id: Optional[str] | Omit = omit, @@ -265,8 +247,6 @@ def update( - `access_pass:basic:read` Args: - business_type: The different business types a company can be. - collect_shipping_address: Whether the checkout flow collects a shipping address from the customer. custom_cta: The different types of custom CTAs that can be selected. @@ -289,10 +269,6 @@ def update( headline: A short marketing headline displayed prominently on the product page. - industry_group: The different industry groups a company can be in. - - industry_type: The different industry types a company can be in. - member_affiliate_percentage: The commission rate as a percentage that members earn through the member affiliate program. @@ -324,7 +300,6 @@ def update( f"/products/{id}", body=maybe_transform( { - "business_type": business_type, "collect_shipping_address": collect_shipping_address, "custom_cta": custom_cta, "custom_cta_url": custom_cta_url, @@ -334,8 +309,6 @@ def update( "global_affiliate_percentage": global_affiliate_percentage, "global_affiliate_status": global_affiliate_status, "headline": headline, - "industry_group": industry_group, - "industry_type": industry_type, "member_affiliate_percentage": member_affiliate_percentage, "member_affiliate_status": member_affiliate_status, "product_tax_code_id": product_tax_code_id, @@ -504,7 +477,6 @@ async def create( *, company_id: str, title: str, - business_type: Optional[BusinessTypes] | Omit = omit, collect_shipping_address: Optional[bool] | Omit = omit, custom_cta: Optional[CustomCta] | Omit = omit, custom_cta_url: Optional[str] | Omit = omit, @@ -514,8 +486,6 @@ async def create( global_affiliate_percentage: Optional[float] | Omit = omit, global_affiliate_status: Optional[GlobalAffiliateStatus] | Omit = omit, headline: Optional[str] | Omit = omit, - industry_group: Optional[IndustryGroups] | Omit = omit, - industry_type: Optional[IndustryTypes] | Omit = omit, member_affiliate_percentage: Optional[float] | Omit = omit, member_affiliate_status: Optional[GlobalAffiliateStatus] | Omit = omit, plan_options: Optional[product_create_params.PlanOptions] | Omit = omit, @@ -545,8 +515,6 @@ async def create( title: The display name of the product. Maximum 40 characters. - business_type: The different business types a company can be. - collect_shipping_address: Whether the checkout flow collects a shipping address from the customer. custom_cta: The different types of custom CTAs that can be selected. @@ -569,10 +537,6 @@ async def create( headline: A short marketing headline displayed prominently on the product page. - industry_group: The different industry groups a company can be in. - - industry_type: The different industry types a company can be in. - member_affiliate_percentage: The commission rate as a percentage that members earn through the member affiliate program. @@ -602,7 +566,6 @@ async def create( { "company_id": company_id, "title": title, - "business_type": business_type, "collect_shipping_address": collect_shipping_address, "custom_cta": custom_cta, "custom_cta_url": custom_cta_url, @@ -612,8 +575,6 @@ async def create( "global_affiliate_percentage": global_affiliate_percentage, "global_affiliate_status": global_affiliate_status, "headline": headline, - "industry_group": industry_group, - "industry_type": industry_type, "member_affiliate_percentage": member_affiliate_percentage, "member_affiliate_status": member_affiliate_status, "plan_options": plan_options, @@ -671,7 +632,6 @@ async def update( self, id: str, *, - business_type: Optional[BusinessTypes] | Omit = omit, collect_shipping_address: Optional[bool] | Omit = omit, custom_cta: Optional[CustomCta] | Omit = omit, custom_cta_url: Optional[str] | Omit = omit, @@ -681,8 +641,6 @@ async def update( global_affiliate_percentage: Optional[float] | Omit = omit, global_affiliate_status: Optional[GlobalAffiliateStatus] | Omit = omit, headline: Optional[str] | Omit = omit, - industry_group: Optional[IndustryGroups] | Omit = omit, - industry_type: Optional[IndustryTypes] | Omit = omit, member_affiliate_percentage: Optional[float] | Omit = omit, member_affiliate_status: Optional[GlobalAffiliateStatus] | Omit = omit, product_tax_code_id: Optional[str] | Omit = omit, @@ -707,8 +665,6 @@ async def update( - `access_pass:basic:read` Args: - business_type: The different business types a company can be. - collect_shipping_address: Whether the checkout flow collects a shipping address from the customer. custom_cta: The different types of custom CTAs that can be selected. @@ -731,10 +687,6 @@ async def update( headline: A short marketing headline displayed prominently on the product page. - industry_group: The different industry groups a company can be in. - - industry_type: The different industry types a company can be in. - member_affiliate_percentage: The commission rate as a percentage that members earn through the member affiliate program. @@ -766,7 +718,6 @@ async def update( f"/products/{id}", body=await async_maybe_transform( { - "business_type": business_type, "collect_shipping_address": collect_shipping_address, "custom_cta": custom_cta, "custom_cta_url": custom_cta_url, @@ -776,8 +727,6 @@ async def update( "global_affiliate_percentage": global_affiliate_percentage, "global_affiliate_status": global_affiliate_status, "headline": headline, - "industry_group": industry_group, - "industry_type": industry_type, "member_affiliate_percentage": member_affiliate_percentage, "member_affiliate_status": member_affiliate_status, "product_tax_code_id": product_tax_code_id, diff --git a/src/whop_sdk/types/__init__.py b/src/whop_sdk/types/__init__.py index ad7dc78f..6d305f1a 100644 --- a/src/whop_sdk/types/__init__.py +++ b/src/whop_sdk/types/__init__.py @@ -39,8 +39,6 @@ EntryStatus as EntryStatus, WhoCanReact as WhoCanReact, DmsPostTypes as DmsPostTypes, - BusinessTypes as BusinessTypes, - IndustryTypes as IndustryTypes, InvoiceStatus as InvoiceStatus, ReceiptStatus as ReceiptStatus, ReleaseMethod as ReleaseMethod, @@ -93,7 +91,6 @@ from .app_list_params import AppListParams as AppListParams from .billing_reasons import BillingReasons as BillingReasons from .fee_markup_type import FeeMarkupType as FeeMarkupType -from .industry_groups import IndustryGroups as IndustryGroups from .dispute_statuses import DisputeStatuses as DisputeStatuses from .lead_list_params import LeadListParams as LeadListParams from .payment_provider import PaymentProvider as PaymentProvider diff --git a/src/whop_sdk/types/checkout_configuration_create_params.py b/src/whop_sdk/types/checkout_configuration_create_params.py index 5067d765..cf71c431 100644 --- a/src/whop_sdk/types/checkout_configuration_create_params.py +++ b/src/whop_sdk/types/checkout_configuration_create_params.py @@ -5,14 +5,11 @@ from typing import Dict, List, Union, Iterable, Optional from typing_extensions import Literal, Required, TypeAlias, TypedDict -from .industry_groups import IndustryGroups from .shared.currency import Currency from .shared.tax_type import TaxType from .shared.plan_type import PlanType from .shared.visibility import Visibility from .payment_method_types import PaymentMethodTypes -from .shared.business_types import BusinessTypes -from .shared.industry_types import IndustryTypes from .shared.release_method import ReleaseMethod from .shared.global_affiliate_status import GlobalAffiliateStatus @@ -135,9 +132,6 @@ class CreateCheckoutSessionInputModePaymentWithPlanPlanProduct(TypedDict, total= title: Required[str] """The title of the product.""" - business_type: Optional[BusinessTypes] - """The different business types a company can be.""" - collect_shipping_address: Optional[bool] """Whether or not to collect shipping information at checkout from the customer.""" @@ -160,12 +154,6 @@ class CreateCheckoutSessionInputModePaymentWithPlanPlanProduct(TypedDict, total= headline: Optional[str] """The headline of the product.""" - industry_group: Optional[IndustryGroups] - """The different industry groups a company can be in.""" - - industry_type: Optional[IndustryTypes] - """The different industry types a company can be in.""" - product_tax_code_id: Optional[str] """The ID of the product tax code to apply to this product.""" diff --git a/src/whop_sdk/types/company_create_params.py b/src/whop_sdk/types/company_create_params.py index f342df97..deb6e188 100644 --- a/src/whop_sdk/types/company_create_params.py +++ b/src/whop_sdk/types/company_create_params.py @@ -5,10 +5,6 @@ from typing import Dict, Optional from typing_extensions import Required, TypedDict -from .industry_groups import IndustryGroups -from .shared.business_types import BusinessTypes -from .shared.industry_types import IndustryTypes - __all__ = ["CompanyCreateParams", "Logo"] @@ -16,9 +12,6 @@ class CompanyCreateParams(TypedDict, total=False): title: Required[str] """The display name of the company shown to customers.""" - business_type: Optional[BusinessTypes] - """The different business types a company can be.""" - description: Optional[str] """ A promotional pitch displayed to potential customers on the company's store @@ -31,12 +24,6 @@ class CompanyCreateParams(TypedDict, total=False): Required when parent_company_id is provided. """ - industry_group: Optional[IndustryGroups] - """The different industry groups a company can be in.""" - - industry_type: Optional[IndustryTypes] - """The different industry types a company can be in.""" - logo: Optional[Logo] """The company's logo image. Accepts PNG, JPEG, or GIF format.""" diff --git a/src/whop_sdk/types/company_list_response.py b/src/whop_sdk/types/company_list_response.py index 8423c31b..197728d1 100644 --- a/src/whop_sdk/types/company_list_response.py +++ b/src/whop_sdk/types/company_list_response.py @@ -4,8 +4,6 @@ from datetime import datetime from .._models import BaseModel -from .shared.business_types import BusinessTypes -from .shared.industry_types import IndustryTypes __all__ = ["CompanyListResponse", "Logo", "OwnerUser"] @@ -42,9 +40,6 @@ class CompanyListResponse(BaseModel): id: str """The unique identifier for the company.""" - business_type: Optional[BusinessTypes] = None - """The different business types a company can be.""" - created_at: datetime """The datetime the company was created.""" @@ -54,9 +49,6 @@ class CompanyListResponse(BaseModel): customers on the store page. """ - industry_type: Optional[IndustryTypes] = None - """The different industry types a company can be in.""" - logo: Optional[Logo] = None """The company's logo.""" diff --git a/src/whop_sdk/types/company_update_params.py b/src/whop_sdk/types/company_update_params.py index e59b5c6b..c475d5fb 100644 --- a/src/whop_sdk/types/company_update_params.py +++ b/src/whop_sdk/types/company_update_params.py @@ -5,10 +5,6 @@ from typing import Optional from typing_extensions import Required, TypedDict -from .industry_groups import IndustryGroups -from .shared.business_types import BusinessTypes -from .shared.industry_types import IndustryTypes - __all__ = ["CompanyUpdateParams", "BannerImage", "Logo"] @@ -16,21 +12,12 @@ class CompanyUpdateParams(TypedDict, total=False): banner_image: Optional[BannerImage] """The company's banner image. Accepts PNG or JPEG format.""" - business_type: Optional[BusinessTypes] - """The different business types a company can be.""" - description: Optional[str] """ A promotional pitch displayed to potential customers on the company's store page. """ - industry_group: Optional[IndustryGroups] - """The different industry groups a company can be in.""" - - industry_type: Optional[IndustryTypes] - """The different industry types a company can be in.""" - logo: Optional[Logo] """The company's logo image. Accepts PNG, JPEG, or GIF format.""" diff --git a/src/whop_sdk/types/industry_groups.py b/src/whop_sdk/types/industry_groups.py deleted file mode 100644 index e2771e6f..00000000 --- a/src/whop_sdk/types/industry_groups.py +++ /dev/null @@ -1,146 +0,0 @@ -# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. - -from typing_extensions import Literal, TypeAlias - -__all__ = ["IndustryGroups"] - -IndustryGroups: TypeAlias = Literal[ - "academic_and_test_prep", - "accessories", - "agriculture_and_farming", - "ai_and_automation_agencies", - "ai_and_automation_software", - "arts_and_crafts", - "automotive", - "b2b_and_professional_marketplaces", - "baby_and_kids", - "bars_and_breweries", - "beauty_and_personal_care", - "beauty_and_wellness", - "business_and_entrepreneurship", - "business_and_money_groups", - "cafes_and_quick_service", - "career_and_professional", - "charity_and_cause_events", - "class_action_settlement", - "clothing_and_apparel", - "communication_and_messaging_software", - "community_and_education_software", - "conference_and_expo_events", - "consulting", - "content_and_clipping_agencies", - "creative_and_content_creation", - "creative_and_content_groups", - "creative_and_education", - "creative_gigs", - "creative_services", - "customer_support_agencies", - "dating_and_relationships", - "delivery_and_logistics", - "dental_and_vision", - "dermatology_and_skin", - "design_and_creative_agencies", - "developer_and_technical_tools", - "development_agencies", - "digital_and_education_marketplaces", - "digital_goods_and_accounts", - "e_commerce_software", - "education_and_childcare", - "educational_training_events", - "electronics_and_gadgets", - "entertainment_and_leisure", - "family_and_community_events", - "finance_and_investing", - "fitness_and_athletics", - "fitness_and_health_groups", - "fitness_and_recreation", - "fitness_equipment_and_gear", - "food_and_beverages", - "food_and_hospitality_marketplaces", - "funeral_and_death_care", - "gaming_and_entertainment_software", - "gaming_groups", - "genetic_and_specialized", - "government_and_public", - "health_and_wellness", - "health_and_wellness_services", - "healthcare", - "healthcare_and_wellness_software", - "hobbies_and_lifestyle", - "hobby_and_interest_groups", - "home_and_living", - "home_and_trade_services", - "home_and_trade_storefronts", - "home_improvement_and_tools", - "home_services_gigs", - "hospitality_and_lodging", - "industrial_and_manufacturing", - "industry_specific_software", - "language_and_communication", - "legal_and_compliance", - "lifestyle_and_culture", - "lifestyle_and_personal_growth_groups", - "lifestyle_and_wellness_events", - "logistics_and_transportation_services", - "marketing_agencies", - "marketing_and_advertising", - "marketing_and_sales_software", - "media_and_publishing_companies", - "mental_health_and_behavioral", - "miscellaneous", - "music_and_performing_arts", - "news_and_politics", - "nonprofit_and_charity", - "office_and_business_supplies", - "outdoor_and_sports", - "performance_and_show_events", - "personal_development", - "personal_finance", - "personal_services", - "pet_services", - "pets_and_animals", - "primary_and_general_care", - "product_marketplaces", - "productivity_and_business_ops", - "professional_gigs", - "professional_services", - "professional_services_storefront", - "publishing_and_info_products", - "real_estate", - "real_estate_software", - "recruiting_and_staffing", - "rehabilitation_and_therapy", - "rental_marketplaces", - "restaurants", - "retail", - "sales_agencies", - "sales_and_revenue", - "security_and_investigations", - "security_and_privacy_software", - "service_marketplaces", - "sleep_and_chronic_conditions", - "social_and_networking_events", - "social_entertainment_events", - "specialized_gigs", - "specialty_medical_care", - "spirituality_and_mindfulness", - "spirituality_and_personal_growth", - "sports_and_fitness_events", - "sports_betting_and_gambling", - "sports_betting_groups", - "supplements_and_nutrition", - "sustainability_and_eco_products", - "task_and_errands", - "tech_and_ai", - "tech_and_dev_groups", - "tech_and_development", - "trading_and_finance_software", - "trading_and_investing", - "trading_and_investing_groups", - "transportation", - "veterinary", - "video_games_and_esports", - "weight_and_metabolic_health", - "wellness_and_alternative", - "womens_and_mens_health", -] diff --git a/src/whop_sdk/types/payment_create_params.py b/src/whop_sdk/types/payment_create_params.py index 3f9eda70..2d03e3b1 100644 --- a/src/whop_sdk/types/payment_create_params.py +++ b/src/whop_sdk/types/payment_create_params.py @@ -5,12 +5,9 @@ from typing import Dict, Union, Optional from typing_extensions import Required, TypeAlias, TypedDict -from .industry_groups import IndustryGroups from .shared.currency import Currency from .shared.plan_type import PlanType from .shared.visibility import Visibility -from .shared.business_types import BusinessTypes -from .shared.industry_types import IndustryTypes from .shared.global_affiliate_status import GlobalAffiliateStatus __all__ = [ @@ -59,9 +56,6 @@ class CreatePaymentInputWithPlanPlanProduct(TypedDict, total=False): title: Required[str] """The title of the product.""" - business_type: Optional[BusinessTypes] - """The different business types a company can be.""" - collect_shipping_address: Optional[bool] """Whether or not to collect shipping information at checkout from the customer.""" @@ -84,12 +78,6 @@ class CreatePaymentInputWithPlanPlanProduct(TypedDict, total=False): headline: Optional[str] """The headline of the product.""" - industry_group: Optional[IndustryGroups] - """The different industry groups a company can be in.""" - - industry_type: Optional[IndustryTypes] - """The different industry types a company can be in.""" - product_tax_code_id: Optional[str] """The ID of the product tax code to apply to this product.""" diff --git a/src/whop_sdk/types/product_create_params.py b/src/whop_sdk/types/product_create_params.py index 5e4b6b53..50d20c43 100644 --- a/src/whop_sdk/types/product_create_params.py +++ b/src/whop_sdk/types/product_create_params.py @@ -6,13 +6,10 @@ from typing_extensions import Literal, Required, TypedDict from .._types import SequenceNotStr -from .industry_groups import IndustryGroups from .shared.currency import Currency from .shared.plan_type import PlanType from .shared.custom_cta import CustomCta from .shared.visibility import Visibility -from .shared.business_types import BusinessTypes -from .shared.industry_types import IndustryTypes from .shared.release_method import ReleaseMethod from .shared.global_affiliate_status import GlobalAffiliateStatus @@ -26,9 +23,6 @@ class ProductCreateParams(TypedDict, total=False): title: Required[str] """The display name of the product. Maximum 40 characters.""" - business_type: Optional[BusinessTypes] - """The different business types a company can be.""" - collect_shipping_address: Optional[bool] """Whether the checkout flow collects a shipping address from the customer.""" @@ -66,12 +60,6 @@ class ProductCreateParams(TypedDict, total=False): headline: Optional[str] """A short marketing headline displayed prominently on the product page.""" - industry_group: Optional[IndustryGroups] - """The different industry groups a company can be in.""" - - industry_type: Optional[IndustryTypes] - """The different industry types a company can be in.""" - member_affiliate_percentage: Optional[float] """ The commission rate as a percentage that members earn through the member diff --git a/src/whop_sdk/types/product_update_params.py b/src/whop_sdk/types/product_update_params.py index e64164bc..53038d5d 100644 --- a/src/whop_sdk/types/product_update_params.py +++ b/src/whop_sdk/types/product_update_params.py @@ -5,20 +5,14 @@ from typing import Iterable, Optional from typing_extensions import Required, TypedDict -from .industry_groups import IndustryGroups from .shared.custom_cta import CustomCta from .shared.visibility import Visibility -from .shared.business_types import BusinessTypes -from .shared.industry_types import IndustryTypes from .shared.global_affiliate_status import GlobalAffiliateStatus __all__ = ["ProductUpdateParams", "GalleryImage", "StorePageConfig"] class ProductUpdateParams(TypedDict, total=False): - business_type: Optional[BusinessTypes] - """The different business types a company can be.""" - collect_shipping_address: Optional[bool] """Whether the checkout flow collects a shipping address from the customer.""" @@ -56,12 +50,6 @@ class ProductUpdateParams(TypedDict, total=False): headline: Optional[str] """A short marketing headline displayed prominently on the product page.""" - industry_group: Optional[IndustryGroups] - """The different industry groups a company can be in.""" - - industry_type: Optional[IndustryTypes] - """The different industry types a company can be in.""" - member_affiliate_percentage: Optional[float] """ The commission rate as a percentage that members earn through the member diff --git a/src/whop_sdk/types/shared/__init__.py b/src/whop_sdk/types/shared/__init__.py index e35962fe..b1c4a467 100644 --- a/src/whop_sdk/types/shared/__init__.py +++ b/src/whop_sdk/types/shared/__init__.py @@ -31,9 +31,7 @@ from .who_can_post import WhoCanPost as WhoCanPost from .app_view_type import AppViewType as AppViewType from .who_can_react import WhoCanReact as WhoCanReact -from .business_types import BusinessTypes as BusinessTypes from .dms_post_types import DmsPostTypes as DmsPostTypes -from .industry_types import IndustryTypes as IndustryTypes from .invoice_status import InvoiceStatus as InvoiceStatus from .receipt_status import ReceiptStatus as ReceiptStatus from .release_method import ReleaseMethod as ReleaseMethod diff --git a/src/whop_sdk/types/shared/business_types.py b/src/whop_sdk/types/shared/business_types.py deleted file mode 100644 index f5f82380..00000000 --- a/src/whop_sdk/types/shared/business_types.py +++ /dev/null @@ -1,28 +0,0 @@ -# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. - -from typing_extensions import Literal, TypeAlias - -__all__ = ["BusinessTypes"] - -BusinessTypes: TypeAlias = Literal[ - "education_program", - "coaching", - "software", - "paid_group", - "newsletter", - "agency", - "physical_products", - "brick_and_mortar", - "events", - "coaching_and_courses", - "other", - "services", - "gig_economy", - "marketplace", - "telehealth", - "class_action_settlement", - "physical_product", - "saas", - "course", - "community", -] diff --git a/src/whop_sdk/types/shared/company.py b/src/whop_sdk/types/shared/company.py index 2cdb470a..e30b8c1d 100644 --- a/src/whop_sdk/types/shared/company.py +++ b/src/whop_sdk/types/shared/company.py @@ -5,8 +5,6 @@ from typing_extensions import Literal from ..._models import BaseModel -from .business_types import BusinessTypes -from .industry_types import IndustryTypes __all__ = ["Company", "Logo", "OwnerUser", "SocialLink"] @@ -56,9 +54,6 @@ class Company(BaseModel): id: str """The unique identifier for the company.""" - business_type: Optional[BusinessTypes] = None - """The different business types a company can be.""" - created_at: datetime """The datetime the company was created.""" @@ -68,9 +63,6 @@ class Company(BaseModel): customers on the store page. """ - industry_type: Optional[IndustryTypes] = None - """The different industry types a company can be in.""" - logo: Optional[Logo] = None """The company's logo.""" diff --git a/src/whop_sdk/types/shared/industry_types.py b/src/whop_sdk/types/shared/industry_types.py deleted file mode 100644 index 839c0b31..00000000 --- a/src/whop_sdk/types/shared/industry_types.py +++ /dev/null @@ -1,1948 +0,0 @@ -# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. - -from typing_extensions import Literal, TypeAlias - -__all__ = ["IndustryTypes"] - -IndustryTypes: TypeAlias = Literal[ - "trading", - "sports_betting", - "reselling", - "fitness", - "amazon_fba", - "real_estate", - "kindle_book_publishing", - "dating", - "agencies", - "health_and_wellness", - "social_media", - "sales", - "business", - "ecommerce", - "video_games", - "home_services", - "ai", - "public_speaking", - "personal_finance", - "careers", - "travel", - "clipping", - "spirituality", - "vas", - "personal_development", - "software", - "other", - "marketing_agency", - "sales_agency", - "ai_agency", - "design_agency", - "coaching_agency", - "development_agency", - "recruiting_agency", - "customer_support_agency", - "clipping_agency", - "clothing", - "supplements", - "beauty_and_personal_care", - "fitness_gear", - "accessories", - "home_goods", - "electronics_and_gadgets", - "food_and_beverages", - "gym", - "restaurant", - "retail_store", - "coffee_shop", - "salon_spa", - "medical_dentist_office", - "hotel_lodging", - "auto_repair_shop", - "masterminds", - "webinars", - "bootcamps", - "convention", - "concerts", - "meetups", - "parties", - "forex_trading", - "stock_trading", - "options_trading", - "crypto_trading", - "futures_trading", - "day_trading", - "swing_trading", - "algorithmic_trading", - "prop_firm_trading", - "value_investing", - "real_estate_investing", - "alternative_investments", - "penny_stock_trading", - "dividend_investing", - "index_fund_investing", - "gold_precious_metals", - "venture_capital_education", - "private_equity_education", - "technical_analysis", - "forex_scalping", - "ict_smc_trading", - "personalized_investment_advice", - "sports_betting_picks", - "fantasy_sports", - "horse_racing", - "poker_coaching", - "esports_betting", - "sports_analytics", - "nfl_betting", - "nba_betting", - "mlb_betting", - "soccer_betting", - "mma_ufc_betting", - "bodybuilding_coaching", - "strength_training", - "weight_loss_coaching", - "athletic_performance", - "yoga_instruction", - "martial_arts_instruction", - "running_coaching", - "calisthenics", - "flexibility_mobility", - "nutrition_coaching", - "swimming_coaching", - "cycling_coaching", - "boxing_coaching", - "mma_coaching", - "jiu_jitsu_coaching", - "wrestling_coaching", - "gymnastics_coaching", - "pilates_instruction", - "sports_nutrition", - "body_recomposition", - "golf_coaching", - "tennis_coaching", - "basketball_training", - "soccer_training", - "racket_sports_coaching", - "mental_health_coaching", - "life_coaching", - "biohacking", - "holistic_health", - "addiction_recovery_coaching", - "breathwork", - "meditation_mindfulness", - "gut_health_coaching", - "longevity_coaching", - "womens_health_coaching", - "mens_health_coaching", - "fertility_wellness", - "stress_management", - "grief_coaching", - "trauma_recovery_coaching", - "adhd_coaching", - "biomarker_health_coaching", - "fitness_newsletter", - "mental_health_newsletter", - "longevity_newsletter", - "medical_newsletter", - "biohacking_newsletter", - "womens_health_newsletter", - "mens_health_newsletter", - "pharma_biotech_newsletter", - "ecommerce_education", - "amazon_fba_coaching", - "dropshipping_coaching", - "print_on_demand_coaching", - "retail_arbitrage", - "wholesale_coaching", - "startup_coaching", - "business_strategy", - "agency_building", - "smma_coaching", - "consulting_business", - "saas_entrepreneurship", - "local_business_coaching", - "cleaning_business_coaching", - "trucking_business_coaching", - "vending_machine_business", - "atm_business_coaching", - "car_wash_business", - "airbnb_business_coaching", - "private_label_coaching", - "etsy_coaching", - "merch_business_coaching", - "licensing_business", - "business_acquisition", - "women_entrepreneurship", - "affiliate_marketing_education", - "coaching_business_coaching", - "startup_newsletter", - "ecommerce_newsletter", - "marketing_newsletter", - "sales_newsletter", - "small_business_newsletter", - "leadership_newsletter", - "agency_newsletter", - "saas_newsletter", - "hr_people_newsletter", - "legal_business_newsletter", - "real_estate_business_newsletter", - "solopreneur_newsletter", - "high_ticket_sales", - "b2b_sales_coaching", - "door_to_door_sales", - "sales_funnel_coaching", - "appointment_setting_coaching", - "insurance_sales_coaching", - "car_sales_coaching", - "retail_sales_coaching", - "solar_sales_coaching", - "facebook_ads", - "google_ads", - "tiktok_marketing", - "youtube_marketing", - "instagram_growth", - "seo_coaching", - "email_marketing_coaching", - "copywriting_coaching", - "affiliate_marketing", - "local_seo", - "ai_marketing", - "webinar_marketing", - "event_marketing", - "saas_marketing_coaching", - "digital_marketing", - "video_editing_education", - "photography_coaching", - "music_production", - "ui_ux_design_education", - "clipping_education", - "ugc_creation", - "3d_modeling_education", - "dj_education", - "youtube_automation", - "blog_monetization", - "wedding_photography_education", - "calligraphy_lettering", - "illustration_education", - "fashion_design_education", - "interior_design_education", - "influencer_education", - "ai_content_creator_education", - "web_development_education", - "ai_ml_education", - "data_science_education", - "cybersecurity_education", - "cloud_computing_education", - "blockchain_education", - "no_code_education", - "automation_education", - "game_development_education", - "prompt_engineering", - "python_programming", - "javascript_programming", - "react_development", - "database_engineering", - "aws_certification", - "data_engineering", - "robotics_education", - "vr_ar_development", - "linux_sysadmin", - "wordpress_development", - "ai_agent_building", - "real_estate_wholesaling", - "house_flipping", - "property_development", - "rental_property", - "airbnb_str", - "commercial_real_estate", - "land_investing", - "section_8_housing", - "mobile_home_investing", - "multifamily_investing", - "self_storage_investing", - "property_management_education", - "vacation_rental_management", - "credit_repair_education", - "budgeting_coaching", - "tax_strategy_education", - "wealth_building", - "student_loan_strategy", - "credit_card_optimization", - "career_coaching", - "executive_coaching", - "management_coaching", - "tech_career_coaching", - "medical_career_coaching", - "trade_skills_education", - "va_training", - "bookkeeping_education", - "data_career_coaching", - "cybersecurity_career", - "consulting_career", - "investment_banking_career", - "law_career_coaching", - "nursing_career_coaching", - "teaching_career_coaching", - "personal_branding_career", - "mens_dating_coaching", - "womens_dating_coaching", - "relationship_coaching", - "marriage_coaching", - "communication_coaching", - "masculinity_coaching", - "femininity_coaching", - "breakup_recovery", - "manifestation_coaching", - "astrology_coaching", - "energy_healing", - "spiritual_coaching", - "faith_based_coaching", - "psychic_development", - "numerology_coaching", - "chakra_healing", - "shamanic_healing", - "biblical_coaching", - "islamic_coaching", - "productivity_coaching", - "public_speaking_coaching", - "mindset_coaching", - "stoicism_philosophy", - "mens_self_improvement", - "womens_self_improvement", - "leadership_development", - "anger_management", - "neurolinguistic_programming", - "appearance_and_grooming_coaching", - "amazon_kdp", - "self_publishing", - "audiobook_publishing", - "course_creation", - "digital_product_creation", - "ghostwriting_business", - "template_creation", - "ai_book_publishing", - "language_learning", - "tutoring", - "college_admissions_coaching", - "cpa_exam_prep", - "bar_exam_prep", - "real_estate_exam_prep", - "medical_board_prep", - "pmp_certification_prep", - "aws_certification_prep", - "comptia_certification", - "ap_exam_prep", - "graduate_school_prep", - "scholarship_coaching", - "homeschool_education", - "stem_education", - "financial_certification", - "coding_bootcamp_prep", - "cooking_culinary", - "travel_coaching", - "parenting_coaching", - "pet_training", - "gardening_education", - "diy_crafts", - "survival_prepping", - "baking_pastry", - "wine_sommelier", - "beer_brewing", - "mixology_bartending", - "woodworking", - "pottery_ceramics", - "knitting_crocheting", - "jewelry_making", - "aquarium_fishkeeping", - "bird_watching", - "astronomy_education", - "magic_illusion", - "car_restoration", - "motorcycle_riding", - "sailing_boating", - "scuba_diving", - "rock_climbing", - "skiing_snowboarding", - "surfing_education", - "homesteading", - "tiny_house_living", - "van_life", - "fashion_styling", - "floral_design", - "travel_planning_service", - "collectibles_coaching", - "esports_coaching", - "game_specific_coaching", - "legal_education", - "music_theory", - "music_business", - "acting_coaching", - "dance_instruction", - "voice_acting", - "english_coaching", - "spanish_coaching", - "mandarin_coaching", - "french_coaching", - "german_coaching", - "japanese_coaching", - "korean_coaching", - "arabic_coaching", - "sign_language_education", - "accent_reduction", - "business_english", - "smma", - "performance_marketing_agency", - "seo_agency", - "content_marketing_agency", - "email_marketing_agency", - "influencer_marketing_agency", - "pr_agency", - "branding_agency", - "video_marketing_agency", - "amazon_marketing_agency", - "podcast_marketing_agency", - "tiktok_agency", - "linkedin_agency", - "local_marketing_agency", - "dental_marketing_agency", - "real_estate_marketing_agency", - "restaurant_marketing_agency", - "ecommerce_marketing_agency", - "b2b_marketing_agency", - "growth_marketing_agency", - "affiliate_management_agency", - "conversion_optimization_agency", - "event_marketing_agency", - "click_farm_service", - "data_scraping_service", - "lead_list_sales", - "social_media_bot_farm", - "lead_generation_agency", - "cold_email_agency", - "cold_calling_agency", - "sales_outsourcing", - "crm_implementation", - "appointment_setting_agency", - "sales_training_agency", - "revenue_operations_agency", - "inbound_teleservices", - "outbound_telemarketing", - "ai_chatbot_agency", - "ai_automation_agency", - "ai_consulting", - "workflow_automation_agency", - "data_analytics_agency", - "ai_voice_agent_agency", - "ai_content_agency", - "machine_learning_agency", - "computer_vision_agency", - "web_design_agency", - "graphic_design_agency", - "ui_ux_agency", - "motion_design_agency", - "product_design_agency", - "logo_design_agency", - "presentation_design_agency", - "3d_visualization_agency", - "fashion_design_agency", - "web_development_agency", - "mobile_app_agency", - "saas_development_agency", - "ecommerce_development", - "blockchain_development_agency", - "game_development_agency", - "devops_agency", - "ai_development_agency", - "wordpress_agency", - "shopify_agency", - "api_integration_agency", - "cybersecurity_agency", - "data_engineering_agency", - "vr_ar_development_agency", - "hacking_tools_malware", - "stalkerware_monitoring", - "tech_recruiting_agency", - "executive_recruiting", - "staffing_agency", - "remote_staffing", - "healthcare_recruiting", - "va_placement_agency", - "sales_recruiting", - "creative_recruiting", - "finance_recruiting", - "legal_recruiting", - "construction_staffing", - "hospitality_staffing", - "customer_support_outsourcing", - "live_chat_agency", - "technical_support_agency", - "call_center_agency", - "multilingual_support_agency", - "community_management_agency", - "video_clipping_agency", - "video_production_agency", - "ugc_agency", - "content_writing_agency", - "translation_agency", - "social_media_management", - "ghostwriting_agency", - "podcast_editing_agency", - "thumbnail_design_agency", - "scriptwriting_agency", - "seo_content_agency", - "technical_writing_agency", - "management_consulting", - "financial_consulting", - "hr_consulting", - "operations_consulting", - "it_consulting", - "sustainability_consulting", - "legal_consulting", - "compliance_consulting", - "supply_chain_consulting", - "change_management_consulting", - "digital_transformation_consulting", - "healthcare_consulting", - "real_estate_consulting", - "franchise_consulting", - "export_trade_consulting", - "nonprofit_consulting", - "education_consulting", - "cannabis_consulting", - "restaurant_consulting", - "m_and_a_consulting", - "pricing_strategy_consulting", - "brand_strategy_consulting", - "saas_marketing_consulting", - "done_for_you_services", - "prop_firm_passing_service", - "trading_account_management", - "done_for_you_trading", - "accounting_bookkeeping", - "tax_preparation", - "legal_services", - "notary_services", - "insurance_brokerage", - "financial_planning_service", - "real_estate_services", - "property_management", - "mortgage_brokerage", - "immigration_services", - "patent_trademark_services", - "business_formation_services", - "shell_company_formation", - "payroll_services", - "audit_services", - "forensic_accounting", - "actuarial_services", - "appraisal_services", - "mediation_arbitration", - "background_check_services", - "bail_bond_services", - "bnpl_service", - "check_cashing_service", - "cloud_mining_schemes", - "consumer_lending", - "credit_repair_service", - "crowdfunding_platform", - "crypto_exchange_brokerage", - "debt_collection_agency", - "debt_relief_settlement", - "document_falsification", - "escrow_service", - "essay_mill_paper_mill", - "fake_id_services", - "fake_reference_services", - "foreign_exchange_service", - "government_service_facilitation", - "immigration_services_unlicensed", - "licensed_legal_services", - "payment_facilitation", - "personalized_tax_services", - "prediction_market_exchange", - "private_investigation", - "repossession_services", - "stablecoin_issuance", - "standalone_tipping", - "token_sales_ico", - "tokenized_rwa", - "unlicensed_legal_services", - "yield_staking_products", - "photography_service", - "videography_service", - "music_production_service", - "voice_over_service", - "event_photography", - "drone_services", - "commercial_photography", - "portrait_photography_service", - "real_estate_photography", - "food_photography_service", - "live_event_production", - "podcast_production_service", - "record_label", - "book_publishing_house", - "news_media_outlet", - "radio_broadcasting", - "tv_production_company", - "film_studio", - "magazine_publisher", - "music_licensing_agency", - "talent_management_agency", - "advertising_network", - "ad_tech_platform", - "cleaning_service", - "landscaping_service", - "plumbing_service", - "electrical_service", - "hvac_service", - "roofing_service", - "painting_service", - "moving_service", - "handyman_service", - "pest_control", - "pool_service", - "solar_installation", - "home_renovation", - "pressure_washing", - "junk_removal", - "garage_door_service", - "fencing_service", - "concrete_masonry", - "tree_service", - "window_cleaning", - "gutter_service", - "flooring_service", - "cabinet_countertop", - "home_inspection", - "septic_service", - "waterproofing_service", - "insulation_service", - "chimney_service", - "locksmith_service", - "glass_window_service", - "epoxy_coating", - "private_security_guard_service", - "armored_car_transport", - "executive_protection_bodyguard", - "event_security_service", - "alarm_system_installation", - "cctv_installation", - "private_investigation_agency", - "background_check_provider", - "locksmith_commercial", - "bounty_hunter_bail_enforcement", - "personal_styling", - "personal_chef", - "personal_assistant_service", - "tutoring_service", - "pet_services", - "wedding_planning", - "concierge_service", - "personal_training_service", - "nanny_service", - "elder_care_service", - "errand_service", - "life_organization", - "relocation_service", - "adult_dating_services", - "escort_services", - "hotel_accommodation_bookings", - "mail_order_spouse", - "psychic_fortune_telling", - "timeshare_sales", - "freight_brokerage", - "courier_service", - "warehousing_service", - "last_mile_delivery", - "auto_transport", - "international_shipping", - "cold_chain_logistics", - "commercial_airline_tickets", - "cruise_line_bookings", - "contract_manufacturing", - "cnc_machining_service", - "3d_printing_service_commercial", - "plastic_injection_molding", - "metal_fabrication", - "pcba_assembly", - "chemical_manufacturing", - "textile_manufacturing", - "food_processing_facility", - "packaging_manufacturing", - "industrial_automation_integrator", - "mining_and_extraction", - "oil_and_gas_services", - "renewable_energy_generation", - "waste_management_recycling", - "hazardous_waste_disposal", - "aerospace_defense_contracting", - "personal_training_studio", - "nutrition_consulting", - "mental_health_counseling", - "physical_therapy_service", - "occupational_therapy_service", - "speech_therapy_service", - "chiropractic_service", - "acupuncture_service", - "massage_therapy_service", - "midwifery_doula", - "lactation_consulting", - "dietitian_service", - "addiction_recovery_services", - "dtc_lab_testing", - "iv_therapy_infusion", - "medspa_aesthetic_services", - "prescription_delivery_services", - "registered_dietitian_services", - "unlicensed_therapy_counseling", - "streetwear", - "athleisure", - "luxury_fashion", - "kids_clothing", - "custom_apparel", - "workwear", - "swimwear", - "lingerie_intimates", - "vintage_clothing", - "plus_size_fashion", - "maternity_clothing", - "sleepwear_loungewear", - "denim_brand", - "outerwear_jackets", - "socks_hosiery", - "costumes_cosplay", - "scrubs_medical_apparel", - "dance_performance_wear", - "hunting_camo_apparel", - "casual_everyday_clothing", - "protein_supplements", - "vitamins_minerals", - "pre_workout", - "nootropics", - "herbal_supplements", - "weight_management_supplements", - "gut_health", - "cbd_products", - "mushroom_supplements", - "collagen_supplements", - "testosterone_boosters", - "sleep_supplements", - "immune_support", - "joint_bone_health", - "greens_powder", - "creatine_supplements", - "electrolyte_hydration", - "prenatal_supplements", - "kids_supplements", - "pet_supplements", - "ayurvedic_supplements", - "keto_supplements", - "cannabis_thc_products", - "cbd_hemp_products_compliant", - "delta8_thc_products", - "dietary_supplements", - "drug_precursor_chemicals", - "illegal_drugs", - "kratom_kava_products", - "medical_treatment_claims_product", - "nutraceutical_products", - "otc_medication_sales", - "performance_enhancing_drugs", - "research_chemicals_dangerous", - "research_peptides", - "sexual_enhancement_products", - "tobacco_products", - "unlicensed_rx_sales", - "skincare", - "haircare", - "cosmetics_makeup", - "mens_grooming", - "fragrance", - "oral_care", - "sunscreen_spf", - "hair_growth_products", - "body_care", - "deodorant", - "lip_care", - "acne_treatment", - "men_skincare", - "baby_skincare", - "tattoo_aftercare", - "intimate_care", - "home_gym_equipment", - "yoga_equipment", - "combat_sports_gear", - "outdoor_fitness_gear", - "wearable_fitness", - "recovery_equipment", - "weightlifting_equipment", - "cardio_equipment", - "gymnastics_equipment", - "swimming_gear", - "jump_rope_equipment", - "grip_strength_tools", - "sauna_cold_plunge", - "posture_correctors", - "jewelry", - "sunglasses_eyewear", - "bags_wallets", - "hats_headwear", - "phone_accessories", - "travel_accessories", - "scarves_wraps", - "belts", - "hair_accessories", - "tech_accessories", - "keychains_charms", - "custom_engraved_accessories", - "cannabis_accessories_non_drug", - "drug_paraphernalia", - "high_value_goods_over_500", - "precious_metals_stones", - "replica_counterfeit_goods", - "home_decor", - "candles_scents", - "kitchenware", - "bedding_linens", - "smart_home", - "cleaning_products", - "outdoor_furniture", - "organization_storage", - "wall_art_prints", - "rugs_carpets", - "lighting_fixtures", - "planters_garden_decor", - "bathroom_accessories", - "luxury_home_goods", - "seasonal_holiday_decor", - "pet_home_products", - "home_fragrance_diffusers", - "hazardous_chemicals_b2c", - "pre_orders_delayed_delivery", - "audio_equipment", - "camera_equipment", - "gaming_hardware", - "drones_robotics", - "ev_accessories", - "charging_power", - "smart_wearables", - "home_security_devices", - "3d_printers", - "projectors_displays", - "streaming_devices", - "vr_headsets", - "e_readers", - "portable_tech", - "hardware_wallets", - "regulated_medical_devices", - "signal_jamming_devices", - "spy_cameras_hidden_recording", - "specialty_coffee_tea", - "health_food", - "snacks_treats", - "sauces_condiments", - "alcohol_spirits", - "meal_kits", - "baked_goods", - "beverages", - "pet_food_treats", - "protein_bars_snacks", - "jerky_meat_snacks", - "chocolate_confections", - "honey_sweeteners", - "olive_oil_vinegar", - "hot_sauce", - "dried_fruit_nuts", - "baby_food", - "plant_based_food", - "gluten_free_food", - "keto_food_products", - "subscription_food_box", - "kombucha_fermented", - "alcohol_sales", - "baby_products", - "kids_toys", - "kids_educational", - "baby_clothing_accessories", - "nursery_decor", - "kids_outdoor_play", - "kids_books", - "baby_safety_products", - "kids_arts_crafts", - "camping_hiking", - "fishing_gear", - "hunting_gear", - "cycling_gear", - "water_sports_gear", - "golf_equipment", - "snow_sports_gear", - "climbing_gear", - "archery_equipment", - "skateboarding_gear", - "pickleball_equipment", - "tennis_equipment", - "equestrian_gear", - "tactical_gear", - "overlanding_gear", - "explosives_fireworks", - "firearms_sales", - "self_defense_products", - "weapon_components", - "craft_kits", - "sewing_textiles", - "stationery", - "scrapbooking_supplies", - "beading_jewelry_supplies", - "pottery_supplies", - "printmaking_supplies", - "car_accessories", - "detailing_products", - "motorcycle_gear", - "truck_accessories", - "off_road_parts", - "car_audio_electronics", - "performance_parts", - "car_care_products", - "ev_charging_accessories", - "auto_repair_service", - "auto_body_shop", - "car_dealership", - "car_wash", - "tire_shop", - "oil_change_shop", - "auto_parts_store", - "motorcycle_shop", - "ev_charging_station", - "transmission_shop", - "muffler_exhaust_shop", - "auto_glass_shop", - "auto_upholstery_shop", - "car_audio_shop", - "smog_emissions_shop", - "truck_repair_shop", - "rv_repair_shop", - "boat_repair_shop", - "used_car_lot", - "auto_auction", - "dog_products", - "cat_products", - "aquarium_supplies", - "bird_supplies", - "reptile_supplies", - "horse_supplies", - "pet_apparel", - "pet_tech", - "pet_grooming_products", - "hand_tools", - "power_tools_and_accessories", - "hardware_and_fasteners", - "workshop_equipment_and_storage", - "safety_and_work_gear", - "painting_and_building_supplies", - "office_supplies", - "desk_accessories", - "printing_supplies", - "shipping_packaging", - "reusable_products", - "solar_powered_products", - "handmade_goods_marketplace", - "vintage_resale_marketplace", - "electronics_marketplace", - "auto_parts_marketplace", - "luxury_goods_marketplace", - "collectibles_marketplace", - "wholesale_marketplace", - "local_goods_marketplace", - "sneaker_marketplace", - "book_marketplace", - "furniture_marketplace", - "musical_instrument_marketplace", - "art_marketplace", - "ticket_marketplace", - "industrial_equipment_marketplace", - "craft_supply_marketplace", - "baby_kids_marketplace", - "outdoor_gear_marketplace", - "pet_marketplace", - "sustainable_goods_marketplace", - "3d_weapon_files", - "cultural_artifacts_looted", - "dropshipping_operations", - "endangered_animal_products", - "human_body_parts_tissue", - "nft_marketplace", - "penny_auction", - "primary_event_ticketing", - "freelancer_marketplace", - "home_services_marketplace", - "tutoring_marketplace", - "legal_services_marketplace", - "healthcare_marketplace", - "wedding_services_marketplace", - "creative_services_marketplace", - "beauty_services_marketplace", - "fitness_trainer_marketplace", - "pet_services_marketplace", - "childcare_marketplace", - "elder_care_marketplace", - "translation_marketplace", - "coaching_marketplace", - "therapy_marketplace", - "photography_marketplace", - "dj_entertainment_marketplace", - "auto_services_marketplace", - "freelance_marketplace_operator", - "equipment_rental_marketplace", - "vehicle_rental_marketplace", - "space_rental_marketplace", - "vacation_rental_marketplace", - "clothing_rental_marketplace", - "camera_gear_rental", - "rv_camper_rental", - "boat_rental_marketplace", - "storage_rental_marketplace", - "office_coworking_rental", - "parking_rental_marketplace", - "restaurant_marketplace", - "grocery_marketplace", - "catering_marketplace", - "homemade_food_marketplace", - "meal_prep_marketplace", - "bakery_marketplace", - "farm_produce_marketplace", - "chef_booking_marketplace", - "course_marketplace", - "template_marketplace", - "stock_media_marketplace", - "music_beats_marketplace", - "ebook_marketplace", - "plugin_theme_marketplace", - "3d_model_marketplace", - "prompt_marketplace", - "code_snippet_marketplace", - "affiliate_marketing_platform", - "game_account_selling", - "game_cheats_hacks", - "pirated_digital_content", - "unauthorized_ingame_currency", - "weapon_blueprint_distribution", - "saas_marketplace", - "agency_marketplace", - "manufacturing_marketplace", - "logistics_marketplace", - "commercial_real_estate_marketplace", - "business_for_sale_marketplace", - "food_delivery", - "grocery_delivery", - "package_delivery", - "moving_labor", - "alcohol_delivery", - "pharmacy_delivery", - "flower_delivery_gig", - "furniture_delivery_gig", - "catering_delivery", - "rideshare", - "chauffeur_service", - "bike_scooter_rental", - "boat_charter_gig", - "moving_truck_rental_gig", - "assembly_installation", - "waiting_line_service", - "personal_shopping", - "grocery_shopping_gig", - "gift_wrapping_gig", - "notary_gig", - "laundry_gig", - "car_wash_gig", - "cleaning_gig", - "lawn_care_gig", - "handyman_gig", - "pet_care_gig", - "childcare_gig", - "elder_care_gig", - "painting_gig", - "snow_removal_gig", - "pool_cleaning_gig", - "organizing_gig", - "pressure_washing_gig", - "junk_removal_gig", - "freelance_design_gig", - "freelance_writing_gig", - "freelance_dev_gig", - "music_performance_gig", - "event_staffing_gig", - "model_talent_gig", - "photography_gig", - "videography_gig", - "voiceover_gig", - "illustration_gig", - "social_media_gig", - "dj_gig", - "face_painting_gig", - "clipping_gig", - "consulting_gig", - "accounting_gig", - "legal_gig", - "healthcare_gig", - "teaching_gig", - "translation_gig", - "data_entry_gig", - "research_gig", - "virtual_assistant_gig", - "sales_gig", - "recruiting_gig", - "mystery_shopping", - "focus_group_gig", - "product_testing_gig", - "drone_pilot_gig", - "fitness_instruction_gig", - "tour_guide_gig", - "forex_signals_group", - "stock_signals_group", - "crypto_signals_group", - "options_alerts_group", - "futures_signals_group", - "trading_education_group", - "investing_community", - "prediction_markets_group", - "nft_alpha_group", - "penny_stock_group", - "dividend_investing_group", - "real_estate_investing_group", - "prop_firm_group", - "sports_picks_group", - "dfs_group", - "horse_racing_group", - "esports_picks_group", - "nfl_picks_group", - "nba_picks_group", - "soccer_picks_group", - "mlb_picks_group", - "mma_picks_group", - "prop_bets_group", - "fantasy_sports_free_to_play", - "licensed_gambling_operations", - "unlicensed_gambling", - "ecommerce_community", - "agency_community", - "saas_community", - "saas_marketing_community", - "real_estate_community", - "sales_community", - "affiliate_community", - "reselling_community", - "amazon_seller_community", - "dropshipping_community", - "freelancer_community", - "startup_founder_community", - "ceo_executive_community", - "women_business_community", - "marketing_community", - "ai_business_community", - "content_business_community", - "local_business_community", - "private_equity_community", - "wholesaling_community", - "coaching_business_community", - "make_money_online_community", - "fitness_accountability", - "nutrition_community", - "weight_loss_group", - "bodybuilding_community", - "running_community", - "martial_arts_community", - "mental_health_group", - "biohacking_community", - "addiction_support_group", - "yoga_community", - "crossfit_community", - "longevity_community", - "womens_fitness_community", - "postpartum_fitness_group", - "chronic_illness_support", - "skincare_community", - "content_creator_community", - "video_editing_community", - "music_producer_community", - "photography_community", - "writing_community", - "design_community", - "youtube_creator_community", - "tiktok_creator_community", - "podcast_community", - "filmmaker_community", - "clipping_community", - "youtube_automation_community", - "developer_community", - "ai_community", - "cybersecurity_community", - "no_code_community", - "indie_hacker_community", - "devops_community", - "data_science_community", - "product_community", - "open_source_community", - "dating_community", - "personal_development_community", - "spirituality_community", - "parenting_community", - "travel_community", - "networking_community", - "faith_community", - "mens_community", - "womens_community", - "expat_community", - "adult_community_nsfw", - "hate_violence_communities", - "personal_fundraising", - "political_fundraising", - "political_organizations", - "pornographic_content", - "registered_501c3", - "religious_organization", - "unregistered_charities", - "gaming_community", - "car_enthusiast_community", - "sneakerhead_community", - "watch_collector_community", - "wine_enthusiast_community", - "cigar_community", - "cooking_community", - "gardening_community", - "fishing_community", - "hunting_community", - "diy_maker_community", - "golf_community", - "collectibles_community", - "sweepstakes_raffles", - "event_ticket_community", - "forex_trading_bot", - "stock_trading_platform", - "crypto_trading_bot", - "futures_trading_bot", - "options_flow_tool", - "portfolio_tracker", - "financial_modeling_software", - "accounting_software", - "invoicing_software", - "tax_software", - "risk_management_software", - "prop_trading_platform", - "backtesting_software", - "trading_indicators", - "market_data_feed", - "stock_research_tool", - "banking_software", - "lending_platform", - "insurance_software", - "crypto_trading_tools_software", - "non_custodial_wallet_tools", - "ai_outreach_tool", - "ai_chatbot_software", - "ai_writing_tool", - "ai_image_generator", - "ai_video_tool", - "ai_voice_tool", - "ai_data_analysis", - "ai_code_assistant", - "ai_meeting_assistant", - "workflow_automation_software", - "ai_sales_tool", - "ai_customer_support", - "ai_recruiting_tool", - "ai_translation_tool", - "ai_music_tool", - "ai_presentation_tool", - "ai_research_tool", - "ai_seo_tool", - "ai_social_media_tool", - "ai_phone_agent", - "ai_legal_tool", - "ai_healthcare_tool", - "llm_api_platform", - "ai_agent_platform", - "generative_ai_platform", - "celebrity_impersonation", - "deepfake_service", - "crm_software", - "email_marketing_software", - "sms_marketing_software", - "seo_tool", - "landing_page_builder", - "ad_management_tool", - "affiliate_tracking", - "review_management", - "analytics_dashboard", - "lead_gen_software", - "link_in_bio_tool", - "influencer_platform", - "webinar_platform", - "ab_testing_tool", - "chatbot_marketing", - "video_sales_tool", - "proposal_software", - "competitive_intelligence", - "social_listening_tool", - "whatsapp_marketing_tool", - "ecommerce_platform", - "product_research_tool", - "price_tracker", - "shipping_software", - "print_on_demand_software", - "marketplace_seller_tool", - "resale_arbitrage_tool", - "reseller_management_tool", - "product_review_software", - "returns_management", - "product_feed_management", - "checkout_optimization", - "wholesale_ordering", - "project_management_software", - "team_communication", - "video_conferencing", - "document_collaboration", - "time_tracking_software", - "scheduling_software", - "hr_software", - "knowledge_base_software", - "form_survey_builder", - "note_taking_app", - "task_management", - "contract_management", - "expense_management", - "okr_goal_tracking", - "employee_engagement", - "onboarding_software", - "applicant_tracking", - "asset_management", - "facility_management", - "visitor_management", - "api_management", - "hosting_platform", - "database_tool", - "devops_tool", - "monitoring_tool", - "testing_tool", - "code_editor", - "no_code_builder", - "cdn_platform", - "error_tracking", - "documentation_tool", - "webhook_tool", - "community_platform", - "event_management_software", - "webinar_software", - "school_management", - "newsletter_platform", - "podcast_hosting", - "forum_software", - "virtual_classroom", - "telehealth_platform", - "ehr_software", - "practice_management", - "mental_health_app", - "fitness_app", - "nutrition_tracking_app", - "wellness_app", - "patient_engagement", - "medical_billing_software", - "pharmacy_management", - "lab_management", - "clinical_trial_software", - "dental_software", - "veterinary_software", - "health_data_platform", - "real_estate_crm", - "property_management_software", - "deal_analysis_tool", - "mls_search_tool", - "virtual_tour_software", - "real_estate_marketing_software", - "construction_management", - "home_valuation_tool", - "restaurant_pos", - "salon_software", - "gym_management_software", - "auto_shop_software", - "legal_practice_software", - "church_management", - "nonprofit_software", - "logistics_software", - "agriculture_software", - "field_service_software", - "marina_management", - "hotel_pms", - "childcare_management", - "cleaning_business_software", - "roofing_software", - "landscaping_software", - "pest_control_software", - "tattoo_studio_software", - "cannabis_software", - "password_manager", - "cybersecurity_software", - "identity_verification", - "backup_recovery", - "endpoint_protection", - "email_security", - "access_management", - "compliance_software", - "data_privacy_tool", - "vpn_services", - "game_mod_tool", - "streaming_tool", - "game_server_hosting", - "music_software", - "video_editing_software", - "photo_editing_software", - "animation_software", - "audio_editing_software", - "screen_recording_software", - "sports_betting_tool", - "fantasy_sports_paid_entry", - "iptv_pirated_streaming", - "loot_boxes_gacha", - "skill_contests_free_entry", - "skill_contests_paid_entry", - "business_phone_system", - "customer_messaging", - "digital_key_reselling", - "streaming_account_reselling", - "subscription_account_sharing", - "account_generation_tool", - "primary_care_telehealth", - "urgent_care_telehealth", - "pediatric_telehealth", - "geriatric_telehealth", - "family_medicine_telehealth", - "internal_medicine_telehealth", - "preventive_care_telehealth", - "licensed_online_pharmacy", - "telemedicine_practitioner_services", - "dermatology_telehealth", - "acne_telehealth", - "psoriasis_eczema_telehealth", - "skin_cancer_screening_tele", - "cosmetic_dermatology_tele", - "therapy_telehealth", - "psychiatry_telehealth", - "addiction_telehealth", - "couples_therapy_telehealth", - "child_psychology_telehealth", - "eating_disorder_telehealth", - "ptsd_trauma_telehealth", - "adhd_telehealth", - "anxiety_depression_telehealth", - "ocd_telehealth", - "grief_counseling_telehealth", - "anger_management_telehealth", - "family_therapy_telehealth", - "group_therapy_telehealth", - "licensed_psychedelic_therapy", - "womens_health_telehealth", - "mens_health_telehealth", - "sexual_health_telehealth", - "fertility_telehealth", - "hormone_therapy_telehealth", - "menopause_telehealth", - "prenatal_telehealth", - "postpartum_telehealth", - "erectile_dysfunction_tele", - "hair_loss_telehealth", - "birth_control_telehealth", - "sti_testing_telehealth", - "dental_telehealth", - "orthodontics_telehealth", - "optometry_telehealth", - "oral_surgery_consultation", - "vision_therapy_telehealth", - "cardiology_telehealth", - "endocrinology_telehealth", - "neurology_telehealth", - "orthopedic_telehealth", - "allergy_telehealth", - "ent_telehealth", - "rheumatology_telehealth", - "gastroenterology_telehealth", - "infectious_disease_telehealth", - "pulmonology_telehealth", - "nephrology_telehealth", - "oncology_telehealth", - "hematology_telehealth", - "urology_telehealth", - "weight_management_telehealth", - "glp1_weight_loss_tele", - "diabetes_management_tele", - "metabolic_health_tele", - "bariatric_telehealth", - "physical_therapy_telehealth", - "occupational_therapy_tele", - "speech_therapy_telehealth", - "pain_management_telehealth", - "cardiac_rehab_telehealth", - "pelvic_floor_telehealth", - "vestibular_telehealth", - "sleep_medicine_telehealth", - "chronic_disease_management", - "chronic_pain_telehealth", - "migraine_telehealth", - "asthma_copd_telehealth", - "nutrition_telehealth", - "naturopathic_telehealth", - "functional_medicine_telehealth", - "acupuncture_telehealth", - "health_coaching_telehealth", - "integrative_medicine_tele", - "ayurvedic_telehealth", - "genetic_counseling_telehealth", - "pharmacogenomics_tele", - "rare_disease_telehealth", - "second_opinion_telehealth", - "vet_telehealth", - "pet_behavior_telehealth", - "exotic_pet_telehealth", - "equine_telehealth", - "veterinary_services", - "class_action_settlement", - "mastermind_event", - "webinar_event", - "virtual_summit", - "bootcamp_event", - "workshop_seminar", - "hackathon", - "corporate_training_event", - "training_certification_event", - "convention_expo", - "conference_summit", - "industry_awards_event", - "product_launch_event", - "investor_demo_day", - "panel_discussion_event", - "pitch_competition", - "meetup_event", - "dinner_event", - "alumni_event", - "community_gathering", - "singles_event", - "professional_happy_hour", - "women_networking_event", - "founders_dinner", - "industry_mixer", - "concert_event", - "comedy_show", - "theater_performance", - "film_screening", - "music_festival", - "cultural_festival", - "fashion_show", - "drag_show", - "magic_show", - "dance_performance", - "poetry_spoken_word", - "art_exhibition", - "party_event", - "trivia_night", - "wine_tasting_event", - "beer_festival", - "car_show", - "food_festival", - "fitness_challenge_event", - "marathon_race", - "tournament_event", - "fight_event", - "yoga_retreat_event", - "outdoor_adventure_event", - "esports_tournament", - "obstacle_course_race", - "cycling_event", - "swim_meet", - "golf_tournament", - "pickleball_tournament", - "crossfit_competition", - "martial_arts_tournament", - "surfing_competition", - "wellness_retreat", - "spiritual_retreat", - "couples_retreat", - "plant_medicine_retreat", - "luxury_experience_event", - "detox_retreat", - "silent_retreat", - "creative_retreat", - "leadership_retreat", - "mens_retreat", - "womens_retreat", - "digital_detox_retreat", - "fundraiser_event", - "awareness_event", - "volunteer_event", - "charity_auction", - "benefit_concert", - "charity_run_walk", - "environmental_cleanup", - "family_festival", - "kids_event", - "holiday_event", - "farmers_market_event", - "block_party", - "graduation_ceremony", - "memorial_event", - "stock_market_newsletter", - "crypto_newsletter", - "personal_finance_newsletter", - "real_estate_newsletter", - "fintech_newsletter", - "venture_capital_newsletter", - "options_trading_newsletter", - "forex_newsletter", - "macro_economics_newsletter", - "alternative_investing_newsletter", - "tax_strategy_newsletter", - "ai_newsletter", - "tech_industry_newsletter", - "cybersecurity_newsletter", - "developer_newsletter", - "product_newsletter", - "devops_newsletter", - "open_source_newsletter", - "robotics_newsletter", - "climate_tech_newsletter", - "travel_newsletter", - "fashion_newsletter", - "parenting_newsletter", - "sports_newsletter", - "gaming_newsletter", - "music_entertainment_newsletter", - "book_reading_newsletter", - "dating_relationships_newsletter", - "home_design_newsletter", - "pet_newsletter", - "wine_spirits_newsletter", - "automotive_newsletter", - "political_newsletter", - "geopolitics_newsletter", - "media_journalism_newsletter", - "defense_security_newsletter", - "legal_policy_newsletter", - "design_newsletter", - "education_newsletter", - "science_newsletter", - "philosophy_newsletter", - "sustainability_newsletter", - "architecture_newsletter", - "history_newsletter", - "psychology_newsletter", - "career_newsletter", - "spirituality_newsletter", - "self_improvement_newsletter", - "productivity_newsletter", - "faith_newsletter", - "gym_facility", - "crossfit_box", - "yoga_studio", - "pilates_studio", - "martial_arts_gym", - "boxing_gym", - "climbing_gym", - "dance_studio", - "swimming_pool", - "sports_facility", - "golf_course", - "bowling_alley", - "skating_rink", - "trampoline_park", - "tennis_club", - "pickleball_facility", - "gymnastics_center", - "spin_studio", - "barre_studio", - "personal_training_studio_bm", - "recovery_studio", - "indoor_soccer", - "batting_cage", - "shooting_range", - "archery_range", - "equestrian_center", - "fine_dining", - "fast_casual_restaurant", - "steakhouse", - "seafood_restaurant", - "pizza_shop", - "sushi_restaurant", - "deli_sandwich_shop", - "bbq_restaurant", - "mexican_restaurant", - "italian_restaurant", - "chinese_restaurant", - "indian_restaurant", - "thai_restaurant", - "korean_restaurant", - "mediterranean_restaurant", - "vegan_vegetarian_restaurant", - "brunch_restaurant", - "ramen_noodle_shop", - "poke_bowl_shop", - "ethnic_restaurant", - "coffee_shop_cafe", - "bakery", - "juice_smoothie_bar", - "ice_cream_shop", - "donut_shop", - "bubble_tea_shop", - "food_truck", - "fast_food", - "ghost_kitchen", - "food_hall_vendor", - "catering_kitchen", - "butcher_shop", - "cheese_shop", - "farmers_market_stall", - "bar_lounge", - "brewery_taproom", - "winery_tasting", - "wine_bar", - "cocktail_bar", - "sports_bar", - "hookah_lounge", - "distillery", - "commercial_farming", - "livestock_ranching", - "hydroponic_vertical_farming", - "forestry_logging", - "aquaculture_fisheries", - "vineyard_winery_production", - "cannabis_cultivation", - "hemp_farming", - "grain_production", - "agricultural_cooperative", - "fertilizer_pesticide_sales", - "farm_equipment_sales", - "boutique_store", - "clothing_store", - "shoe_store", - "jewelry_store", - "electronics_store", - "bookstore", - "pet_store", - "toy_store", - "sporting_goods_store", - "thrift_store", - "smoke_shop", - "cannabis_dispensary", - "convenience_store", - "grocery_store", - "liquor_store", - "florist", - "gift_shop", - "furniture_store", - "home_improvement_store", - "art_gallery_retail", - "music_instrument_store", - "outdoor_recreation_store", - "phone_repair_store", - "watch_store", - "bridal_shop", - "maternity_store", - "kids_store", - "sneaker_store", - "vintage_store", - "comic_book_store", - "record_store", - "craft_supply_store", - "fabric_store", - "health_food_store", - "vitamin_supplement_store", - "optical_store", - "mattress_store", - "appliance_store", - "kitchen_bath_store", - "tile_flooring_store", - "paint_store", - "garden_center", - "gun_store", - "pawn_shop", - "dollar_store", - "hair_salon", - "nail_salon", - "day_spa", - "med_spa", - "massage_studio", - "tattoo_parlor", - "tanning_salon", - "beauty_supply_store", - "lash_brow_studio", - "waxing_studio", - "sauna_bathhouse", - "cryotherapy_studio", - "float_sensory_studio", - "iv_therapy_lounge", - "teeth_whitening_studio", - "microblading_studio", - "spray_tan_studio", - "blowout_bar", - "mens_barbershop", - "kids_salon", - "medical_office", - "dental_office", - "chiropractic_office", - "physical_therapy_clinic", - "optometry_office", - "dermatology_clinic", - "urgent_care_clinic", - "pharmacy", - "veterinary_clinic", - "mental_health_clinic", - "fertility_clinic", - "acupuncture_clinic", - "hearing_aid_center", - "orthopedic_clinic", - "pediatric_clinic", - "cosmetic_surgery_center", - "allergy_clinic", - "pain_management_clinic", - "dialysis_center", - "imaging_center", - "lab_testing_center", - "sleep_clinic", - "weight_loss_clinic", - "hormone_therapy_clinic", - "addiction_treatment_center", - "rehabilitation_center", - "occupational_therapy_clinic", - "speech_therapy_clinic", - "wound_care_center", - "funeral_home_mortuary", - "crematory_service", - "cemetery_memorial_park", - "casket_urn_retailer", - "pet_cremation_service", - "biohazard_cleanup", - "estate_liquidation", - "hotel", - "motel", - "boutique_hotel", - "bed_and_breakfast", - "hostel", - "resort", - "campground_rv", - "vacation_rental_property", - "extended_stay", - "glamping_site", - "cabin_rental", - "eco_lodge", - "retreat_center", - "tutoring_center", - "daycare_center", - "preschool", - "learning_center", - "music_school", - "art_school", - "driving_school", - "language_school", - "trade_school", - "coding_bootcamp_location", - "montessori_school", - "after_school_program", - "swim_school", - "cooking_school", - "test_prep_center", - "special_needs_center", - "adult_education_center", - "flight_school", - "cosmetology_school", - "movie_theater", - "escape_room", - "arcade", - "mini_golf", - "laser_tag", - "go_kart", - "amusement_park", - "museum", - "zoo_aquarium", - "theater_venue", - "nightclub", - "karaoke_bar", - "comedy_club", - "live_music_venue", - "axe_throwing", - "virtual_reality_arcade", - "board_game_cafe", - "cat_cafe", - "haunted_house", - "water_park", - "indoor_playground", - "concert_venue", - "drive_in_theater", - "billiards_hall", - "dart_bar", - "indoor_skydiving", - "law_office", - "real_estate_office", - "insurance_office", - "accounting_office", - "bank_credit_union", - "printing_shop", - "shipping_center", - "dry_cleaner", - "laundromat", - "storage_facility", - "coworking_space", - "check_cashing", - "title_company", - "travel_agency_storefront", - "staffing_office", - "financial_advisor_office", - "immigration_office", - "bail_bonds_office", - "pet_grooming", - "dog_daycare", - "pet_boarding", - "dog_training_facility", - "pet_spa", - "aquatic_pet_store", - "pet_bakery", - "pet_photography_studio", - "plumbing_showroom", - "hvac_showroom", - "solar_showroom", - "kitchen_design_showroom", - "bath_design_showroom", - "window_door_showroom", - "pool_spa_showroom", - "fireplace_showroom", - "countertop_showroom", - "nonprofit_organization", - "charity_foundation", - "political_campaign", - "community_organization", - "environmental_nonprofit", - "education_nonprofit", - "health_nonprofit", - "animal_welfare_nonprofit", - "arts_culture_nonprofit", - "social_justice_nonprofit", - "veterans_nonprofit", - "youth_nonprofit", - "disaster_relief_nonprofit", - "food_bank", - "housing_nonprofit", - "government_agency", - "public_utility", - "public_library", - "public_school", - "municipal_service", - "military_installation", - "embassy_consulate", - "niche_service", - "niche_product", - "hybrid_business", - "other_general", - "holding_company", - "family_office", - "cooperative", - "social_enterprise", - "incubator_accelerator", - "coworking_community", - "media_company", - "research_lab", -] diff --git a/src/whop_sdk/types/shared/product.py b/src/whop_sdk/types/shared/product.py index 51587d27..5410a7c0 100644 --- a/src/whop_sdk/types/shared/product.py +++ b/src/whop_sdk/types/shared/product.py @@ -7,8 +7,6 @@ from ..._models import BaseModel from .custom_cta import CustomCta from .visibility import Visibility -from .business_types import BusinessTypes -from .industry_types import IndustryTypes from .global_affiliate_status import GlobalAffiliateStatus __all__ = ["Product", "Company", "GalleryImage", "OwnerUser", "ProductTaxCode"] @@ -89,9 +87,6 @@ class Product(BaseModel): id: str """The unique identifier for the product.""" - business_type: Optional[BusinessTypes] = None - """The different business types a company can be.""" - company: Company """The company this product belongs to.""" @@ -148,9 +143,6 @@ class Product(BaseModel): headline: Optional[str] = None """A short marketing headline displayed prominently on the product's product page.""" - industry_type: Optional[IndustryTypes] = None - """The different industry types a company can be in.""" - member_affiliate_percentage: Optional[float] = None """ The commission rate (as a percentage) that existing members earn when referring diff --git a/src/whop_sdk/types/shared/product_list_item.py b/src/whop_sdk/types/shared/product_list_item.py index dbaa749e..e0afce7f 100644 --- a/src/whop_sdk/types/shared/product_list_item.py +++ b/src/whop_sdk/types/shared/product_list_item.py @@ -5,8 +5,6 @@ from ..._models import BaseModel from .visibility import Visibility -from .business_types import BusinessTypes -from .industry_types import IndustryTypes __all__ = ["ProductListItem"] @@ -20,9 +18,6 @@ class ProductListItem(BaseModel): id: str """The unique identifier for the product.""" - business_type: Optional[BusinessTypes] = None - """The different business types a company can be.""" - created_at: datetime """The datetime the product was created.""" @@ -36,9 +31,6 @@ class ProductListItem(BaseModel): headline: Optional[str] = None """A short marketing headline displayed prominently on the product's product page.""" - industry_type: Optional[IndustryTypes] = None - """The different industry types a company can be in.""" - member_count: int """The number of users who currently hold an active membership to this product. diff --git a/src/whop_sdk/types/shared_params/__init__.py b/src/whop_sdk/types/shared_params/__init__.py index 8ed721e0..eb838c16 100644 --- a/src/whop_sdk/types/shared_params/__init__.py +++ b/src/whop_sdk/types/shared_params/__init__.py @@ -13,8 +13,6 @@ from .who_can_post import WhoCanPost as WhoCanPost from .app_view_type import AppViewType as AppViewType from .who_can_react import WhoCanReact as WhoCanReact -from .business_types import BusinessTypes as BusinessTypes -from .industry_types import IndustryTypes as IndustryTypes from .invoice_status import InvoiceStatus as InvoiceStatus from .receipt_status import ReceiptStatus as ReceiptStatus from .release_method import ReleaseMethod as ReleaseMethod diff --git a/src/whop_sdk/types/shared_params/business_types.py b/src/whop_sdk/types/shared_params/business_types.py deleted file mode 100644 index 54cfdaed..00000000 --- a/src/whop_sdk/types/shared_params/business_types.py +++ /dev/null @@ -1,30 +0,0 @@ -# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. - -from __future__ import annotations - -from typing_extensions import Literal, TypeAlias - -__all__ = ["BusinessTypes"] - -BusinessTypes: TypeAlias = Literal[ - "education_program", - "coaching", - "software", - "paid_group", - "newsletter", - "agency", - "physical_products", - "brick_and_mortar", - "events", - "coaching_and_courses", - "other", - "services", - "gig_economy", - "marketplace", - "telehealth", - "class_action_settlement", - "physical_product", - "saas", - "course", - "community", -] diff --git a/src/whop_sdk/types/shared_params/industry_types.py b/src/whop_sdk/types/shared_params/industry_types.py deleted file mode 100644 index 7ec2ef2e..00000000 --- a/src/whop_sdk/types/shared_params/industry_types.py +++ /dev/null @@ -1,1950 +0,0 @@ -# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. - -from __future__ import annotations - -from typing_extensions import Literal, TypeAlias - -__all__ = ["IndustryTypes"] - -IndustryTypes: TypeAlias = Literal[ - "trading", - "sports_betting", - "reselling", - "fitness", - "amazon_fba", - "real_estate", - "kindle_book_publishing", - "dating", - "agencies", - "health_and_wellness", - "social_media", - "sales", - "business", - "ecommerce", - "video_games", - "home_services", - "ai", - "public_speaking", - "personal_finance", - "careers", - "travel", - "clipping", - "spirituality", - "vas", - "personal_development", - "software", - "other", - "marketing_agency", - "sales_agency", - "ai_agency", - "design_agency", - "coaching_agency", - "development_agency", - "recruiting_agency", - "customer_support_agency", - "clipping_agency", - "clothing", - "supplements", - "beauty_and_personal_care", - "fitness_gear", - "accessories", - "home_goods", - "electronics_and_gadgets", - "food_and_beverages", - "gym", - "restaurant", - "retail_store", - "coffee_shop", - "salon_spa", - "medical_dentist_office", - "hotel_lodging", - "auto_repair_shop", - "masterminds", - "webinars", - "bootcamps", - "convention", - "concerts", - "meetups", - "parties", - "forex_trading", - "stock_trading", - "options_trading", - "crypto_trading", - "futures_trading", - "day_trading", - "swing_trading", - "algorithmic_trading", - "prop_firm_trading", - "value_investing", - "real_estate_investing", - "alternative_investments", - "penny_stock_trading", - "dividend_investing", - "index_fund_investing", - "gold_precious_metals", - "venture_capital_education", - "private_equity_education", - "technical_analysis", - "forex_scalping", - "ict_smc_trading", - "personalized_investment_advice", - "sports_betting_picks", - "fantasy_sports", - "horse_racing", - "poker_coaching", - "esports_betting", - "sports_analytics", - "nfl_betting", - "nba_betting", - "mlb_betting", - "soccer_betting", - "mma_ufc_betting", - "bodybuilding_coaching", - "strength_training", - "weight_loss_coaching", - "athletic_performance", - "yoga_instruction", - "martial_arts_instruction", - "running_coaching", - "calisthenics", - "flexibility_mobility", - "nutrition_coaching", - "swimming_coaching", - "cycling_coaching", - "boxing_coaching", - "mma_coaching", - "jiu_jitsu_coaching", - "wrestling_coaching", - "gymnastics_coaching", - "pilates_instruction", - "sports_nutrition", - "body_recomposition", - "golf_coaching", - "tennis_coaching", - "basketball_training", - "soccer_training", - "racket_sports_coaching", - "mental_health_coaching", - "life_coaching", - "biohacking", - "holistic_health", - "addiction_recovery_coaching", - "breathwork", - "meditation_mindfulness", - "gut_health_coaching", - "longevity_coaching", - "womens_health_coaching", - "mens_health_coaching", - "fertility_wellness", - "stress_management", - "grief_coaching", - "trauma_recovery_coaching", - "adhd_coaching", - "biomarker_health_coaching", - "fitness_newsletter", - "mental_health_newsletter", - "longevity_newsletter", - "medical_newsletter", - "biohacking_newsletter", - "womens_health_newsletter", - "mens_health_newsletter", - "pharma_biotech_newsletter", - "ecommerce_education", - "amazon_fba_coaching", - "dropshipping_coaching", - "print_on_demand_coaching", - "retail_arbitrage", - "wholesale_coaching", - "startup_coaching", - "business_strategy", - "agency_building", - "smma_coaching", - "consulting_business", - "saas_entrepreneurship", - "local_business_coaching", - "cleaning_business_coaching", - "trucking_business_coaching", - "vending_machine_business", - "atm_business_coaching", - "car_wash_business", - "airbnb_business_coaching", - "private_label_coaching", - "etsy_coaching", - "merch_business_coaching", - "licensing_business", - "business_acquisition", - "women_entrepreneurship", - "affiliate_marketing_education", - "coaching_business_coaching", - "startup_newsletter", - "ecommerce_newsletter", - "marketing_newsletter", - "sales_newsletter", - "small_business_newsletter", - "leadership_newsletter", - "agency_newsletter", - "saas_newsletter", - "hr_people_newsletter", - "legal_business_newsletter", - "real_estate_business_newsletter", - "solopreneur_newsletter", - "high_ticket_sales", - "b2b_sales_coaching", - "door_to_door_sales", - "sales_funnel_coaching", - "appointment_setting_coaching", - "insurance_sales_coaching", - "car_sales_coaching", - "retail_sales_coaching", - "solar_sales_coaching", - "facebook_ads", - "google_ads", - "tiktok_marketing", - "youtube_marketing", - "instagram_growth", - "seo_coaching", - "email_marketing_coaching", - "copywriting_coaching", - "affiliate_marketing", - "local_seo", - "ai_marketing", - "webinar_marketing", - "event_marketing", - "saas_marketing_coaching", - "digital_marketing", - "video_editing_education", - "photography_coaching", - "music_production", - "ui_ux_design_education", - "clipping_education", - "ugc_creation", - "3d_modeling_education", - "dj_education", - "youtube_automation", - "blog_monetization", - "wedding_photography_education", - "calligraphy_lettering", - "illustration_education", - "fashion_design_education", - "interior_design_education", - "influencer_education", - "ai_content_creator_education", - "web_development_education", - "ai_ml_education", - "data_science_education", - "cybersecurity_education", - "cloud_computing_education", - "blockchain_education", - "no_code_education", - "automation_education", - "game_development_education", - "prompt_engineering", - "python_programming", - "javascript_programming", - "react_development", - "database_engineering", - "aws_certification", - "data_engineering", - "robotics_education", - "vr_ar_development", - "linux_sysadmin", - "wordpress_development", - "ai_agent_building", - "real_estate_wholesaling", - "house_flipping", - "property_development", - "rental_property", - "airbnb_str", - "commercial_real_estate", - "land_investing", - "section_8_housing", - "mobile_home_investing", - "multifamily_investing", - "self_storage_investing", - "property_management_education", - "vacation_rental_management", - "credit_repair_education", - "budgeting_coaching", - "tax_strategy_education", - "wealth_building", - "student_loan_strategy", - "credit_card_optimization", - "career_coaching", - "executive_coaching", - "management_coaching", - "tech_career_coaching", - "medical_career_coaching", - "trade_skills_education", - "va_training", - "bookkeeping_education", - "data_career_coaching", - "cybersecurity_career", - "consulting_career", - "investment_banking_career", - "law_career_coaching", - "nursing_career_coaching", - "teaching_career_coaching", - "personal_branding_career", - "mens_dating_coaching", - "womens_dating_coaching", - "relationship_coaching", - "marriage_coaching", - "communication_coaching", - "masculinity_coaching", - "femininity_coaching", - "breakup_recovery", - "manifestation_coaching", - "astrology_coaching", - "energy_healing", - "spiritual_coaching", - "faith_based_coaching", - "psychic_development", - "numerology_coaching", - "chakra_healing", - "shamanic_healing", - "biblical_coaching", - "islamic_coaching", - "productivity_coaching", - "public_speaking_coaching", - "mindset_coaching", - "stoicism_philosophy", - "mens_self_improvement", - "womens_self_improvement", - "leadership_development", - "anger_management", - "neurolinguistic_programming", - "appearance_and_grooming_coaching", - "amazon_kdp", - "self_publishing", - "audiobook_publishing", - "course_creation", - "digital_product_creation", - "ghostwriting_business", - "template_creation", - "ai_book_publishing", - "language_learning", - "tutoring", - "college_admissions_coaching", - "cpa_exam_prep", - "bar_exam_prep", - "real_estate_exam_prep", - "medical_board_prep", - "pmp_certification_prep", - "aws_certification_prep", - "comptia_certification", - "ap_exam_prep", - "graduate_school_prep", - "scholarship_coaching", - "homeschool_education", - "stem_education", - "financial_certification", - "coding_bootcamp_prep", - "cooking_culinary", - "travel_coaching", - "parenting_coaching", - "pet_training", - "gardening_education", - "diy_crafts", - "survival_prepping", - "baking_pastry", - "wine_sommelier", - "beer_brewing", - "mixology_bartending", - "woodworking", - "pottery_ceramics", - "knitting_crocheting", - "jewelry_making", - "aquarium_fishkeeping", - "bird_watching", - "astronomy_education", - "magic_illusion", - "car_restoration", - "motorcycle_riding", - "sailing_boating", - "scuba_diving", - "rock_climbing", - "skiing_snowboarding", - "surfing_education", - "homesteading", - "tiny_house_living", - "van_life", - "fashion_styling", - "floral_design", - "travel_planning_service", - "collectibles_coaching", - "esports_coaching", - "game_specific_coaching", - "legal_education", - "music_theory", - "music_business", - "acting_coaching", - "dance_instruction", - "voice_acting", - "english_coaching", - "spanish_coaching", - "mandarin_coaching", - "french_coaching", - "german_coaching", - "japanese_coaching", - "korean_coaching", - "arabic_coaching", - "sign_language_education", - "accent_reduction", - "business_english", - "smma", - "performance_marketing_agency", - "seo_agency", - "content_marketing_agency", - "email_marketing_agency", - "influencer_marketing_agency", - "pr_agency", - "branding_agency", - "video_marketing_agency", - "amazon_marketing_agency", - "podcast_marketing_agency", - "tiktok_agency", - "linkedin_agency", - "local_marketing_agency", - "dental_marketing_agency", - "real_estate_marketing_agency", - "restaurant_marketing_agency", - "ecommerce_marketing_agency", - "b2b_marketing_agency", - "growth_marketing_agency", - "affiliate_management_agency", - "conversion_optimization_agency", - "event_marketing_agency", - "click_farm_service", - "data_scraping_service", - "lead_list_sales", - "social_media_bot_farm", - "lead_generation_agency", - "cold_email_agency", - "cold_calling_agency", - "sales_outsourcing", - "crm_implementation", - "appointment_setting_agency", - "sales_training_agency", - "revenue_operations_agency", - "inbound_teleservices", - "outbound_telemarketing", - "ai_chatbot_agency", - "ai_automation_agency", - "ai_consulting", - "workflow_automation_agency", - "data_analytics_agency", - "ai_voice_agent_agency", - "ai_content_agency", - "machine_learning_agency", - "computer_vision_agency", - "web_design_agency", - "graphic_design_agency", - "ui_ux_agency", - "motion_design_agency", - "product_design_agency", - "logo_design_agency", - "presentation_design_agency", - "3d_visualization_agency", - "fashion_design_agency", - "web_development_agency", - "mobile_app_agency", - "saas_development_agency", - "ecommerce_development", - "blockchain_development_agency", - "game_development_agency", - "devops_agency", - "ai_development_agency", - "wordpress_agency", - "shopify_agency", - "api_integration_agency", - "cybersecurity_agency", - "data_engineering_agency", - "vr_ar_development_agency", - "hacking_tools_malware", - "stalkerware_monitoring", - "tech_recruiting_agency", - "executive_recruiting", - "staffing_agency", - "remote_staffing", - "healthcare_recruiting", - "va_placement_agency", - "sales_recruiting", - "creative_recruiting", - "finance_recruiting", - "legal_recruiting", - "construction_staffing", - "hospitality_staffing", - "customer_support_outsourcing", - "live_chat_agency", - "technical_support_agency", - "call_center_agency", - "multilingual_support_agency", - "community_management_agency", - "video_clipping_agency", - "video_production_agency", - "ugc_agency", - "content_writing_agency", - "translation_agency", - "social_media_management", - "ghostwriting_agency", - "podcast_editing_agency", - "thumbnail_design_agency", - "scriptwriting_agency", - "seo_content_agency", - "technical_writing_agency", - "management_consulting", - "financial_consulting", - "hr_consulting", - "operations_consulting", - "it_consulting", - "sustainability_consulting", - "legal_consulting", - "compliance_consulting", - "supply_chain_consulting", - "change_management_consulting", - "digital_transformation_consulting", - "healthcare_consulting", - "real_estate_consulting", - "franchise_consulting", - "export_trade_consulting", - "nonprofit_consulting", - "education_consulting", - "cannabis_consulting", - "restaurant_consulting", - "m_and_a_consulting", - "pricing_strategy_consulting", - "brand_strategy_consulting", - "saas_marketing_consulting", - "done_for_you_services", - "prop_firm_passing_service", - "trading_account_management", - "done_for_you_trading", - "accounting_bookkeeping", - "tax_preparation", - "legal_services", - "notary_services", - "insurance_brokerage", - "financial_planning_service", - "real_estate_services", - "property_management", - "mortgage_brokerage", - "immigration_services", - "patent_trademark_services", - "business_formation_services", - "shell_company_formation", - "payroll_services", - "audit_services", - "forensic_accounting", - "actuarial_services", - "appraisal_services", - "mediation_arbitration", - "background_check_services", - "bail_bond_services", - "bnpl_service", - "check_cashing_service", - "cloud_mining_schemes", - "consumer_lending", - "credit_repair_service", - "crowdfunding_platform", - "crypto_exchange_brokerage", - "debt_collection_agency", - "debt_relief_settlement", - "document_falsification", - "escrow_service", - "essay_mill_paper_mill", - "fake_id_services", - "fake_reference_services", - "foreign_exchange_service", - "government_service_facilitation", - "immigration_services_unlicensed", - "licensed_legal_services", - "payment_facilitation", - "personalized_tax_services", - "prediction_market_exchange", - "private_investigation", - "repossession_services", - "stablecoin_issuance", - "standalone_tipping", - "token_sales_ico", - "tokenized_rwa", - "unlicensed_legal_services", - "yield_staking_products", - "photography_service", - "videography_service", - "music_production_service", - "voice_over_service", - "event_photography", - "drone_services", - "commercial_photography", - "portrait_photography_service", - "real_estate_photography", - "food_photography_service", - "live_event_production", - "podcast_production_service", - "record_label", - "book_publishing_house", - "news_media_outlet", - "radio_broadcasting", - "tv_production_company", - "film_studio", - "magazine_publisher", - "music_licensing_agency", - "talent_management_agency", - "advertising_network", - "ad_tech_platform", - "cleaning_service", - "landscaping_service", - "plumbing_service", - "electrical_service", - "hvac_service", - "roofing_service", - "painting_service", - "moving_service", - "handyman_service", - "pest_control", - "pool_service", - "solar_installation", - "home_renovation", - "pressure_washing", - "junk_removal", - "garage_door_service", - "fencing_service", - "concrete_masonry", - "tree_service", - "window_cleaning", - "gutter_service", - "flooring_service", - "cabinet_countertop", - "home_inspection", - "septic_service", - "waterproofing_service", - "insulation_service", - "chimney_service", - "locksmith_service", - "glass_window_service", - "epoxy_coating", - "private_security_guard_service", - "armored_car_transport", - "executive_protection_bodyguard", - "event_security_service", - "alarm_system_installation", - "cctv_installation", - "private_investigation_agency", - "background_check_provider", - "locksmith_commercial", - "bounty_hunter_bail_enforcement", - "personal_styling", - "personal_chef", - "personal_assistant_service", - "tutoring_service", - "pet_services", - "wedding_planning", - "concierge_service", - "personal_training_service", - "nanny_service", - "elder_care_service", - "errand_service", - "life_organization", - "relocation_service", - "adult_dating_services", - "escort_services", - "hotel_accommodation_bookings", - "mail_order_spouse", - "psychic_fortune_telling", - "timeshare_sales", - "freight_brokerage", - "courier_service", - "warehousing_service", - "last_mile_delivery", - "auto_transport", - "international_shipping", - "cold_chain_logistics", - "commercial_airline_tickets", - "cruise_line_bookings", - "contract_manufacturing", - "cnc_machining_service", - "3d_printing_service_commercial", - "plastic_injection_molding", - "metal_fabrication", - "pcba_assembly", - "chemical_manufacturing", - "textile_manufacturing", - "food_processing_facility", - "packaging_manufacturing", - "industrial_automation_integrator", - "mining_and_extraction", - "oil_and_gas_services", - "renewable_energy_generation", - "waste_management_recycling", - "hazardous_waste_disposal", - "aerospace_defense_contracting", - "personal_training_studio", - "nutrition_consulting", - "mental_health_counseling", - "physical_therapy_service", - "occupational_therapy_service", - "speech_therapy_service", - "chiropractic_service", - "acupuncture_service", - "massage_therapy_service", - "midwifery_doula", - "lactation_consulting", - "dietitian_service", - "addiction_recovery_services", - "dtc_lab_testing", - "iv_therapy_infusion", - "medspa_aesthetic_services", - "prescription_delivery_services", - "registered_dietitian_services", - "unlicensed_therapy_counseling", - "streetwear", - "athleisure", - "luxury_fashion", - "kids_clothing", - "custom_apparel", - "workwear", - "swimwear", - "lingerie_intimates", - "vintage_clothing", - "plus_size_fashion", - "maternity_clothing", - "sleepwear_loungewear", - "denim_brand", - "outerwear_jackets", - "socks_hosiery", - "costumes_cosplay", - "scrubs_medical_apparel", - "dance_performance_wear", - "hunting_camo_apparel", - "casual_everyday_clothing", - "protein_supplements", - "vitamins_minerals", - "pre_workout", - "nootropics", - "herbal_supplements", - "weight_management_supplements", - "gut_health", - "cbd_products", - "mushroom_supplements", - "collagen_supplements", - "testosterone_boosters", - "sleep_supplements", - "immune_support", - "joint_bone_health", - "greens_powder", - "creatine_supplements", - "electrolyte_hydration", - "prenatal_supplements", - "kids_supplements", - "pet_supplements", - "ayurvedic_supplements", - "keto_supplements", - "cannabis_thc_products", - "cbd_hemp_products_compliant", - "delta8_thc_products", - "dietary_supplements", - "drug_precursor_chemicals", - "illegal_drugs", - "kratom_kava_products", - "medical_treatment_claims_product", - "nutraceutical_products", - "otc_medication_sales", - "performance_enhancing_drugs", - "research_chemicals_dangerous", - "research_peptides", - "sexual_enhancement_products", - "tobacco_products", - "unlicensed_rx_sales", - "skincare", - "haircare", - "cosmetics_makeup", - "mens_grooming", - "fragrance", - "oral_care", - "sunscreen_spf", - "hair_growth_products", - "body_care", - "deodorant", - "lip_care", - "acne_treatment", - "men_skincare", - "baby_skincare", - "tattoo_aftercare", - "intimate_care", - "home_gym_equipment", - "yoga_equipment", - "combat_sports_gear", - "outdoor_fitness_gear", - "wearable_fitness", - "recovery_equipment", - "weightlifting_equipment", - "cardio_equipment", - "gymnastics_equipment", - "swimming_gear", - "jump_rope_equipment", - "grip_strength_tools", - "sauna_cold_plunge", - "posture_correctors", - "jewelry", - "sunglasses_eyewear", - "bags_wallets", - "hats_headwear", - "phone_accessories", - "travel_accessories", - "scarves_wraps", - "belts", - "hair_accessories", - "tech_accessories", - "keychains_charms", - "custom_engraved_accessories", - "cannabis_accessories_non_drug", - "drug_paraphernalia", - "high_value_goods_over_500", - "precious_metals_stones", - "replica_counterfeit_goods", - "home_decor", - "candles_scents", - "kitchenware", - "bedding_linens", - "smart_home", - "cleaning_products", - "outdoor_furniture", - "organization_storage", - "wall_art_prints", - "rugs_carpets", - "lighting_fixtures", - "planters_garden_decor", - "bathroom_accessories", - "luxury_home_goods", - "seasonal_holiday_decor", - "pet_home_products", - "home_fragrance_diffusers", - "hazardous_chemicals_b2c", - "pre_orders_delayed_delivery", - "audio_equipment", - "camera_equipment", - "gaming_hardware", - "drones_robotics", - "ev_accessories", - "charging_power", - "smart_wearables", - "home_security_devices", - "3d_printers", - "projectors_displays", - "streaming_devices", - "vr_headsets", - "e_readers", - "portable_tech", - "hardware_wallets", - "regulated_medical_devices", - "signal_jamming_devices", - "spy_cameras_hidden_recording", - "specialty_coffee_tea", - "health_food", - "snacks_treats", - "sauces_condiments", - "alcohol_spirits", - "meal_kits", - "baked_goods", - "beverages", - "pet_food_treats", - "protein_bars_snacks", - "jerky_meat_snacks", - "chocolate_confections", - "honey_sweeteners", - "olive_oil_vinegar", - "hot_sauce", - "dried_fruit_nuts", - "baby_food", - "plant_based_food", - "gluten_free_food", - "keto_food_products", - "subscription_food_box", - "kombucha_fermented", - "alcohol_sales", - "baby_products", - "kids_toys", - "kids_educational", - "baby_clothing_accessories", - "nursery_decor", - "kids_outdoor_play", - "kids_books", - "baby_safety_products", - "kids_arts_crafts", - "camping_hiking", - "fishing_gear", - "hunting_gear", - "cycling_gear", - "water_sports_gear", - "golf_equipment", - "snow_sports_gear", - "climbing_gear", - "archery_equipment", - "skateboarding_gear", - "pickleball_equipment", - "tennis_equipment", - "equestrian_gear", - "tactical_gear", - "overlanding_gear", - "explosives_fireworks", - "firearms_sales", - "self_defense_products", - "weapon_components", - "craft_kits", - "sewing_textiles", - "stationery", - "scrapbooking_supplies", - "beading_jewelry_supplies", - "pottery_supplies", - "printmaking_supplies", - "car_accessories", - "detailing_products", - "motorcycle_gear", - "truck_accessories", - "off_road_parts", - "car_audio_electronics", - "performance_parts", - "car_care_products", - "ev_charging_accessories", - "auto_repair_service", - "auto_body_shop", - "car_dealership", - "car_wash", - "tire_shop", - "oil_change_shop", - "auto_parts_store", - "motorcycle_shop", - "ev_charging_station", - "transmission_shop", - "muffler_exhaust_shop", - "auto_glass_shop", - "auto_upholstery_shop", - "car_audio_shop", - "smog_emissions_shop", - "truck_repair_shop", - "rv_repair_shop", - "boat_repair_shop", - "used_car_lot", - "auto_auction", - "dog_products", - "cat_products", - "aquarium_supplies", - "bird_supplies", - "reptile_supplies", - "horse_supplies", - "pet_apparel", - "pet_tech", - "pet_grooming_products", - "hand_tools", - "power_tools_and_accessories", - "hardware_and_fasteners", - "workshop_equipment_and_storage", - "safety_and_work_gear", - "painting_and_building_supplies", - "office_supplies", - "desk_accessories", - "printing_supplies", - "shipping_packaging", - "reusable_products", - "solar_powered_products", - "handmade_goods_marketplace", - "vintage_resale_marketplace", - "electronics_marketplace", - "auto_parts_marketplace", - "luxury_goods_marketplace", - "collectibles_marketplace", - "wholesale_marketplace", - "local_goods_marketplace", - "sneaker_marketplace", - "book_marketplace", - "furniture_marketplace", - "musical_instrument_marketplace", - "art_marketplace", - "ticket_marketplace", - "industrial_equipment_marketplace", - "craft_supply_marketplace", - "baby_kids_marketplace", - "outdoor_gear_marketplace", - "pet_marketplace", - "sustainable_goods_marketplace", - "3d_weapon_files", - "cultural_artifacts_looted", - "dropshipping_operations", - "endangered_animal_products", - "human_body_parts_tissue", - "nft_marketplace", - "penny_auction", - "primary_event_ticketing", - "freelancer_marketplace", - "home_services_marketplace", - "tutoring_marketplace", - "legal_services_marketplace", - "healthcare_marketplace", - "wedding_services_marketplace", - "creative_services_marketplace", - "beauty_services_marketplace", - "fitness_trainer_marketplace", - "pet_services_marketplace", - "childcare_marketplace", - "elder_care_marketplace", - "translation_marketplace", - "coaching_marketplace", - "therapy_marketplace", - "photography_marketplace", - "dj_entertainment_marketplace", - "auto_services_marketplace", - "freelance_marketplace_operator", - "equipment_rental_marketplace", - "vehicle_rental_marketplace", - "space_rental_marketplace", - "vacation_rental_marketplace", - "clothing_rental_marketplace", - "camera_gear_rental", - "rv_camper_rental", - "boat_rental_marketplace", - "storage_rental_marketplace", - "office_coworking_rental", - "parking_rental_marketplace", - "restaurant_marketplace", - "grocery_marketplace", - "catering_marketplace", - "homemade_food_marketplace", - "meal_prep_marketplace", - "bakery_marketplace", - "farm_produce_marketplace", - "chef_booking_marketplace", - "course_marketplace", - "template_marketplace", - "stock_media_marketplace", - "music_beats_marketplace", - "ebook_marketplace", - "plugin_theme_marketplace", - "3d_model_marketplace", - "prompt_marketplace", - "code_snippet_marketplace", - "affiliate_marketing_platform", - "game_account_selling", - "game_cheats_hacks", - "pirated_digital_content", - "unauthorized_ingame_currency", - "weapon_blueprint_distribution", - "saas_marketplace", - "agency_marketplace", - "manufacturing_marketplace", - "logistics_marketplace", - "commercial_real_estate_marketplace", - "business_for_sale_marketplace", - "food_delivery", - "grocery_delivery", - "package_delivery", - "moving_labor", - "alcohol_delivery", - "pharmacy_delivery", - "flower_delivery_gig", - "furniture_delivery_gig", - "catering_delivery", - "rideshare", - "chauffeur_service", - "bike_scooter_rental", - "boat_charter_gig", - "moving_truck_rental_gig", - "assembly_installation", - "waiting_line_service", - "personal_shopping", - "grocery_shopping_gig", - "gift_wrapping_gig", - "notary_gig", - "laundry_gig", - "car_wash_gig", - "cleaning_gig", - "lawn_care_gig", - "handyman_gig", - "pet_care_gig", - "childcare_gig", - "elder_care_gig", - "painting_gig", - "snow_removal_gig", - "pool_cleaning_gig", - "organizing_gig", - "pressure_washing_gig", - "junk_removal_gig", - "freelance_design_gig", - "freelance_writing_gig", - "freelance_dev_gig", - "music_performance_gig", - "event_staffing_gig", - "model_talent_gig", - "photography_gig", - "videography_gig", - "voiceover_gig", - "illustration_gig", - "social_media_gig", - "dj_gig", - "face_painting_gig", - "clipping_gig", - "consulting_gig", - "accounting_gig", - "legal_gig", - "healthcare_gig", - "teaching_gig", - "translation_gig", - "data_entry_gig", - "research_gig", - "virtual_assistant_gig", - "sales_gig", - "recruiting_gig", - "mystery_shopping", - "focus_group_gig", - "product_testing_gig", - "drone_pilot_gig", - "fitness_instruction_gig", - "tour_guide_gig", - "forex_signals_group", - "stock_signals_group", - "crypto_signals_group", - "options_alerts_group", - "futures_signals_group", - "trading_education_group", - "investing_community", - "prediction_markets_group", - "nft_alpha_group", - "penny_stock_group", - "dividend_investing_group", - "real_estate_investing_group", - "prop_firm_group", - "sports_picks_group", - "dfs_group", - "horse_racing_group", - "esports_picks_group", - "nfl_picks_group", - "nba_picks_group", - "soccer_picks_group", - "mlb_picks_group", - "mma_picks_group", - "prop_bets_group", - "fantasy_sports_free_to_play", - "licensed_gambling_operations", - "unlicensed_gambling", - "ecommerce_community", - "agency_community", - "saas_community", - "saas_marketing_community", - "real_estate_community", - "sales_community", - "affiliate_community", - "reselling_community", - "amazon_seller_community", - "dropshipping_community", - "freelancer_community", - "startup_founder_community", - "ceo_executive_community", - "women_business_community", - "marketing_community", - "ai_business_community", - "content_business_community", - "local_business_community", - "private_equity_community", - "wholesaling_community", - "coaching_business_community", - "make_money_online_community", - "fitness_accountability", - "nutrition_community", - "weight_loss_group", - "bodybuilding_community", - "running_community", - "martial_arts_community", - "mental_health_group", - "biohacking_community", - "addiction_support_group", - "yoga_community", - "crossfit_community", - "longevity_community", - "womens_fitness_community", - "postpartum_fitness_group", - "chronic_illness_support", - "skincare_community", - "content_creator_community", - "video_editing_community", - "music_producer_community", - "photography_community", - "writing_community", - "design_community", - "youtube_creator_community", - "tiktok_creator_community", - "podcast_community", - "filmmaker_community", - "clipping_community", - "youtube_automation_community", - "developer_community", - "ai_community", - "cybersecurity_community", - "no_code_community", - "indie_hacker_community", - "devops_community", - "data_science_community", - "product_community", - "open_source_community", - "dating_community", - "personal_development_community", - "spirituality_community", - "parenting_community", - "travel_community", - "networking_community", - "faith_community", - "mens_community", - "womens_community", - "expat_community", - "adult_community_nsfw", - "hate_violence_communities", - "personal_fundraising", - "political_fundraising", - "political_organizations", - "pornographic_content", - "registered_501c3", - "religious_organization", - "unregistered_charities", - "gaming_community", - "car_enthusiast_community", - "sneakerhead_community", - "watch_collector_community", - "wine_enthusiast_community", - "cigar_community", - "cooking_community", - "gardening_community", - "fishing_community", - "hunting_community", - "diy_maker_community", - "golf_community", - "collectibles_community", - "sweepstakes_raffles", - "event_ticket_community", - "forex_trading_bot", - "stock_trading_platform", - "crypto_trading_bot", - "futures_trading_bot", - "options_flow_tool", - "portfolio_tracker", - "financial_modeling_software", - "accounting_software", - "invoicing_software", - "tax_software", - "risk_management_software", - "prop_trading_platform", - "backtesting_software", - "trading_indicators", - "market_data_feed", - "stock_research_tool", - "banking_software", - "lending_platform", - "insurance_software", - "crypto_trading_tools_software", - "non_custodial_wallet_tools", - "ai_outreach_tool", - "ai_chatbot_software", - "ai_writing_tool", - "ai_image_generator", - "ai_video_tool", - "ai_voice_tool", - "ai_data_analysis", - "ai_code_assistant", - "ai_meeting_assistant", - "workflow_automation_software", - "ai_sales_tool", - "ai_customer_support", - "ai_recruiting_tool", - "ai_translation_tool", - "ai_music_tool", - "ai_presentation_tool", - "ai_research_tool", - "ai_seo_tool", - "ai_social_media_tool", - "ai_phone_agent", - "ai_legal_tool", - "ai_healthcare_tool", - "llm_api_platform", - "ai_agent_platform", - "generative_ai_platform", - "celebrity_impersonation", - "deepfake_service", - "crm_software", - "email_marketing_software", - "sms_marketing_software", - "seo_tool", - "landing_page_builder", - "ad_management_tool", - "affiliate_tracking", - "review_management", - "analytics_dashboard", - "lead_gen_software", - "link_in_bio_tool", - "influencer_platform", - "webinar_platform", - "ab_testing_tool", - "chatbot_marketing", - "video_sales_tool", - "proposal_software", - "competitive_intelligence", - "social_listening_tool", - "whatsapp_marketing_tool", - "ecommerce_platform", - "product_research_tool", - "price_tracker", - "shipping_software", - "print_on_demand_software", - "marketplace_seller_tool", - "resale_arbitrage_tool", - "reseller_management_tool", - "product_review_software", - "returns_management", - "product_feed_management", - "checkout_optimization", - "wholesale_ordering", - "project_management_software", - "team_communication", - "video_conferencing", - "document_collaboration", - "time_tracking_software", - "scheduling_software", - "hr_software", - "knowledge_base_software", - "form_survey_builder", - "note_taking_app", - "task_management", - "contract_management", - "expense_management", - "okr_goal_tracking", - "employee_engagement", - "onboarding_software", - "applicant_tracking", - "asset_management", - "facility_management", - "visitor_management", - "api_management", - "hosting_platform", - "database_tool", - "devops_tool", - "monitoring_tool", - "testing_tool", - "code_editor", - "no_code_builder", - "cdn_platform", - "error_tracking", - "documentation_tool", - "webhook_tool", - "community_platform", - "event_management_software", - "webinar_software", - "school_management", - "newsletter_platform", - "podcast_hosting", - "forum_software", - "virtual_classroom", - "telehealth_platform", - "ehr_software", - "practice_management", - "mental_health_app", - "fitness_app", - "nutrition_tracking_app", - "wellness_app", - "patient_engagement", - "medical_billing_software", - "pharmacy_management", - "lab_management", - "clinical_trial_software", - "dental_software", - "veterinary_software", - "health_data_platform", - "real_estate_crm", - "property_management_software", - "deal_analysis_tool", - "mls_search_tool", - "virtual_tour_software", - "real_estate_marketing_software", - "construction_management", - "home_valuation_tool", - "restaurant_pos", - "salon_software", - "gym_management_software", - "auto_shop_software", - "legal_practice_software", - "church_management", - "nonprofit_software", - "logistics_software", - "agriculture_software", - "field_service_software", - "marina_management", - "hotel_pms", - "childcare_management", - "cleaning_business_software", - "roofing_software", - "landscaping_software", - "pest_control_software", - "tattoo_studio_software", - "cannabis_software", - "password_manager", - "cybersecurity_software", - "identity_verification", - "backup_recovery", - "endpoint_protection", - "email_security", - "access_management", - "compliance_software", - "data_privacy_tool", - "vpn_services", - "game_mod_tool", - "streaming_tool", - "game_server_hosting", - "music_software", - "video_editing_software", - "photo_editing_software", - "animation_software", - "audio_editing_software", - "screen_recording_software", - "sports_betting_tool", - "fantasy_sports_paid_entry", - "iptv_pirated_streaming", - "loot_boxes_gacha", - "skill_contests_free_entry", - "skill_contests_paid_entry", - "business_phone_system", - "customer_messaging", - "digital_key_reselling", - "streaming_account_reselling", - "subscription_account_sharing", - "account_generation_tool", - "primary_care_telehealth", - "urgent_care_telehealth", - "pediatric_telehealth", - "geriatric_telehealth", - "family_medicine_telehealth", - "internal_medicine_telehealth", - "preventive_care_telehealth", - "licensed_online_pharmacy", - "telemedicine_practitioner_services", - "dermatology_telehealth", - "acne_telehealth", - "psoriasis_eczema_telehealth", - "skin_cancer_screening_tele", - "cosmetic_dermatology_tele", - "therapy_telehealth", - "psychiatry_telehealth", - "addiction_telehealth", - "couples_therapy_telehealth", - "child_psychology_telehealth", - "eating_disorder_telehealth", - "ptsd_trauma_telehealth", - "adhd_telehealth", - "anxiety_depression_telehealth", - "ocd_telehealth", - "grief_counseling_telehealth", - "anger_management_telehealth", - "family_therapy_telehealth", - "group_therapy_telehealth", - "licensed_psychedelic_therapy", - "womens_health_telehealth", - "mens_health_telehealth", - "sexual_health_telehealth", - "fertility_telehealth", - "hormone_therapy_telehealth", - "menopause_telehealth", - "prenatal_telehealth", - "postpartum_telehealth", - "erectile_dysfunction_tele", - "hair_loss_telehealth", - "birth_control_telehealth", - "sti_testing_telehealth", - "dental_telehealth", - "orthodontics_telehealth", - "optometry_telehealth", - "oral_surgery_consultation", - "vision_therapy_telehealth", - "cardiology_telehealth", - "endocrinology_telehealth", - "neurology_telehealth", - "orthopedic_telehealth", - "allergy_telehealth", - "ent_telehealth", - "rheumatology_telehealth", - "gastroenterology_telehealth", - "infectious_disease_telehealth", - "pulmonology_telehealth", - "nephrology_telehealth", - "oncology_telehealth", - "hematology_telehealth", - "urology_telehealth", - "weight_management_telehealth", - "glp1_weight_loss_tele", - "diabetes_management_tele", - "metabolic_health_tele", - "bariatric_telehealth", - "physical_therapy_telehealth", - "occupational_therapy_tele", - "speech_therapy_telehealth", - "pain_management_telehealth", - "cardiac_rehab_telehealth", - "pelvic_floor_telehealth", - "vestibular_telehealth", - "sleep_medicine_telehealth", - "chronic_disease_management", - "chronic_pain_telehealth", - "migraine_telehealth", - "asthma_copd_telehealth", - "nutrition_telehealth", - "naturopathic_telehealth", - "functional_medicine_telehealth", - "acupuncture_telehealth", - "health_coaching_telehealth", - "integrative_medicine_tele", - "ayurvedic_telehealth", - "genetic_counseling_telehealth", - "pharmacogenomics_tele", - "rare_disease_telehealth", - "second_opinion_telehealth", - "vet_telehealth", - "pet_behavior_telehealth", - "exotic_pet_telehealth", - "equine_telehealth", - "veterinary_services", - "class_action_settlement", - "mastermind_event", - "webinar_event", - "virtual_summit", - "bootcamp_event", - "workshop_seminar", - "hackathon", - "corporate_training_event", - "training_certification_event", - "convention_expo", - "conference_summit", - "industry_awards_event", - "product_launch_event", - "investor_demo_day", - "panel_discussion_event", - "pitch_competition", - "meetup_event", - "dinner_event", - "alumni_event", - "community_gathering", - "singles_event", - "professional_happy_hour", - "women_networking_event", - "founders_dinner", - "industry_mixer", - "concert_event", - "comedy_show", - "theater_performance", - "film_screening", - "music_festival", - "cultural_festival", - "fashion_show", - "drag_show", - "magic_show", - "dance_performance", - "poetry_spoken_word", - "art_exhibition", - "party_event", - "trivia_night", - "wine_tasting_event", - "beer_festival", - "car_show", - "food_festival", - "fitness_challenge_event", - "marathon_race", - "tournament_event", - "fight_event", - "yoga_retreat_event", - "outdoor_adventure_event", - "esports_tournament", - "obstacle_course_race", - "cycling_event", - "swim_meet", - "golf_tournament", - "pickleball_tournament", - "crossfit_competition", - "martial_arts_tournament", - "surfing_competition", - "wellness_retreat", - "spiritual_retreat", - "couples_retreat", - "plant_medicine_retreat", - "luxury_experience_event", - "detox_retreat", - "silent_retreat", - "creative_retreat", - "leadership_retreat", - "mens_retreat", - "womens_retreat", - "digital_detox_retreat", - "fundraiser_event", - "awareness_event", - "volunteer_event", - "charity_auction", - "benefit_concert", - "charity_run_walk", - "environmental_cleanup", - "family_festival", - "kids_event", - "holiday_event", - "farmers_market_event", - "block_party", - "graduation_ceremony", - "memorial_event", - "stock_market_newsletter", - "crypto_newsletter", - "personal_finance_newsletter", - "real_estate_newsletter", - "fintech_newsletter", - "venture_capital_newsletter", - "options_trading_newsletter", - "forex_newsletter", - "macro_economics_newsletter", - "alternative_investing_newsletter", - "tax_strategy_newsletter", - "ai_newsletter", - "tech_industry_newsletter", - "cybersecurity_newsletter", - "developer_newsletter", - "product_newsletter", - "devops_newsletter", - "open_source_newsletter", - "robotics_newsletter", - "climate_tech_newsletter", - "travel_newsletter", - "fashion_newsletter", - "parenting_newsletter", - "sports_newsletter", - "gaming_newsletter", - "music_entertainment_newsletter", - "book_reading_newsletter", - "dating_relationships_newsletter", - "home_design_newsletter", - "pet_newsletter", - "wine_spirits_newsletter", - "automotive_newsletter", - "political_newsletter", - "geopolitics_newsletter", - "media_journalism_newsletter", - "defense_security_newsletter", - "legal_policy_newsletter", - "design_newsletter", - "education_newsletter", - "science_newsletter", - "philosophy_newsletter", - "sustainability_newsletter", - "architecture_newsletter", - "history_newsletter", - "psychology_newsletter", - "career_newsletter", - "spirituality_newsletter", - "self_improvement_newsletter", - "productivity_newsletter", - "faith_newsletter", - "gym_facility", - "crossfit_box", - "yoga_studio", - "pilates_studio", - "martial_arts_gym", - "boxing_gym", - "climbing_gym", - "dance_studio", - "swimming_pool", - "sports_facility", - "golf_course", - "bowling_alley", - "skating_rink", - "trampoline_park", - "tennis_club", - "pickleball_facility", - "gymnastics_center", - "spin_studio", - "barre_studio", - "personal_training_studio_bm", - "recovery_studio", - "indoor_soccer", - "batting_cage", - "shooting_range", - "archery_range", - "equestrian_center", - "fine_dining", - "fast_casual_restaurant", - "steakhouse", - "seafood_restaurant", - "pizza_shop", - "sushi_restaurant", - "deli_sandwich_shop", - "bbq_restaurant", - "mexican_restaurant", - "italian_restaurant", - "chinese_restaurant", - "indian_restaurant", - "thai_restaurant", - "korean_restaurant", - "mediterranean_restaurant", - "vegan_vegetarian_restaurant", - "brunch_restaurant", - "ramen_noodle_shop", - "poke_bowl_shop", - "ethnic_restaurant", - "coffee_shop_cafe", - "bakery", - "juice_smoothie_bar", - "ice_cream_shop", - "donut_shop", - "bubble_tea_shop", - "food_truck", - "fast_food", - "ghost_kitchen", - "food_hall_vendor", - "catering_kitchen", - "butcher_shop", - "cheese_shop", - "farmers_market_stall", - "bar_lounge", - "brewery_taproom", - "winery_tasting", - "wine_bar", - "cocktail_bar", - "sports_bar", - "hookah_lounge", - "distillery", - "commercial_farming", - "livestock_ranching", - "hydroponic_vertical_farming", - "forestry_logging", - "aquaculture_fisheries", - "vineyard_winery_production", - "cannabis_cultivation", - "hemp_farming", - "grain_production", - "agricultural_cooperative", - "fertilizer_pesticide_sales", - "farm_equipment_sales", - "boutique_store", - "clothing_store", - "shoe_store", - "jewelry_store", - "electronics_store", - "bookstore", - "pet_store", - "toy_store", - "sporting_goods_store", - "thrift_store", - "smoke_shop", - "cannabis_dispensary", - "convenience_store", - "grocery_store", - "liquor_store", - "florist", - "gift_shop", - "furniture_store", - "home_improvement_store", - "art_gallery_retail", - "music_instrument_store", - "outdoor_recreation_store", - "phone_repair_store", - "watch_store", - "bridal_shop", - "maternity_store", - "kids_store", - "sneaker_store", - "vintage_store", - "comic_book_store", - "record_store", - "craft_supply_store", - "fabric_store", - "health_food_store", - "vitamin_supplement_store", - "optical_store", - "mattress_store", - "appliance_store", - "kitchen_bath_store", - "tile_flooring_store", - "paint_store", - "garden_center", - "gun_store", - "pawn_shop", - "dollar_store", - "hair_salon", - "nail_salon", - "day_spa", - "med_spa", - "massage_studio", - "tattoo_parlor", - "tanning_salon", - "beauty_supply_store", - "lash_brow_studio", - "waxing_studio", - "sauna_bathhouse", - "cryotherapy_studio", - "float_sensory_studio", - "iv_therapy_lounge", - "teeth_whitening_studio", - "microblading_studio", - "spray_tan_studio", - "blowout_bar", - "mens_barbershop", - "kids_salon", - "medical_office", - "dental_office", - "chiropractic_office", - "physical_therapy_clinic", - "optometry_office", - "dermatology_clinic", - "urgent_care_clinic", - "pharmacy", - "veterinary_clinic", - "mental_health_clinic", - "fertility_clinic", - "acupuncture_clinic", - "hearing_aid_center", - "orthopedic_clinic", - "pediatric_clinic", - "cosmetic_surgery_center", - "allergy_clinic", - "pain_management_clinic", - "dialysis_center", - "imaging_center", - "lab_testing_center", - "sleep_clinic", - "weight_loss_clinic", - "hormone_therapy_clinic", - "addiction_treatment_center", - "rehabilitation_center", - "occupational_therapy_clinic", - "speech_therapy_clinic", - "wound_care_center", - "funeral_home_mortuary", - "crematory_service", - "cemetery_memorial_park", - "casket_urn_retailer", - "pet_cremation_service", - "biohazard_cleanup", - "estate_liquidation", - "hotel", - "motel", - "boutique_hotel", - "bed_and_breakfast", - "hostel", - "resort", - "campground_rv", - "vacation_rental_property", - "extended_stay", - "glamping_site", - "cabin_rental", - "eco_lodge", - "retreat_center", - "tutoring_center", - "daycare_center", - "preschool", - "learning_center", - "music_school", - "art_school", - "driving_school", - "language_school", - "trade_school", - "coding_bootcamp_location", - "montessori_school", - "after_school_program", - "swim_school", - "cooking_school", - "test_prep_center", - "special_needs_center", - "adult_education_center", - "flight_school", - "cosmetology_school", - "movie_theater", - "escape_room", - "arcade", - "mini_golf", - "laser_tag", - "go_kart", - "amusement_park", - "museum", - "zoo_aquarium", - "theater_venue", - "nightclub", - "karaoke_bar", - "comedy_club", - "live_music_venue", - "axe_throwing", - "virtual_reality_arcade", - "board_game_cafe", - "cat_cafe", - "haunted_house", - "water_park", - "indoor_playground", - "concert_venue", - "drive_in_theater", - "billiards_hall", - "dart_bar", - "indoor_skydiving", - "law_office", - "real_estate_office", - "insurance_office", - "accounting_office", - "bank_credit_union", - "printing_shop", - "shipping_center", - "dry_cleaner", - "laundromat", - "storage_facility", - "coworking_space", - "check_cashing", - "title_company", - "travel_agency_storefront", - "staffing_office", - "financial_advisor_office", - "immigration_office", - "bail_bonds_office", - "pet_grooming", - "dog_daycare", - "pet_boarding", - "dog_training_facility", - "pet_spa", - "aquatic_pet_store", - "pet_bakery", - "pet_photography_studio", - "plumbing_showroom", - "hvac_showroom", - "solar_showroom", - "kitchen_design_showroom", - "bath_design_showroom", - "window_door_showroom", - "pool_spa_showroom", - "fireplace_showroom", - "countertop_showroom", - "nonprofit_organization", - "charity_foundation", - "political_campaign", - "community_organization", - "environmental_nonprofit", - "education_nonprofit", - "health_nonprofit", - "animal_welfare_nonprofit", - "arts_culture_nonprofit", - "social_justice_nonprofit", - "veterans_nonprofit", - "youth_nonprofit", - "disaster_relief_nonprofit", - "food_bank", - "housing_nonprofit", - "government_agency", - "public_utility", - "public_library", - "public_school", - "municipal_service", - "military_installation", - "embassy_consulate", - "niche_service", - "niche_product", - "hybrid_business", - "other_general", - "holding_company", - "family_office", - "cooperative", - "social_enterprise", - "incubator_accelerator", - "coworking_community", - "media_company", - "research_lab", -] diff --git a/tests/api_resources/test_checkout_configurations.py b/tests/api_resources/test_checkout_configurations.py index 0b45af7d..8345d28a 100644 --- a/tests/api_resources/test_checkout_configurations.py +++ b/tests/api_resources/test_checkout_configurations.py @@ -68,15 +68,12 @@ def test_method_create_with_all_params_overload_1(self, client: Whop) -> None: "product": { "external_identifier": "external_identifier", "title": "title", - "business_type": "education_program", "collect_shipping_address": True, "custom_statement_descriptor": "custom_statement_descriptor", "description": "description", "global_affiliate_percentage": 6.9, "global_affiliate_status": "enabled", "headline": "headline", - "industry_group": "academic_and_test_prep", - "industry_type": "trading", "product_tax_code_id": "ptc_xxxxxxxxxxxxxx", "redirect_purchase_url": "redirect_purchase_url", "route": "route", @@ -397,15 +394,12 @@ async def test_method_create_with_all_params_overload_1(self, async_client: Asyn "product": { "external_identifier": "external_identifier", "title": "title", - "business_type": "education_program", "collect_shipping_address": True, "custom_statement_descriptor": "custom_statement_descriptor", "description": "description", "global_affiliate_percentage": 6.9, "global_affiliate_status": "enabled", "headline": "headline", - "industry_group": "academic_and_test_prep", - "industry_type": "trading", "product_tax_code_id": "ptc_xxxxxxxxxxxxxx", "redirect_purchase_url": "redirect_purchase_url", "route": "route", diff --git a/tests/api_resources/test_companies.py b/tests/api_resources/test_companies.py index 58809f86..30eb5ebd 100644 --- a/tests/api_resources/test_companies.py +++ b/tests/api_resources/test_companies.py @@ -35,11 +35,8 @@ def test_method_create(self, client: Whop) -> None: def test_method_create_with_all_params(self, client: Whop) -> None: company = client.companies.create( title="title", - business_type="education_program", description="description", email="email", - industry_group="academic_and_test_prep", - industry_type="trading", logo={"id": "id"}, metadata={"foo": "bar"}, parent_company_id="parent_company_id", @@ -129,10 +126,7 @@ def test_method_update_with_all_params(self, client: Whop) -> None: company = client.companies.update( id="biz_xxxxxxxxxxxxxx", banner_image={"id": "id"}, - business_type="education_program", description="description", - industry_group="academic_and_test_prep", - industry_type="trading", logo={"id": "id"}, route="route", send_customer_emails=True, @@ -237,11 +231,8 @@ async def test_method_create(self, async_client: AsyncWhop) -> None: async def test_method_create_with_all_params(self, async_client: AsyncWhop) -> None: company = await async_client.companies.create( title="title", - business_type="education_program", description="description", email="email", - industry_group="academic_and_test_prep", - industry_type="trading", logo={"id": "id"}, metadata={"foo": "bar"}, parent_company_id="parent_company_id", @@ -331,10 +322,7 @@ async def test_method_update_with_all_params(self, async_client: AsyncWhop) -> N company = await async_client.companies.update( id="biz_xxxxxxxxxxxxxx", banner_image={"id": "id"}, - business_type="education_program", description="description", - industry_group="academic_and_test_prep", - industry_type="trading", logo={"id": "id"}, route="route", send_customer_emails=True, diff --git a/tests/api_resources/test_payments.py b/tests/api_resources/test_payments.py index 8249f840..e16cc671 100644 --- a/tests/api_resources/test_payments.py +++ b/tests/api_resources/test_payments.py @@ -53,15 +53,12 @@ def test_method_create_with_all_params_overload_1(self, client: Whop) -> None: "product": { "external_identifier": "external_identifier", "title": "title", - "business_type": "education_program", "collect_shipping_address": True, "custom_statement_descriptor": "custom_statement_descriptor", "description": "description", "global_affiliate_percentage": 6.9, "global_affiliate_status": "enabled", "headline": "headline", - "industry_group": "academic_and_test_prep", - "industry_type": "trading", "product_tax_code_id": "ptc_xxxxxxxxxxxxxx", "redirect_purchase_url": "redirect_purchase_url", "route": "route", @@ -483,15 +480,12 @@ async def test_method_create_with_all_params_overload_1(self, async_client: Asyn "product": { "external_identifier": "external_identifier", "title": "title", - "business_type": "education_program", "collect_shipping_address": True, "custom_statement_descriptor": "custom_statement_descriptor", "description": "description", "global_affiliate_percentage": 6.9, "global_affiliate_status": "enabled", "headline": "headline", - "industry_group": "academic_and_test_prep", - "industry_type": "trading", "product_tax_code_id": "ptc_xxxxxxxxxxxxxx", "redirect_purchase_url": "redirect_purchase_url", "route": "route", diff --git a/tests/api_resources/test_products.py b/tests/api_resources/test_products.py index 154b5b0a..b2498e7e 100644 --- a/tests/api_resources/test_products.py +++ b/tests/api_resources/test_products.py @@ -37,7 +37,6 @@ def test_method_create_with_all_params(self, client: Whop) -> None: product = client.products.create( company_id="biz_xxxxxxxxxxxxxx", title="title", - business_type="education_program", collect_shipping_address=True, custom_cta="get_access", custom_cta_url="custom_cta_url", @@ -47,8 +46,6 @@ def test_method_create_with_all_params(self, client: Whop) -> None: global_affiliate_percentage=6.9, global_affiliate_status="enabled", headline="headline", - industry_group="academic_and_test_prep", - industry_type="trading", member_affiliate_percentage=6.9, member_affiliate_status="enabled", plan_options={ @@ -160,7 +157,6 @@ def test_method_update(self, client: Whop) -> None: def test_method_update_with_all_params(self, client: Whop) -> None: product = client.products.update( id="prod_xxxxxxxxxxxxx", - business_type="education_program", collect_shipping_address=True, custom_cta="get_access", custom_cta_url="custom_cta_url", @@ -170,8 +166,6 @@ def test_method_update_with_all_params(self, client: Whop) -> None: global_affiliate_percentage=6.9, global_affiliate_status="enabled", headline="headline", - industry_group="academic_and_test_prep", - industry_type="trading", member_affiliate_percentage=6.9, member_affiliate_status="enabled", product_tax_code_id="ptc_xxxxxxxxxxxxxx", @@ -335,7 +329,6 @@ async def test_method_create_with_all_params(self, async_client: AsyncWhop) -> N product = await async_client.products.create( company_id="biz_xxxxxxxxxxxxxx", title="title", - business_type="education_program", collect_shipping_address=True, custom_cta="get_access", custom_cta_url="custom_cta_url", @@ -345,8 +338,6 @@ async def test_method_create_with_all_params(self, async_client: AsyncWhop) -> N global_affiliate_percentage=6.9, global_affiliate_status="enabled", headline="headline", - industry_group="academic_and_test_prep", - industry_type="trading", member_affiliate_percentage=6.9, member_affiliate_status="enabled", plan_options={ @@ -458,7 +449,6 @@ async def test_method_update(self, async_client: AsyncWhop) -> None: async def test_method_update_with_all_params(self, async_client: AsyncWhop) -> None: product = await async_client.products.update( id="prod_xxxxxxxxxxxxx", - business_type="education_program", collect_shipping_address=True, custom_cta="get_access", custom_cta_url="custom_cta_url", @@ -468,8 +458,6 @@ async def test_method_update_with_all_params(self, async_client: AsyncWhop) -> N global_affiliate_percentage=6.9, global_affiliate_status="enabled", headline="headline", - industry_group="academic_and_test_prep", - industry_type="trading", member_affiliate_percentage=6.9, member_affiliate_status="enabled", product_tax_code_id="ptc_xxxxxxxxxxxxxx",