xpeditis2.0/apps/frontend/lib/api/index.ts
David 08787c89c8
Some checks failed
Dev CI / Unit Tests (${{ matrix.app }}) (backend) (push) Blocked by required conditions
Dev CI / Unit Tests (${{ matrix.app }}) (frontend) (push) Blocked by required conditions
Dev CI / Notify Failure (push) Blocked by required conditions
Dev CI / Quality (${{ matrix.app }}) (backend) (push) Has been cancelled
Dev CI / Quality (${{ matrix.app }}) (frontend) (push) Has been cancelled
chore: sync full codebase from cicd branch
Aligns dev with the complete application codebase (cicd branch).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-04 12:56:16 +02:00

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';