Variable userDefaultFieldsTypeSchemaConst
userDefaultFieldsTypeSchema: ZodObject<
{
company: ZodOptional<ZodString>;
country: ZodOptional<ZodString>;
dateOfBirth: ZodOptional<ZodString>;
department: ZodOptional<ZodString>;
description: ZodOptional<ZodString>;
field1: ZodOptional<ZodString>;
field2: ZodOptional<ZodString>;
field3: ZodOptional<ZodString>;
field4: ZodOptional<ZodString>;
field5: ZodOptional<ZodString>;
firstname: ZodString;
function: ZodOptional<ZodString>;
image: ZodOptional<ZodUnion<[ZodString, ZodUndefined]>>;
language: ZodOptional<
ZodUnion<
[
ZodLiteral<"de">,
ZodLiteral<"en">,
ZodLiteral<"es">,
ZodLiteral<"fl">,
ZodLiteral<"fr">,
ZodLiteral<"it">,
ZodLiteral<"nl">,
ZodLiteral<"pl">,
],
>,
>;
lastname: ZodString;
mail: ZodOptional<ZodUnion<[ZodString, ZodUndefined]>>;
mobileNumber: ZodOptional<ZodString>;
phoneNumber: ZodOptional<ZodString>;
timeZone: ZodOptional<ZodString>;
title: ZodString;
userBanner: ZodOptional<ZodUnion<[ZodString, ZodUndefined]>>;
webSite: ZodOptional<ZodString>;
},
"strip",
ZodTypeAny,
{
company?: string;
country?: string;
dateOfBirth?: string;
department?: string;
description?: string;
field1?: string;
field2?: string;
field3?: string;
field4?: string;
field5?: string;
firstname: string;
function?: string;
image?: string;
language?: | "es"
| "de"
| "en"
| "fl"
| "fr"
| "it"
| "nl"
| "pl"
| "pt"
| "ro"
| "tr";
lastname: string;
mail?: string;
mobileNumber?: string;
phoneNumber?: string;
timeZone?: string;
title: string;
userBanner?: string;
webSite?: string;
},
{
company?: string;
country?: string;
dateOfBirth?: string;
department?: string;
description?: string;
field1?: string;
field2?: string;
field3?: string;
field4?: string;
field5?: string;
firstname: string;
function?: string;
image?: string;
language?: | "es"
| "de"
| "en"
| "fl"
| "fr"
| "it"
| "nl"
| "pl"
| "pt"
| "ro"
| "tr";
lastname: string;
mail?: string;
mobileNumber?: string;
phoneNumber?: string;
timeZone?: string;
title: string;
userBanner?: string;
webSite?: string;
},
> = ...