UPDATE AUTH

This commit is contained in:
2026-03-24 13:53:21 +03:30
parent 52e6a90319
commit 0f2b67ea4d
13 changed files with 1361 additions and 721 deletions
+22 -21
View File
@@ -2,25 +2,26 @@
* API Services Export
*/
export * from './client'
export * from './types'
export * from "./client";
export * from "./types";
export {
type RequestOTPRequest,
type RequestOTPResponse,
type VerifyOTPRequest,
type AuthUser,
type VerifyOTPResponse,
type AuthTokens,
type LoginRequest,
type RegisterRequest,
type AuthResponse,
type RefreshTokenResponse,
type UpdateProfilePayload,
type UpdateProfileResponse,
authService
} from './services/authService'
export * from './services/taskService'
export * from './services/eventService'
export * from './services/simulatorService'
export * from './services/chatService'
export * from './services/aiChatService'
export * from './services/kanbanService'
export * from './services/todoService'
authService,
} from "./services/authService";
export * from "./services/taskService";
export * from "./services/eventService";
export * from "./services/simulatorService";
export * from "./services/chatService";
export * from "./services/aiChatService";
export * from "./services/kanbanService";
export * from "./services/todoService";
export {
type User,
type UserDetails,
@@ -29,12 +30,12 @@ export {
type UpdateProfileRequest,
type AddAccountRequest,
type UpdateAccountRequest,
userManagementService
} from './services/userManagementService'
export * from './services/rolesPermissionsService'
export * from './services/sensorHubService'
userManagementService,
} from "./services/userManagementService";
export * from "./services/rolesPermissionsService";
export * from "./services/sensorHubService";
export {
type FarmDashboardConfigResponse,
type FarmDashboardCardsResponse,
farmDashboardService
} from './services/farmDashboardService'
farmDashboardService,
} from "./services/farmDashboardService";