hububb-saas-shared 1.0.93 → 1.0.95

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.
@@ -25,6 +25,7 @@ export declare const propertySchema: z.ZodObject<{
25
25
  isAirbnbConnectionRequest: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
26
26
  airbnbConnectionStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<["PENDING", "IN_PROGRESS", "COMPLETED", "REJECTED"]>>>;
27
27
  isMergedProperty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
28
+ status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ACTIVE", "INACTIVE", "MERGED"]>>>;
28
29
  }, "strip", z.ZodTypeAny, {
29
30
  id: number;
30
31
  title: string;
@@ -34,6 +35,7 @@ export declare const propertySchema: z.ZodObject<{
34
35
  propertyType: "HOUSE" | "APARTMENT" | "STUDIO" | "HOTEL" | "VILLA" | "APARTMENT_BLOCK";
35
36
  area?: number | null | undefined;
36
37
  description?: string | null | undefined;
38
+ status?: "ACTIVE" | "INACTIVE" | "MERGED" | null | undefined;
37
39
  nickname?: string | null | undefined;
38
40
  listingType?: string | null | undefined;
39
41
  bedrooms?: number | null | undefined;
@@ -59,6 +61,7 @@ export declare const propertySchema: z.ZodObject<{
59
61
  propertyType: "HOUSE" | "APARTMENT" | "STUDIO" | "HOTEL" | "VILLA" | "APARTMENT_BLOCK";
60
62
  area?: number | null | undefined;
61
63
  description?: string | null | undefined;
64
+ status?: "ACTIVE" | "INACTIVE" | "MERGED" | null | undefined;
62
65
  nickname?: string | null | undefined;
63
66
  listingType?: string | null | undefined;
64
67
  bedrooms?: number | null | undefined;
@@ -37,6 +37,7 @@ exports.propertySchema = (0, zod_1.object)({
37
37
  .enum(["PENDING", "IN_PROGRESS", "COMPLETED", "REJECTED"])
38
38
  .nullish(),
39
39
  isMergedProperty: (0, zod_1.boolean)().nullish(),
40
+ status: zod_1.z.enum(["ACTIVE", "INACTIVE", "MERGED"]).nullish(),
40
41
  });
41
42
  exports.updatePropertySchema = (0, zod_1.object)({
42
43
  propertyDetails: (0, zod_1.object)({
@@ -417,6 +417,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
417
417
  isAirbnbConnectionRequest: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
418
418
  airbnbConnectionStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<["PENDING", "IN_PROGRESS", "COMPLETED", "REJECTED"]>>>;
419
419
  isMergedProperty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
420
+ status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ACTIVE", "INACTIVE", "MERGED"]>>>;
420
421
  }, "strip", z.ZodTypeAny, {
421
422
  id: number;
422
423
  title: string;
@@ -426,6 +427,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
426
427
  propertyType: "HOUSE" | "APARTMENT" | "STUDIO" | "HOTEL" | "VILLA" | "APARTMENT_BLOCK";
427
428
  area?: number | null | undefined;
428
429
  description?: string | null | undefined;
430
+ status?: "ACTIVE" | "INACTIVE" | "MERGED" | null | undefined;
429
431
  nickname?: string | null | undefined;
430
432
  listingType?: string | null | undefined;
431
433
  bedrooms?: number | null | undefined;
@@ -451,6 +453,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
451
453
  propertyType: "HOUSE" | "APARTMENT" | "STUDIO" | "HOTEL" | "VILLA" | "APARTMENT_BLOCK";
452
454
  area?: number | null | undefined;
453
455
  description?: string | null | undefined;
456
+ status?: "ACTIVE" | "INACTIVE" | "MERGED" | null | undefined;
454
457
  nickname?: string | null | undefined;
455
458
  listingType?: string | null | undefined;
456
459
  bedrooms?: number | null | undefined;
@@ -484,6 +487,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
484
487
  propertyType: "HOUSE" | "APARTMENT" | "STUDIO" | "HOTEL" | "VILLA" | "APARTMENT_BLOCK";
485
488
  area?: number | null | undefined;
486
489
  description?: string | null | undefined;
490
+ status?: "ACTIVE" | "INACTIVE" | "MERGED" | null | undefined;
487
491
  nickname?: string | null | undefined;
488
492
  listingType?: string | null | undefined;
489
493
  bedrooms?: number | null | undefined;
@@ -518,6 +522,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
518
522
  propertyType: "HOUSE" | "APARTMENT" | "STUDIO" | "HOTEL" | "VILLA" | "APARTMENT_BLOCK";
519
523
  area?: number | null | undefined;
520
524
  description?: string | null | undefined;
525
+ status?: "ACTIVE" | "INACTIVE" | "MERGED" | null | undefined;
521
526
  nickname?: string | null | undefined;
522
527
  listingType?: string | null | undefined;
523
528
  bedrooms?: number | null | undefined;
@@ -700,6 +705,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
700
705
  propertyType: "HOUSE" | "APARTMENT" | "STUDIO" | "HOTEL" | "VILLA" | "APARTMENT_BLOCK";
701
706
  area?: number | null | undefined;
702
707
  description?: string | null | undefined;
708
+ status?: "ACTIVE" | "INACTIVE" | "MERGED" | null | undefined;
703
709
  nickname?: string | null | undefined;
704
710
  listingType?: string | null | undefined;
705
711
  bedrooms?: number | null | undefined;
@@ -831,6 +837,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
831
837
  propertyType: "HOUSE" | "APARTMENT" | "STUDIO" | "HOTEL" | "VILLA" | "APARTMENT_BLOCK";
832
838
  area?: number | null | undefined;
833
839
  description?: string | null | undefined;
840
+ status?: "ACTIVE" | "INACTIVE" | "MERGED" | null | undefined;
834
841
  nickname?: string | null | undefined;
835
842
  listingType?: string | null | undefined;
836
843
  bedrooms?: number | null | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "hububb-saas-shared",
4
- "version": "1.0.93",
4
+ "version": "1.0.95",
5
5
  "description": "This is a shared package for the hububb saas project",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",