@letanure/resend-cli
Version:
A command-line interface for Resend email API
24 lines • 987 B
TypeScript
import { z } from 'zod';
export declare const RetrieveContactOptionsSchema: z.ZodEffects<z.ZodObject<{
audienceId: z.ZodUnion<[z.ZodString, z.ZodUndefined]> | z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodUndefined]>, string, string | undefined>;
id: z.ZodUnion<[z.ZodString, z.ZodUndefined]> | z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodUndefined]>, string, string | undefined>;
email: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
email?: string | undefined;
id?: string | undefined;
audienceId?: string | undefined;
}, {
email?: string | undefined;
id?: string | undefined;
audienceId?: string | undefined;
}>, {
email?: string | undefined;
id?: string | undefined;
audienceId?: string | undefined;
}, {
email?: string | undefined;
id?: string | undefined;
audienceId?: string | undefined;
}>;
export type RetrieveContactOptionsType = z.infer<typeof RetrieveContactOptionsSchema>;
//# sourceMappingURL=schema.d.ts.map