Variable BenefitEnrolmentOwnQueryOneSchemaConst
BenefitEnrolmentOwnQueryOneSchema: ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
benefitId: "benefitId";
employeeId: "employeeId";
id: "id";
startDate: "startDate";
status: "status";
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
benefitId: ZodOptional<
ZodUnion<
[
ZodCoercedNumber<unknown>,
ZodObject<
{
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
},
$strip,
>,
],
>,
>;
employeeId: 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,
>,
],
>,
>;
startDate: ZodOptional<
ZodUnion<
[
ZodString,
ZodObject<
{
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
},
$strip,
>,
],
>,
>;
status: ZodOptional<
ZodEnum<
{
ACTIVE: "ACTIVE";
AWAITING_EOI: "AWAITING_EOI";
ENROLLED: "ENROLLED";
PENDING: "PENDING";
WAIVED: "WAIVED";
},
>,
>;
},
$strip,
>,
>,
>;
},
$strip,
> = ...