This commit is contained in:
2026-03-21 17:23:27 +03:30
parent 878d8fc544
commit 451a814347
17 changed files with 122 additions and 45 deletions
+25 -4
View File
@@ -4,7 +4,16 @@
export * from './client'
export * from './types'
export * from './services/authService'
export {
type RequestOTPRequest,
type RequestOTPResponse,
type VerifyOTPRequest,
type AuthUser,
type VerifyOTPResponse,
type UpdateProfilePayload,
type UpdateProfileResponse,
authService
} from './services/authService'
export * from './services/taskService'
export * from './services/eventService'
export * from './services/simulatorService'
@@ -12,8 +21,20 @@ export * from './services/chatService'
export * from './services/aiChatService'
export * from './services/kanbanService'
export * from './services/todoService'
export * from './services/userManagementService'
export {
type User,
type UserDetails,
type Account,
type ApiResponse,
type UpdateProfileRequest,
type AddAccountRequest,
type UpdateAccountRequest,
userManagementService
} from './services/userManagementService'
export * from './services/rolesPermissionsService'
export * from './services/sensorHubService'
export * from './services/farmDashboardService'
export {
type FarmDashboardConfigResponse,
type FarmDashboardCardsResponse,
farmDashboardService
} from './services/farmDashboardService'