export interface BodyRequest { body: T; } export interface AuthBodyRequest { token: string | null; apiKey: string | null; body: T; } export interface AuthEmptyRequest { token: string | null; apiKey: string | null; } export interface QueryRequest { query: T; } export interface AuthQueryRequest { token: string | null; apiKey: string | null; query: T; } export interface EmptyRequest { } export interface Empty { }