hububb-models 1.0.97 → 1.0.98

Sign up to get free protection for your applications and to get access to all the features.
@@ -508,6 +508,8 @@ export declare const ListingSchema: import("zod").ZodObject<{
508
508
  childIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
509
509
  city: import("zod").ZodOptional<import("zod").ZodString>;
510
510
  landlordId: import("zod").ZodOptional<import("zod").ZodString>;
511
+ apaleoPropertyId: import("zod").ZodOptional<import("zod").ZodString>;
512
+ apaleoUnitGroupId: import("zod").ZodOptional<import("zod").ZodString>;
511
513
  }, "strip", import("zod").ZodTypeAny, {
512
514
  address: {
513
515
  full: string;
@@ -633,6 +635,8 @@ export declare const ListingSchema: import("zod").ZodObject<{
633
635
  parentId?: string | undefined;
634
636
  childIds?: string[] | undefined;
635
637
  landlordId?: string | undefined;
638
+ apaleoPropertyId?: string | undefined;
639
+ apaleoUnitGroupId?: string | undefined;
636
640
  }, {
637
641
  address: {
638
642
  full: string;
@@ -758,4 +762,6 @@ export declare const ListingSchema: import("zod").ZodObject<{
758
762
  parentId?: string | undefined;
759
763
  childIds?: string[] | undefined;
760
764
  landlordId?: string | undefined;
765
+ apaleoPropertyId?: string | undefined;
766
+ apaleoUnitGroupId?: string | undefined;
761
767
  }>;
@@ -120,4 +120,6 @@ exports.ListingSchema = (0, zod_1.object)({
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
122
  landlordId: (0, zod_1.optional)((0, zod_1.string)()),
123
+ apaleoPropertyId: (0, zod_1.optional)((0, zod_1.string)()),
124
+ apaleoUnitGroupId: (0, zod_1.optional)((0, zod_1.string)()),
123
125
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.0.97",
3
+ "version": "1.0.98",
4
4
  "description": "Models for Hububb application",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",