interface APIRequestInit { method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE"; params?: any; body?: any; headers?: Record; isInstanceUrl?: boolean; instance?: string; } interface MethodOptions { /** * Instance name to use for this request (overrides default instance) */ instance?: string; } export type { APIRequestInit, MethodOptions };