Variable emailAttachmentSchemaConst
emailAttachmentSchema: ZodUnion<
readonly [
ZodObject<
{
content: ZodString;
contentType: ZodString;
filename: ZodString;
size: ZodOptional<ZodNumber>;
},
$strip,
>,
ZodObject<
{
disk: ZodOptional<ZodString>;
filename: ZodString;
storageKey: ZodString;
},
$strip,
>,
],
> = ...
Email Attachment Schema
Union type - type is inferred from presence of
contentvsstorageKey.contentis present: inline attachmentstorageKeyis present: storage-based attachment