17 lines
408 B
TypeScript
17 lines
408 B
TypeScript
export const API_ENDPOINTS = {
|
|
AUTH_LOGIN: '/api/v1/auth/login',
|
|
REFRESH_TOKEN: '/api/v1/auth/refresh',
|
|
USERSIGNUP:'/api/v1/users/register',
|
|
MANAGE_TOKEN:'/api/v1/users/zoho/token ',
|
|
HR_METRICS: '/hr/metrics',
|
|
ZOHO_PROJECTS: '/zoho/projects',
|
|
PROFILE: '/profile',
|
|
|
|
// CRM API Endpoints
|
|
CRM_DATA: '/api/v1/crm/data',
|
|
} as const;
|
|
|
|
export type ApiEndpointKey = keyof typeof API_ENDPOINTS;
|
|
|
|
|