export declare const bookingStatuses: { booked: string; cancelledByUser: string; cancelledByProvider: string; }; export declare enum Privacy { private = "private", unlisted = "unlisted", public = "public" } export declare enum ModerationStatus { pending = "pending", approved = "approved", rejected = "rejected" } /** * Note the below values have to be url friendly, as we use them in the path for 3rd-party micro-service * For example: * - /3rd-party/coral/availability/{serviceId} * - /3rd-party/zeppelin/availability/{serviceId} */ export declare const providersEnglishNames: { please: string; zeppelin: string; zomato: string; coral: string; leezair: string; yelp: string; custom: string; }; export declare const categoriesMap: { accommodation: string; activity: string; food: string; }; export declare enum PaymentGatewayName { stripe = "stripe", paybear = "paybear", coinbaseCommerce = "coinbase-commerce", please = "please" } export declare enum PaymentStatus { pending = "pending", success = "success", fail = "fail" } export declare const paymentTypeMap: { fiat: string; crypto: string; }; export declare const sortOrderMap: { asc: number; desc: number; }; export declare enum PayAt { please = "please", externalProvider = "external-provider", destination = "destination" } /** * Common Meal types that are provider agnostic */ export declare const mealTypeMap: { none: string; allFour: string; allThree: string; lunchOrDinner: string; breakfastOnly: string; allFourWithRoomService: string; selfCatering: string; }; /** * Common Room types that are provider agnostic */ export declare const roomTypeMap: { single: string; double: string; twin: string; triple: string; quad: string; five: string; six: string; seven: string; eight: string; family: string; }; export declare enum TransportMode { car = "car", walking = "walking", bicycle = "bicycle", publicTransit = "public-transit" } export declare enum UserLevel { anonymous = "anonymous", regular = "regular", pro = "pro" } export declare enum ReviewSide { posted = "posted", received = "received" } export declare const LAT_LNG_DECIMAL = 6; export declare const MINUTES_IN_A_DAY = 1440; /** * The Max number of tags on a service or trip */ export declare const MAX_NUMBER_OF_TAGS = 8; /** * The Max number of notes in serviceOrg */ export declare const MAX_NUMBER_OF_NOTES = 10; /** * πŸšΆβ€β™€οΈ * 1 meter = 0.0508 calories */ export declare const WALKING_CALORIES_PER_METER = 0.0508; /** * πŸš΄β€β™‚οΈ * 1 meter = 0.02758895 calories */ export declare const BICYCLING_CALORIES_PER_METER = 0.02758895; export declare enum RouteStatsUnit { calories = "calories" } export declare const anonymousTokenPrefix = "anonymous:"; export declare const peopleCountMatrix: { adultCount: number; childrenCount: number; infantCount: number; }[]; /** * The number of hours for which we should consider the availability fresh */ export declare const AVAILABILITY_LOGS_CACHE_HOURS = 3; export declare const fallbackLanguage = "en"; //# sourceMappingURL=constants.d.ts.map