arbret/frontend
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
..
app Refactor API layer into structured domain-specific modules 2025-12-25 20:32:11 +01:00
e2e parallel tests 2025-12-25 00:48:22 +01:00
.gitignore Add Vitest coverage for frontend tests 2025-12-21 22:00:47 +01:00
.prettierignore fix pre-commit hook and code quality fixes 2025-12-21 22:14:48 +01:00
.prettierrc.json Add Prettier for TypeScript formatting 2025-12-21 21:59:26 +01:00
env.example first round of review 2025-12-18 22:24:46 +01:00
eslint.config.js Add Prettier for TypeScript formatting 2025-12-21 21:59:26 +01:00
next-env.d.ts starting 2025-12-18 21:37:28 +01:00
next.config.ts Add Prettier for TypeScript formatting 2025-12-21 21:59:26 +01:00
package-lock.json Add Vitest coverage for frontend tests 2025-12-21 22:00:47 +01:00
package.json Add Vitest coverage for frontend tests 2025-12-21 22:00:47 +01:00
playwright.config.ts more merging 2025-12-25 00:06:32 +01:00
tsconfig.json Add Prettier for TypeScript formatting 2025-12-21 21:59:26 +01:00
tsconfig.tsbuildinfo Phase 5: Frontend Admin Page 2025-12-21 22:55:56 +01:00
vitest.config.ts Add Vitest coverage for frontend tests 2025-12-21 22:00:47 +01:00