asset-db
    Preparing search index...

    Variable BuildingSelectFieldsSchemaConst

    BuildingSelectFieldsSchema: ZodObject<
        {
            code: ZodOptional<ZodCoercedBoolean<unknown>>;
            id: ZodOptional<ZodCoercedBoolean<unknown>>;
            name: ZodOptional<ZodCoercedBoolean<unknown>>;
            rooms: ZodOptional<
                ZodUnion<
                    [
                        ZodCoercedBoolean<unknown>,
                        ZodObject<
                            {
                                distinct: ZodOptional<
                                    ZodArray<
                                        ZodEnum<
                                            {
                                                buildingId: ...;
                                                code: ...;
                                                floor: ...;
                                                id: ...;
                                                name: ...;
                                                uuid: ...;
                                            },
                                        >,
                                    >,
                                >;
                                where: ZodOptional<
                                    ZodPipe<
                                        ZodTransform<any, unknown>,
                                        ZodObject<
                                            {
                                                buildingId: ...;
                                                code: ...;
                                                floor: ...;
                                                id: ...;
                                                name: ...;
                                                uuid: ...;
                                            },
                                            $strip,
                                        >,
                                    >,
                                >;
                            },
                            $strip,
                        >,
                    ],
                >,
            >;
        },
        $strip,
    > = ...