json-api-nestjs
Version:
JsonApi Plugin for NestJs
12 lines (11 loc) • 364 B
TypeScript
import { ZodIssue } from 'zod';
export type InnerErrorType = 'invalid_arguments' | 'unrecognized_keys' | 'internal_error';
export type InnerError = {
code: InnerErrorType;
message: string;
path: string[];
keys?: string[];
error?: Error;
};
export type ValidateQueryError = ZodIssue | InnerError;
export type ErrorDescribe = ValidateQueryError;