type ErrorCode = "INVALID_QUERY_PARAMS" | "UNKNOWN_ERR" | "INVALID_PAYLOAD" | "INVALID_FORMAT"; export interface ErrorResponse { code: ErrorCode message: string; errors: E[]; } export interface StatusResponse { message: string; }