let API_URL = 'https://api-sc-trip.inteletravel.uk/api/';
let REDIRECT_URL =  'https://trips.inteletravel.com.co/';
let MESSAGE_IF_RESPONSE_FALSE = 'Ooops. There was a problem with your account. Please contact Support to resolve this issue at  <a href="tel:0330 808 4419">0330 808 4419</a> or try your search again in a few minutes.'

let DOMAIN = "ie";
let DLANGUAGE = "English";
let DATE_FORMAT_PLACEHOLDER = "DD-MM-YYYY";
let RESIDENCY = "ie";
let DATE_FORMAT = "DD/MM/YYYY";
let DESIRED_CURRENCY = "EUR"
let CURRENCY_TYPE = "EUR";
let CURRENCY_SYMBOL = "€";
 let RADIUS = [
    { title: '1K', value: 1000 },
    { title: '3K', value: 3000 },
    { title: '5K', value: 5000 },
    { title: '15K', value: 15000 },
    { title: '30K', value: 30000 },
    { title: '50K', value: 50000 }
  ];

let DISTANCE_UNIT = 'Kilometer';
let ALLOWED_ENGINES = {
    cars: true,
    cruises: false,
    flights: true,
    hotels: true,
    villas: false,
    activities: false,
    insureIt: false,
};

let SEARCH_LOCATIONS_ENDPOINTS = {
    cars: 'cars/getCarLocation',
    flights: 'msfflights/getLocation',
    hotels: 'hotels/getLocation',
    villas: 'villas/getLocation',
    activities: 'activity/getActivityLocation'
};

 let SEARCH_REQUESTS_ENDPOINTS ={
    cars: 'user/searchRequest',
    flights: 'user/searchRequest',
    hotels: 'user/searchRequest',
    villas: 'user/searchRequest',
    activities: 'user/searchRequest'
};
