const backendURL = process.env.NEXT_PUBLIC_API_BASE_URL;

export const LOGIN = `${backendURL}account/admin/login`;
export const LOGOUT = `${backendURL}account/logout`;
export const CHANGE_PASSWORD = `${backendURL}account/admin/change/password`;

export const ALL_AMENITIES = `${backendURL}master/amenities`;
export const ADD_AMENITIES = `${backendURL}master/amenities`;
export const AMENITY = `${backendURL}master/amenities/`;

export const FORGOT_PASSWORD = `${backendURL}account/admin/forgot-password`;
export const RESET_PASSWORD = `${backendURL}account/admin/reset-password/`;
export const REFRESH_TOKEN = `${backendURL}account/login/refresh`;

export const ALL_CONNECTORS = `${backendURL}master/connectors`;
export const ADD_CONNECTOR = `${backendURL}master/connectors`;
export const CONNECTOR = `${backendURL}master/connectors/`;

export const ALL_LABELS = `${backendURL}master/rating/labels`;
export const ADD_LABEL = `${backendURL}master/rating/labels`;
export const LABEL = `${backendURL}master/rating/labels/`;

export const USER_PROFILE = `${backendURL}account/profile/`;

export const ALL_LOCATIONS = `${backendURL}master/locations`;
export const ADD_LOCATION = `${backendURL}master/locations`;
export const LOCATION = `${backendURL}master/locations/`;

export const ALL_NETWORKS = `${backendURL}master/networks`;
export const ADD_NETWORK = `${backendURL}master/networks`;
export const NETWORK = `${backendURL}master/networks/`;

export const ALL_INSURANCE_COMPANY = `${backendURL}master/insurance/company`;
export const ADD_INSURANCE_COMPANY = `${backendURL}master/insurance/company`;
export const INSURANCE_COMPANY = `${backendURL}master/insurance/company/`;

export const ALL_INSURANCE_TYPE = `${backendURL}master/insurance/company/type`;
export const ADD_INSURANCE_TYPE = `${backendURL}master/insurance/company/type`;
export const INSURANCE_TYPE = `${backendURL}master/insurance/company/type/`;

export const ALL_VEHICLE_MAKE = `${backendURL}vehicle/make`;
export const ADD_VEHICLE_MAKE = `${backendURL}vehicle/make`;
export const VEHICLE_MAKE = `${backendURL}vehicle/make/`;

export const ALL_VEHICLE_MAKE_MODEL = `${backendURL}vehicle/model`;
export const ADD_VEHICLE_MAKE_MODEL = `${backendURL}vehicle/model`;
export const VEHICLE_MAKE_MODEL = `${backendURL}vehicle/model/`;

export const TERMS_OF_USE = `${backendURL}master/terms-of-use`;
export const PRIVACY_POLICY = `${backendURL}master/privacy-policy`;

export const ALL_USERS = `${backendURL}account/profile`;
export const USER = `${backendURL}account/profile/`;

export const DASHBOARD = `${backendURL}master/dashboard/count`;

export const ALL_STATIONS = `${backendURL}station/admin`;
export const STATION = `${backendURL}station/`;
export const STATION_RATING = `${backendURL}station/id/rating`;
export const STATION_PHOTOS = `${backendURL}station/id/photos?limit=all`;
export const ADD_STATION = `${backendURL}station/create`;
export const STATION_MEDIA = `${backendURL}station/id/media`;

export const REVIEW_STATION = `${backendURL}station/verification`;
export const DELETE_STATION_MEDIA = `${backendURL}station/id/media`;
export const APPROVE_STATION = `${backendURL}station/verification`;
export const REJECT_STATION = `${backendURL}station/rejection`;

export const FAQ = `${backendURL}master/faq`;

export const CONTACT_US_TYPE = `${backendURL}master/contact-us/request-types`;
export const NEWSLETTER_SUBSCRIBERS = `${backendURL}account/subscribe-newsletters`;
export const CONTACT_US_REQUEST = `${backendURL}account/contact-us`;
