hububb-models 1.1.6 → 1.1.8
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.
- package/dist/schemas/listing.d.ts +15 -0
- package/dist/schemas/listing.js +5 -0
- package/package.json +1 -1
@@ -551,6 +551,8 @@ export declare const ListingSchema: import("zod").ZodObject<{
|
|
551
551
|
checkInAgent?: string | undefined;
|
552
552
|
}>>;
|
553
553
|
source: import("zod").ZodOptional<import("zod").ZodString>;
|
554
|
+
channexPropertyId: import("zod").ZodOptional<import("zod").ZodString>;
|
555
|
+
channexRoomTypeId: import("zod").ZodOptional<import("zod").ZodString>;
|
554
556
|
}, "strip", import("zod").ZodTypeAny, {
|
555
557
|
address: {
|
556
558
|
full: string;
|
@@ -690,6 +692,8 @@ export declare const ListingSchema: import("zod").ZodObject<{
|
|
690
692
|
landlordId?: string | undefined;
|
691
693
|
apaleoPropertyId?: string | undefined;
|
692
694
|
apaleoUnitGroupId?: string | undefined;
|
695
|
+
channexPropertyId?: string | undefined;
|
696
|
+
channexRoomTypeId?: string | undefined;
|
693
697
|
}, {
|
694
698
|
address: {
|
695
699
|
full: string;
|
@@ -829,6 +833,8 @@ export declare const ListingSchema: import("zod").ZodObject<{
|
|
829
833
|
landlordId?: string | undefined;
|
830
834
|
apaleoPropertyId?: string | undefined;
|
831
835
|
apaleoUnitGroupId?: string | undefined;
|
836
|
+
channexPropertyId?: string | undefined;
|
837
|
+
channexRoomTypeId?: string | undefined;
|
832
838
|
}>;
|
833
839
|
export declare const CreateListingSchema: import("zod").ZodObject<{
|
834
840
|
title: import("zod").ZodString;
|
@@ -1005,6 +1011,9 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
|
|
1005
1011
|
}>;
|
1006
1012
|
source: import("zod").ZodOptional<import("zod").ZodString>;
|
1007
1013
|
externalId: import("zod").ZodOptional<import("zod").ZodString>;
|
1014
|
+
areaSquareFeet: import("zod").ZodOptional<import("zod").ZodNumber>;
|
1015
|
+
requestToBook: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
1016
|
+
active: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
1008
1017
|
}, "strip", import("zod").ZodTypeAny, {
|
1009
1018
|
address: {
|
1010
1019
|
full: string;
|
@@ -1076,8 +1085,11 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
|
|
1076
1085
|
};
|
1077
1086
|
nickname: string;
|
1078
1087
|
source?: string | undefined;
|
1088
|
+
active?: boolean | undefined;
|
1079
1089
|
externalId?: string | undefined;
|
1090
|
+
areaSquareFeet?: number | undefined;
|
1080
1091
|
publicDescription?: any;
|
1092
|
+
requestToBook?: boolean | undefined;
|
1081
1093
|
}, {
|
1082
1094
|
address: {
|
1083
1095
|
full: string;
|
@@ -1149,6 +1161,9 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
|
|
1149
1161
|
};
|
1150
1162
|
nickname: string;
|
1151
1163
|
source?: string | undefined;
|
1164
|
+
active?: boolean | undefined;
|
1152
1165
|
externalId?: string | undefined;
|
1166
|
+
areaSquareFeet?: number | undefined;
|
1153
1167
|
publicDescription?: any;
|
1168
|
+
requestToBook?: boolean | undefined;
|
1154
1169
|
}>;
|
package/dist/schemas/listing.js
CHANGED
@@ -133,6 +133,8 @@ exports.ListingSchema = (0, zod_1.object)({
|
|
133
133
|
checkInAgent: (0, zod_1.optional)((0, zod_1.string)()),
|
134
134
|
})),
|
135
135
|
source: (0, zod_1.optional)((0, zod_1.string)()),
|
136
|
+
channexPropertyId: (0, zod_1.optional)((0, zod_1.string)()),
|
137
|
+
channexRoomTypeId: (0, zod_1.optional)((0, zod_1.string)()),
|
136
138
|
});
|
137
139
|
exports.CreateListingSchema = (0, zod_1.object)({
|
138
140
|
title: (0, zod_1.string)(),
|
@@ -176,4 +178,7 @@ exports.CreateListingSchema = (0, zod_1.object)({
|
|
176
178
|
}),
|
177
179
|
source: (0, zod_1.optional)((0, zod_1.string)()),
|
178
180
|
externalId: (0, zod_1.optional)((0, zod_1.string)()),
|
181
|
+
areaSquareFeet: (0, zod_1.optional)((0, zod_1.number)()),
|
182
|
+
requestToBook: (0, zod_1.optional)((0, zod_1.boolean)()),
|
183
|
+
active: (0, zod_1.optional)((0, zod_1.boolean)()),
|
179
184
|
});
|