Variable AttributeIncludeSchemaConst
AttributeIncludeSchema: ZodObject<
{
category: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<ZodEnum<{ id: ...; name: ...; slug: ... }>>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<{ id: ...; name: ...; slug: ... }, $strip>,
>,
>;
},
$strip,
>,
],
>,
>;
unites: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<ZodEnum<{ attributeId: ...; id: ...; unitId: ... }>>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<{ attributeId: ...; id: ...; unitId: ... }, $strip>,
>,
>;
},
$strip,
>,
],
>,
>;
values: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
attributeId: ...;
booleanValue: ...;
floatValue: ...;
id: ...;
textValue: ...;
variantId: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
attributeId: ...;
booleanValue: ...;
floatValue: ...;
id: ...;
textValue: ...;
variantId: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
},
$strip,
> = ...