2026-02-23 19:23:30 +05:30
|
|
|
class ApiConstants {
|
|
|
|
|
ApiConstants._();
|
|
|
|
|
|
2026-02-24 03:28:13 +05:30
|
|
|
// Auth
|
2026-02-23 19:23:30 +05:30
|
|
|
static const String authRegister = '/auth/register';
|
|
|
|
|
static const String authLogin = '/auth/login';
|
|
|
|
|
static const String authForgotPassword = '/auth/forgot-password';
|
|
|
|
|
static const String authResetPassword = '/auth/reset-password';
|
|
|
|
|
static const String authVerifyEmail = '/auth/verify-email';
|
|
|
|
|
static const String authResendVerification = '/auth/resend-verification';
|
|
|
|
|
static const String authMe = '/auth/me';
|
|
|
|
|
static const String authRefresh = '/auth/refresh';
|
|
|
|
|
static const String authLogout = '/auth/logout';
|
2026-02-24 03:28:13 +05:30
|
|
|
|
|
|
|
|
// Agents
|
|
|
|
|
static const String agents = '/agents';
|
|
|
|
|
static const String agentTypes = '/agent-types';
|
2026-02-24 22:35:16 +05:30
|
|
|
|
2026-03-07 22:33:09 +05:30
|
|
|
// Profile fields
|
|
|
|
|
static const String filterableFields = '/profile-fields/filterable';
|
|
|
|
|
|
2026-03-08 00:41:44 +05:30
|
|
|
// Testimonials
|
|
|
|
|
static const String testimonials = '/testimonials';
|
|
|
|
|
|
|
|
|
|
// Connection requests
|
|
|
|
|
static const String connectionRequests = '/connection-requests';
|
|
|
|
|
|
2026-02-24 22:35:16 +05:30
|
|
|
// CMS
|
|
|
|
|
static const String cmsPageLanding = '/cms/page/landing';
|
2026-03-08 00:41:44 +05:30
|
|
|
|
|
|
|
|
// Messages
|
|
|
|
|
static const String conversations = '/messages/conversations';
|
|
|
|
|
static const String unreadCount = '/messages/unread-count';
|
2026-02-23 19:23:30 +05:30
|
|
|
}
|