Variable CurrencySelectFieldsSchemaConst
CurrencySelectFieldsSchema: ZodObject<
{
code: ZodOptional<ZodCoercedBoolean<unknown>>;
id: ZodOptional<ZodCoercedBoolean<unknown>>;
name: ZodOptional<ZodCoercedBoolean<unknown>>;
priceLevels: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
currencyId: ...;
id: ...;
name: ...;
notes: ...;
slug: ...;
taxrate: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
currencyId: ...;
id: ...;
name: ...;
notes: ...;
slug: ...;
taxrate: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
symbol: ZodOptional<ZodCoercedBoolean<unknown>>;
},
$strip,
> = ...