30 lines
848 B
TypeScript
30 lines
848 B
TypeScript
export const API_BASE_URL = __DEV__
|
|
? 'https://694d46f62d87.ngrok-free.app'
|
|
: 'https://your-production-url.com'
|
|
|
|
export const API_ENDPOINTS = {
|
|
AUTH: {
|
|
LOGIN: '/api/auth/login',
|
|
REGISTER: '/api/auth/register',
|
|
},
|
|
PROFILE: {
|
|
FITNESS: '/api/profile/fitness',
|
|
},
|
|
CLIENTS: '/api/clients',
|
|
USERS: '/api/users',
|
|
ATTENDANCE: {
|
|
CHECK_IN: '/api/attendance/check-in',
|
|
CHECK_OUT: '/api/attendance/check-out',
|
|
HISTORY: '/api/attendance/history',
|
|
},
|
|
RECOMMENDATIONS: '/api/recommendations',
|
|
FITNESS_GOALS: {
|
|
LIST: '/api/fitness-goals',
|
|
CREATE: '/api/fitness-goals',
|
|
GET: (id: string) => `/api/fitness-goals/${id}`,
|
|
UPDATE: (id: string) => `/api/fitness-goals/${id}`,
|
|
DELETE: (id: string) => `/api/fitness-goals/${id}`,
|
|
COMPLETE: (id: string) => `/api/fitness-goals/${id}/complete`,
|
|
},
|
|
}
|