hububb-models 1.0.93 → 1.0.94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -507,6 +507,7 @@ export declare const ListingSchema: import("zod").ZodObject<{
|
|
|
507
507
|
parentId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
508
508
|
childIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
509
509
|
city: import("zod").ZodOptional<import("zod").ZodString>;
|
|
510
|
+
landlordId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
510
511
|
}, "strip", import("zod").ZodTypeAny, {
|
|
511
512
|
address: {
|
|
512
513
|
full: string;
|
|
@@ -631,6 +632,7 @@ export declare const ListingSchema: import("zod").ZodObject<{
|
|
|
631
632
|
listingType?: "shared" | "parent" | "child" | undefined;
|
|
632
633
|
parentId?: string | undefined;
|
|
633
634
|
childIds?: string[] | undefined;
|
|
635
|
+
landlordId?: string | undefined;
|
|
634
636
|
}, {
|
|
635
637
|
address: {
|
|
636
638
|
full: string;
|
|
@@ -755,4 +757,5 @@ export declare const ListingSchema: import("zod").ZodObject<{
|
|
|
755
757
|
listingType?: "shared" | "parent" | "child" | undefined;
|
|
756
758
|
parentId?: string | undefined;
|
|
757
759
|
childIds?: string[] | undefined;
|
|
760
|
+
landlordId?: string | undefined;
|
|
758
761
|
}>;
|
package/dist/schemas/listing.js
CHANGED
|
@@ -119,4 +119,5 @@ exports.ListingSchema = (0, zod_1.object)({
|
|
|
119
119
|
parentId: (0, zod_1.optional)((0, zod_1.string)()),
|
|
120
120
|
childIds: (0, zod_1.optional)((0, zod_1.array)((0, zod_1.string)())),
|
|
121
121
|
city: (0, zod_1.optional)((0, zod_1.string)()),
|
|
122
|
+
landlordId: (0, zod_1.optional)((0, zod_1.string)()),
|
|
122
123
|
});
|