hububb-models 1.0.93 → 1.0.94

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
  }>;
@@ -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
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.0.93",
3
+ "version": "1.0.94",
4
4
  "description": "Models for Hububb application",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",