Variable RoomAttributeQueryOneSchemaConst
RoomAttributeQueryOneSchema: ZodObject<
{
distinct: ZodOptional<ZodArray<ZodEnum<{ id: "id"; name: "name" }>>>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
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,
>,
],
>,
>;
values: ZodOptional<
ZodObject<
{
every: ZodOptional<ZodObject<(...), (...)>>;
none: ZodOptional<ZodObject<(...), (...)>>;
some: ZodOptional<ZodObject<(...), (...)>>;
},
$strip,
>,
>;
},
$strip,
>,
>,
>;
},
$strip,
> = ...