import type FormData from 'form-data'; export interface RequestParameters { method: string; endpoint: string; query?: Record; headers?: Record; body?: unknown; formData?: FormData; } export interface XandrResponse { response: T; } export interface XandrGeneralError { error_id: string; error: string; } export interface AuthParameters { username: string; password: string; } export interface AuthResponse { status: string; token: string; }