Variable WarrantyPolicyQueryOneSchemaConst
WarrantyPolicyQueryOneSchema: ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
description: "description";
duration: "duration";
durationUnit: "durationUnit";
id: "id";
name: "name";
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
description: ZodOptional<
ZodUnion<
[
ZodString,
ZodObject<
{
contains: ...;
endsWith: ...;
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
startsWith: ...;
},
$strip,
>,
],
>,
>;
duration: ZodOptional<
ZodUnion<
[
ZodCoercedNumber<unknown>,
ZodObject<
{
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
},
$strip,
>,
],
>,
>;
durationUnit: ZodOptional<
ZodEnum<
{
DAY: "DAY";
DECADE: "DECADE";
HOUR: "HOUR";
LIFE_TIME: "LIFE_TIME";
MINUTE: "MINUTE";
MONTH: "MONTH";
SECOND: "SECOND";
YEAR: "YEAR";
},
>,
>;
id: ZodOptional<
ZodUnion<
[
ZodCoercedNumber<unknown>,
ZodObject<
{
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
},
$strip,
>,
],
>,
>;
name: ZodOptional<
ZodUnion<
[
ZodString,
ZodObject<
{
contains: ...;
endsWith: ...;
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
startsWith: ...;
},
$strip,
>,
],
>,
>;
products: ZodOptional<
ZodObject<
{
every: ZodOptional<ZodObject<(...), (...)>>;
none: ZodOptional<ZodObject<(...), (...)>>;
some: ZodOptional<ZodObject<(...), (...)>>;
},
$strip,
>,
>;
},
$strip,
>,
>,
>;
},
$strip,
> = ...