UNPKG

@letanure/resend-cli

Version:

A command-line interface for Resend email API

27 lines 821 B
import { z } from 'zod'; /** * Shared validation patterns that are actually used in multiple schemas */ export declare const emailSchema: z.ZodString; export declare const contactIdentifierSchema: z.ZodEffects<z.ZodObject<{ id: z.ZodOptional<z.ZodString>; email: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { email?: string | undefined; id?: string | undefined; }, { email?: string | undefined; id?: string | undefined; }>, { email?: string | undefined; id?: string | undefined; }, { email?: string | undefined; id?: string | undefined; }>; export declare const htmlOrTextRefine: (data: { html?: unknown; text?: unknown; }) => unknown; export declare const htmlOrTextMessage = "Either html or text must be provided"; //# sourceMappingURL=shared-schemas.d.ts.map