this repo has no description
at main 60 lines 921 B view raw
1import type { 2 NormalizedLanguage, 3 NormalizedStorefront, 4} from '@jet-app/app-store/api/locale'; 5 6export const DEFAULT_STOREFRONT_CODE = 'us' as NormalizedStorefront; 7export const DEFAULT_LANGUAGE_BCP47 = 'en-US' as NormalizedLanguage; 8 9export const EU_STOREFRONTS = [ 10 'at', 11 'be', 12 'bg', 13 'cy', 14 'cz', 15 'dk', 16 'ee', 17 'fi', 18 'fr', 19 'de', 20 'gr', 21 'hr', 22 'hu', 23 'ie', 24 'it', 25 'lv', 26 'lt', 27 'lu', 28 'mt', 29 'nl', 30 'pl', 31 'pt', 32 'ro', 33 'sk', 34 'si', 35 'es', 36 'se', 37 'uk', 38]; 39 40export const SUPPORTED_STOREFRONTS_FOR_VISION = new Set<NormalizedStorefront>([ 41 'us', 42 'cn', 43 'hk', 44 'jp', 45 'sg', 46 'au', 47 'ca', 48 'fr', 49 'de', 50 'gb', 51 'kr', 52 'ae', 53 'tw', 54] as NormalizedStorefront[]); 55 56export const UNSUPPORTED_STOREFRONTS_FOR_ARCADE = new Set([ 57 'cn', 58 'hk', 59 'mo', 60] as NormalizedStorefront[]);