This commit is contained in:
pradeepkumar
2026-01-24 03:33:48 +05:30
parent 7b8b43f998
commit 909c22dc45
11 changed files with 2246 additions and 7 deletions

View File

@@ -19,3 +19,35 @@ export type {
UsersListResponse,
UserFilters,
} from './users.service';
// 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,
} 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';