export type Auth_DevvyLoginPost_ResponseBody = { data: { errorMessage?: string; }; }; export type Auth_GoogleOAuthLoginPost_ResponseBody = { data: { errorMessage?: string; }; }; export type User_Get_ResponseBody = { data: { user: { id: string; first_name: string; email: string; last_name: string; }; }; }; export type Counters_List_ResponseBody = { data: { counters: { id: string; title: string; metadata: Record; }[]; }; };