@voyantjs/bookings 0.96.0 → 0.97.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.
@@ -1,1064 +1,2 @@
1
- import { z } from "zod";
2
- export declare const publicBookingSessionTravelerInputSchema: z.ZodObject<{
3
- id: z.ZodOptional<z.ZodString>;
4
- participantType: z.ZodDefault<z.ZodEnum<{
5
- traveler: "traveler";
6
- occupant: "occupant";
7
- }>>;
8
- travelerCategory: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
9
- child: "child";
10
- other: "other";
11
- adult: "adult";
12
- infant: "infant";
13
- senior: "senior";
14
- }>>>;
15
- firstName: z.ZodString;
16
- lastName: z.ZodString;
17
- email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
- phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19
- preferredLanguage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
- specialRequests: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21
- isPrimary: z.ZodDefault<z.ZodBoolean>;
22
- notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23
- }, z.core.$strip>;
24
- export declare const publicCreateBookingSessionItemSchema: z.ZodObject<{
25
- title: z.ZodString;
26
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27
- itemType: z.ZodDefault<z.ZodEnum<{
28
- service: "service";
29
- other: "other";
30
- unit: "unit";
31
- extra: "extra";
32
- fee: "fee";
33
- tax: "tax";
34
- discount: "discount";
35
- adjustment: "adjustment";
36
- accommodation: "accommodation";
37
- transport: "transport";
38
- }>>;
39
- quantity: z.ZodDefault<z.ZodNumber>;
40
- sellCurrency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
41
- unitSellAmountCents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
42
- totalSellAmountCents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
43
- costCurrency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
44
- unitCostAmountCents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
45
- totalCostAmountCents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
46
- notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
47
- productId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
48
- optionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
49
- optionUnitId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50
- pricingCategoryId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
51
- sourceSnapshotId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
52
- metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
53
- availabilitySlotId: z.ZodString;
54
- allocationType: z.ZodDefault<z.ZodEnum<{
55
- resource: "resource";
56
- unit: "unit";
57
- pickup: "pickup";
58
- }>>;
59
- }, z.core.$strip>;
60
- export declare const publicCreateBookingSessionSchema: z.ZodObject<{
61
- externalBookingRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
62
- communicationLanguage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
63
- sellCurrency: z.ZodString;
64
- baseCurrency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
65
- sellAmountCents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
66
- baseSellAmountCents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
67
- costAmountCents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
68
- baseCostAmountCents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
69
- marginPercent: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
70
- startDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
71
- endDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
72
- pax: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
73
- holdMinutes: z.ZodOptional<z.ZodNumber>;
74
- holdExpiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
75
- items: z.ZodArray<z.ZodObject<{
76
- title: z.ZodString;
77
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
78
- itemType: z.ZodDefault<z.ZodEnum<{
79
- service: "service";
80
- other: "other";
81
- unit: "unit";
82
- extra: "extra";
83
- fee: "fee";
84
- tax: "tax";
85
- discount: "discount";
86
- adjustment: "adjustment";
87
- accommodation: "accommodation";
88
- transport: "transport";
89
- }>>;
90
- quantity: z.ZodDefault<z.ZodNumber>;
91
- sellCurrency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
92
- unitSellAmountCents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
93
- totalSellAmountCents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
94
- costCurrency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
95
- unitCostAmountCents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
96
- totalCostAmountCents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
97
- notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98
- productId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
99
- optionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
100
- optionUnitId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
101
- pricingCategoryId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
102
- sourceSnapshotId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
103
- metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
104
- availabilitySlotId: z.ZodString;
105
- allocationType: z.ZodDefault<z.ZodEnum<{
106
- resource: "resource";
107
- unit: "unit";
108
- pickup: "pickup";
109
- }>>;
110
- }, z.core.$strip>>;
111
- travelers: z.ZodOptional<z.ZodArray<z.ZodObject<{
112
- id: z.ZodOptional<z.ZodString>;
113
- participantType: z.ZodDefault<z.ZodEnum<{
114
- traveler: "traveler";
115
- occupant: "occupant";
116
- }>>;
117
- travelerCategory: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
118
- child: "child";
119
- other: "other";
120
- adult: "adult";
121
- infant: "infant";
122
- senior: "senior";
123
- }>>>;
124
- firstName: z.ZodString;
125
- lastName: z.ZodString;
126
- email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
127
- phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
128
- preferredLanguage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
129
- specialRequests: z.ZodOptional<z.ZodNullable<z.ZodString>>;
130
- isPrimary: z.ZodDefault<z.ZodBoolean>;
131
- notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
132
- }, z.core.$strip>>>;
133
- }, z.core.$strip>;
134
- export declare const publicUpdateBookingSessionSchema: z.ZodObject<{
135
- externalBookingRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
136
- communicationLanguage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
137
- pax: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
138
- holdMinutes: z.ZodOptional<z.ZodNumber>;
139
- holdExpiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
140
- travelers: z.ZodOptional<z.ZodArray<z.ZodObject<{
141
- id: z.ZodOptional<z.ZodString>;
142
- participantType: z.ZodDefault<z.ZodEnum<{
143
- traveler: "traveler";
144
- occupant: "occupant";
145
- }>>;
146
- travelerCategory: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
147
- child: "child";
148
- other: "other";
149
- adult: "adult";
150
- infant: "infant";
151
- senior: "senior";
152
- }>>>;
153
- firstName: z.ZodString;
154
- lastName: z.ZodString;
155
- email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
156
- phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
157
- preferredLanguage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
158
- specialRequests: z.ZodOptional<z.ZodNullable<z.ZodString>>;
159
- isPrimary: z.ZodDefault<z.ZodBoolean>;
160
- notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
161
- }, z.core.$strip>>>;
162
- removedTravelerIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
163
- }, z.core.$strip>;
164
- export declare const publicBookingSessionMutationSchema: z.ZodObject<{
165
- note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
166
- }, z.core.$strip>;
167
- export declare const publicBookingSessionStateSchema: z.ZodObject<{
168
- sessionId: z.ZodString;
169
- stateKey: z.ZodLiteral<"wizard">;
170
- currentStep: z.ZodNullable<z.ZodString>;
171
- completedSteps: z.ZodArray<z.ZodString>;
172
- payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
173
- version: z.ZodNumber;
174
- createdAt: z.ZodString;
175
- updatedAt: z.ZodString;
176
- }, z.core.$strip>;
177
- export declare const publicUpsertBookingSessionStateSchema: z.ZodObject<{
178
- currentStep: z.ZodOptional<z.ZodNullable<z.ZodString>>;
179
- completedSteps: z.ZodOptional<z.ZodArray<z.ZodString>>;
180
- payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
181
- replacePayload: z.ZodDefault<z.ZodBoolean>;
182
- }, z.core.$strip>;
183
- export declare const publicBookingSessionRepriceSelectionSchema: z.ZodObject<{
184
- itemId: z.ZodString;
185
- optionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
186
- optionUnitId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
187
- pricingCategoryId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
188
- quantity: z.ZodOptional<z.ZodNumber>;
189
- }, z.core.$strip>;
190
- export declare const publicRepriceBookingSessionSchema: z.ZodObject<{
191
- catalogId: z.ZodOptional<z.ZodString>;
192
- applyToSession: z.ZodDefault<z.ZodBoolean>;
193
- selections: z.ZodArray<z.ZodObject<{
194
- itemId: z.ZodString;
195
- optionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
196
- optionUnitId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
197
- pricingCategoryId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
198
- quantity: z.ZodOptional<z.ZodNumber>;
199
- }, z.core.$strip>>;
200
- }, z.core.$strip>;
201
- export declare const publicBookingOverviewLookupQuerySchema: z.ZodObject<{
202
- email: z.ZodString;
203
- bookingId: z.ZodOptional<z.ZodString>;
204
- bookingNumber: z.ZodOptional<z.ZodString>;
205
- bookingCode: z.ZodOptional<z.ZodString>;
206
- }, z.core.$strip>;
207
- export declare const publicBookingOverviewAccessQuerySchema: z.ZodObject<{
208
- email: z.ZodOptional<z.ZodString>;
209
- bookingId: z.ZodOptional<z.ZodString>;
210
- bookingNumber: z.ZodOptional<z.ZodString>;
211
- bookingCode: z.ZodOptional<z.ZodString>;
212
- }, z.core.$strip>;
213
- export declare const publicGuestBookingLookupSchema: z.ZodObject<{
214
- bookingCode: z.ZodString;
215
- email: z.ZodString;
216
- }, z.core.$strip>;
217
- export declare const internalBookingOverviewLookupQuerySchema: z.ZodObject<{
218
- bookingId: z.ZodOptional<z.ZodString>;
219
- bookingNumber: z.ZodOptional<z.ZodString>;
220
- bookingCode: z.ZodOptional<z.ZodString>;
221
- email: z.ZodOptional<z.ZodString>;
222
- }, z.core.$strip>;
223
- export declare const publicBookingSessionTravelerSchema: z.ZodObject<{
224
- id: z.ZodString;
225
- participantType: z.ZodEnum<{
226
- other: "other";
227
- traveler: "traveler";
228
- occupant: "occupant";
229
- }>;
230
- travelerCategory: z.ZodNullable<z.ZodEnum<{
231
- child: "child";
232
- other: "other";
233
- adult: "adult";
234
- infant: "infant";
235
- senior: "senior";
236
- }>>;
237
- firstName: z.ZodString;
238
- lastName: z.ZodString;
239
- email: z.ZodNullable<z.ZodString>;
240
- phone: z.ZodNullable<z.ZodString>;
241
- preferredLanguage: z.ZodNullable<z.ZodString>;
242
- specialRequests: z.ZodNullable<z.ZodString>;
243
- isPrimary: z.ZodBoolean;
244
- notes: z.ZodNullable<z.ZodString>;
245
- }, z.core.$strip>;
246
- export declare const publicBookingSessionItemTravelerSchema: z.ZodObject<{
247
- id: z.ZodString;
248
- travelerId: z.ZodString;
249
- role: z.ZodEnum<{
250
- other: "other";
251
- traveler: "traveler";
252
- occupant: "occupant";
253
- beneficiary: "beneficiary";
254
- }>;
255
- isPrimary: z.ZodBoolean;
256
- }, z.core.$strip>;
257
- export declare const publicBookingSessionItemSchema: z.ZodObject<{
258
- id: z.ZodString;
259
- title: z.ZodString;
260
- description: z.ZodNullable<z.ZodString>;
261
- itemType: z.ZodEnum<{
262
- service: "service";
263
- other: "other";
264
- unit: "unit";
265
- extra: "extra";
266
- fee: "fee";
267
- tax: "tax";
268
- discount: "discount";
269
- adjustment: "adjustment";
270
- accommodation: "accommodation";
271
- transport: "transport";
272
- }>;
273
- status: z.ZodEnum<{
274
- expired: "expired";
275
- cancelled: "cancelled";
276
- draft: "draft";
277
- on_hold: "on_hold";
278
- confirmed: "confirmed";
279
- fulfilled: "fulfilled";
280
- }>;
281
- serviceDate: z.ZodNullable<z.ZodString>;
282
- startsAt: z.ZodNullable<z.ZodString>;
283
- endsAt: z.ZodNullable<z.ZodString>;
284
- quantity: z.ZodNumber;
285
- sellCurrency: z.ZodString;
286
- unitSellAmountCents: z.ZodNullable<z.ZodNumber>;
287
- totalSellAmountCents: z.ZodNullable<z.ZodNumber>;
288
- costCurrency: z.ZodNullable<z.ZodString>;
289
- unitCostAmountCents: z.ZodNullable<z.ZodNumber>;
290
- totalCostAmountCents: z.ZodNullable<z.ZodNumber>;
291
- notes: z.ZodNullable<z.ZodString>;
292
- productId: z.ZodNullable<z.ZodString>;
293
- optionId: z.ZodNullable<z.ZodString>;
294
- optionUnitId: z.ZodNullable<z.ZodString>;
295
- pricingCategoryId: z.ZodNullable<z.ZodString>;
296
- travelerLinks: z.ZodArray<z.ZodObject<{
297
- id: z.ZodString;
298
- travelerId: z.ZodString;
299
- role: z.ZodEnum<{
300
- other: "other";
301
- traveler: "traveler";
302
- occupant: "occupant";
303
- beneficiary: "beneficiary";
304
- }>;
305
- isPrimary: z.ZodBoolean;
306
- }, z.core.$strip>>;
307
- }, z.core.$strip>;
308
- export declare const publicBookingSessionAllocationSchema: z.ZodObject<{
309
- id: z.ZodString;
310
- bookingItemId: z.ZodNullable<z.ZodString>;
311
- productId: z.ZodNullable<z.ZodString>;
312
- optionId: z.ZodNullable<z.ZodString>;
313
- optionUnitId: z.ZodNullable<z.ZodString>;
314
- pricingCategoryId: z.ZodNullable<z.ZodString>;
315
- availabilitySlotId: z.ZodNullable<z.ZodString>;
316
- quantity: z.ZodNumber;
317
- allocationType: z.ZodEnum<{
318
- resource: "resource";
319
- unit: "unit";
320
- pickup: "pickup";
321
- }>;
322
- status: z.ZodEnum<{
323
- expired: "expired";
324
- cancelled: "cancelled";
325
- confirmed: "confirmed";
326
- fulfilled: "fulfilled";
327
- held: "held";
328
- released: "released";
329
- }>;
330
- holdExpiresAt: z.ZodNullable<z.ZodString>;
331
- confirmedAt: z.ZodNullable<z.ZodString>;
332
- releasedAt: z.ZodNullable<z.ZodString>;
333
- }, z.core.$strip>;
334
- export declare const publicBookingSessionChecklistSchema: z.ZodObject<{
335
- hasTravelers: z.ZodBoolean;
336
- hasPrimaryTraveler: z.ZodBoolean;
337
- hasItems: z.ZodBoolean;
338
- hasAllocations: z.ZodBoolean;
339
- readyForConfirmation: z.ZodBoolean;
340
- }, z.core.$strip>;
341
- export declare const publicCheckoutCapabilitySchema: z.ZodObject<{
342
- token: z.ZodString;
343
- expiresAt: z.ZodString;
344
- actions: z.ZodArray<z.ZodEnum<{
345
- "session:read": "session:read";
346
- "session:update": "session:update";
347
- "session:reprice": "session:reprice";
348
- "session:finalize": "session:finalize";
349
- "payment:read": "payment:read";
350
- "payment:start": "payment:start";
351
- }>>;
352
- }, z.core.$strip>;
353
- export declare const publicGuestBookingAccessSchema: z.ZodObject<{
354
- token: z.ZodString;
355
- expiresAt: z.ZodString;
356
- actions: z.ZodArray<z.ZodEnum<{
357
- "payment:read": "payment:read";
358
- "payment:start": "payment:start";
359
- "overview:read": "overview:read";
360
- }>>;
361
- }, z.core.$strip>;
362
- export declare const publicBookingSessionSchema: z.ZodObject<{
363
- sessionId: z.ZodString;
364
- bookingNumber: z.ZodString;
365
- status: z.ZodEnum<{
366
- expired: "expired";
367
- cancelled: "cancelled";
368
- completed: "completed";
369
- draft: "draft";
370
- on_hold: "on_hold";
371
- awaiting_payment: "awaiting_payment";
372
- confirmed: "confirmed";
373
- in_progress: "in_progress";
374
- }>;
375
- externalBookingRef: z.ZodNullable<z.ZodString>;
376
- communicationLanguage: z.ZodNullable<z.ZodString>;
377
- sellCurrency: z.ZodString;
378
- sellAmountCents: z.ZodNullable<z.ZodNumber>;
379
- startDate: z.ZodNullable<z.ZodString>;
380
- endDate: z.ZodNullable<z.ZodString>;
381
- pax: z.ZodNullable<z.ZodNumber>;
382
- holdExpiresAt: z.ZodNullable<z.ZodString>;
383
- confirmedAt: z.ZodNullable<z.ZodString>;
384
- expiredAt: z.ZodNullable<z.ZodString>;
385
- cancelledAt: z.ZodNullable<z.ZodString>;
386
- completedAt: z.ZodNullable<z.ZodString>;
387
- travelers: z.ZodArray<z.ZodObject<{
388
- id: z.ZodString;
389
- participantType: z.ZodEnum<{
390
- other: "other";
391
- traveler: "traveler";
392
- occupant: "occupant";
393
- }>;
394
- travelerCategory: z.ZodNullable<z.ZodEnum<{
395
- child: "child";
396
- other: "other";
397
- adult: "adult";
398
- infant: "infant";
399
- senior: "senior";
400
- }>>;
401
- firstName: z.ZodString;
402
- lastName: z.ZodString;
403
- email: z.ZodNullable<z.ZodString>;
404
- phone: z.ZodNullable<z.ZodString>;
405
- preferredLanguage: z.ZodNullable<z.ZodString>;
406
- specialRequests: z.ZodNullable<z.ZodString>;
407
- isPrimary: z.ZodBoolean;
408
- notes: z.ZodNullable<z.ZodString>;
409
- }, z.core.$strip>>;
410
- items: z.ZodArray<z.ZodObject<{
411
- id: z.ZodString;
412
- title: z.ZodString;
413
- description: z.ZodNullable<z.ZodString>;
414
- itemType: z.ZodEnum<{
415
- service: "service";
416
- other: "other";
417
- unit: "unit";
418
- extra: "extra";
419
- fee: "fee";
420
- tax: "tax";
421
- discount: "discount";
422
- adjustment: "adjustment";
423
- accommodation: "accommodation";
424
- transport: "transport";
425
- }>;
426
- status: z.ZodEnum<{
427
- expired: "expired";
428
- cancelled: "cancelled";
429
- draft: "draft";
430
- on_hold: "on_hold";
431
- confirmed: "confirmed";
432
- fulfilled: "fulfilled";
433
- }>;
434
- serviceDate: z.ZodNullable<z.ZodString>;
435
- startsAt: z.ZodNullable<z.ZodString>;
436
- endsAt: z.ZodNullable<z.ZodString>;
437
- quantity: z.ZodNumber;
438
- sellCurrency: z.ZodString;
439
- unitSellAmountCents: z.ZodNullable<z.ZodNumber>;
440
- totalSellAmountCents: z.ZodNullable<z.ZodNumber>;
441
- costCurrency: z.ZodNullable<z.ZodString>;
442
- unitCostAmountCents: z.ZodNullable<z.ZodNumber>;
443
- totalCostAmountCents: z.ZodNullable<z.ZodNumber>;
444
- notes: z.ZodNullable<z.ZodString>;
445
- productId: z.ZodNullable<z.ZodString>;
446
- optionId: z.ZodNullable<z.ZodString>;
447
- optionUnitId: z.ZodNullable<z.ZodString>;
448
- pricingCategoryId: z.ZodNullable<z.ZodString>;
449
- travelerLinks: z.ZodArray<z.ZodObject<{
450
- id: z.ZodString;
451
- travelerId: z.ZodString;
452
- role: z.ZodEnum<{
453
- other: "other";
454
- traveler: "traveler";
455
- occupant: "occupant";
456
- beneficiary: "beneficiary";
457
- }>;
458
- isPrimary: z.ZodBoolean;
459
- }, z.core.$strip>>;
460
- }, z.core.$strip>>;
461
- allocations: z.ZodArray<z.ZodObject<{
462
- id: z.ZodString;
463
- bookingItemId: z.ZodNullable<z.ZodString>;
464
- productId: z.ZodNullable<z.ZodString>;
465
- optionId: z.ZodNullable<z.ZodString>;
466
- optionUnitId: z.ZodNullable<z.ZodString>;
467
- pricingCategoryId: z.ZodNullable<z.ZodString>;
468
- availabilitySlotId: z.ZodNullable<z.ZodString>;
469
- quantity: z.ZodNumber;
470
- allocationType: z.ZodEnum<{
471
- resource: "resource";
472
- unit: "unit";
473
- pickup: "pickup";
474
- }>;
475
- status: z.ZodEnum<{
476
- expired: "expired";
477
- cancelled: "cancelled";
478
- confirmed: "confirmed";
479
- fulfilled: "fulfilled";
480
- held: "held";
481
- released: "released";
482
- }>;
483
- holdExpiresAt: z.ZodNullable<z.ZodString>;
484
- confirmedAt: z.ZodNullable<z.ZodString>;
485
- releasedAt: z.ZodNullable<z.ZodString>;
486
- }, z.core.$strip>>;
487
- checklist: z.ZodObject<{
488
- hasTravelers: z.ZodBoolean;
489
- hasPrimaryTraveler: z.ZodBoolean;
490
- hasItems: z.ZodBoolean;
491
- hasAllocations: z.ZodBoolean;
492
- readyForConfirmation: z.ZodBoolean;
493
- }, z.core.$strip>;
494
- state: z.ZodNullable<z.ZodObject<{
495
- sessionId: z.ZodString;
496
- stateKey: z.ZodLiteral<"wizard">;
497
- currentStep: z.ZodNullable<z.ZodString>;
498
- completedSteps: z.ZodArray<z.ZodString>;
499
- payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
500
- version: z.ZodNumber;
501
- createdAt: z.ZodString;
502
- updatedAt: z.ZodString;
503
- }, z.core.$strip>>;
504
- checkoutCapability: z.ZodOptional<z.ZodObject<{
505
- token: z.ZodString;
506
- expiresAt: z.ZodString;
507
- actions: z.ZodArray<z.ZodEnum<{
508
- "session:read": "session:read";
509
- "session:update": "session:update";
510
- "session:reprice": "session:reprice";
511
- "session:finalize": "session:finalize";
512
- "payment:read": "payment:read";
513
- "payment:start": "payment:start";
514
- }>>;
515
- }, z.core.$strip>>;
516
- }, z.core.$strip>;
517
- export declare const publicBookingSessionRepriceItemSchema: z.ZodObject<{
518
- itemId: z.ZodString;
519
- title: z.ZodString;
520
- productId: z.ZodNullable<z.ZodString>;
521
- optionId: z.ZodNullable<z.ZodString>;
522
- optionUnitId: z.ZodNullable<z.ZodString>;
523
- optionUnitName: z.ZodNullable<z.ZodString>;
524
- optionUnitType: z.ZodNullable<z.ZodString>;
525
- pricingCategoryId: z.ZodNullable<z.ZodString>;
526
- quantity: z.ZodNumber;
527
- pricingMode: z.ZodString;
528
- unitSellAmountCents: z.ZodNullable<z.ZodNumber>;
529
- totalSellAmountCents: z.ZodNullable<z.ZodNumber>;
530
- warnings: z.ZodArray<z.ZodString>;
531
- }, z.core.$strip>;
532
- export declare const publicBookingSessionRepriceSummarySchema: z.ZodObject<{
533
- sessionId: z.ZodString;
534
- catalogId: z.ZodNullable<z.ZodString>;
535
- currencyCode: z.ZodString;
536
- totalSellAmountCents: z.ZodNumber;
537
- items: z.ZodArray<z.ZodObject<{
538
- itemId: z.ZodString;
539
- title: z.ZodString;
540
- productId: z.ZodNullable<z.ZodString>;
541
- optionId: z.ZodNullable<z.ZodString>;
542
- optionUnitId: z.ZodNullable<z.ZodString>;
543
- optionUnitName: z.ZodNullable<z.ZodString>;
544
- optionUnitType: z.ZodNullable<z.ZodString>;
545
- pricingCategoryId: z.ZodNullable<z.ZodString>;
546
- quantity: z.ZodNumber;
547
- pricingMode: z.ZodString;
548
- unitSellAmountCents: z.ZodNullable<z.ZodNumber>;
549
- totalSellAmountCents: z.ZodNullable<z.ZodNumber>;
550
- warnings: z.ZodArray<z.ZodString>;
551
- }, z.core.$strip>>;
552
- warnings: z.ZodArray<z.ZodString>;
553
- appliedToSession: z.ZodBoolean;
554
- }, z.core.$strip>;
555
- export declare const publicBookingSessionRepriceResultSchema: z.ZodObject<{
556
- pricing: z.ZodObject<{
557
- sessionId: z.ZodString;
558
- catalogId: z.ZodNullable<z.ZodString>;
559
- currencyCode: z.ZodString;
560
- totalSellAmountCents: z.ZodNumber;
561
- items: z.ZodArray<z.ZodObject<{
562
- itemId: z.ZodString;
563
- title: z.ZodString;
564
- productId: z.ZodNullable<z.ZodString>;
565
- optionId: z.ZodNullable<z.ZodString>;
566
- optionUnitId: z.ZodNullable<z.ZodString>;
567
- optionUnitName: z.ZodNullable<z.ZodString>;
568
- optionUnitType: z.ZodNullable<z.ZodString>;
569
- pricingCategoryId: z.ZodNullable<z.ZodString>;
570
- quantity: z.ZodNumber;
571
- pricingMode: z.ZodString;
572
- unitSellAmountCents: z.ZodNullable<z.ZodNumber>;
573
- totalSellAmountCents: z.ZodNullable<z.ZodNumber>;
574
- warnings: z.ZodArray<z.ZodString>;
575
- }, z.core.$strip>>;
576
- warnings: z.ZodArray<z.ZodString>;
577
- appliedToSession: z.ZodBoolean;
578
- }, z.core.$strip>;
579
- session: z.ZodNullable<z.ZodObject<{
580
- sessionId: z.ZodString;
581
- bookingNumber: z.ZodString;
582
- status: z.ZodEnum<{
583
- expired: "expired";
584
- cancelled: "cancelled";
585
- completed: "completed";
586
- draft: "draft";
587
- on_hold: "on_hold";
588
- awaiting_payment: "awaiting_payment";
589
- confirmed: "confirmed";
590
- in_progress: "in_progress";
591
- }>;
592
- externalBookingRef: z.ZodNullable<z.ZodString>;
593
- communicationLanguage: z.ZodNullable<z.ZodString>;
594
- sellCurrency: z.ZodString;
595
- sellAmountCents: z.ZodNullable<z.ZodNumber>;
596
- startDate: z.ZodNullable<z.ZodString>;
597
- endDate: z.ZodNullable<z.ZodString>;
598
- pax: z.ZodNullable<z.ZodNumber>;
599
- holdExpiresAt: z.ZodNullable<z.ZodString>;
600
- confirmedAt: z.ZodNullable<z.ZodString>;
601
- expiredAt: z.ZodNullable<z.ZodString>;
602
- cancelledAt: z.ZodNullable<z.ZodString>;
603
- completedAt: z.ZodNullable<z.ZodString>;
604
- travelers: z.ZodArray<z.ZodObject<{
605
- id: z.ZodString;
606
- participantType: z.ZodEnum<{
607
- other: "other";
608
- traveler: "traveler";
609
- occupant: "occupant";
610
- }>;
611
- travelerCategory: z.ZodNullable<z.ZodEnum<{
612
- child: "child";
613
- other: "other";
614
- adult: "adult";
615
- infant: "infant";
616
- senior: "senior";
617
- }>>;
618
- firstName: z.ZodString;
619
- lastName: z.ZodString;
620
- email: z.ZodNullable<z.ZodString>;
621
- phone: z.ZodNullable<z.ZodString>;
622
- preferredLanguage: z.ZodNullable<z.ZodString>;
623
- specialRequests: z.ZodNullable<z.ZodString>;
624
- isPrimary: z.ZodBoolean;
625
- notes: z.ZodNullable<z.ZodString>;
626
- }, z.core.$strip>>;
627
- items: z.ZodArray<z.ZodObject<{
628
- id: z.ZodString;
629
- title: z.ZodString;
630
- description: z.ZodNullable<z.ZodString>;
631
- itemType: z.ZodEnum<{
632
- service: "service";
633
- other: "other";
634
- unit: "unit";
635
- extra: "extra";
636
- fee: "fee";
637
- tax: "tax";
638
- discount: "discount";
639
- adjustment: "adjustment";
640
- accommodation: "accommodation";
641
- transport: "transport";
642
- }>;
643
- status: z.ZodEnum<{
644
- expired: "expired";
645
- cancelled: "cancelled";
646
- draft: "draft";
647
- on_hold: "on_hold";
648
- confirmed: "confirmed";
649
- fulfilled: "fulfilled";
650
- }>;
651
- serviceDate: z.ZodNullable<z.ZodString>;
652
- startsAt: z.ZodNullable<z.ZodString>;
653
- endsAt: z.ZodNullable<z.ZodString>;
654
- quantity: z.ZodNumber;
655
- sellCurrency: z.ZodString;
656
- unitSellAmountCents: z.ZodNullable<z.ZodNumber>;
657
- totalSellAmountCents: z.ZodNullable<z.ZodNumber>;
658
- costCurrency: z.ZodNullable<z.ZodString>;
659
- unitCostAmountCents: z.ZodNullable<z.ZodNumber>;
660
- totalCostAmountCents: z.ZodNullable<z.ZodNumber>;
661
- notes: z.ZodNullable<z.ZodString>;
662
- productId: z.ZodNullable<z.ZodString>;
663
- optionId: z.ZodNullable<z.ZodString>;
664
- optionUnitId: z.ZodNullable<z.ZodString>;
665
- pricingCategoryId: z.ZodNullable<z.ZodString>;
666
- travelerLinks: z.ZodArray<z.ZodObject<{
667
- id: z.ZodString;
668
- travelerId: z.ZodString;
669
- role: z.ZodEnum<{
670
- other: "other";
671
- traveler: "traveler";
672
- occupant: "occupant";
673
- beneficiary: "beneficiary";
674
- }>;
675
- isPrimary: z.ZodBoolean;
676
- }, z.core.$strip>>;
677
- }, z.core.$strip>>;
678
- allocations: z.ZodArray<z.ZodObject<{
679
- id: z.ZodString;
680
- bookingItemId: z.ZodNullable<z.ZodString>;
681
- productId: z.ZodNullable<z.ZodString>;
682
- optionId: z.ZodNullable<z.ZodString>;
683
- optionUnitId: z.ZodNullable<z.ZodString>;
684
- pricingCategoryId: z.ZodNullable<z.ZodString>;
685
- availabilitySlotId: z.ZodNullable<z.ZodString>;
686
- quantity: z.ZodNumber;
687
- allocationType: z.ZodEnum<{
688
- resource: "resource";
689
- unit: "unit";
690
- pickup: "pickup";
691
- }>;
692
- status: z.ZodEnum<{
693
- expired: "expired";
694
- cancelled: "cancelled";
695
- confirmed: "confirmed";
696
- fulfilled: "fulfilled";
697
- held: "held";
698
- released: "released";
699
- }>;
700
- holdExpiresAt: z.ZodNullable<z.ZodString>;
701
- confirmedAt: z.ZodNullable<z.ZodString>;
702
- releasedAt: z.ZodNullable<z.ZodString>;
703
- }, z.core.$strip>>;
704
- checklist: z.ZodObject<{
705
- hasTravelers: z.ZodBoolean;
706
- hasPrimaryTraveler: z.ZodBoolean;
707
- hasItems: z.ZodBoolean;
708
- hasAllocations: z.ZodBoolean;
709
- readyForConfirmation: z.ZodBoolean;
710
- }, z.core.$strip>;
711
- state: z.ZodNullable<z.ZodObject<{
712
- sessionId: z.ZodString;
713
- stateKey: z.ZodLiteral<"wizard">;
714
- currentStep: z.ZodNullable<z.ZodString>;
715
- completedSteps: z.ZodArray<z.ZodString>;
716
- payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
717
- version: z.ZodNumber;
718
- createdAt: z.ZodString;
719
- updatedAt: z.ZodString;
720
- }, z.core.$strip>>;
721
- checkoutCapability: z.ZodOptional<z.ZodObject<{
722
- token: z.ZodString;
723
- expiresAt: z.ZodString;
724
- actions: z.ZodArray<z.ZodEnum<{
725
- "session:read": "session:read";
726
- "session:update": "session:update";
727
- "session:reprice": "session:reprice";
728
- "session:finalize": "session:finalize";
729
- "payment:read": "payment:read";
730
- "payment:start": "payment:start";
731
- }>>;
732
- }, z.core.$strip>>;
733
- }, z.core.$strip>>;
734
- }, z.core.$strip>;
735
- export declare const publicBookingOverviewTravelerSchema: z.ZodObject<{
736
- id: z.ZodString;
737
- participantType: z.ZodEnum<{
738
- other: "other";
739
- traveler: "traveler";
740
- occupant: "occupant";
741
- }>;
742
- firstName: z.ZodString;
743
- lastName: z.ZodString;
744
- isPrimary: z.ZodBoolean;
745
- }, z.core.$strip>;
746
- export declare const publicBookingOverviewDocumentSchema: z.ZodObject<{
747
- id: z.ZodString;
748
- travelerId: z.ZodNullable<z.ZodString>;
749
- type: z.ZodEnum<{
750
- visa: "visa";
751
- other: "other";
752
- insurance: "insurance";
753
- health: "health";
754
- passport_copy: "passport_copy";
755
- }>;
756
- fileName: z.ZodString;
757
- fileUrl: z.ZodString;
758
- }, z.core.$strip>;
759
- export declare const publicBookingOverviewFulfillmentSchema: z.ZodObject<{
760
- id: z.ZodString;
761
- bookingItemId: z.ZodNullable<z.ZodString>;
762
- travelerId: z.ZodNullable<z.ZodString>;
763
- fulfillmentType: z.ZodEnum<{
764
- other: "other";
765
- voucher: "voucher";
766
- ticket: "ticket";
767
- pdf: "pdf";
768
- qr_code: "qr_code";
769
- barcode: "barcode";
770
- mobile: "mobile";
771
- }>;
772
- deliveryChannel: z.ZodEnum<{
773
- api: "api";
774
- email: "email";
775
- other: "other";
776
- download: "download";
777
- wallet: "wallet";
778
- }>;
779
- status: z.ZodEnum<{
780
- failed: "failed";
781
- pending: "pending";
782
- revoked: "revoked";
783
- issued: "issued";
784
- reissued: "reissued";
785
- }>;
786
- artifactUrl: z.ZodNullable<z.ZodString>;
787
- }, z.core.$strip>;
788
- export declare const publicBookingOverviewSchema: z.ZodObject<{
789
- bookingId: z.ZodString;
790
- bookingNumber: z.ZodString;
791
- status: z.ZodEnum<{
792
- expired: "expired";
793
- cancelled: "cancelled";
794
- completed: "completed";
795
- draft: "draft";
796
- on_hold: "on_hold";
797
- awaiting_payment: "awaiting_payment";
798
- confirmed: "confirmed";
799
- in_progress: "in_progress";
800
- }>;
801
- sellCurrency: z.ZodString;
802
- sellAmountCents: z.ZodNullable<z.ZodNumber>;
803
- startDate: z.ZodNullable<z.ZodString>;
804
- endDate: z.ZodNullable<z.ZodString>;
805
- pax: z.ZodNullable<z.ZodNumber>;
806
- confirmedAt: z.ZodNullable<z.ZodString>;
807
- cancelledAt: z.ZodNullable<z.ZodString>;
808
- completedAt: z.ZodNullable<z.ZodString>;
809
- travelers: z.ZodArray<z.ZodObject<{
810
- id: z.ZodString;
811
- participantType: z.ZodEnum<{
812
- other: "other";
813
- traveler: "traveler";
814
- occupant: "occupant";
815
- }>;
816
- firstName: z.ZodString;
817
- lastName: z.ZodString;
818
- isPrimary: z.ZodBoolean;
819
- }, z.core.$strip>>;
820
- items: z.ZodArray<z.ZodObject<{
821
- id: z.ZodString;
822
- title: z.ZodString;
823
- description: z.ZodNullable<z.ZodString>;
824
- itemType: z.ZodEnum<{
825
- service: "service";
826
- other: "other";
827
- unit: "unit";
828
- extra: "extra";
829
- fee: "fee";
830
- tax: "tax";
831
- discount: "discount";
832
- adjustment: "adjustment";
833
- accommodation: "accommodation";
834
- transport: "transport";
835
- }>;
836
- status: z.ZodEnum<{
837
- expired: "expired";
838
- cancelled: "cancelled";
839
- draft: "draft";
840
- on_hold: "on_hold";
841
- confirmed: "confirmed";
842
- fulfilled: "fulfilled";
843
- }>;
844
- serviceDate: z.ZodNullable<z.ZodString>;
845
- startsAt: z.ZodNullable<z.ZodString>;
846
- endsAt: z.ZodNullable<z.ZodString>;
847
- quantity: z.ZodNumber;
848
- sellCurrency: z.ZodString;
849
- unitSellAmountCents: z.ZodNullable<z.ZodNumber>;
850
- totalSellAmountCents: z.ZodNullable<z.ZodNumber>;
851
- costCurrency: z.ZodNullable<z.ZodString>;
852
- unitCostAmountCents: z.ZodNullable<z.ZodNumber>;
853
- totalCostAmountCents: z.ZodNullable<z.ZodNumber>;
854
- notes: z.ZodNullable<z.ZodString>;
855
- productId: z.ZodNullable<z.ZodString>;
856
- optionId: z.ZodNullable<z.ZodString>;
857
- optionUnitId: z.ZodNullable<z.ZodString>;
858
- pricingCategoryId: z.ZodNullable<z.ZodString>;
859
- travelerLinks: z.ZodArray<z.ZodObject<{
860
- id: z.ZodString;
861
- travelerId: z.ZodString;
862
- role: z.ZodEnum<{
863
- other: "other";
864
- traveler: "traveler";
865
- occupant: "occupant";
866
- beneficiary: "beneficiary";
867
- }>;
868
- isPrimary: z.ZodBoolean;
869
- }, z.core.$strip>>;
870
- }, z.core.$strip>>;
871
- documents: z.ZodArray<z.ZodObject<{
872
- id: z.ZodString;
873
- travelerId: z.ZodNullable<z.ZodString>;
874
- type: z.ZodEnum<{
875
- visa: "visa";
876
- other: "other";
877
- insurance: "insurance";
878
- health: "health";
879
- passport_copy: "passport_copy";
880
- }>;
881
- fileName: z.ZodString;
882
- fileUrl: z.ZodString;
883
- }, z.core.$strip>>;
884
- fulfillments: z.ZodArray<z.ZodObject<{
885
- id: z.ZodString;
886
- bookingItemId: z.ZodNullable<z.ZodString>;
887
- travelerId: z.ZodNullable<z.ZodString>;
888
- fulfillmentType: z.ZodEnum<{
889
- other: "other";
890
- voucher: "voucher";
891
- ticket: "ticket";
892
- pdf: "pdf";
893
- qr_code: "qr_code";
894
- barcode: "barcode";
895
- mobile: "mobile";
896
- }>;
897
- deliveryChannel: z.ZodEnum<{
898
- api: "api";
899
- email: "email";
900
- other: "other";
901
- download: "download";
902
- wallet: "wallet";
903
- }>;
904
- status: z.ZodEnum<{
905
- failed: "failed";
906
- pending: "pending";
907
- revoked: "revoked";
908
- issued: "issued";
909
- reissued: "reissued";
910
- }>;
911
- artifactUrl: z.ZodNullable<z.ZodString>;
912
- }, z.core.$strip>>;
913
- }, z.core.$strip>;
914
- export declare const publicGuestBookingLookupResponseSchema: z.ZodObject<{
915
- overview: z.ZodObject<{
916
- bookingId: z.ZodString;
917
- bookingNumber: z.ZodString;
918
- status: z.ZodEnum<{
919
- expired: "expired";
920
- cancelled: "cancelled";
921
- completed: "completed";
922
- draft: "draft";
923
- on_hold: "on_hold";
924
- awaiting_payment: "awaiting_payment";
925
- confirmed: "confirmed";
926
- in_progress: "in_progress";
927
- }>;
928
- sellCurrency: z.ZodString;
929
- sellAmountCents: z.ZodNullable<z.ZodNumber>;
930
- startDate: z.ZodNullable<z.ZodString>;
931
- endDate: z.ZodNullable<z.ZodString>;
932
- pax: z.ZodNullable<z.ZodNumber>;
933
- confirmedAt: z.ZodNullable<z.ZodString>;
934
- cancelledAt: z.ZodNullable<z.ZodString>;
935
- completedAt: z.ZodNullable<z.ZodString>;
936
- travelers: z.ZodArray<z.ZodObject<{
937
- id: z.ZodString;
938
- participantType: z.ZodEnum<{
939
- other: "other";
940
- traveler: "traveler";
941
- occupant: "occupant";
942
- }>;
943
- firstName: z.ZodString;
944
- lastName: z.ZodString;
945
- isPrimary: z.ZodBoolean;
946
- }, z.core.$strip>>;
947
- items: z.ZodArray<z.ZodObject<{
948
- id: z.ZodString;
949
- title: z.ZodString;
950
- description: z.ZodNullable<z.ZodString>;
951
- itemType: z.ZodEnum<{
952
- service: "service";
953
- other: "other";
954
- unit: "unit";
955
- extra: "extra";
956
- fee: "fee";
957
- tax: "tax";
958
- discount: "discount";
959
- adjustment: "adjustment";
960
- accommodation: "accommodation";
961
- transport: "transport";
962
- }>;
963
- status: z.ZodEnum<{
964
- expired: "expired";
965
- cancelled: "cancelled";
966
- draft: "draft";
967
- on_hold: "on_hold";
968
- confirmed: "confirmed";
969
- fulfilled: "fulfilled";
970
- }>;
971
- serviceDate: z.ZodNullable<z.ZodString>;
972
- startsAt: z.ZodNullable<z.ZodString>;
973
- endsAt: z.ZodNullable<z.ZodString>;
974
- quantity: z.ZodNumber;
975
- sellCurrency: z.ZodString;
976
- unitSellAmountCents: z.ZodNullable<z.ZodNumber>;
977
- totalSellAmountCents: z.ZodNullable<z.ZodNumber>;
978
- costCurrency: z.ZodNullable<z.ZodString>;
979
- unitCostAmountCents: z.ZodNullable<z.ZodNumber>;
980
- totalCostAmountCents: z.ZodNullable<z.ZodNumber>;
981
- notes: z.ZodNullable<z.ZodString>;
982
- productId: z.ZodNullable<z.ZodString>;
983
- optionId: z.ZodNullable<z.ZodString>;
984
- optionUnitId: z.ZodNullable<z.ZodString>;
985
- pricingCategoryId: z.ZodNullable<z.ZodString>;
986
- travelerLinks: z.ZodArray<z.ZodObject<{
987
- id: z.ZodString;
988
- travelerId: z.ZodString;
989
- role: z.ZodEnum<{
990
- other: "other";
991
- traveler: "traveler";
992
- occupant: "occupant";
993
- beneficiary: "beneficiary";
994
- }>;
995
- isPrimary: z.ZodBoolean;
996
- }, z.core.$strip>>;
997
- }, z.core.$strip>>;
998
- documents: z.ZodArray<z.ZodObject<{
999
- id: z.ZodString;
1000
- travelerId: z.ZodNullable<z.ZodString>;
1001
- type: z.ZodEnum<{
1002
- visa: "visa";
1003
- other: "other";
1004
- insurance: "insurance";
1005
- health: "health";
1006
- passport_copy: "passport_copy";
1007
- }>;
1008
- fileName: z.ZodString;
1009
- fileUrl: z.ZodString;
1010
- }, z.core.$strip>>;
1011
- fulfillments: z.ZodArray<z.ZodObject<{
1012
- id: z.ZodString;
1013
- bookingItemId: z.ZodNullable<z.ZodString>;
1014
- travelerId: z.ZodNullable<z.ZodString>;
1015
- fulfillmentType: z.ZodEnum<{
1016
- other: "other";
1017
- voucher: "voucher";
1018
- ticket: "ticket";
1019
- pdf: "pdf";
1020
- qr_code: "qr_code";
1021
- barcode: "barcode";
1022
- mobile: "mobile";
1023
- }>;
1024
- deliveryChannel: z.ZodEnum<{
1025
- api: "api";
1026
- email: "email";
1027
- other: "other";
1028
- download: "download";
1029
- wallet: "wallet";
1030
- }>;
1031
- status: z.ZodEnum<{
1032
- failed: "failed";
1033
- pending: "pending";
1034
- revoked: "revoked";
1035
- issued: "issued";
1036
- reissued: "reissued";
1037
- }>;
1038
- artifactUrl: z.ZodNullable<z.ZodString>;
1039
- }, z.core.$strip>>;
1040
- }, z.core.$strip>;
1041
- guestBookingAccess: z.ZodObject<{
1042
- token: z.ZodString;
1043
- expiresAt: z.ZodString;
1044
- actions: z.ZodArray<z.ZodEnum<{
1045
- "payment:read": "payment:read";
1046
- "payment:start": "payment:start";
1047
- "overview:read": "overview:read";
1048
- }>>;
1049
- }, z.core.$strip>;
1050
- }, z.core.$strip>;
1051
- export type PublicCreateBookingSessionInput = z.infer<typeof publicCreateBookingSessionSchema>;
1052
- export type PublicUpdateBookingSessionInput = z.infer<typeof publicUpdateBookingSessionSchema>;
1053
- export type PublicBookingSessionMutationInput = z.infer<typeof publicBookingSessionMutationSchema>;
1054
- export type PublicCheckoutCapability = z.infer<typeof publicCheckoutCapabilitySchema>;
1055
- export type PublicGuestBookingAccess = z.infer<typeof publicGuestBookingAccessSchema>;
1056
- export type PublicBookingSessionState = z.infer<typeof publicBookingSessionStateSchema>;
1057
- export type PublicUpsertBookingSessionStateInput = z.infer<typeof publicUpsertBookingSessionStateSchema>;
1058
- export type PublicBookingSessionRepriceInput = z.infer<typeof publicRepriceBookingSessionSchema>;
1059
- export type PublicBookingOverviewLookupQuery = z.infer<typeof publicBookingOverviewLookupQuerySchema>;
1060
- export type PublicBookingOverviewAccessQuery = z.infer<typeof publicBookingOverviewAccessQuerySchema>;
1061
- export type PublicGuestBookingLookupInput = z.infer<typeof publicGuestBookingLookupSchema>;
1062
- export type PublicGuestBookingLookupResponse = z.infer<typeof publicGuestBookingLookupResponseSchema>;
1063
- export type InternalBookingOverviewLookupQuery = z.infer<typeof internalBookingOverviewLookupQuerySchema>;
1
+ export * from "@voyantjs/bookings-contracts";
1064
2
  //# sourceMappingURL=validation-public.d.ts.map