hububb-saas-shared 1.1.49 → 1.1.50
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.
|
@@ -24,7 +24,7 @@ export declare const propertySchema: z.ZodObject<{
|
|
|
24
24
|
area: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
25
25
|
isMergedProperty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
26
26
|
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ACTIVE", "INACTIVE", "MERGED", "DRAFT", "DELETED"]>>>;
|
|
27
|
-
creationStep: z.ZodOptional<z.ZodNullable<z.
|
|
27
|
+
creationStep: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28
28
|
managementTierId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
30
|
id: number;
|
|
@@ -50,7 +50,7 @@ export declare const propertySchema: z.ZodObject<{
|
|
|
50
50
|
minimumNights?: number | null | undefined;
|
|
51
51
|
maximumNights?: number | null | undefined;
|
|
52
52
|
isMergedProperty?: boolean | null | undefined;
|
|
53
|
-
creationStep?:
|
|
53
|
+
creationStep?: string | null | undefined;
|
|
54
54
|
managementTierId?: number | null | undefined;
|
|
55
55
|
}, {
|
|
56
56
|
id: number;
|
|
@@ -76,7 +76,7 @@ export declare const propertySchema: z.ZodObject<{
|
|
|
76
76
|
minimumNights?: number | null | undefined;
|
|
77
77
|
maximumNights?: number | null | undefined;
|
|
78
78
|
isMergedProperty?: boolean | null | undefined;
|
|
79
|
-
creationStep?:
|
|
79
|
+
creationStep?: string | null | undefined;
|
|
80
80
|
managementTierId?: number | null | undefined;
|
|
81
81
|
}>;
|
|
82
82
|
export declare const updatePropertySchema: z.ZodObject<{
|
|
@@ -98,7 +98,7 @@ export declare const updatePropertySchema: z.ZodObject<{
|
|
|
98
98
|
minimumNights: z.ZodOptional<z.ZodNumber>;
|
|
99
99
|
maximumNights: z.ZodOptional<z.ZodNumber>;
|
|
100
100
|
area: z.ZodOptional<z.ZodNumber>;
|
|
101
|
-
creationStep: z.ZodOptional<z.
|
|
101
|
+
creationStep: z.ZodOptional<z.ZodString>;
|
|
102
102
|
status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "MERGED", "DRAFT"]>>;
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
104
|
area?: number | undefined;
|
|
@@ -118,7 +118,7 @@ export declare const updatePropertySchema: z.ZodObject<{
|
|
|
118
118
|
channexRoomTypeId?: string | undefined;
|
|
119
119
|
minimumNights?: number | undefined;
|
|
120
120
|
maximumNights?: number | undefined;
|
|
121
|
-
creationStep?:
|
|
121
|
+
creationStep?: string | undefined;
|
|
122
122
|
airbnbId?: string | undefined;
|
|
123
123
|
}, {
|
|
124
124
|
area?: number | undefined;
|
|
@@ -138,7 +138,7 @@ export declare const updatePropertySchema: z.ZodObject<{
|
|
|
138
138
|
channexRoomTypeId?: string | undefined;
|
|
139
139
|
minimumNights?: number | undefined;
|
|
140
140
|
maximumNights?: number | undefined;
|
|
141
|
-
creationStep?:
|
|
141
|
+
creationStep?: string | undefined;
|
|
142
142
|
airbnbId?: string | undefined;
|
|
143
143
|
}>>;
|
|
144
144
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -326,7 +326,7 @@ export declare const updatePropertySchema: z.ZodObject<{
|
|
|
326
326
|
channexRoomTypeId?: string | undefined;
|
|
327
327
|
minimumNights?: number | undefined;
|
|
328
328
|
maximumNights?: number | undefined;
|
|
329
|
-
creationStep?:
|
|
329
|
+
creationStep?: string | undefined;
|
|
330
330
|
airbnbId?: string | undefined;
|
|
331
331
|
} | undefined;
|
|
332
332
|
amenities?: (string | number)[] | undefined;
|
|
@@ -400,7 +400,7 @@ export declare const updatePropertySchema: z.ZodObject<{
|
|
|
400
400
|
channexRoomTypeId?: string | undefined;
|
|
401
401
|
minimumNights?: number | undefined;
|
|
402
402
|
maximumNights?: number | undefined;
|
|
403
|
-
creationStep?:
|
|
403
|
+
creationStep?: string | undefined;
|
|
404
404
|
airbnbId?: string | undefined;
|
|
405
405
|
} | undefined;
|
|
406
406
|
amenities?: (string | number)[] | undefined;
|
|
@@ -36,7 +36,7 @@ exports.propertySchema = (0, zod_1.object)({
|
|
|
36
36
|
status: zod_1.z
|
|
37
37
|
.enum(["ACTIVE", "INACTIVE", "MERGED", "DRAFT", "DELETED"])
|
|
38
38
|
.nullish(),
|
|
39
|
-
creationStep: (0, zod_1.
|
|
39
|
+
creationStep: (0, zod_1.string)().nullish(),
|
|
40
40
|
managementTierId: (0, zod_1.number)().int().nullish(),
|
|
41
41
|
});
|
|
42
42
|
exports.updatePropertySchema = (0, zod_1.object)({
|
|
@@ -58,7 +58,7 @@ exports.updatePropertySchema = (0, zod_1.object)({
|
|
|
58
58
|
minimumNights: (0, zod_1.number)().int().optional(),
|
|
59
59
|
maximumNights: (0, zod_1.number)().int().optional(),
|
|
60
60
|
area: (0, zod_1.number)().int().optional(),
|
|
61
|
-
creationStep: (0, zod_1.
|
|
61
|
+
creationStep: (0, zod_1.string)().optional(),
|
|
62
62
|
status: zod_1.z.enum(["ACTIVE", "INACTIVE", "MERGED", "DRAFT"]).optional(),
|
|
63
63
|
}).optional(),
|
|
64
64
|
metadata: (0, zod_1.object)({
|
|
@@ -1016,7 +1016,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1016
1016
|
area: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1017
1017
|
isMergedProperty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1018
1018
|
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ACTIVE", "INACTIVE", "MERGED", "DRAFT", "DELETED"]>>>;
|
|
1019
|
-
creationStep: z.ZodOptional<z.ZodNullable<z.
|
|
1019
|
+
creationStep: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1020
1020
|
managementTierId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1021
1021
|
}, "strip", z.ZodTypeAny, {
|
|
1022
1022
|
id: number;
|
|
@@ -1042,7 +1042,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1042
1042
|
minimumNights?: number | null | undefined;
|
|
1043
1043
|
maximumNights?: number | null | undefined;
|
|
1044
1044
|
isMergedProperty?: boolean | null | undefined;
|
|
1045
|
-
creationStep?:
|
|
1045
|
+
creationStep?: string | null | undefined;
|
|
1046
1046
|
managementTierId?: number | null | undefined;
|
|
1047
1047
|
}, {
|
|
1048
1048
|
id: number;
|
|
@@ -1068,7 +1068,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1068
1068
|
minimumNights?: number | null | undefined;
|
|
1069
1069
|
maximumNights?: number | null | undefined;
|
|
1070
1070
|
isMergedProperty?: boolean | null | undefined;
|
|
1071
|
-
creationStep?:
|
|
1071
|
+
creationStep?: string | null | undefined;
|
|
1072
1072
|
managementTierId?: number | null | undefined;
|
|
1073
1073
|
}>>;
|
|
1074
1074
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1102,7 +1102,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1102
1102
|
minimumNights?: number | null | undefined;
|
|
1103
1103
|
maximumNights?: number | null | undefined;
|
|
1104
1104
|
isMergedProperty?: boolean | null | undefined;
|
|
1105
|
-
creationStep?:
|
|
1105
|
+
creationStep?: string | null | undefined;
|
|
1106
1106
|
managementTierId?: number | null | undefined;
|
|
1107
1107
|
} | undefined;
|
|
1108
1108
|
propertyNickname?: string | undefined;
|
|
@@ -1137,7 +1137,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1137
1137
|
minimumNights?: number | null | undefined;
|
|
1138
1138
|
maximumNights?: number | null | undefined;
|
|
1139
1139
|
isMergedProperty?: boolean | null | undefined;
|
|
1140
|
-
creationStep?:
|
|
1140
|
+
creationStep?: string | null | undefined;
|
|
1141
1141
|
managementTierId?: number | null | undefined;
|
|
1142
1142
|
} | undefined;
|
|
1143
1143
|
propertyNickname?: string | undefined;
|
|
@@ -1367,7 +1367,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1367
1367
|
minimumNights?: number | null | undefined;
|
|
1368
1368
|
maximumNights?: number | null | undefined;
|
|
1369
1369
|
isMergedProperty?: boolean | null | undefined;
|
|
1370
|
-
creationStep?:
|
|
1370
|
+
creationStep?: string | null | undefined;
|
|
1371
1371
|
managementTierId?: number | null | undefined;
|
|
1372
1372
|
} | undefined;
|
|
1373
1373
|
propertyNickname?: string | undefined;
|
|
@@ -1536,7 +1536,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1536
1536
|
minimumNights?: number | null | undefined;
|
|
1537
1537
|
maximumNights?: number | null | undefined;
|
|
1538
1538
|
isMergedProperty?: boolean | null | undefined;
|
|
1539
|
-
creationStep?:
|
|
1539
|
+
creationStep?: string | null | undefined;
|
|
1540
1540
|
managementTierId?: number | null | undefined;
|
|
1541
1541
|
} | undefined;
|
|
1542
1542
|
propertyNickname?: string | undefined;
|