@voyant-travel/cruises-react 0.118.2

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.
Files changed (100) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +70 -0
  3. package/dist/client.d.ts +14 -0
  4. package/dist/client.d.ts.map +1 -0
  5. package/dist/client.js +59 -0
  6. package/dist/components/cruise-catalog-card.d.ts +13 -0
  7. package/dist/components/cruise-catalog-card.d.ts.map +1 -0
  8. package/dist/components/cruise-catalog-card.js +58 -0
  9. package/dist/components/enrichment-program-list.d.ts +13 -0
  10. package/dist/components/enrichment-program-list.d.ts.map +1 -0
  11. package/dist/components/enrichment-program-list.js +45 -0
  12. package/dist/components/external-badge.d.ts +14 -0
  13. package/dist/components/external-badge.d.ts.map +1 -0
  14. package/dist/components/external-badge.js +17 -0
  15. package/dist/components/pricing-grid.d.ts +21 -0
  16. package/dist/components/pricing-grid.d.ts.map +1 -0
  17. package/dist/components/pricing-grid.js +81 -0
  18. package/dist/components/quote-display.d.ts +14 -0
  19. package/dist/components/quote-display.d.ts.map +1 -0
  20. package/dist/components/quote-display.js +61 -0
  21. package/dist/hooks/index.d.ts +15 -0
  22. package/dist/hooks/index.d.ts.map +1 -0
  23. package/dist/hooks/index.js +14 -0
  24. package/dist/hooks/use-cruise-booking.d.ts +205 -0
  25. package/dist/hooks/use-cruise-booking.d.ts.map +1 -0
  26. package/dist/hooks/use-cruise-booking.js +56 -0
  27. package/dist/hooks/use-cruise-mutation.d.ts +144 -0
  28. package/dist/hooks/use-cruise-mutation.d.ts.map +1 -0
  29. package/dist/hooks/use-cruise-mutation.js +58 -0
  30. package/dist/hooks/use-cruise.d.ts +38 -0
  31. package/dist/hooks/use-cruise.d.ts.map +1 -0
  32. package/dist/hooks/use-cruise.js +16 -0
  33. package/dist/hooks/use-cruises.d.ts +61 -0
  34. package/dist/hooks/use-cruises.d.ts.map +1 -0
  35. package/dist/hooks/use-cruises.js +16 -0
  36. package/dist/hooks/use-effective-itinerary.d.ts +27 -0
  37. package/dist/hooks/use-effective-itinerary.d.ts.map +1 -0
  38. package/dist/hooks/use-effective-itinerary.js +16 -0
  39. package/dist/hooks/use-enrichment.d.ts +72 -0
  40. package/dist/hooks/use-enrichment.d.ts.map +1 -0
  41. package/dist/hooks/use-enrichment.js +64 -0
  42. package/dist/hooks/use-external-actions.d.ts +43 -0
  43. package/dist/hooks/use-external-actions.d.ts.map +1 -0
  44. package/dist/hooks/use-external-actions.js +45 -0
  45. package/dist/hooks/use-pricing.d.ts +65 -0
  46. package/dist/hooks/use-pricing.d.ts.map +1 -0
  47. package/dist/hooks/use-pricing.js +28 -0
  48. package/dist/hooks/use-sailing-mutation.d.ts +147 -0
  49. package/dist/hooks/use-sailing-mutation.d.ts.map +1 -0
  50. package/dist/hooks/use-sailing-mutation.js +55 -0
  51. package/dist/hooks/use-sailings.d.ts +49 -0
  52. package/dist/hooks/use-sailings.d.ts.map +1 -0
  53. package/dist/hooks/use-sailings.js +20 -0
  54. package/dist/hooks/use-search-index.d.ts +43 -0
  55. package/dist/hooks/use-search-index.d.ts.map +1 -0
  56. package/dist/hooks/use-search-index.js +51 -0
  57. package/dist/hooks/use-ship-mutation.d.ts +186 -0
  58. package/dist/hooks/use-ship-mutation.d.ts.map +1 -0
  59. package/dist/hooks/use-ship-mutation.js +92 -0
  60. package/dist/hooks/use-ships.d.ts +101 -0
  61. package/dist/hooks/use-ships.d.ts.map +1 -0
  62. package/dist/hooks/use-ships.js +43 -0
  63. package/dist/hooks/use-storefront.d.ts +230 -0
  64. package/dist/hooks/use-storefront.d.ts.map +1 -0
  65. package/dist/hooks/use-storefront.js +62 -0
  66. package/dist/i18n/en.d.ts +3 -0
  67. package/dist/i18n/en.d.ts.map +1 -0
  68. package/dist/i18n/en.js +79 -0
  69. package/dist/i18n/index.d.ts +5 -0
  70. package/dist/i18n/index.d.ts.map +1 -0
  71. package/dist/i18n/index.js +3 -0
  72. package/dist/i18n/messages.d.ts +62 -0
  73. package/dist/i18n/messages.d.ts.map +1 -0
  74. package/dist/i18n/messages.js +1 -0
  75. package/dist/i18n/provider.d.ts +26 -0
  76. package/dist/i18n/provider.d.ts.map +1 -0
  77. package/dist/i18n/provider.js +44 -0
  78. package/dist/i18n/ro.d.ts +3 -0
  79. package/dist/i18n/ro.d.ts.map +1 -0
  80. package/dist/i18n/ro.js +79 -0
  81. package/dist/index.d.ts +7 -0
  82. package/dist/index.d.ts.map +1 -0
  83. package/dist/index.js +6 -0
  84. package/dist/provider.d.ts +2 -0
  85. package/dist/provider.d.ts.map +1 -0
  86. package/dist/provider.js +1 -0
  87. package/dist/query-keys.d.ts +82 -0
  88. package/dist/query-keys.d.ts.map +1 -0
  89. package/dist/query-keys.js +39 -0
  90. package/dist/query-options.d.ts +1272 -0
  91. package/dist/query-options.d.ts.map +1 -0
  92. package/dist/query-options.js +136 -0
  93. package/dist/schemas.d.ts +1061 -0
  94. package/dist/schemas.d.ts.map +1 -0
  95. package/dist/schemas.js +339 -0
  96. package/dist/ui.d.ts +6 -0
  97. package/dist/ui.d.ts.map +1 -0
  98. package/dist/ui.js +5 -0
  99. package/package.json +121 -0
  100. package/src/styles.css +11 -0
