// This file was generated by liblab | https://liblab.com/ import { z } from 'zod'; export const roomArchetype = z.enum([ 'living_room', 'kitchen', 'dining', 'bedroom', 'kids_bedroom', 'bathroom', 'nursery', 'recreation', 'office', 'gym', 'hallway', 'toilet', 'front_door', 'garage', 'terrace', 'garden', 'driveway', 'carport', 'home', 'downstairs', 'upstairs', 'top_floor', 'attic', 'guest_room', 'staircase', 'lounge', 'man_cave', 'computer', 'studio', 'music', 'tv', 'reading', 'closet', 'storage', 'laundry_room', 'balcony', 'porch', 'barbecue', 'pool', 'other', ]); export type RoomArchetype = z.infer;