export interface ApiEndpointConfig { path: string; method: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'; timeoutMs?: number; } export interface ApiEndpointsConfig { bootstrap: ApiEndpointConfig; website: Record; builder: Record; backoffice: Record; }