hububb-models 1.0.70 → 1.0.71

Sign up to get free protection for your applications and to get access to all the features.
@@ -241,6 +241,7 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
241
241
  amount: number;
242
242
  };
243
243
  }>;
244
+ externalCode: import("zod").ZodOptional<import("zod").ZodString>;
244
245
  }, "strip", import("zod").ZodTypeAny, {
245
246
  id: string;
246
247
  status: string;
@@ -328,6 +329,7 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
328
329
  amount: number;
329
330
  };
330
331
  } | undefined;
332
+ externalCode?: string | undefined;
331
333
  }, {
332
334
  id: string;
333
335
  status: string;
@@ -415,5 +417,6 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
415
417
  amount: number;
416
418
  };
417
419
  } | undefined;
420
+ externalCode?: string | undefined;
418
421
  }>;
419
422
  export { apaleoReservationSchema };
@@ -80,5 +80,6 @@ const apaleoReservationSchema = (0, zod_1.object)({
80
80
  taxDetails: (0, zod_1.array)(taxDetailSchema),
81
81
  hasCityTax: (0, zod_1.boolean)(),
82
82
  payableAmount: payableAmountSchema,
83
+ externalCode: (0, zod_1.string)().optional(),
83
84
  });
84
85
  exports.apaleoReservationSchema = apaleoReservationSchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.0.70",
3
+ "version": "1.0.71",
4
4
  "description": "Models for Hububb application",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",