21 lines
484 B
TypeScript
21 lines
484 B
TypeScript
|
|
export const API_ROUTES = {
|
||
|
|
auth: {
|
||
|
|
sendOtp: '/api/v1/auth/otp/send',
|
||
|
|
emailSession: '/api/v1/auth/email-session',
|
||
|
|
refreshSession: '/api/v1/auth/sessions/refresh',
|
||
|
|
deleteSession: '/api/v1/auth/sessions',
|
||
|
|
},
|
||
|
|
users: {
|
||
|
|
profile: '/api/v1/users/me/profile',
|
||
|
|
},
|
||
|
|
points: {
|
||
|
|
balance: '/api/v1/points/balance',
|
||
|
|
},
|
||
|
|
notifications: {
|
||
|
|
unreadCount: '/api/v1/notifications/unread-count',
|
||
|
|
},
|
||
|
|
agent: {
|
||
|
|
history: '/api/v1/agent/history',
|
||
|
|
},
|
||
|
|
} as const;
|