hububb-models 1.0.67 → 1.0.68

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.
@@ -72,6 +72,7 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
72
72
  modified: import("zod").ZodString;
73
73
  adults: import("zod").ZodNumber;
74
74
  channelCode: import("zod").ZodString;
75
+ source: import("zod").ZodOptional<import("zod").ZodString>;
75
76
  primaryGuest: import("zod").ZodObject<{
76
77
  lastName: import("zod").ZodString;
77
78
  firstName: import("zod").ZodOptional<import("zod").ZodString>;
@@ -305,6 +306,7 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
305
306
  amount: number;
306
307
  };
307
308
  };
309
+ source?: string | undefined;
308
310
  cancellationFee?: {
309
311
  code: string;
310
312
  id: string;
@@ -391,6 +393,7 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
391
393
  amount: number;
392
394
  };
393
395
  };
396
+ source?: string | undefined;
394
397
  cancellationFee?: {
395
398
  code: string;
396
399
  id: string;
@@ -70,6 +70,7 @@ const apaleoReservationSchema = (0, zod_1.object)({
70
70
  modified: (0, zod_1.string)(),
71
71
  adults: (0, zod_1.number)(),
72
72
  channelCode: (0, zod_1.string)(),
73
+ source: (0, zod_1.string)().optional(),
73
74
  primaryGuest: guestSchema,
74
75
  guaranteeType: (0, zod_1.string)(),
75
76
  cancellationFee: cancellationFeeSchema.optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.0.67",
3
+ "version": "1.0.68",
4
4
  "description": "Models for Hububb application",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",