arbret/frontend/app
counterweight a6fa6a8012
Refactor API layer into structured domain-specific modules
- Created new api/ directory with domain-specific API modules:
  - api/client.ts: Base API client with error handling
  - api/auth.ts: Authentication endpoints
  - api/exchange.ts: Exchange/price endpoints
  - api/trades.ts: User trade endpoints
  - api/profile.ts: Profile management endpoints
  - api/invites.ts: Invite endpoints
  - api/admin.ts: Admin endpoints
  - api/index.ts: Centralized exports

- Migrated all API calls from ad-hoc api.get/post/put to typed domain APIs
- Updated all imports across codebase
- Fixed test mocks to use new API structure
- Fixed type issues in validation utilities
- Removed old api.ts file

Benefits:
- Type-safe endpoints (no more string typos)
- Centralized API surface (easy to discover endpoints)
- Better organization (domain-specific modules)
- Uses generated OpenAPI types automatically
2025-12-25 20:32:11 +01:00
..
admin Refactor API layer into structured domain-specific modules 2025-12-25 20:32:11 +01:00
api Refactor API layer into structured domain-specific modules 2025-12-25 20:32:11 +01:00
components refactor(frontend): improve code quality and maintainability 2025-12-25 19:04:45 +01:00
exchange Refactor API layer into structured domain-specific modules 2025-12-25 20:32:11 +01:00
generated lots of stuff 2025-12-23 17:03:51 +01:00
hooks Refactor API layer into structured domain-specific modules 2025-12-25 20:32:11 +01:00
invites Refactor API layer into structured domain-specific modules 2025-12-25 20:32:11 +01:00
login Add Prettier for TypeScript formatting 2025-12-21 21:59:26 +01:00
profile Refactor API layer into structured domain-specific modules 2025-12-25 20:32:11 +01:00
signup Refactor API layer into structured domain-specific modules 2025-12-25 20:32:11 +01:00
styles refactor(frontend): improve code quality and maintainability 2025-12-25 19:04:45 +01:00
trades Refactor API layer into structured domain-specific modules 2025-12-25 20:32:11 +01:00
utils Refactor API layer into structured domain-specific modules 2025-12-25 20:32:11 +01:00
auth-context.tsx Refactor API layer into structured domain-specific modules 2025-12-25 20:32:11 +01:00
config.ts Add Prettier for TypeScript formatting 2025-12-21 21:59:26 +01:00
layout.tsx tests passing 2025-12-18 22:08:31 +01:00
page.tsx Phase 3.3: Add Admin Trades page 2025-12-22 20:06:16 +01:00