@voyant-travel/charters 0.118.2 → 0.119.0

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.
@@ -509,6 +509,7 @@ export declare const chartersPublicRoutes: import("hono/hono-base").HonoBase<Env
509
509
  externalRefs: {
510
510
  [x: string]: string;
511
511
  } | null;
512
+ maxGuests: number | null;
512
513
  images: string[] | null;
513
514
  appointmentOnly: boolean;
514
515
  lastSyncedAt: string | null;
@@ -517,7 +518,6 @@ export declare const chartersPublicRoutes: import("hono/hono-base").HonoBase<Env
517
518
  suiteCategory: "signature" | "standard" | "deluxe" | "suite" | "penthouse" | "owners" | null;
518
519
  squareFeet: string | null;
519
520
  floorplanImages: string[] | null;
520
- maxGuests: number | null;
521
521
  pricesByCurrency: {
522
522
  [x: string]: string;
523
523
  };
package/dist/routes.d.ts CHANGED
@@ -785,6 +785,7 @@ export declare const chartersAdminRoutes: import("hono/hono-base").HonoBase<Env,
785
785
  externalRefs: {
786
786
  [x: string]: string;
787
787
  } | null;
788
+ maxGuests: number | null;
788
789
  images: string[] | null;
789
790
  appointmentOnly: boolean;
790
791
  lastSyncedAt: string | null;
@@ -793,7 +794,6 @@ export declare const chartersAdminRoutes: import("hono/hono-base").HonoBase<Env,
793
794
  suiteCategory: "signature" | "standard" | "deluxe" | "suite" | "penthouse" | "owners" | null;
794
795
  squareFeet: string | null;
795
796
  floorplanImages: string[] | null;
796
- maxGuests: number | null;
797
797
  pricesByCurrency: {
798
798
  [x: string]: string;
799
799
  };
@@ -949,6 +949,7 @@ export declare const chartersAdminRoutes: import("hono/hono-base").HonoBase<Env,
949
949
  externalRefs: {
950
950
  [x: string]: string;
951
951
  } | null;
952
+ maxGuests: number | null;
952
953
  images: string[] | null;
953
954
  appointmentOnly: boolean;
954
955
  lastSyncedAt: string | null;
@@ -957,7 +958,6 @@ export declare const chartersAdminRoutes: import("hono/hono-base").HonoBase<Env,
957
958
  suiteCategory: "signature" | "standard" | "deluxe" | "suite" | "penthouse" | "owners" | null;
958
959
  squareFeet: string | null;
959
960
  floorplanImages: string[] | null;
960
- maxGuests: number | null;
961
961
  pricesByCurrency: {
962
962
  [x: string]: string;
963
963
  };
@@ -76,6 +76,7 @@ export declare const replaceVoyageSuitesSchema: z.ZodObject<{
76
76
  limited: "limited";
77
77
  }>>;
78
78
  externalRefs: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
79
+ maxGuests: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
79
80
  images: z.ZodDefault<z.ZodArray<z.ZodString>>;
80
81
  appointmentOnly: z.ZodDefault<z.ZodBoolean>;
81
82
  suiteCode: z.ZodString;
@@ -90,7 +91,6 @@ export declare const replaceVoyageSuitesSchema: z.ZodObject<{
90
91
  }>>>;
91
92
  squareFeet: z.ZodNullable<z.ZodOptional<z.ZodString>>;
92
93
  floorplanImages: z.ZodDefault<z.ZodArray<z.ZodString>>;
93
- maxGuests: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
94
94
  pricesByCurrency: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
95
95
  portFeesByCurrency: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
96
96
  unitsAvailable: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voyant-travel/charters",
3
- "version": "0.118.2",
3
+ "version": "0.119.0",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
@@ -74,12 +74,12 @@
74
74
  "drizzle-orm": "^0.45.2",
75
75
  "hono": "^4.12.10",
76
76
  "zod": "^4.3.6",
77
- "@voyant-travel/bookings": "^0.120.2",
77
+ "@voyant-travel/bookings": "^0.121.0",
78
78
  "@voyant-travel/charters-contracts": "^0.104.1",
79
79
  "@voyant-travel/core": "^0.109.0",
80
80
  "@voyant-travel/db": "^0.108.1",
81
- "@voyant-travel/hono": "^0.110.3",
82
- "@voyant-travel/catalog": "^0.118.1"
81
+ "@voyant-travel/hono": "^0.111.0",
82
+ "@voyant-travel/catalog": "^0.119.0"
83
83
  },
84
84
  "devDependencies": {
85
85
  "typescript": "^6.0.2",