hububb-models 1.1.29 → 1.1.30
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.
@@ -1057,6 +1057,9 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
|
|
1057
1057
|
areaSquareFeet: import("zod").ZodOptional<import("zod").ZodNumber>;
|
1058
1058
|
requestToBook: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
1059
1059
|
active: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
1060
|
+
channexPropertyId: import("zod").ZodOptional<import("zod").ZodString>;
|
1061
|
+
channexRatePlanId: import("zod").ZodOptional<import("zod").ZodString>;
|
1062
|
+
channexRoomTypeId: import("zod").ZodOptional<import("zod").ZodString>;
|
1060
1063
|
}, "strip", import("zod").ZodTypeAny, {
|
1061
1064
|
address: {
|
1062
1065
|
full: string;
|
@@ -1133,6 +1136,9 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
|
|
1133
1136
|
areaSquareFeet?: number | undefined;
|
1134
1137
|
publicDescription?: any;
|
1135
1138
|
requestToBook?: boolean | undefined;
|
1139
|
+
channexPropertyId?: string | undefined;
|
1140
|
+
channexRoomTypeId?: string | undefined;
|
1141
|
+
channexRatePlanId?: string | undefined;
|
1136
1142
|
}, {
|
1137
1143
|
address: {
|
1138
1144
|
full: string;
|
@@ -1209,4 +1215,7 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
|
|
1209
1215
|
areaSquareFeet?: number | undefined;
|
1210
1216
|
publicDescription?: any;
|
1211
1217
|
requestToBook?: boolean | undefined;
|
1218
|
+
channexPropertyId?: string | undefined;
|
1219
|
+
channexRoomTypeId?: string | undefined;
|
1220
|
+
channexRatePlanId?: string | undefined;
|
1212
1221
|
}>;
|
package/dist/schemas/listing.js
CHANGED
@@ -190,4 +190,7 @@ exports.CreateListingSchema = (0, zod_1.object)({
|
|
190
190
|
areaSquareFeet: (0, zod_1.optional)((0, zod_1.number)()),
|
191
191
|
requestToBook: (0, zod_1.optional)((0, zod_1.boolean)()),
|
192
192
|
active: (0, zod_1.optional)((0, zod_1.boolean)()),
|
193
|
+
channexPropertyId: (0, zod_1.optional)((0, zod_1.string)()),
|
194
|
+
channexRatePlanId: (0, zod_1.optional)((0, zod_1.string)()),
|
195
|
+
channexRoomTypeId: (0, zod_1.optional)((0, zod_1.string)()),
|
193
196
|
});
|