Variable SalaryOwnQuerySchemaConst
SalaryOwnQuerySchema: ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
employeeId: "employeeId";
endDate: "endDate";
frequency: "frequency";
gross: "gross";
id: "id";
startDate: "startDate";
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
employeeId: ZodOptional<
ZodUnion<
[
ZodCoercedNumber<unknown>,
ZodObject<
{
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
},
$strip,
>,
],
>,
>;
endDate: ZodOptional<
ZodUnion<
[
ZodString,
ZodObject<
{
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
},
$strip,
>,
],
>,
>;
frequency: ZodOptional<
ZodEnum<
{
ANNUAL: "ANNUAL";
BI_WEEKLY: "BI_WEEKLY";
HOURLY: "HOURLY";
MONTHLY: "MONTHLY";
WEEKLY: "WEEKLY";
},
>,
>;
gross: 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,
>,
],
>,
>;
},
$strip,
>,
>,
>;
},
$strip,
> = ...