@@ -0,0 +1,1061 @@
1
+ import { z } from "zod";
2
+ export declare const paginatedEnvelope: <T extends z.ZodTypeAny>(item: T) => z.ZodObject<{
3
+ data: z.ZodArray<T>;
4
+ total: z.ZodNumber;
5
+ limit: z.ZodNumber;
6
+ offset: z.ZodNumber;
7
+ }, z.core.$strip>;
8
+ export declare const singleEnvelope: <T extends z.ZodTypeAny>(item: T) => z.ZodObject<{
9
+ data: T;
10
+ }, z.core.$strip>;
11
+ export declare const listEnvelope: <T extends z.ZodTypeAny>(item: T) => z.ZodObject<{
12
+ data: z.ZodArray<T>;
13
+ }, z.core.$strip>;
14
+ export declare const successEnvelope: z.ZodOptional<z.ZodObject<{
15
+ success: z.ZodBoolean;
16
+ }, z.core.$strip>>;
17
+ export declare const cruiseTypeSchema: z.ZodEnum<{
18
+ ocean: "ocean";
19
+ river: "river";
20
+ expedition: "expedition";
21
+ coastal: "coastal";
22
+ }>;
23
+ export declare const cruiseStatusSchema: z.ZodEnum<{
24
+ draft: "draft";
25
+ awaiting_review: "awaiting_review";
26
+ live: "live";
27
+ archived: "archived";
28
+ }>;
29
+ export declare const cruiseSourceSchema: z.ZodEnum<{
30
+ local: "local";
31
+ external: "external";
32
+ }>;
33
+ export declare const shipTypeSchema: z.ZodEnum<{
34
+ ocean: "ocean";
35
+ river: "river";
36
+ expedition: "expedition";
37
+ coastal: "coastal";
38
+ yacht: "yacht";
39
+ sailing: "sailing";
40
+ }>;
41
+ export declare const cabinRoomTypeSchema: z.ZodEnum<{
42
+ inside: "inside";
43
+ oceanview: "oceanview";
44
+ balcony: "balcony";
45
+ suite: "suite";
46
+ penthouse: "penthouse";
47
+ single: "single";
48
+ }>;
49
+ export declare const sailingSalesStatusSchema: z.ZodEnum<{
50
+ open: "open";
51
+ on_request: "on_request";
52
+ wait_list: "wait_list";
53
+ sold_out: "sold_out";
54
+ closed: "closed";
55
+ }>;
56
+ export declare const sailingDirectionSchema: z.ZodEnum<{
57
+ upstream: "upstream";
58
+ downstream: "downstream";
59
+ round_trip: "round_trip";
60
+ one_way: "one_way";
61
+ }>;
62
+ export declare const priceAvailabilitySchema: z.ZodEnum<{
63
+ on_request: "on_request";
64
+ wait_list: "wait_list";
65
+ sold_out: "sold_out";
66
+ available: "available";
67
+ limited: "limited";
68
+ }>;
69
+ export declare const priceComponentKindSchema: z.ZodEnum<{
70
+ gratuity: "gratuity";
71
+ onboard_credit: "onboard_credit";
72
+ port_charge: "port_charge";
73
+ tax: "tax";
74
+ ncf: "ncf";
75
+ airfare: "airfare";
76
+ transfer: "transfer";
77
+ insurance: "insurance";
78
+ }>;
79
+ export declare const priceComponentDirectionSchema: z.ZodEnum<{
80
+ addition: "addition";
81
+ inclusion: "inclusion";
82
+ credit: "credit";
83
+ }>;
84
+ export declare const enrichmentKindSchema: z.ZodEnum<{
85
+ naturalist: "naturalist";
86
+ historian: "historian";
87
+ photographer: "photographer";
88
+ lecturer: "lecturer";
89
+ expert: "expert";
90
+ other: "other";
91
+ }>;
92
+ export declare const cruiseBookingModeSchema: z.ZodEnum<{
93
+ inquiry: "inquiry";
94
+ reserve: "reserve";
95
+ }>;
96
+ export declare const cruiseRecordSchema: z.ZodObject<{
97
+ id: z.ZodString;
98
+ slug: z.ZodString;
99
+ name: z.ZodString;
100
+ cruiseType: z.ZodEnum<{
101
+ ocean: "ocean";
102
+ river: "river";
103
+ expedition: "expedition";
104
+ coastal: "coastal";
105
+ }>;
106
+ lineSupplierId: z.ZodNullable<z.ZodString>;
107
+ defaultShipId: z.ZodNullable<z.ZodString>;
108
+ nights: z.ZodNumber;
109
+ embarkPortFacilityId: z.ZodNullable<z.ZodString>;
110
+ disembarkPortFacilityId: z.ZodNullable<z.ZodString>;
111
+ description: z.ZodNullable<z.ZodString>;
112
+ shortDescription: z.ZodNullable<z.ZodString>;
113
+ highlights: z.ZodNullable<z.ZodArray<z.ZodString>>;
114
+ inclusionsHtml: z.ZodNullable<z.ZodString>;
115
+ exclusionsHtml: z.ZodNullable<z.ZodString>;
116
+ regions: z.ZodNullable<z.ZodArray<z.ZodString>>;
117
+ themes: z.ZodNullable<z.ZodArray<z.ZodString>>;
118
+ heroImageUrl: z.ZodNullable<z.ZodString>;
119
+ mapImageUrl: z.ZodNullable<z.ZodString>;
120
+ status: z.ZodEnum<{
121
+ draft: "draft";
122
+ awaiting_review: "awaiting_review";
123
+ live: "live";
124
+ archived: "archived";
125
+ }>;
126
+ lowestPriceCached: z.ZodNullable<z.ZodString>;
127
+ lowestPriceCurrencyCached: z.ZodNullable<z.ZodString>;
128
+ earliestDepartureCached: z.ZodNullable<z.ZodString>;
129
+ latestDepartureCached: z.ZodNullable<z.ZodString>;
130
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
131
+ createdAt: z.ZodString;
132
+ updatedAt: z.ZodString;
133
+ }, z.core.$strip>;
134
+ export type CruiseRecord = z.infer<typeof cruiseRecordSchema>;
135
+ export declare const sailingRecordSchema: z.ZodObject<{
136
+ id: z.ZodString;
137
+ cruiseId: z.ZodString;
138
+ shipId: z.ZodString;
139
+ departureDate: z.ZodString;
140
+ returnDate: z.ZodString;
141
+ embarkPortFacilityId: z.ZodNullable<z.ZodString>;
142
+ disembarkPortFacilityId: z.ZodNullable<z.ZodString>;
143
+ direction: z.ZodNullable<z.ZodEnum<{
144
+ upstream: "upstream";
145
+ downstream: "downstream";
146
+ round_trip: "round_trip";
147
+ one_way: "one_way";
148
+ }>>;
149
+ availabilityNote: z.ZodNullable<z.ZodString>;
150
+ isCharter: z.ZodBoolean;
151
+ salesStatus: z.ZodEnum<{
152
+ open: "open";
153
+ on_request: "on_request";
154
+ wait_list: "wait_list";
155
+ sold_out: "sold_out";
156
+ closed: "closed";
157
+ }>;
158
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
159
+ lastSyncedAt: z.ZodNullable<z.ZodString>;
160
+ createdAt: z.ZodString;
161
+ updatedAt: z.ZodString;
162
+ }, z.core.$strip>;
163
+ export type SailingRecord = z.infer<typeof sailingRecordSchema>;
164
+ export declare const shipRecordSchema: z.ZodObject<{
165
+ id: z.ZodString;
166
+ lineSupplierId: z.ZodNullable<z.ZodString>;
167
+ name: z.ZodString;
168
+ slug: z.ZodString;
169
+ shipType: z.ZodEnum<{
170
+ ocean: "ocean";
171
+ river: "river";
172
+ expedition: "expedition";
173
+ coastal: "coastal";
174
+ yacht: "yacht";
175
+ sailing: "sailing";
176
+ }>;
177
+ capacityGuests: z.ZodNullable<z.ZodNumber>;
178
+ capacityCrew: z.ZodNullable<z.ZodNumber>;
179
+ cabinCount: z.ZodNullable<z.ZodNumber>;
180
+ deckCount: z.ZodNullable<z.ZodNumber>;
181
+ lengthMeters: z.ZodNullable<z.ZodString>;
182
+ cruisingSpeedKnots: z.ZodNullable<z.ZodString>;
183
+ yearBuilt: z.ZodNullable<z.ZodNumber>;
184
+ yearRefurbished: z.ZodNullable<z.ZodNumber>;
185
+ imo: z.ZodNullable<z.ZodString>;
186
+ description: z.ZodNullable<z.ZodString>;
187
+ deckPlanUrl: z.ZodNullable<z.ZodString>;
188
+ gallery: z.ZodNullable<z.ZodArray<z.ZodString>>;
189
+ amenities: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
190
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
191
+ isActive: z.ZodBoolean;
192
+ createdAt: z.ZodString;
193
+ updatedAt: z.ZodString;
194
+ }, z.core.$strip>;
195
+ export type ShipRecord = z.infer<typeof shipRecordSchema>;
196
+ export declare const cabinCategoryRecordSchema: z.ZodObject<{
197
+ id: z.ZodString;
198
+ shipId: z.ZodString;
199
+ code: z.ZodString;
200
+ name: z.ZodString;
201
+ roomType: z.ZodEnum<{
202
+ inside: "inside";
203
+ oceanview: "oceanview";
204
+ balcony: "balcony";
205
+ suite: "suite";
206
+ penthouse: "penthouse";
207
+ single: "single";
208
+ }>;
209
+ description: z.ZodNullable<z.ZodString>;
210
+ minOccupancy: z.ZodNumber;
211
+ maxOccupancy: z.ZodNumber;
212
+ squareFeet: z.ZodNullable<z.ZodString>;
213
+ wheelchairAccessible: z.ZodBoolean;
214
+ amenities: z.ZodNullable<z.ZodArray<z.ZodString>>;
215
+ images: z.ZodNullable<z.ZodArray<z.ZodString>>;
216
+ floorplanImages: z.ZodNullable<z.ZodArray<z.ZodString>>;
217
+ gradeCodes: z.ZodNullable<z.ZodArray<z.ZodString>>;
218
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
219
+ createdAt: z.ZodString;
220
+ updatedAt: z.ZodString;
221
+ }, z.core.$strip>;
222
+ export type CabinCategoryRecord = z.infer<typeof cabinCategoryRecordSchema>;
223
+ export declare const deckRecordSchema: z.ZodObject<{
224
+ id: z.ZodString;
225
+ shipId: z.ZodString;
226
+ name: z.ZodString;
227
+ level: z.ZodNullable<z.ZodNumber>;
228
+ planImageUrl: z.ZodNullable<z.ZodString>;
229
+ createdAt: z.ZodString;
230
+ updatedAt: z.ZodString;
231
+ }, z.core.$strip>;
232
+ export type DeckRecord = z.infer<typeof deckRecordSchema>;
233
+ export declare const cabinRecordSchema: z.ZodObject<{
234
+ id: z.ZodString;
235
+ categoryId: z.ZodString;
236
+ cabinNumber: z.ZodString;
237
+ deckId: z.ZodNullable<z.ZodString>;
238
+ position: z.ZodNullable<z.ZodString>;
239
+ connectsTo: z.ZodNullable<z.ZodString>;
240
+ notes: z.ZodNullable<z.ZodString>;
241
+ isActive: z.ZodBoolean;
242
+ createdAt: z.ZodString;
243
+ updatedAt: z.ZodString;
244
+ }, z.core.$strip>;
245
+ export type CabinRecord = z.infer<typeof cabinRecordSchema>;
246
+ export declare const priceComponentRecordSchema: z.ZodObject<{
247
+ id: z.ZodString;
248
+ priceId: z.ZodString;
249
+ kind: z.ZodEnum<{
250
+ gratuity: "gratuity";
251
+ onboard_credit: "onboard_credit";
252
+ port_charge: "port_charge";
253
+ tax: "tax";
254
+ ncf: "ncf";
255
+ airfare: "airfare";
256
+ transfer: "transfer";
257
+ insurance: "insurance";
258
+ }>;
259
+ label: z.ZodNullable<z.ZodString>;
260
+ amount: z.ZodString;
261
+ currency: z.ZodString;
262
+ direction: z.ZodEnum<{
263
+ addition: "addition";
264
+ inclusion: "inclusion";
265
+ credit: "credit";
266
+ }>;
267
+ perPerson: z.ZodBoolean;
268
+ createdAt: z.ZodString;
269
+ updatedAt: z.ZodString;
270
+ }, z.core.$strip>;
271
+ export declare const priceRecordSchema: z.ZodObject<{
272
+ id: z.ZodString;
273
+ sailingId: z.ZodString;
274
+ cabinCategoryId: z.ZodString;
275
+ occupancy: z.ZodNumber;
276
+ fareCode: z.ZodNullable<z.ZodString>;
277
+ fareCodeName: z.ZodNullable<z.ZodString>;
278
+ currency: z.ZodString;
279
+ pricePerPerson: z.ZodString;
280
+ secondGuestPricePerPerson: z.ZodNullable<z.ZodString>;
281
+ singleSupplementPercent: z.ZodNullable<z.ZodString>;
282
+ availability: z.ZodEnum<{
283
+ on_request: "on_request";
284
+ wait_list: "wait_list";
285
+ sold_out: "sold_out";
286
+ available: "available";
287
+ limited: "limited";
288
+ }>;
289
+ availabilityCount: z.ZodNullable<z.ZodNumber>;
290
+ priceCatalogId: z.ZodNullable<z.ZodString>;
291
+ priceScheduleId: z.ZodNullable<z.ZodString>;
292
+ bookingDeadline: z.ZodNullable<z.ZodString>;
293
+ requiresRequest: z.ZodBoolean;
294
+ notes: z.ZodNullable<z.ZodString>;
295
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
296
+ lastSyncedAt: z.ZodNullable<z.ZodString>;
297
+ createdAt: z.ZodString;
298
+ updatedAt: z.ZodString;
299
+ }, z.core.$strip>;
300
+ export type PriceRecord = z.infer<typeof priceRecordSchema>;
301
+ export declare const enrichmentProgramRecordSchema: z.ZodObject<{
302
+ id: z.ZodString;
303
+ cruiseId: z.ZodString;
304
+ kind: z.ZodEnum<{
305
+ naturalist: "naturalist";
306
+ historian: "historian";
307
+ photographer: "photographer";
308
+ lecturer: "lecturer";
309
+ expert: "expert";
310
+ other: "other";
311
+ }>;
312
+ name: z.ZodString;
313
+ title: z.ZodNullable<z.ZodString>;
314
+ description: z.ZodNullable<z.ZodString>;
315
+ bioImageUrl: z.ZodNullable<z.ZodString>;
316
+ sortOrder: z.ZodNumber;
317
+ createdAt: z.ZodString;
318
+ updatedAt: z.ZodString;
319
+ }, z.core.$strip>;
320
+ export type EnrichmentProgramRecord = z.infer<typeof enrichmentProgramRecordSchema>;
321
+ export declare const searchIndexEntrySchema: z.ZodObject<{
322
+ id: z.ZodString;
323
+ source: z.ZodEnum<{
324
+ local: "local";
325
+ external: "external";
326
+ }>;
327
+ sourceProvider: z.ZodNullable<z.ZodString>;
328
+ sourceRef: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
329
+ localCruiseId: z.ZodNullable<z.ZodString>;
330
+ slug: z.ZodString;
331
+ name: z.ZodString;
332
+ cruiseType: z.ZodEnum<{
333
+ ocean: "ocean";
334
+ river: "river";
335
+ expedition: "expedition";
336
+ coastal: "coastal";
337
+ }>;
338
+ lineName: z.ZodString;
339
+ shipName: z.ZodString;
340
+ nights: z.ZodNumber;
341
+ embarkPortName: z.ZodNullable<z.ZodString>;
342
+ disembarkPortName: z.ZodNullable<z.ZodString>;
343
+ regions: z.ZodNullable<z.ZodArray<z.ZodString>>;
344
+ themes: z.ZodNullable<z.ZodArray<z.ZodString>>;
345
+ earliestDeparture: z.ZodNullable<z.ZodString>;
346
+ latestDeparture: z.ZodNullable<z.ZodString>;
347
+ departureCount: z.ZodNullable<z.ZodNumber>;
348
+ lowestPriceCents: z.ZodNullable<z.ZodNumber>;
349
+ lowestPriceCurrency: z.ZodNullable<z.ZodString>;
350
+ salesStatus: z.ZodNullable<z.ZodString>;
351
+ heroImageUrl: z.ZodNullable<z.ZodString>;
352
+ refreshedAt: z.ZodString;
353
+ createdAt: z.ZodString;
354
+ updatedAt: z.ZodString;
355
+ }, z.core.$strip>;
356
+ export type SearchIndexEntry = z.infer<typeof searchIndexEntrySchema>;
357
+ export declare const effectiveItineraryDaySchema: z.ZodObject<{
358
+ dayNumber: z.ZodNumber;
359
+ title: z.ZodNullable<z.ZodString>;
360
+ description: z.ZodNullable<z.ZodString>;
361
+ portFacilityId: z.ZodNullable<z.ZodString>;
362
+ arrivalTime: z.ZodNullable<z.ZodString>;
363
+ departureTime: z.ZodNullable<z.ZodString>;
364
+ isOvernight: z.ZodBoolean;
365
+ isSeaDay: z.ZodBoolean;
366
+ isExpeditionLanding: z.ZodBoolean;
367
+ isSkipped: z.ZodBoolean;
368
+ meals: z.ZodOptional<z.ZodObject<{
369
+ breakfast: z.ZodOptional<z.ZodBoolean>;
370
+ lunch: z.ZodOptional<z.ZodBoolean>;
371
+ dinner: z.ZodOptional<z.ZodBoolean>;
372
+ }, z.core.$strip>>;
373
+ hasOverride: z.ZodBoolean;
374
+ }, z.core.$strip>;
375
+ export type EffectiveItineraryDay = z.infer<typeof effectiveItineraryDaySchema>;
376
+ export declare const quoteComponentSchema: z.ZodObject<{
377
+ kind: z.ZodEnum<{
378
+ gratuity: "gratuity";
379
+ onboard_credit: "onboard_credit";
380
+ port_charge: "port_charge";
381
+ tax: "tax";
382
+ ncf: "ncf";
383
+ airfare: "airfare";
384
+ transfer: "transfer";
385
+ insurance: "insurance";
386
+ }>;
387
+ label: z.ZodNullable<z.ZodString>;
388
+ amount: z.ZodString;
389
+ currency: z.ZodString;
390
+ direction: z.ZodEnum<{
391
+ addition: "addition";
392
+ inclusion: "inclusion";
393
+ credit: "credit";
394
+ }>;
395
+ perPerson: z.ZodBoolean;
396
+ }, z.core.$strip>;
397
+ export declare const quoteSchema: z.ZodObject<{
398
+ fareCode: z.ZodNullable<z.ZodString>;
399
+ fareCodeName: z.ZodNullable<z.ZodString>;
400
+ currency: z.ZodString;
401
+ occupancy: z.ZodNumber;
402
+ guestCount: z.ZodNumber;
403
+ basePerPerson: z.ZodString;
404
+ components: z.ZodArray<z.ZodObject<{
405
+ kind: z.ZodEnum<{
406
+ gratuity: "gratuity";
407
+ onboard_credit: "onboard_credit";
408
+ port_charge: "port_charge";
409
+ tax: "tax";
410
+ ncf: "ncf";
411
+ airfare: "airfare";
412
+ transfer: "transfer";
413
+ insurance: "insurance";
414
+ }>;
415
+ label: z.ZodNullable<z.ZodString>;
416
+ amount: z.ZodString;
417
+ currency: z.ZodString;
418
+ direction: z.ZodEnum<{
419
+ addition: "addition";
420
+ inclusion: "inclusion";
421
+ credit: "credit";
422
+ }>;
423
+ perPerson: z.ZodBoolean;
424
+ }, z.core.$strip>>;
425
+ totalPerPerson: z.ZodString;
426
+ totalForCabin: z.ZodString;
427
+ }, z.core.$strip>;
428
+ export type Quote = z.infer<typeof quoteSchema>;
429
+ export declare const adminCruiseListItemSchema: z.ZodUnion<readonly [z.ZodObject<{
430
+ source: z.ZodLiteral<"local">;
431
+ sourceProvider: z.ZodNull;
432
+ sourceRef: z.ZodNull;
433
+ key: z.ZodString;
434
+ cruise: z.ZodObject<{
435
+ id: z.ZodString;
436
+ slug: z.ZodString;
437
+ name: z.ZodString;
438
+ cruiseType: z.ZodEnum<{
439
+ ocean: "ocean";
440
+ river: "river";
441
+ expedition: "expedition";
442
+ coastal: "coastal";
443
+ }>;
444
+ lineSupplierId: z.ZodNullable<z.ZodString>;
445
+ defaultShipId: z.ZodNullable<z.ZodString>;
446
+ nights: z.ZodNumber;
447
+ embarkPortFacilityId: z.ZodNullable<z.ZodString>;
448
+ disembarkPortFacilityId: z.ZodNullable<z.ZodString>;
449
+ description: z.ZodNullable<z.ZodString>;
450
+ shortDescription: z.ZodNullable<z.ZodString>;
451
+ highlights: z.ZodNullable<z.ZodArray<z.ZodString>>;
452
+ inclusionsHtml: z.ZodNullable<z.ZodString>;
453
+ exclusionsHtml: z.ZodNullable<z.ZodString>;
454
+ regions: z.ZodNullable<z.ZodArray<z.ZodString>>;
455
+ themes: z.ZodNullable<z.ZodArray<z.ZodString>>;
456
+ heroImageUrl: z.ZodNullable<z.ZodString>;
457
+ mapImageUrl: z.ZodNullable<z.ZodString>;
458
+ status: z.ZodEnum<{
459
+ draft: "draft";
460
+ awaiting_review: "awaiting_review";
461
+ live: "live";
462
+ archived: "archived";
463
+ }>;
464
+ lowestPriceCached: z.ZodNullable<z.ZodString>;
465
+ lowestPriceCurrencyCached: z.ZodNullable<z.ZodString>;
466
+ earliestDepartureCached: z.ZodNullable<z.ZodString>;
467
+ latestDepartureCached: z.ZodNullable<z.ZodString>;
468
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
469
+ createdAt: z.ZodString;
470
+ updatedAt: z.ZodString;
471
+ }, z.core.$strip>;
472
+ }, z.core.$strip>, z.ZodObject<{
473
+ source: z.ZodLiteral<"external">;
474
+ sourceProvider: z.ZodString;
475
+ sourceRef: z.ZodRecord<z.ZodString, z.ZodUnknown>;
476
+ key: z.ZodString;
477
+ cruise: z.ZodUnknown;
478
+ }, z.core.$strip>]>;
479
+ export declare const adminCruiseListResponse: z.ZodObject<{
480
+ data: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
481
+ source: z.ZodLiteral<"local">;
482
+ sourceProvider: z.ZodNull;
483
+ sourceRef: z.ZodNull;
484
+ key: z.ZodString;
485
+ cruise: z.ZodObject<{
486
+ id: z.ZodString;
487
+ slug: z.ZodString;
488
+ name: z.ZodString;
489
+ cruiseType: z.ZodEnum<{
490
+ ocean: "ocean";
491
+ river: "river";
492
+ expedition: "expedition";
493
+ coastal: "coastal";
494
+ }>;
495
+ lineSupplierId: z.ZodNullable<z.ZodString>;
496
+ defaultShipId: z.ZodNullable<z.ZodString>;
497
+ nights: z.ZodNumber;
498
+ embarkPortFacilityId: z.ZodNullable<z.ZodString>;
499
+ disembarkPortFacilityId: z.ZodNullable<z.ZodString>;
500
+ description: z.ZodNullable<z.ZodString>;
501
+ shortDescription: z.ZodNullable<z.ZodString>;
502
+ highlights: z.ZodNullable<z.ZodArray<z.ZodString>>;
503
+ inclusionsHtml: z.ZodNullable<z.ZodString>;
504
+ exclusionsHtml: z.ZodNullable<z.ZodString>;
505
+ regions: z.ZodNullable<z.ZodArray<z.ZodString>>;
506
+ themes: z.ZodNullable<z.ZodArray<z.ZodString>>;
507
+ heroImageUrl: z.ZodNullable<z.ZodString>;
508
+ mapImageUrl: z.ZodNullable<z.ZodString>;
509
+ status: z.ZodEnum<{
510
+ draft: "draft";
511
+ awaiting_review: "awaiting_review";
512
+ live: "live";
513
+ archived: "archived";
514
+ }>;
515
+ lowestPriceCached: z.ZodNullable<z.ZodString>;
516
+ lowestPriceCurrencyCached: z.ZodNullable<z.ZodString>;
517
+ earliestDepartureCached: z.ZodNullable<z.ZodString>;
518
+ latestDepartureCached: z.ZodNullable<z.ZodString>;
519
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
520
+ createdAt: z.ZodString;
521
+ updatedAt: z.ZodString;
522
+ }, z.core.$strip>;
523
+ }, z.core.$strip>, z.ZodObject<{
524
+ source: z.ZodLiteral<"external">;
525
+ sourceProvider: z.ZodString;
526
+ sourceRef: z.ZodRecord<z.ZodString, z.ZodUnknown>;
527
+ key: z.ZodString;
528
+ cruise: z.ZodUnknown;
529
+ }, z.core.$strip>]>>;
530
+ total: z.ZodNumber;
531
+ localTotal: z.ZodNumber;
532
+ adapterCount: z.ZodNumber;
533
+ adapterErrors: z.ZodOptional<z.ZodArray<z.ZodObject<{
534
+ adapter: z.ZodString;
535
+ error: z.ZodString;
536
+ }, z.core.$strip>>>;
537
+ limit: z.ZodNumber;
538
+ offset: z.ZodNumber;
539
+ }, z.core.$strip>;
540
+ export declare const cruiseListResponse: z.ZodObject<{
541
+ data: z.ZodArray<z.ZodObject<{
542
+ id: z.ZodString;
543
+ slug: z.ZodString;
544
+ name: z.ZodString;
545
+ cruiseType: z.ZodEnum<{
546
+ ocean: "ocean";
547
+ river: "river";
548
+ expedition: "expedition";
549
+ coastal: "coastal";
550
+ }>;
551
+ lineSupplierId: z.ZodNullable<z.ZodString>;
552
+ defaultShipId: z.ZodNullable<z.ZodString>;
553
+ nights: z.ZodNumber;
554
+ embarkPortFacilityId: z.ZodNullable<z.ZodString>;
555
+ disembarkPortFacilityId: z.ZodNullable<z.ZodString>;
556
+ description: z.ZodNullable<z.ZodString>;
557
+ shortDescription: z.ZodNullable<z.ZodString>;
558
+ highlights: z.ZodNullable<z.ZodArray<z.ZodString>>;
559
+ inclusionsHtml: z.ZodNullable<z.ZodString>;
560
+ exclusionsHtml: z.ZodNullable<z.ZodString>;
561
+ regions: z.ZodNullable<z.ZodArray<z.ZodString>>;
562
+ themes: z.ZodNullable<z.ZodArray<z.ZodString>>;
563
+ heroImageUrl: z.ZodNullable<z.ZodString>;
564
+ mapImageUrl: z.ZodNullable<z.ZodString>;
565
+ status: z.ZodEnum<{
566
+ draft: "draft";
567
+ awaiting_review: "awaiting_review";
568
+ live: "live";
569
+ archived: "archived";
570
+ }>;
571
+ lowestPriceCached: z.ZodNullable<z.ZodString>;
572
+ lowestPriceCurrencyCached: z.ZodNullable<z.ZodString>;
573
+ earliestDepartureCached: z.ZodNullable<z.ZodString>;
574
+ latestDepartureCached: z.ZodNullable<z.ZodString>;
575
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
576
+ createdAt: z.ZodString;
577
+ updatedAt: z.ZodString;
578
+ }, z.core.$strip>>;
579
+ total: z.ZodNumber;
580
+ limit: z.ZodNumber;
581
+ offset: z.ZodNumber;
582
+ }, z.core.$strip>;
583
+ export declare const cruiseSingleResponse: z.ZodObject<{
584
+ data: z.ZodObject<{
585
+ id: z.ZodString;
586
+ slug: z.ZodString;
587
+ name: z.ZodString;
588
+ cruiseType: z.ZodEnum<{
589
+ ocean: "ocean";
590
+ river: "river";
591
+ expedition: "expedition";
592
+ coastal: "coastal";
593
+ }>;
594
+ lineSupplierId: z.ZodNullable<z.ZodString>;
595
+ defaultShipId: z.ZodNullable<z.ZodString>;
596
+ nights: z.ZodNumber;
597
+ embarkPortFacilityId: z.ZodNullable<z.ZodString>;
598
+ disembarkPortFacilityId: z.ZodNullable<z.ZodString>;
599
+ description: z.ZodNullable<z.ZodString>;
600
+ shortDescription: z.ZodNullable<z.ZodString>;
601
+ highlights: z.ZodNullable<z.ZodArray<z.ZodString>>;
602
+ inclusionsHtml: z.ZodNullable<z.ZodString>;
603
+ exclusionsHtml: z.ZodNullable<z.ZodString>;
604
+ regions: z.ZodNullable<z.ZodArray<z.ZodString>>;
605
+ themes: z.ZodNullable<z.ZodArray<z.ZodString>>;
606
+ heroImageUrl: z.ZodNullable<z.ZodString>;
607
+ mapImageUrl: z.ZodNullable<z.ZodString>;
608
+ status: z.ZodEnum<{
609
+ draft: "draft";
610
+ awaiting_review: "awaiting_review";
611
+ live: "live";
612
+ archived: "archived";
613
+ }>;
614
+ lowestPriceCached: z.ZodNullable<z.ZodString>;
615
+ lowestPriceCurrencyCached: z.ZodNullable<z.ZodString>;
616
+ earliestDepartureCached: z.ZodNullable<z.ZodString>;
617
+ latestDepartureCached: z.ZodNullable<z.ZodString>;
618
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
619
+ createdAt: z.ZodString;
620
+ updatedAt: z.ZodString;
621
+ }, z.core.$strip>;
622
+ }, z.core.$strip>;
623
+ export declare const sailingListResponse: z.ZodObject<{
624
+ data: z.ZodArray<z.ZodObject<{
625
+ id: z.ZodString;
626
+ cruiseId: z.ZodString;
627
+ shipId: z.ZodString;
628
+ departureDate: z.ZodString;
629
+ returnDate: z.ZodString;
630
+ embarkPortFacilityId: z.ZodNullable<z.ZodString>;
631
+ disembarkPortFacilityId: z.ZodNullable<z.ZodString>;
632
+ direction: z.ZodNullable<z.ZodEnum<{
633
+ upstream: "upstream";
634
+ downstream: "downstream";
635
+ round_trip: "round_trip";
636
+ one_way: "one_way";
637
+ }>>;
638
+ availabilityNote: z.ZodNullable<z.ZodString>;
639
+ isCharter: z.ZodBoolean;
640
+ salesStatus: z.ZodEnum<{
641
+ open: "open";
642
+ on_request: "on_request";
643
+ wait_list: "wait_list";
644
+ sold_out: "sold_out";
645
+ closed: "closed";
646
+ }>;
647
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
648
+ lastSyncedAt: z.ZodNullable<z.ZodString>;
649
+ createdAt: z.ZodString;
650
+ updatedAt: z.ZodString;
651
+ }, z.core.$strip>>;
652
+ total: z.ZodNumber;
653
+ limit: z.ZodNumber;
654
+ offset: z.ZodNumber;
655
+ }, z.core.$strip>;
656
+ export declare const sailingSingleResponse: z.ZodObject<{
657
+ data: z.ZodObject<{
658
+ id: z.ZodString;
659
+ cruiseId: z.ZodString;
660
+ shipId: z.ZodString;
661
+ departureDate: z.ZodString;
662
+ returnDate: z.ZodString;
663
+ embarkPortFacilityId: z.ZodNullable<z.ZodString>;
664
+ disembarkPortFacilityId: z.ZodNullable<z.ZodString>;
665
+ direction: z.ZodNullable<z.ZodEnum<{
666
+ upstream: "upstream";
667
+ downstream: "downstream";
668
+ round_trip: "round_trip";
669
+ one_way: "one_way";
670
+ }>>;
671
+ availabilityNote: z.ZodNullable<z.ZodString>;
672
+ isCharter: z.ZodBoolean;
673
+ salesStatus: z.ZodEnum<{
674
+ open: "open";
675
+ on_request: "on_request";
676
+ wait_list: "wait_list";
677
+ sold_out: "sold_out";
678
+ closed: "closed";
679
+ }>;
680
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
681
+ lastSyncedAt: z.ZodNullable<z.ZodString>;
682
+ createdAt: z.ZodString;
683
+ updatedAt: z.ZodString;
684
+ }, z.core.$strip>;
685
+ }, z.core.$strip>;
686
+ export declare const shipListResponse: z.ZodObject<{
687
+ data: z.ZodArray<z.ZodObject<{
688
+ id: z.ZodString;
689
+ lineSupplierId: z.ZodNullable<z.ZodString>;
690
+ name: z.ZodString;
691
+ slug: z.ZodString;
692
+ shipType: z.ZodEnum<{
693
+ ocean: "ocean";
694
+ river: "river";
695
+ expedition: "expedition";
696
+ coastal: "coastal";
697
+ yacht: "yacht";
698
+ sailing: "sailing";
699
+ }>;
700
+ capacityGuests: z.ZodNullable<z.ZodNumber>;
701
+ capacityCrew: z.ZodNullable<z.ZodNumber>;
702
+ cabinCount: z.ZodNullable<z.ZodNumber>;
703
+ deckCount: z.ZodNullable<z.ZodNumber>;
704
+ lengthMeters: z.ZodNullable<z.ZodString>;
705
+ cruisingSpeedKnots: z.ZodNullable<z.ZodString>;
706
+ yearBuilt: z.ZodNullable<z.ZodNumber>;
707
+ yearRefurbished: z.ZodNullable<z.ZodNumber>;
708
+ imo: z.ZodNullable<z.ZodString>;
709
+ description: z.ZodNullable<z.ZodString>;
710
+ deckPlanUrl: z.ZodNullable<z.ZodString>;
711
+ gallery: z.ZodNullable<z.ZodArray<z.ZodString>>;
712
+ amenities: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
713
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
714
+ isActive: z.ZodBoolean;
715
+ createdAt: z.ZodString;
716
+ updatedAt: z.ZodString;
717
+ }, z.core.$strip>>;
718
+ total: z.ZodNumber;
719
+ limit: z.ZodNumber;
720
+ offset: z.ZodNumber;
721
+ }, z.core.$strip>;
722
+ export declare const shipSingleResponse: z.ZodObject<{
723
+ data: z.ZodObject<{
724
+ id: z.ZodString;
725
+ lineSupplierId: z.ZodNullable<z.ZodString>;
726
+ name: z.ZodString;
727
+ slug: z.ZodString;
728
+ shipType: z.ZodEnum<{
729
+ ocean: "ocean";
730
+ river: "river";
731
+ expedition: "expedition";
732
+ coastal: "coastal";
733
+ yacht: "yacht";
734
+ sailing: "sailing";
735
+ }>;
736
+ capacityGuests: z.ZodNullable<z.ZodNumber>;
737
+ capacityCrew: z.ZodNullable<z.ZodNumber>;
738
+ cabinCount: z.ZodNullable<z.ZodNumber>;
739
+ deckCount: z.ZodNullable<z.ZodNumber>;
740
+ lengthMeters: z.ZodNullable<z.ZodString>;
741
+ cruisingSpeedKnots: z.ZodNullable<z.ZodString>;
742
+ yearBuilt: z.ZodNullable<z.ZodNumber>;
743
+ yearRefurbished: z.ZodNullable<z.ZodNumber>;
744
+ imo: z.ZodNullable<z.ZodString>;
745
+ description: z.ZodNullable<z.ZodString>;
746
+ deckPlanUrl: z.ZodNullable<z.ZodString>;
747
+ gallery: z.ZodNullable<z.ZodArray<z.ZodString>>;
748
+ amenities: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
749
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
750
+ isActive: z.ZodBoolean;
751
+ createdAt: z.ZodString;
752
+ updatedAt: z.ZodString;
753
+ }, z.core.$strip>;
754
+ }, z.core.$strip>;
755
+ export declare const cabinCategoryListResponse: z.ZodObject<{
756
+ data: z.ZodArray<z.ZodObject<{
757
+ id: z.ZodString;
758
+ shipId: z.ZodString;
759
+ code: z.ZodString;
760
+ name: z.ZodString;
761
+ roomType: z.ZodEnum<{
762
+ inside: "inside";
763
+ oceanview: "oceanview";
764
+ balcony: "balcony";
765
+ suite: "suite";
766
+ penthouse: "penthouse";
767
+ single: "single";
768
+ }>;
769
+ description: z.ZodNullable<z.ZodString>;
770
+ minOccupancy: z.ZodNumber;
771
+ maxOccupancy: z.ZodNumber;
772
+ squareFeet: z.ZodNullable<z.ZodString>;
773
+ wheelchairAccessible: z.ZodBoolean;
774
+ amenities: z.ZodNullable<z.ZodArray<z.ZodString>>;
775
+ images: z.ZodNullable<z.ZodArray<z.ZodString>>;
776
+ floorplanImages: z.ZodNullable<z.ZodArray<z.ZodString>>;
777
+ gradeCodes: z.ZodNullable<z.ZodArray<z.ZodString>>;
778
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
779
+ createdAt: z.ZodString;
780
+ updatedAt: z.ZodString;
781
+ }, z.core.$strip>>;
782
+ }, z.core.$strip>;
783
+ export declare const cabinCategorySingleResponse: z.ZodObject<{
784
+ data: z.ZodObject<{
785
+ id: z.ZodString;
786
+ shipId: z.ZodString;
787
+ code: z.ZodString;
788
+ name: z.ZodString;
789
+ roomType: z.ZodEnum<{
790
+ inside: "inside";
791
+ oceanview: "oceanview";
792
+ balcony: "balcony";
793
+ suite: "suite";
794
+ penthouse: "penthouse";
795
+ single: "single";
796
+ }>;
797
+ description: z.ZodNullable<z.ZodString>;
798
+ minOccupancy: z.ZodNumber;
799
+ maxOccupancy: z.ZodNumber;
800
+ squareFeet: z.ZodNullable<z.ZodString>;
801
+ wheelchairAccessible: z.ZodBoolean;
802
+ amenities: z.ZodNullable<z.ZodArray<z.ZodString>>;
803
+ images: z.ZodNullable<z.ZodArray<z.ZodString>>;
804
+ floorplanImages: z.ZodNullable<z.ZodArray<z.ZodString>>;
805
+ gradeCodes: z.ZodNullable<z.ZodArray<z.ZodString>>;
806
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
807
+ createdAt: z.ZodString;
808
+ updatedAt: z.ZodString;
809
+ }, z.core.$strip>;
810
+ }, z.core.$strip>;
811
+ export declare const deckListResponse: z.ZodObject<{
812
+ data: z.ZodArray<z.ZodObject<{
813
+ id: z.ZodString;
814
+ shipId: z.ZodString;
815
+ name: z.ZodString;
816
+ level: z.ZodNullable<z.ZodNumber>;
817
+ planImageUrl: z.ZodNullable<z.ZodString>;
818
+ createdAt: z.ZodString;
819
+ updatedAt: z.ZodString;
820
+ }, z.core.$strip>>;
821
+ }, z.core.$strip>;
822
+ export declare const deckSingleResponse: z.ZodObject<{
823
+ data: z.ZodObject<{
824
+ id: z.ZodString;
825
+ shipId: z.ZodString;
826
+ name: z.ZodString;
827
+ level: z.ZodNullable<z.ZodNumber>;
828
+ planImageUrl: z.ZodNullable<z.ZodString>;
829
+ createdAt: z.ZodString;
830
+ updatedAt: z.ZodString;
831
+ }, z.core.$strip>;
832
+ }, z.core.$strip>;
833
+ export declare const cabinListResponse: z.ZodObject<{
834
+ data: z.ZodArray<z.ZodObject<{
835
+ id: z.ZodString;
836
+ categoryId: z.ZodString;
837
+ cabinNumber: z.ZodString;
838
+ deckId: z.ZodNullable<z.ZodString>;
839
+ position: z.ZodNullable<z.ZodString>;
840
+ connectsTo: z.ZodNullable<z.ZodString>;
841
+ notes: z.ZodNullable<z.ZodString>;
842
+ isActive: z.ZodBoolean;
843
+ createdAt: z.ZodString;
844
+ updatedAt: z.ZodString;
845
+ }, z.core.$strip>>;
846
+ }, z.core.$strip>;
847
+ export declare const cabinSingleResponse: z.ZodObject<{
848
+ data: z.ZodObject<{
849
+ id: z.ZodString;
850
+ categoryId: z.ZodString;
851
+ cabinNumber: z.ZodString;
852
+ deckId: z.ZodNullable<z.ZodString>;
853
+ position: z.ZodNullable<z.ZodString>;
854
+ connectsTo: z.ZodNullable<z.ZodString>;
855
+ notes: z.ZodNullable<z.ZodString>;
856
+ isActive: z.ZodBoolean;
857
+ createdAt: z.ZodString;
858
+ updatedAt: z.ZodString;
859
+ }, z.core.$strip>;
860
+ }, z.core.$strip>;
861
+ export declare const priceListResponse: z.ZodObject<{
862
+ data: z.ZodArray<z.ZodObject<{
863
+ id: z.ZodString;
864
+ sailingId: z.ZodString;
865
+ cabinCategoryId: z.ZodString;
866
+ occupancy: z.ZodNumber;
867
+ fareCode: z.ZodNullable<z.ZodString>;
868
+ fareCodeName: z.ZodNullable<z.ZodString>;
869
+ currency: z.ZodString;
870
+ pricePerPerson: z.ZodString;
871
+ secondGuestPricePerPerson: z.ZodNullable<z.ZodString>;
872
+ singleSupplementPercent: z.ZodNullable<z.ZodString>;
873
+ availability: z.ZodEnum<{
874
+ on_request: "on_request";
875
+ wait_list: "wait_list";
876
+ sold_out: "sold_out";
877
+ available: "available";
878
+ limited: "limited";
879
+ }>;
880
+ availabilityCount: z.ZodNullable<z.ZodNumber>;
881
+ priceCatalogId: z.ZodNullable<z.ZodString>;
882
+ priceScheduleId: z.ZodNullable<z.ZodString>;
883
+ bookingDeadline: z.ZodNullable<z.ZodString>;
884
+ requiresRequest: z.ZodBoolean;
885
+ notes: z.ZodNullable<z.ZodString>;
886
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
887
+ lastSyncedAt: z.ZodNullable<z.ZodString>;
888
+ createdAt: z.ZodString;
889
+ updatedAt: z.ZodString;
890
+ }, z.core.$strip>>;
891
+ total: z.ZodNumber;
892
+ limit: z.ZodNumber;
893
+ offset: z.ZodNumber;
894
+ }, z.core.$strip>;
895
+ export declare const priceSingleResponse: z.ZodObject<{
896
+ data: z.ZodObject<{
897
+ id: z.ZodString;
898
+ sailingId: z.ZodString;
899
+ cabinCategoryId: z.ZodString;
900
+ occupancy: z.ZodNumber;
901
+ fareCode: z.ZodNullable<z.ZodString>;
902
+ fareCodeName: z.ZodNullable<z.ZodString>;
903
+ currency: z.ZodString;
904
+ pricePerPerson: z.ZodString;
905
+ secondGuestPricePerPerson: z.ZodNullable<z.ZodString>;
906
+ singleSupplementPercent: z.ZodNullable<z.ZodString>;
907
+ availability: z.ZodEnum<{
908
+ on_request: "on_request";
909
+ wait_list: "wait_list";
910
+ sold_out: "sold_out";
911
+ available: "available";
912
+ limited: "limited";
913
+ }>;
914
+ availabilityCount: z.ZodNullable<z.ZodNumber>;
915
+ priceCatalogId: z.ZodNullable<z.ZodString>;
916
+ priceScheduleId: z.ZodNullable<z.ZodString>;
917
+ bookingDeadline: z.ZodNullable<z.ZodString>;
918
+ requiresRequest: z.ZodBoolean;
919
+ notes: z.ZodNullable<z.ZodString>;
920
+ externalRefs: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
921
+ lastSyncedAt: z.ZodNullable<z.ZodString>;
922
+ createdAt: z.ZodString;
923
+ updatedAt: z.ZodString;
924
+ }, z.core.$strip>;
925
+ }, z.core.$strip>;
926
+ export declare const enrichmentListResponse: z.ZodObject<{
927
+ data: z.ZodArray<z.ZodObject<{
928
+ id: z.ZodString;
929
+ cruiseId: z.ZodString;
930
+ kind: z.ZodEnum<{
931
+ naturalist: "naturalist";
932
+ historian: "historian";
933
+ photographer: "photographer";
934
+ lecturer: "lecturer";
935
+ expert: "expert";
936
+ other: "other";
937
+ }>;
938
+ name: z.ZodString;
939
+ title: z.ZodNullable<z.ZodString>;
940
+ description: z.ZodNullable<z.ZodString>;
941
+ bioImageUrl: z.ZodNullable<z.ZodString>;
942
+ sortOrder: z.ZodNumber;
943
+ createdAt: z.ZodString;
944
+ updatedAt: z.ZodString;
945
+ }, z.core.$strip>>;
946
+ }, z.core.$strip>;
947
+ export declare const enrichmentSingleResponse: z.ZodObject<{
948
+ data: z.ZodObject<{
949
+ id: z.ZodString;
950
+ cruiseId: z.ZodString;
951
+ kind: z.ZodEnum<{
952
+ naturalist: "naturalist";
953
+ historian: "historian";
954
+ photographer: "photographer";
955
+ lecturer: "lecturer";
956
+ expert: "expert";
957
+ other: "other";
958
+ }>;
959
+ name: z.ZodString;
960
+ title: z.ZodNullable<z.ZodString>;
961
+ description: z.ZodNullable<z.ZodString>;
962
+ bioImageUrl: z.ZodNullable<z.ZodString>;
963
+ sortOrder: z.ZodNumber;
964
+ createdAt: z.ZodString;
965
+ updatedAt: z.ZodString;
966
+ }, z.core.$strip>;
967
+ }, z.core.$strip>;
968
+ export declare const effectiveItineraryResponse: z.ZodObject<{
969
+ data: z.ZodArray<z.ZodObject<{
970
+ dayNumber: z.ZodNumber;
971
+ title: z.ZodNullable<z.ZodString>;
972
+ description: z.ZodNullable<z.ZodString>;
973
+ portFacilityId: z.ZodNullable<z.ZodString>;
974
+ arrivalTime: z.ZodNullable<z.ZodString>;
975
+ departureTime: z.ZodNullable<z.ZodString>;
976
+ isOvernight: z.ZodBoolean;
977
+ isSeaDay: z.ZodBoolean;
978
+ isExpeditionLanding: z.ZodBoolean;
979
+ isSkipped: z.ZodBoolean;
980
+ meals: z.ZodOptional<z.ZodObject<{
981
+ breakfast: z.ZodOptional<z.ZodBoolean>;
982
+ lunch: z.ZodOptional<z.ZodBoolean>;
983
+ dinner: z.ZodOptional<z.ZodBoolean>;
984
+ }, z.core.$strip>>;
985
+ hasOverride: z.ZodBoolean;
986
+ }, z.core.$strip>>;
987
+ }, z.core.$strip>;
988
+ export declare const quoteResponse: z.ZodObject<{
989
+ data: z.ZodObject<{
990
+ fareCode: z.ZodNullable<z.ZodString>;
991
+ fareCodeName: z.ZodNullable<z.ZodString>;
992
+ currency: z.ZodString;
993
+ occupancy: z.ZodNumber;
994
+ guestCount: z.ZodNumber;
995
+ basePerPerson: z.ZodString;
996
+ components: z.ZodArray<z.ZodObject<{
997
+ kind: z.ZodEnum<{
998
+ gratuity: "gratuity";
999
+ onboard_credit: "onboard_credit";
1000
+ port_charge: "port_charge";
1001
+ tax: "tax";
1002
+ ncf: "ncf";
1003
+ airfare: "airfare";
1004
+ transfer: "transfer";
1005
+ insurance: "insurance";
1006
+ }>;
1007
+ label: z.ZodNullable<z.ZodString>;
1008
+ amount: z.ZodString;
1009
+ currency: z.ZodString;
1010
+ direction: z.ZodEnum<{
1011
+ addition: "addition";
1012
+ inclusion: "inclusion";
1013
+ credit: "credit";
1014
+ }>;
1015
+ perPerson: z.ZodBoolean;
1016
+ }, z.core.$strip>>;
1017
+ totalPerPerson: z.ZodString;
1018
+ totalForCabin: z.ZodString;
1019
+ }, z.core.$strip>;
1020
+ }, z.core.$strip>;
1021
+ export declare const searchIndexListResponse: z.ZodObject<{
1022
+ data: z.ZodArray<z.ZodObject<{
1023
+ id: z.ZodString;
1024
+ source: z.ZodEnum<{
1025
+ local: "local";
1026
+ external: "external";
1027
+ }>;
1028
+ sourceProvider: z.ZodNullable<z.ZodString>;
1029
+ sourceRef: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1030
+ localCruiseId: z.ZodNullable<z.ZodString>;
1031
+ slug: z.ZodString;
1032
+ name: z.ZodString;
1033
+ cruiseType: z.ZodEnum<{
1034
+ ocean: "ocean";
1035
+ river: "river";
1036
+ expedition: "expedition";
1037
+ coastal: "coastal";
1038
+ }>;
1039
+ lineName: z.ZodString;
1040
+ shipName: z.ZodString;
1041
+ nights: z.ZodNumber;
1042
+ embarkPortName: z.ZodNullable<z.ZodString>;
1043
+ disembarkPortName: z.ZodNullable<z.ZodString>;
1044
+ regions: z.ZodNullable<z.ZodArray<z.ZodString>>;
1045
+ themes: z.ZodNullable<z.ZodArray<z.ZodString>>;
1046
+ earliestDeparture: z.ZodNullable<z.ZodString>;
1047
+ latestDeparture: z.ZodNullable<z.ZodString>;
1048
+ departureCount: z.ZodNullable<z.ZodNumber>;
1049
+ lowestPriceCents: z.ZodNullable<z.ZodNumber>;
1050
+ lowestPriceCurrency: z.ZodNullable<z.ZodString>;
1051
+ salesStatus: z.ZodNullable<z.ZodString>;
1052
+ heroImageUrl: z.ZodNullable<z.ZodString>;
1053
+ refreshedAt: z.ZodString;
1054
+ createdAt: z.ZodString;
1055
+ updatedAt: z.ZodString;
1056
+ }, z.core.$strip>>;
1057
+ total: z.ZodNumber;
1058
+ limit: z.ZodNumber;
1059
+ offset: z.ZodNumber;
1060
+ }, z.core.$strip>;
1061
+ //# sourceMappingURL=schemas.d.ts.map