export const API_ENDPOINTS = { account: { send_otp: "/accounts/send_otp", }, auth: { signin: "/token", logout: "/accounts/logout", }, chat: { messages: "/chat/product", new_message: "/chat/product", }, }; export const QUERY_KEYS = { chat: "chat", }; export const MUTATION_KEYS = { create_chat: "create_chat", }; export const PRODUCT_RANGE = { min: 0, max: 100000, };