arbret/frontend/app/api/profile.ts
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

30 lines
683 B
TypeScript

import { client } from "./client";
import { components } from "../generated/api";
type ProfileData = components["schemas"]["ProfileResponse"];
interface UpdateProfileRequest {
contact_email: string | null;
telegram: string | null;
signal: string | null;
nostr_npub: string | null;
}
/**
* Profile API endpoints
*/
export const profileApi = {
/**
* Get current user's profile
*/
getProfile(): Promise<ProfileData> {
return client.get<ProfileData>("/api/profile");
},
/**
* Update current user's profile
*/
updateProfile(request: UpdateProfileRequest): Promise<ProfileData> {
return client.put<ProfileData>("/api/profile", request);
},
};