Variable ItemAttributeValueOwnQuerySchemaConst
ItemAttributeValueOwnQuerySchema: ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
attributeId: "attributeId";
id: "id";
itemId: "itemId";
value: "value";
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
attributeId: ZodOptional<
ZodUnion<
[
ZodCoercedNumber<unknown>,
ZodObject<
{
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
},
$strip,
>,
],
>,
>;
id: ZodOptional<
ZodUnion<
[
ZodCoercedNumber<unknown>,
ZodObject<
{
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
},
$strip,
>,
],
>,
>;
itemId: ZodOptional<
ZodUnion<
[
ZodCoercedNumber<unknown>,
ZodObject<
{
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
},
$strip,
>,
],
>,
>;
value: ZodOptional<
ZodUnion<
[
ZodString,
ZodObject<
{
contains: ...;
endsWith: ...;
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
startsWith: ...;
},
$strip,
>,
],
>,
>;
},
$strip,
>,
>,
>;
},
$strip,
> = ...