Variable GeneralSettingsSchemaConst
GeneralSettingsSchema: ZodObject<
{
name: ZodString;
logoFile: ZodEffects<
ZodOptional<ZodNullable<ZodType<File, ZodTypeDef, File>>>,
File | null | undefined,
File | null | undefined,
>;
logoAction: ZodOptional<ZodString>;
active: ZodBoolean;
address: ZodOptional<ZodNullable<ZodString>>;
websiteURL: ZodOptional<ZodUnion<[ZodString, ZodLiteral<"">]>>;
supportEmail: ZodOptional<ZodUnion<[ZodString, ZodLiteral<"">]>>;
supportPhone: ZodOptional<ZodNullable<ZodString>>;
language: ZodString;
timezone: ZodString;
currency: ZodString;
},
"strip",
ZodTypeAny,
{
name: string;
logoFile?: File
| null;
logoAction?: string;
active: boolean;
address?: string | null;
websiteURL?: string;
supportEmail?: string;
supportPhone?: string | null;
language: string;
timezone: string;
currency: string;
},
{
name: string;
logoFile?: File
| null;
logoAction?: string;
active: boolean;
address?: string | null;
websiteURL?: string;
supportEmail?: string;
supportPhone?: string | null;
language: string;
timezone: string;
currency: string;
},
> = ...