export const API_BASE_URL = import.meta.env.VITE_APP_API_URL;

const endpoints = {
  signin: `${API_BASE_URL}/signin/token`,
  signOut: `${API_BASE_URL}/logout`,
  signup: `${API_BASE_URL}/signup`,
  packages: `${API_BASE_URL}/packages`,
  contactUsStore: `${API_BASE_URL}/contact-us`,
  jobs: `${API_BASE_URL}/jobs`, //dont have
  jobApply: `${API_BASE_URL}/job-apply`, // dont have
  notifications: `${API_BASE_URL}/member/notifications`,
  messages: `${API_BASE_URL}/member/chat-list`,
  singlemessage: `${API_BASE_URL}/member/chat-view/:id`,
  chatReply: `${API_BASE_URL}/member/chat-reply`,
  registrationstep1Get: `${API_BASE_URL}/member/registration/step-1/get`, // dont have
  registrationstep1Update: `${API_BASE_URL}/member/registration/step-1/update`, // dont have
  registrationstep2Get: `${API_BASE_URL}/member/registration/step-2/get`, // dont have
  registrationstep2Update: `${API_BASE_URL}/member/registration/step-2/update`, // dont have
  registrationstep3Get: `${API_BASE_URL}/member/registration/step-3/get`, // dont have
  registrationstep3Update: `${API_BASE_URL}/member/registration/step-3/update`, // dont have
  registrationstep4Get: `${API_BASE_URL}/member/registration/step-4/get`, // dont have
  registrationstep4Update: `${API_BASE_URL}/member/registration/step-4/update`, // dont have
  completeRegistrationStep: `${API_BASE_URL}/member/registration/complete-step/:step`, // dont have
  sendOtp: `${API_BASE_URL}/member/send-otp`, // dont have
  profileAttributes: `${API_BASE_URL}/profile-dropdown`, // dont have
  statesGet: `${API_BASE_URL}/states/:countryId`,
  citiesGet: `${API_BASE_URL}/cities/:stateId`,
  feedStoryGet: `${API_BASE_URL}/member/feed/story/new`,
  feedPostGet: `${API_BASE_URL}/member/news-feed/new`,
  feedPostSave: `${API_BASE_URL}/member/feed/save`,
  feedStorySave: `${API_BASE_URL}/member/story/save`,
  memberFollow: `${API_BASE_URL}/member/follow`,
  feedReaction: `${API_BASE_URL}/member/feed/reaction`,
  profileInfo: `${API_BASE_URL}/member/miscapi/user-registration-info/:id`,
  memberGalleryImage: `${API_BASE_URL}member/gallery-image`,
  memberFeed: `${API_BASE_URL}/member/feed/profile/:id`,
  assistedPackage: `${API_BASE_URL}/matchmaking-packages`,
  assistedRequestCall: `${API_BASE_URL}/member/matchmaking-request-call`,
};

export default endpoints;
