17 lines
564 B
TypeScript
17 lines
564 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';
|