@letanure/resend-cli
Version:
A command-line interface for Resend email API
22 lines • 800 B
TypeScript
import { z } from 'zod';
export declare const CreateContactOptionsSchema: z.ZodObject<{
email: z.ZodString;
audienceId: z.ZodString;
firstName: z.ZodOptional<z.ZodString>;
lastName: z.ZodOptional<z.ZodString>;
unsubscribed: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodBoolean]>, boolean, string | boolean>>;
}, "strip", z.ZodTypeAny, {
email: string;
audienceId: string;
unsubscribed: boolean;
firstName?: string | undefined;
lastName?: string | undefined;
}, {
email: string;
audienceId: string;
firstName?: string | undefined;
lastName?: string | undefined;
unsubscribed?: string | boolean | undefined;
}>;
export type CreateContactOptionsType = z.infer<typeof CreateContactOptionsSchema>;
//# sourceMappingURL=schema.d.ts.map