2025-12-22 11:53:38 +05:30
|
|
|
// API Client
|
|
|
|
|
export { default as api } from './api';
|
|
|
|
|
export type { ApiResponse, ApiErrorResponse } from './api';
|
|
|
|
|
export { getErrorMessage, getFieldErrors } from './api';
|
|
|
|
|
|
|
|
|
|
// Auth Service
|
|
|
|
|
export { authService } from './auth.service';
|
|
|
|
|
export type {
|
|
|
|
|
LoginRequest,
|
|
|
|
|
AuthUser,
|
|
|
|
|
AuthResponse,
|
|
|
|
|
MessageResponse,
|
|
|
|
|
} from './auth.service';
|
|
|
|
|
|
|
|
|
|
// Users Service
|
|
|
|
|
export { usersService } from './users.service';
|
|
|
|
|
export type {
|
|
|
|
|
User,
|
|
|
|
|
UsersListResponse,
|
|
|
|
|
UserFilters,
|
2026-01-28 13:48:02 +05:30
|
|
|
VerificationStatus,
|
|
|
|
|
VerificationDocument,
|
|
|
|
|
AgentProfileDetails,
|
2025-12-22 11:53:38 +05:30
|
|
|
} from './users.service';
|
2026-01-24 03:33:48 +05:30
|
|
|
|
|
|
|
|
// Agent Types Service
|
|
|
|
|
export { agentTypesService } from './agent-types.service';
|
|
|
|
|
export type {
|
|
|
|
|
AgentType,
|
|
|
|
|
CreateAgentTypeDto,
|
|
|
|
|
UpdateAgentTypeDto,
|
|
|
|
|
} from './agent-types.service';
|
|
|
|
|
|
|
|
|
|
// Profile Sections Service
|
|
|
|
|
export { profileSectionsService } from './profile-sections.service';
|
|
|
|
|
export type {
|
|
|
|
|
ProfileSection,
|
|
|
|
|
AgentTypeSection,
|
|
|
|
|
CreateSectionDto,
|
|
|
|
|
UpdateSectionDto,
|
|
|
|
|
AssignSectionDto,
|
|
|
|
|
UpdateAssignmentDto,
|
2026-01-24 15:33:11 +05:30
|
|
|
SectionOrderItem,
|
|
|
|
|
AgentTypeSectionsResponse,
|
2026-01-24 03:33:48 +05:30
|
|
|
} from './profile-sections.service';
|
|
|
|
|
|
|
|
|
|
// Profile Fields Service
|
|
|
|
|
export { profileFieldsService, FIELD_TYPES } from './profile-fields.service';
|
|
|
|
|
export type {
|
|
|
|
|
ProfileField,
|
|
|
|
|
FieldType,
|
|
|
|
|
FieldOption,
|
|
|
|
|
RangeConfig,
|
|
|
|
|
FieldValidation,
|
|
|
|
|
FieldUiConfig,
|
|
|
|
|
CreateFieldDto,
|
|
|
|
|
UpdateFieldDto,
|
|
|
|
|
} from './profile-fields.service';
|
2026-01-26 22:43:41 +05:30
|
|
|
|
|
|
|
|
// Upload Service
|
|
|
|
|
export { uploadService } from './upload.service';
|
2026-02-22 21:52:05 +05:30
|
|
|
|
|
|
|
|
// CMS Service
|
|
|
|
|
export { cmsService } from './cms.service';
|
|
|
|
|
export type {
|
|
|
|
|
CmsContentRecord,
|
|
|
|
|
HeroContent,
|
|
|
|
|
FeaturesContent,
|
|
|
|
|
FeatureItem,
|
|
|
|
|
TopProfessionalsContent,
|
|
|
|
|
ProfessionalItem,
|
|
|
|
|
TestimonialsContent,
|
|
|
|
|
TestimonialItem,
|
|
|
|
|
StatItem,
|
2026-02-24 03:30:35 +05:30
|
|
|
AboutHeroContent,
|
|
|
|
|
AboutStatItem,
|
|
|
|
|
AboutStatsContent,
|
|
|
|
|
AboutFeatureItem,
|
|
|
|
|
AboutFeaturesContent,
|
|
|
|
|
AboutTeamMember,
|
|
|
|
|
AboutTeamContent,
|
|
|
|
|
AboutCtaContent,
|
2026-02-24 03:53:56 +05:30
|
|
|
FaqCategoryItem,
|
|
|
|
|
FaqItem,
|
|
|
|
|
FaqContent,
|
2026-02-22 21:52:05 +05:30
|
|
|
} from './cms.service';
|