hububb-saas-shared 1.0.68 → 1.0.69
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.
|
@@ -22,6 +22,8 @@ export declare const propertySchema: z.ZodObject<{
|
|
|
22
22
|
minimumNights: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23
23
|
maximumNights: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
24
24
|
area: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
25
|
+
isAirbnbConnectionRequest: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
26
|
+
airbnbConnectionStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<["PENDING", "IN_PROGRESS", "COMPLETED", "REJECTED"]>>>;
|
|
25
27
|
}, "strip", z.ZodTypeAny, {
|
|
26
28
|
id: number;
|
|
27
29
|
title: string;
|
|
@@ -44,6 +46,8 @@ export declare const propertySchema: z.ZodObject<{
|
|
|
44
46
|
channexRoomTypeId?: string | null | undefined;
|
|
45
47
|
minimumNights?: number | null | undefined;
|
|
46
48
|
maximumNights?: number | null | undefined;
|
|
49
|
+
isAirbnbConnectionRequest?: boolean | null | undefined;
|
|
50
|
+
airbnbConnectionStatus?: "PENDING" | "COMPLETED" | "IN_PROGRESS" | "REJECTED" | null | undefined;
|
|
47
51
|
}, {
|
|
48
52
|
id: number;
|
|
49
53
|
title: string;
|
|
@@ -66,6 +70,8 @@ export declare const propertySchema: z.ZodObject<{
|
|
|
66
70
|
channexRoomTypeId?: string | null | undefined;
|
|
67
71
|
minimumNights?: number | null | undefined;
|
|
68
72
|
maximumNights?: number | null | undefined;
|
|
73
|
+
isAirbnbConnectionRequest?: boolean | null | undefined;
|
|
74
|
+
airbnbConnectionStatus?: "PENDING" | "COMPLETED" | "IN_PROGRESS" | "REJECTED" | null | undefined;
|
|
69
75
|
}>;
|
|
70
76
|
export declare const updatePropertySchema: z.ZodObject<{
|
|
71
77
|
propertyDetails: z.ZodOptional<z.ZodObject<{
|
|
@@ -32,6 +32,10 @@ exports.propertySchema = (0, zod_1.object)({
|
|
|
32
32
|
minimumNights: (0, zod_1.number)().int().nullish(),
|
|
33
33
|
maximumNights: (0, zod_1.number)().int().nullish(),
|
|
34
34
|
area: (0, zod_1.number)().int().nullish(),
|
|
35
|
+
isAirbnbConnectionRequest: (0, zod_1.boolean)().nullish(),
|
|
36
|
+
airbnbConnectionStatus: zod_1.z
|
|
37
|
+
.enum(["PENDING", "IN_PROGRESS", "COMPLETED", "REJECTED"])
|
|
38
|
+
.nullish(),
|
|
35
39
|
});
|
|
36
40
|
exports.updatePropertySchema = (0, zod_1.object)({
|
|
37
41
|
propertyDetails: (0, zod_1.object)({
|
|
@@ -360,6 +360,8 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
360
360
|
minimumNights: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
361
361
|
maximumNights: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
362
362
|
area: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
363
|
+
isAirbnbConnectionRequest: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
364
|
+
airbnbConnectionStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<["PENDING", "IN_PROGRESS", "COMPLETED", "REJECTED"]>>>;
|
|
363
365
|
}, "strip", z.ZodTypeAny, {
|
|
364
366
|
id: number;
|
|
365
367
|
title: string;
|
|
@@ -382,6 +384,8 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
382
384
|
channexRoomTypeId?: string | null | undefined;
|
|
383
385
|
minimumNights?: number | null | undefined;
|
|
384
386
|
maximumNights?: number | null | undefined;
|
|
387
|
+
isAirbnbConnectionRequest?: boolean | null | undefined;
|
|
388
|
+
airbnbConnectionStatus?: "PENDING" | "COMPLETED" | "IN_PROGRESS" | "REJECTED" | null | undefined;
|
|
385
389
|
}, {
|
|
386
390
|
id: number;
|
|
387
391
|
title: string;
|
|
@@ -404,6 +408,8 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
404
408
|
channexRoomTypeId?: string | null | undefined;
|
|
405
409
|
minimumNights?: number | null | undefined;
|
|
406
410
|
maximumNights?: number | null | undefined;
|
|
411
|
+
isAirbnbConnectionRequest?: boolean | null | undefined;
|
|
412
|
+
airbnbConnectionStatus?: "PENDING" | "COMPLETED" | "IN_PROGRESS" | "REJECTED" | null | undefined;
|
|
407
413
|
}>>;
|
|
408
414
|
}>, "strip", z.ZodTypeAny, {
|
|
409
415
|
id: number;
|
|
@@ -434,6 +440,8 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
434
440
|
channexRoomTypeId?: string | null | undefined;
|
|
435
441
|
minimumNights?: number | null | undefined;
|
|
436
442
|
maximumNights?: number | null | undefined;
|
|
443
|
+
isAirbnbConnectionRequest?: boolean | null | undefined;
|
|
444
|
+
airbnbConnectionStatus?: "PENDING" | "COMPLETED" | "IN_PROGRESS" | "REJECTED" | null | undefined;
|
|
437
445
|
} | undefined;
|
|
438
446
|
propertyNickname?: string | undefined;
|
|
439
447
|
}, {
|
|
@@ -465,6 +473,8 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
465
473
|
channexRoomTypeId?: string | null | undefined;
|
|
466
474
|
minimumNights?: number | null | undefined;
|
|
467
475
|
maximumNights?: number | null | undefined;
|
|
476
|
+
isAirbnbConnectionRequest?: boolean | null | undefined;
|
|
477
|
+
airbnbConnectionStatus?: "PENDING" | "COMPLETED" | "IN_PROGRESS" | "REJECTED" | null | undefined;
|
|
468
478
|
} | undefined;
|
|
469
479
|
propertyNickname?: string | undefined;
|
|
470
480
|
}>>;
|
|
@@ -564,6 +574,8 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
564
574
|
channexRoomTypeId?: string | null | undefined;
|
|
565
575
|
minimumNights?: number | null | undefined;
|
|
566
576
|
maximumNights?: number | null | undefined;
|
|
577
|
+
isAirbnbConnectionRequest?: boolean | null | undefined;
|
|
578
|
+
airbnbConnectionStatus?: "PENDING" | "COMPLETED" | "IN_PROGRESS" | "REJECTED" | null | undefined;
|
|
567
579
|
} | undefined;
|
|
568
580
|
propertyNickname?: string | undefined;
|
|
569
581
|
} | undefined;
|
|
@@ -663,6 +675,8 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
663
675
|
channexRoomTypeId?: string | null | undefined;
|
|
664
676
|
minimumNights?: number | null | undefined;
|
|
665
677
|
maximumNights?: number | null | undefined;
|
|
678
|
+
isAirbnbConnectionRequest?: boolean | null | undefined;
|
|
679
|
+
airbnbConnectionStatus?: "PENDING" | "COMPLETED" | "IN_PROGRESS" | "REJECTED" | null | undefined;
|
|
666
680
|
} | undefined;
|
|
667
681
|
propertyNickname?: string | undefined;
|
|
668
682
|
} | undefined;
|