26 lines
580 B
TypeScript
26 lines
580 B
TypeScript
/**
|
|
* API Index
|
|
*
|
|
* Export all API modules
|
|
*/
|
|
|
|
export * from './client';
|
|
export * from './auth';
|
|
export * from './bookings';
|
|
export type {
|
|
Organization,
|
|
CreateOrganizationRequest,
|
|
UpdateOrganizationRequest,
|
|
} from './organizations';
|
|
export { organizationsApi } from './organizations';
|
|
// Export users module - rename User type to avoid conflict with auth.User
|
|
export type {
|
|
User as UserModel,
|
|
CreateUserRequest,
|
|
UpdateUserRequest,
|
|
ChangePasswordRequest,
|
|
} from './users';
|
|
export { usersApi } from './users';
|
|
export * from './rates';
|
|
export * from './dashboard';
|