export type ClientOptions = { baseUrl: 'https://api.bigcommerce.com/stores/{store_hash}/v3' | (string & {}); }; export type ZoneCheck = { country_code: string; subdivision_codes?: string; postal_code?: string; customer_group_id?: number; }; export type TaxZone = { id?: number; name?: string; enabled?: boolean; price_display_settings?: { show_inclusive?: boolean; show_both_on_detail_view?: boolean; show_both_on_list_view?: boolean; }; shopper_target_settings?: { locations?: Array<{ country_code?: string; subdivision_codes?: Array; postal_codes?: Array; }>; customer_groups?: Array; }; }; export type Accept = string; export type ContentType = string; export type ZoneCheckData = { body: Array; headers: { Accept: string; 'Content-Type': string; }; path?: never; query?: never; url: '/tax/zonecheck'; }; export type ZoneCheckErrors = { 422: unknown; }; export type ZoneCheckResponses = { 200: { data?: Array; }; }; export type ZoneCheckResponse = ZoneCheckResponses[keyof ZoneCheckResponses];