Variable HouseSlotSchemaConst

HouseSlotSchema: ZodObject<{
    bay: ZodUnion<[ZodLiteral<1>, ZodLiteral<2>, ZodLiteral<3>, ZodLiteral<4>]>;
    houseId: ZodUnion<[ZodLiteral<1>, ZodLiteral<2>, ZodLiteral<3>, ZodLiteral<4>]>;
    id: ZodString;
    layoutId: ZodUnion<[ZodLiteral<1>, ZodLiteral<2>, ZodLiteral<3>, ZodLiteral<4>]>;
    layoutLabel: ZodString;
    ownerDisplayName: ZodNullable<ZodString>;
    ownerName: ZodNullable<ZodString>;
    ownerNodeId: ZodNullable<ZodString>;
    ownerSignature: ZodNullable<ZodString>;
    priceUsd: ZodNumber;
    purchasedAt: ZodNullable<ZodString>;
    worldX: ZodNumber;
}, "strip", ZodTypeAny, {
    bay:
        | 1
        | 2
        | 3
        | 4;
    houseId:
        | 1
        | 2
        | 3
        | 4;
    id: string;
    layoutId:
        | 1
        | 2
        | 3
        | 4;
    layoutLabel: string;
    ownerDisplayName: null | string;
    ownerName: null | string;
    ownerNodeId: null | string;
    ownerSignature: null | string;
    priceUsd: number;
    purchasedAt: null | string;
    worldX: number;
}, {
    bay:
        | 1
        | 2
        | 3
        | 4;
    houseId:
        | 1
        | 2
        | 3
        | 4;
    id: string;
    layoutId:
        | 1
        | 2
        | 3
        | 4;
    layoutLabel: string;
    ownerDisplayName: null | string;
    ownerName: null | string;
    ownerNodeId: null | string;
    ownerSignature: null | string;
    priceUsd: number;
    purchasedAt: null | string;
    worldX: number;
}> = ...