@letanure/resend-cli
Version:
A command-line interface for Resend email API
31 lines • 1.92 kB
TypeScript
import { z } from 'zod';
export declare const updateBroadcastSchema: z.ZodObject<{
broadcastId: z.ZodString;
audienceId: z.ZodUnion<[z.ZodString, z.ZodUndefined]> | z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodUndefined]>, string, string | undefined>;
from: z.ZodUnion<[z.ZodString, z.ZodUndefined]> | z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodUndefined]>, string, string | undefined>;
subject: z.ZodUnion<[z.ZodString, z.ZodUndefined]> | z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodUndefined]>, string, string | undefined>;
replyTo: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodString, "many">, z.ZodUndefined]> | z.ZodEffects<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodString, "many">, z.ZodUndefined]>, string | string[], string | string[] | undefined>;
html: z.ZodUnion<[z.ZodString, z.ZodUndefined]> | z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodUndefined]>, string, string | undefined>;
text: z.ZodUnion<[z.ZodString, z.ZodUndefined]> | z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodUndefined]>, string, string | undefined>;
name: z.ZodUnion<[z.ZodString, z.ZodUndefined]> | z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodUndefined]>, string, string | undefined>;
}, "strip", z.ZodTypeAny, {
broadcastId: string;
text?: string | undefined;
name?: string | undefined;
html?: string | undefined;
replyTo?: string | string[] | undefined;
audienceId?: string | undefined;
from?: string | undefined;
subject?: string | undefined;
}, {
broadcastId: string;
text?: string | undefined;
name?: string | undefined;
html?: string | undefined;
replyTo?: string | string[] | undefined;
audienceId?: string | undefined;
from?: string | undefined;
subject?: string | undefined;
}>;
export type UpdateBroadcastData = z.infer<typeof updateBroadcastSchema>;
//# sourceMappingURL=schema.d.ts.map