123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- import type { TypeOf, ZodType } from ".";
- import { Primitive } from "./helpers/typeAliases";
- import { util, ZodParsedType } from "./helpers/util";
- declare type allKeys<T> = T extends any ? keyof T : never;
- export declare type inferFlattenedErrors<T extends ZodType<any, any, any>, U = string> = typeToFlattenedError<TypeOf<T>, U>;
- export declare type typeToFlattenedError<T, U = string> = {
- formErrors: U[];
- fieldErrors: {
- [P in allKeys<T>]?: U[];
- };
- };
- export declare const ZodIssueCode: {
- invalid_type: "invalid_type";
- invalid_literal: "invalid_literal";
- custom: "custom";
- invalid_union: "invalid_union";
- invalid_union_discriminator: "invalid_union_discriminator";
- invalid_enum_value: "invalid_enum_value";
- unrecognized_keys: "unrecognized_keys";
- invalid_arguments: "invalid_arguments";
- invalid_return_type: "invalid_return_type";
- invalid_date: "invalid_date";
- invalid_string: "invalid_string";
- too_small: "too_small";
- too_big: "too_big";
- invalid_intersection_types: "invalid_intersection_types";
- not_multiple_of: "not_multiple_of";
- not_finite: "not_finite";
- };
- export declare type ZodIssueCode = keyof typeof ZodIssueCode;
- export declare type ZodIssueBase = {
- path: (string | number)[];
- message?: string;
- };
- export interface ZodInvalidTypeIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.invalid_type;
- expected: ZodParsedType;
- received: ZodParsedType;
- }
- export interface ZodInvalidLiteralIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.invalid_literal;
- expected: unknown;
- received: unknown;
- }
- export interface ZodUnrecognizedKeysIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.unrecognized_keys;
- keys: string[];
- }
- export interface ZodInvalidUnionIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.invalid_union;
- unionErrors: ZodError[];
- }
- export interface ZodInvalidUnionDiscriminatorIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.invalid_union_discriminator;
- options: Primitive[];
- }
- export interface ZodInvalidEnumValueIssue extends ZodIssueBase {
- received: string | number;
- code: typeof ZodIssueCode.invalid_enum_value;
- options: (string | number)[];
- }
- export interface ZodInvalidArgumentsIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.invalid_arguments;
- argumentsError: ZodError;
- }
- export interface ZodInvalidReturnTypeIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.invalid_return_type;
- returnTypeError: ZodError;
- }
- export interface ZodInvalidDateIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.invalid_date;
- }
- export declare type StringValidation = "email" | "url" | "emoji" | "uuid" | "regex" | "cuid" | "cuid2" | "ulid" | "datetime" | "ip" | {
- includes: string;
- position?: number;
- } | {
- startsWith: string;
- } | {
- endsWith: string;
- };
- export interface ZodInvalidStringIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.invalid_string;
- validation: StringValidation;
- }
- export interface ZodTooSmallIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.too_small;
- minimum: number | bigint;
- inclusive: boolean;
- exact?: boolean;
- type: "array" | "string" | "number" | "set" | "date" | "bigint";
- }
- export interface ZodTooBigIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.too_big;
- maximum: number | bigint;
- inclusive: boolean;
- exact?: boolean;
- type: "array" | "string" | "number" | "set" | "date" | "bigint";
- }
- export interface ZodInvalidIntersectionTypesIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.invalid_intersection_types;
- }
- export interface ZodNotMultipleOfIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.not_multiple_of;
- multipleOf: number | bigint;
- }
- export interface ZodNotFiniteIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.not_finite;
- }
- export interface ZodCustomIssue extends ZodIssueBase {
- code: typeof ZodIssueCode.custom;
- params?: {
- [k: string]: any;
- };
- }
- export declare type DenormalizedError = {
- [k: string]: DenormalizedError | string[];
- };
- export declare type ZodIssueOptionalMessage = ZodInvalidTypeIssue | ZodInvalidLiteralIssue | ZodUnrecognizedKeysIssue | ZodInvalidUnionIssue | ZodInvalidUnionDiscriminatorIssue | ZodInvalidEnumValueIssue | ZodInvalidArgumentsIssue | ZodInvalidReturnTypeIssue | ZodInvalidDateIssue | ZodInvalidStringIssue | ZodTooSmallIssue | ZodTooBigIssue | ZodInvalidIntersectionTypesIssue | ZodNotMultipleOfIssue | ZodNotFiniteIssue | ZodCustomIssue;
- export declare type ZodIssue = ZodIssueOptionalMessage & {
- fatal?: boolean;
- message: string;
- };
- export declare const quotelessJson: (obj: any) => string;
- declare type recursiveZodFormattedError<T> = T extends [any, ...any[]] ? {
- [K in keyof T]?: ZodFormattedError<T[K]>;
- } : T extends any[] ? {
- [k: number]: ZodFormattedError<T[number]>;
- } : T extends object ? {
- [K in keyof T]?: ZodFormattedError<T[K]>;
- } : unknown;
- export declare type ZodFormattedError<T, U = string> = {
- _errors: U[];
- } & recursiveZodFormattedError<NonNullable<T>>;
- export declare type inferFormattedError<T extends ZodType<any, any, any>, U = string> = ZodFormattedError<TypeOf<T>, U>;
- export declare class ZodError<T = any> extends Error {
- issues: ZodIssue[];
- get errors(): ZodIssue[];
- constructor(issues: ZodIssue[]);
- format(): ZodFormattedError<T>;
- format<U>(mapper: (issue: ZodIssue) => U): ZodFormattedError<T, U>;
- static create: (issues: ZodIssue[]) => ZodError<any>;
- toString(): string;
- get message(): string;
- get isEmpty(): boolean;
- addIssue: (sub: ZodIssue) => void;
- addIssues: (subs?: ZodIssue[]) => void;
- flatten(): typeToFlattenedError<T>;
- flatten<U>(mapper?: (issue: ZodIssue) => U): typeToFlattenedError<T, U>;
- get formErrors(): typeToFlattenedError<T, string>;
- }
- declare type stripPath<T extends object> = T extends any ? util.OmitKeys<T, "path"> : never;
- export declare type IssueData = stripPath<ZodIssueOptionalMessage> & {
- path?: (string | number)[];
- fatal?: boolean;
- };
- export declare type ErrorMapCtx = {
- defaultError: string;
- data: any;
- };
- export declare type ZodErrorMap = (issue: ZodIssueOptionalMessage, _ctx: ErrorMapCtx) => {
- message: string;
- };
- export {};
|