hububb-models 1.1.28 → 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.
@@ -577,6 +577,7 @@ export declare const ListingSchema: import("zod").ZodObject<{
577
577
  source: import("zod").ZodOptional<import("zod").ZodString>;
578
578
  channexPropertyId: import("zod").ZodOptional<import("zod").ZodString>;
579
579
  channexRoomTypeId: import("zod").ZodOptional<import("zod").ZodString>;
580
+ channexRatePlanId: import("zod").ZodOptional<import("zod").ZodString>;
580
581
  }, "strip", import("zod").ZodTypeAny, {
581
582
  address: {
582
583
  full: string;
@@ -726,6 +727,7 @@ export declare const ListingSchema: import("zod").ZodObject<{
726
727
  apaleoPropertyId?: string | undefined;
727
728
  channexPropertyId?: string | undefined;
728
729
  channexRoomTypeId?: string | undefined;
730
+ channexRatePlanId?: string | undefined;
729
731
  }, {
730
732
  address: {
731
733
  full: string;
@@ -875,6 +877,7 @@ export declare const ListingSchema: import("zod").ZodObject<{
875
877
  apaleoPropertyId?: string | undefined;
876
878
  channexPropertyId?: string | undefined;
877
879
  channexRoomTypeId?: string | undefined;
880
+ channexRatePlanId?: string | undefined;
878
881
  }>;
879
882
  export declare const CreateListingSchema: import("zod").ZodObject<{
880
883
  title: import("zod").ZodString;
@@ -1054,6 +1057,9 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
1054
1057
  areaSquareFeet: import("zod").ZodOptional<import("zod").ZodNumber>;
1055
1058
  requestToBook: import("zod").ZodOptional<import("zod").ZodBoolean>;
1056
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>;
1057
1063
  }, "strip", import("zod").ZodTypeAny, {
1058
1064
  address: {
1059
1065
  full: string;
@@ -1130,6 +1136,9 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
1130
1136
  areaSquareFeet?: number | undefined;
1131
1137
  publicDescription?: any;
1132
1138
  requestToBook?: boolean | undefined;
1139
+ channexPropertyId?: string | undefined;
1140
+ channexRoomTypeId?: string | undefined;
1141
+ channexRatePlanId?: string | undefined;
1133
1142
  }, {
1134
1143
  address: {
1135
1144
  full: string;
@@ -1206,4 +1215,7 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
1206
1215
  areaSquareFeet?: number | undefined;
1207
1216
  publicDescription?: any;
1208
1217
  requestToBook?: boolean | undefined;
1218
+ channexPropertyId?: string | undefined;
1219
+ channexRoomTypeId?: string | undefined;
1220
+ channexRatePlanId?: string | undefined;
1209
1221
  }>;
@@ -143,6 +143,7 @@ exports.ListingSchema = (0, zod_1.object)({
143
143
  source: (0, zod_1.optional)((0, zod_1.string)()),
144
144
  channexPropertyId: (0, zod_1.optional)((0, zod_1.string)()),
145
145
  channexRoomTypeId: (0, zod_1.optional)((0, zod_1.string)()),
146
+ channexRatePlanId: (0, zod_1.optional)((0, zod_1.string)()),
146
147
  });
147
148
  exports.CreateListingSchema = (0, zod_1.object)({
148
149
  title: (0, zod_1.string)(),
@@ -189,4 +190,7 @@ exports.CreateListingSchema = (0, zod_1.object)({
189
190
  areaSquareFeet: (0, zod_1.optional)((0, zod_1.number)()),
190
191
  requestToBook: (0, zod_1.optional)((0, zod_1.boolean)()),
191
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)()),
192
196
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.1.28",
3
+ "version": "1.1.30",
4
4
  "description": "Models for Hububb application",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",