@voyantjs/bookings-react 0.34.0 → 0.37.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.
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/index.js +1 -0
- package/dist/hooks/use-booking-cancel-mutation.d.ts +9 -0
- package/dist/hooks/use-booking-cancel-mutation.d.ts.map +1 -1
- package/dist/hooks/use-booking-convert-mutation.d.ts +9 -0
- package/dist/hooks/use-booking-convert-mutation.d.ts.map +1 -1
- package/dist/hooks/use-booking-documents.d.ts +2 -2
- package/dist/hooks/use-booking-dual-create-mutation.d.ts +36 -0
- package/dist/hooks/use-booking-dual-create-mutation.d.ts.map +1 -1
- package/dist/hooks/use-booking-group.d.ts +9 -0
- package/dist/hooks/use-booking-group.d.ts.map +1 -1
- package/dist/hooks/use-booking-item-participants.d.ts +1 -1
- package/dist/hooks/use-booking-item-travelers.d.ts +2 -2
- package/dist/hooks/use-booking-mutation.d.ts +18 -0
- package/dist/hooks/use-booking-mutation.d.ts.map +1 -1
- package/dist/hooks/use-booking-quick-create-mutation.d.ts +21 -0
- package/dist/hooks/use-booking-quick-create-mutation.d.ts.map +1 -1
- package/dist/hooks/use-booking-status-mutation.d.ts +18 -0
- package/dist/hooks/use-booking-status-mutation.d.ts.map +1 -1
- package/dist/hooks/use-booking.d.ts +9 -0
- package/dist/hooks/use-booking.d.ts.map +1 -1
- package/dist/hooks/use-bookings.d.ts +9 -0
- package/dist/hooks/use-bookings.d.ts.map +1 -1
- package/dist/hooks/use-public-booking-session-flow-mutation.d.ts +2 -2
- package/dist/hooks/use-public-booking-session.d.ts +2 -2
- package/dist/hooks/use-reveal-traveler.d.ts +4 -0
- package/dist/hooks/use-reveal-traveler.d.ts.map +1 -1
- package/dist/hooks/use-sharing-groups.d.ts +41 -0
- package/dist/hooks/use-sharing-groups.d.ts.map +1 -0
- package/dist/hooks/use-sharing-groups.js +20 -0
- package/dist/hooks/use-traveler-with-travel-details-mutation.d.ts +12 -0
- package/dist/hooks/use-traveler-with-travel-details-mutation.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/query-keys.d.ts +7 -0
- package/dist/query-keys.d.ts.map +1 -1
- package/dist/query-keys.js +2 -0
- package/dist/query-options.d.ts +284 -16
- package/dist/query-options.d.ts.map +1 -1
- package/dist/query-options.js +23 -1
- package/dist/schemas.d.ts +177 -11
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +32 -0
- package/package.json +5 -5
package/dist/schemas.d.ts
CHANGED
|
@@ -46,6 +46,16 @@ export declare const bookingPaymentPolicySchema: z.ZodObject<{
|
|
|
46
46
|
balanceDueMinDaysFromNow: z.ZodNumber;
|
|
47
47
|
}, z.core.$strip>;
|
|
48
48
|
export type BookingPaymentPolicy = z.infer<typeof bookingPaymentPolicySchema>;
|
|
49
|
+
export declare const bookingPriceOverrideSchema: z.ZodObject<{
|
|
50
|
+
isManual: z.ZodLiteral<true>;
|
|
51
|
+
originalAmountCents: z.ZodNullable<z.ZodNumber>;
|
|
52
|
+
overriddenAmountCents: z.ZodNumber;
|
|
53
|
+
currency: z.ZodString;
|
|
54
|
+
reason: z.ZodString;
|
|
55
|
+
overriddenBy: z.ZodString;
|
|
56
|
+
overriddenAt: z.ZodString;
|
|
57
|
+
}, z.core.$strip>;
|
|
58
|
+
export type BookingPriceOverride = z.infer<typeof bookingPriceOverrideSchema>;
|
|
49
59
|
export declare const bookingRecordItemSummarySchema: z.ZodObject<{
|
|
50
60
|
id: z.ZodString;
|
|
51
61
|
title: z.ZodString;
|
|
@@ -111,6 +121,15 @@ export declare const bookingRecordSchema: z.ZodObject<{
|
|
|
111
121
|
balanceDueDaysBeforeDeparture: z.ZodNumber;
|
|
112
122
|
balanceDueMinDaysFromNow: z.ZodNumber;
|
|
113
123
|
}, z.core.$strip>>>;
|
|
124
|
+
priceOverride: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
125
|
+
isManual: z.ZodLiteral<true>;
|
|
126
|
+
originalAmountCents: z.ZodNullable<z.ZodNumber>;
|
|
127
|
+
overriddenAmountCents: z.ZodNumber;
|
|
128
|
+
currency: z.ZodString;
|
|
129
|
+
reason: z.ZodString;
|
|
130
|
+
overriddenBy: z.ZodString;
|
|
131
|
+
overriddenAt: z.ZodString;
|
|
132
|
+
}, z.core.$strip>>>;
|
|
114
133
|
createdAt: z.ZodString;
|
|
115
134
|
updatedAt: z.ZodString;
|
|
116
135
|
}, z.core.$strip>;
|
|
@@ -144,6 +163,15 @@ export declare const bookingTravelerTravelDetailsSchema: z.ZodObject<{
|
|
|
144
163
|
dietaryRequirements: z.ZodNullable<z.ZodString>;
|
|
145
164
|
accessibilityNeeds: z.ZodNullable<z.ZodString>;
|
|
146
165
|
isLeadTraveler: z.ZodBoolean;
|
|
166
|
+
sharingGroupId: z.ZodNullable<z.ZodString>;
|
|
167
|
+
roomTypeId: z.ZodNullable<z.ZodString>;
|
|
168
|
+
bedPreference: z.ZodNullable<z.ZodEnum<{
|
|
169
|
+
single: "single";
|
|
170
|
+
twin: "twin";
|
|
171
|
+
double: "double";
|
|
172
|
+
"no-preference": "no-preference";
|
|
173
|
+
}>>;
|
|
174
|
+
allocations: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
147
175
|
createdAt: z.ZodString;
|
|
148
176
|
updatedAt: z.ZodString;
|
|
149
177
|
}, z.core.$strip>;
|
|
@@ -175,6 +203,15 @@ export declare const bookingTravelerRevealRecordSchema: z.ZodObject<{
|
|
|
175
203
|
dietaryRequirements: z.ZodNullable<z.ZodString>;
|
|
176
204
|
accessibilityNeeds: z.ZodNullable<z.ZodString>;
|
|
177
205
|
isLeadTraveler: z.ZodBoolean;
|
|
206
|
+
sharingGroupId: z.ZodNullable<z.ZodString>;
|
|
207
|
+
roomTypeId: z.ZodNullable<z.ZodString>;
|
|
208
|
+
bedPreference: z.ZodNullable<z.ZodEnum<{
|
|
209
|
+
single: "single";
|
|
210
|
+
twin: "twin";
|
|
211
|
+
double: "double";
|
|
212
|
+
"no-preference": "no-preference";
|
|
213
|
+
}>>;
|
|
214
|
+
allocations: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
178
215
|
createdAt: z.ZodString;
|
|
179
216
|
updatedAt: z.ZodString;
|
|
180
217
|
}, z.core.$strip>>;
|
|
@@ -182,6 +219,38 @@ export declare const bookingTravelerRevealRecordSchema: z.ZodObject<{
|
|
|
182
219
|
export type BookingTravelerRecord = z.infer<typeof bookingTravelerRecordSchema>;
|
|
183
220
|
export type BookingTravelerTravelDetailsRecord = z.infer<typeof bookingTravelerTravelDetailsSchema>;
|
|
184
221
|
export type BookingTravelerRevealRecord = z.infer<typeof bookingTravelerRevealRecordSchema>;
|
|
222
|
+
export declare const bookingTravelerSharingGroupSummarySchema: z.ZodObject<{
|
|
223
|
+
id: z.ZodString;
|
|
224
|
+
label: z.ZodString;
|
|
225
|
+
occupancy: z.ZodNumber;
|
|
226
|
+
roomTypeId: z.ZodNullable<z.ZodString>;
|
|
227
|
+
bookingIds: z.ZodArray<z.ZodString>;
|
|
228
|
+
}, z.core.$strip>;
|
|
229
|
+
export declare const bookingTravelerSharingGroupMemberSchema: z.ZodObject<{
|
|
230
|
+
id: z.ZodString;
|
|
231
|
+
bookingId: z.ZodString;
|
|
232
|
+
participantType: z.ZodString;
|
|
233
|
+
travelerCategory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
234
|
+
firstName: z.ZodString;
|
|
235
|
+
lastName: z.ZodString;
|
|
236
|
+
email: z.ZodNullable<z.ZodString>;
|
|
237
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
238
|
+
preferredLanguage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
239
|
+
specialRequests: z.ZodNullable<z.ZodString>;
|
|
240
|
+
isPrimary: z.ZodBoolean;
|
|
241
|
+
notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
242
|
+
createdAt: z.ZodString;
|
|
243
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
244
|
+
bookingNumber: z.ZodString;
|
|
245
|
+
personId: z.ZodNullable<z.ZodString>;
|
|
246
|
+
isLeadTraveler: z.ZodBoolean;
|
|
247
|
+
sharingGroupId: z.ZodString;
|
|
248
|
+
roomTypeId: z.ZodNullable<z.ZodString>;
|
|
249
|
+
bedPreference: z.ZodNullable<z.ZodString>;
|
|
250
|
+
allocations: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
251
|
+
}, z.core.$strip>;
|
|
252
|
+
export type BookingTravelerSharingGroupSummary = z.infer<typeof bookingTravelerSharingGroupSummarySchema>;
|
|
253
|
+
export type BookingTravelerSharingGroupMember = z.infer<typeof bookingTravelerSharingGroupMemberSchema>;
|
|
185
254
|
export declare const bookingSupplierStatusRecordSchema: z.ZodObject<{
|
|
186
255
|
id: z.ZodString;
|
|
187
256
|
bookingId: z.ZodString;
|
|
@@ -285,9 +354,9 @@ export declare const bookingItemRecordSchema: z.ZodObject<{
|
|
|
285
354
|
}, z.core.$strip>;
|
|
286
355
|
export type BookingItemRecord = z.infer<typeof bookingItemRecordSchema>;
|
|
287
356
|
export declare const bookingItemTravelerRoleSchema: z.ZodEnum<{
|
|
357
|
+
other: "other";
|
|
288
358
|
traveler: "traveler";
|
|
289
359
|
occupant: "occupant";
|
|
290
|
-
other: "other";
|
|
291
360
|
beneficiary: "beneficiary";
|
|
292
361
|
service_assignee: "service_assignee";
|
|
293
362
|
primary_contact: "primary_contact";
|
|
@@ -297,9 +366,9 @@ export declare const bookingItemTravelerRecordSchema: z.ZodObject<{
|
|
|
297
366
|
bookingItemId: z.ZodString;
|
|
298
367
|
travelerId: z.ZodString;
|
|
299
368
|
role: z.ZodEnum<{
|
|
369
|
+
other: "other";
|
|
300
370
|
traveler: "traveler";
|
|
301
371
|
occupant: "occupant";
|
|
302
|
-
other: "other";
|
|
303
372
|
beneficiary: "beneficiary";
|
|
304
373
|
service_assignee: "service_assignee";
|
|
305
374
|
primary_contact: "primary_contact";
|
|
@@ -309,8 +378,8 @@ export declare const bookingItemTravelerRecordSchema: z.ZodObject<{
|
|
|
309
378
|
}, z.core.$strip>;
|
|
310
379
|
export type BookingItemTravelerRecord = z.infer<typeof bookingItemTravelerRecordSchema>;
|
|
311
380
|
export declare const bookingDocumentTypeSchema: z.ZodEnum<{
|
|
312
|
-
other: "other";
|
|
313
381
|
visa: "visa";
|
|
382
|
+
other: "other";
|
|
314
383
|
insurance: "insurance";
|
|
315
384
|
health: "health";
|
|
316
385
|
passport_copy: "passport_copy";
|
|
@@ -320,8 +389,8 @@ export declare const bookingTravelerDocumentRecordSchema: z.ZodObject<{
|
|
|
320
389
|
bookingId: z.ZodString;
|
|
321
390
|
travelerId: z.ZodNullable<z.ZodString>;
|
|
322
391
|
type: z.ZodEnum<{
|
|
323
|
-
other: "other";
|
|
324
392
|
visa: "visa";
|
|
393
|
+
other: "other";
|
|
325
394
|
insurance: "insurance";
|
|
326
395
|
health: "health";
|
|
327
396
|
passport_copy: "passport_copy";
|
|
@@ -433,6 +502,15 @@ export declare const bookingGroupMemberWithBookingSchema: z.ZodObject<{
|
|
|
433
502
|
balanceDueDaysBeforeDeparture: z.ZodNumber;
|
|
434
503
|
balanceDueMinDaysFromNow: z.ZodNumber;
|
|
435
504
|
}, z.core.$strip>>>;
|
|
505
|
+
priceOverride: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
506
|
+
isManual: z.ZodLiteral<true>;
|
|
507
|
+
originalAmountCents: z.ZodNullable<z.ZodNumber>;
|
|
508
|
+
overriddenAmountCents: z.ZodNumber;
|
|
509
|
+
currency: z.ZodString;
|
|
510
|
+
reason: z.ZodString;
|
|
511
|
+
overriddenBy: z.ZodString;
|
|
512
|
+
overriddenAt: z.ZodString;
|
|
513
|
+
}, z.core.$strip>>>;
|
|
436
514
|
createdAt: z.ZodString;
|
|
437
515
|
updatedAt: z.ZodString;
|
|
438
516
|
}, z.core.$strip>>;
|
|
@@ -517,6 +595,15 @@ export declare const bookingGroupDetailSchema: z.ZodObject<{
|
|
|
517
595
|
balanceDueDaysBeforeDeparture: z.ZodNumber;
|
|
518
596
|
balanceDueMinDaysFromNow: z.ZodNumber;
|
|
519
597
|
}, z.core.$strip>>>;
|
|
598
|
+
priceOverride: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
599
|
+
isManual: z.ZodLiteral<true>;
|
|
600
|
+
originalAmountCents: z.ZodNullable<z.ZodNumber>;
|
|
601
|
+
overriddenAmountCents: z.ZodNumber;
|
|
602
|
+
currency: z.ZodString;
|
|
603
|
+
reason: z.ZodString;
|
|
604
|
+
overriddenBy: z.ZodString;
|
|
605
|
+
overriddenAt: z.ZodString;
|
|
606
|
+
}, z.core.$strip>>>;
|
|
520
607
|
createdAt: z.ZodString;
|
|
521
608
|
updatedAt: z.ZodString;
|
|
522
609
|
}, z.core.$strip>>;
|
|
@@ -581,6 +668,15 @@ export declare const bookingListResponse: z.ZodObject<{
|
|
|
581
668
|
balanceDueDaysBeforeDeparture: z.ZodNumber;
|
|
582
669
|
balanceDueMinDaysFromNow: z.ZodNumber;
|
|
583
670
|
}, z.core.$strip>>>;
|
|
671
|
+
priceOverride: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
672
|
+
isManual: z.ZodLiteral<true>;
|
|
673
|
+
originalAmountCents: z.ZodNullable<z.ZodNumber>;
|
|
674
|
+
overriddenAmountCents: z.ZodNumber;
|
|
675
|
+
currency: z.ZodString;
|
|
676
|
+
reason: z.ZodString;
|
|
677
|
+
overriddenBy: z.ZodString;
|
|
678
|
+
overriddenAt: z.ZodString;
|
|
679
|
+
}, z.core.$strip>>>;
|
|
584
680
|
createdAt: z.ZodString;
|
|
585
681
|
updatedAt: z.ZodString;
|
|
586
682
|
}, z.core.$strip>>;
|
|
@@ -646,6 +742,15 @@ export declare const bookingSingleResponse: z.ZodObject<{
|
|
|
646
742
|
balanceDueDaysBeforeDeparture: z.ZodNumber;
|
|
647
743
|
balanceDueMinDaysFromNow: z.ZodNumber;
|
|
648
744
|
}, z.core.$strip>>>;
|
|
745
|
+
priceOverride: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
746
|
+
isManual: z.ZodLiteral<true>;
|
|
747
|
+
originalAmountCents: z.ZodNullable<z.ZodNumber>;
|
|
748
|
+
overriddenAmountCents: z.ZodNumber;
|
|
749
|
+
currency: z.ZodString;
|
|
750
|
+
reason: z.ZodString;
|
|
751
|
+
overriddenBy: z.ZodString;
|
|
752
|
+
overriddenAt: z.ZodString;
|
|
753
|
+
}, z.core.$strip>>>;
|
|
649
754
|
createdAt: z.ZodString;
|
|
650
755
|
updatedAt: z.ZodString;
|
|
651
756
|
}, z.core.$strip>;
|
|
@@ -701,9 +806,9 @@ export declare const bookingItemTravelersResponse: z.ZodObject<{
|
|
|
701
806
|
bookingItemId: z.ZodString;
|
|
702
807
|
travelerId: z.ZodString;
|
|
703
808
|
role: z.ZodEnum<{
|
|
809
|
+
other: "other";
|
|
704
810
|
traveler: "traveler";
|
|
705
811
|
occupant: "occupant";
|
|
706
|
-
other: "other";
|
|
707
812
|
beneficiary: "beneficiary";
|
|
708
813
|
service_assignee: "service_assignee";
|
|
709
814
|
primary_contact: "primary_contact";
|
|
@@ -718,8 +823,8 @@ export declare const bookingTravelerDocumentsResponse: z.ZodObject<{
|
|
|
718
823
|
bookingId: z.ZodString;
|
|
719
824
|
travelerId: z.ZodNullable<z.ZodString>;
|
|
720
825
|
type: z.ZodEnum<{
|
|
721
|
-
other: "other";
|
|
722
826
|
visa: "visa";
|
|
827
|
+
other: "other";
|
|
723
828
|
insurance: "insurance";
|
|
724
829
|
health: "health";
|
|
725
830
|
passport_copy: "passport_copy";
|
|
@@ -846,6 +951,15 @@ export declare const bookingGroupDetailResponse: z.ZodObject<{
|
|
|
846
951
|
balanceDueDaysBeforeDeparture: z.ZodNumber;
|
|
847
952
|
balanceDueMinDaysFromNow: z.ZodNumber;
|
|
848
953
|
}, z.core.$strip>>>;
|
|
954
|
+
priceOverride: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
955
|
+
isManual: z.ZodLiteral<true>;
|
|
956
|
+
originalAmountCents: z.ZodNullable<z.ZodNumber>;
|
|
957
|
+
overriddenAmountCents: z.ZodNumber;
|
|
958
|
+
currency: z.ZodString;
|
|
959
|
+
reason: z.ZodString;
|
|
960
|
+
overriddenBy: z.ZodString;
|
|
961
|
+
overriddenAt: z.ZodString;
|
|
962
|
+
}, z.core.$strip>>>;
|
|
849
963
|
createdAt: z.ZodString;
|
|
850
964
|
updatedAt: z.ZodString;
|
|
851
965
|
}, z.core.$strip>>;
|
|
@@ -919,6 +1033,15 @@ export declare const bookingGroupMembersResponse: z.ZodObject<{
|
|
|
919
1033
|
balanceDueDaysBeforeDeparture: z.ZodNumber;
|
|
920
1034
|
balanceDueMinDaysFromNow: z.ZodNumber;
|
|
921
1035
|
}, z.core.$strip>>>;
|
|
1036
|
+
priceOverride: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1037
|
+
isManual: z.ZodLiteral<true>;
|
|
1038
|
+
originalAmountCents: z.ZodNullable<z.ZodNumber>;
|
|
1039
|
+
overriddenAmountCents: z.ZodNumber;
|
|
1040
|
+
currency: z.ZodString;
|
|
1041
|
+
reason: z.ZodString;
|
|
1042
|
+
overriddenBy: z.ZodString;
|
|
1043
|
+
overriddenAt: z.ZodString;
|
|
1044
|
+
}, z.core.$strip>>>;
|
|
922
1045
|
createdAt: z.ZodString;
|
|
923
1046
|
updatedAt: z.ZodString;
|
|
924
1047
|
}, z.core.$strip>>;
|
|
@@ -1035,11 +1158,54 @@ export declare const bookingTravelerSingleResponse: z.ZodObject<{
|
|
|
1035
1158
|
dietaryRequirements: z.ZodNullable<z.ZodString>;
|
|
1036
1159
|
accessibilityNeeds: z.ZodNullable<z.ZodString>;
|
|
1037
1160
|
isLeadTraveler: z.ZodBoolean;
|
|
1161
|
+
sharingGroupId: z.ZodNullable<z.ZodString>;
|
|
1162
|
+
roomTypeId: z.ZodNullable<z.ZodString>;
|
|
1163
|
+
bedPreference: z.ZodNullable<z.ZodEnum<{
|
|
1164
|
+
single: "single";
|
|
1165
|
+
twin: "twin";
|
|
1166
|
+
double: "double";
|
|
1167
|
+
"no-preference": "no-preference";
|
|
1168
|
+
}>>;
|
|
1169
|
+
allocations: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1038
1170
|
createdAt: z.ZodString;
|
|
1039
1171
|
updatedAt: z.ZodString;
|
|
1040
1172
|
}, z.core.$strip>>;
|
|
1041
1173
|
}, z.core.$strip>;
|
|
1042
1174
|
}, z.core.$strip>;
|
|
1175
|
+
export declare const bookingTravelerSharingGroupsResponse: z.ZodObject<{
|
|
1176
|
+
data: z.ZodArray<z.ZodObject<{
|
|
1177
|
+
id: z.ZodString;
|
|
1178
|
+
label: z.ZodString;
|
|
1179
|
+
occupancy: z.ZodNumber;
|
|
1180
|
+
roomTypeId: z.ZodNullable<z.ZodString>;
|
|
1181
|
+
bookingIds: z.ZodArray<z.ZodString>;
|
|
1182
|
+
}, z.core.$strip>>;
|
|
1183
|
+
}, z.core.$strip>;
|
|
1184
|
+
export declare const bookingTravelersBySharingGroupResponse: z.ZodObject<{
|
|
1185
|
+
data: z.ZodArray<z.ZodObject<{
|
|
1186
|
+
id: z.ZodString;
|
|
1187
|
+
bookingId: z.ZodString;
|
|
1188
|
+
participantType: z.ZodString;
|
|
1189
|
+
travelerCategory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1190
|
+
firstName: z.ZodString;
|
|
1191
|
+
lastName: z.ZodString;
|
|
1192
|
+
email: z.ZodNullable<z.ZodString>;
|
|
1193
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
1194
|
+
preferredLanguage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1195
|
+
specialRequests: z.ZodNullable<z.ZodString>;
|
|
1196
|
+
isPrimary: z.ZodBoolean;
|
|
1197
|
+
notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1198
|
+
createdAt: z.ZodString;
|
|
1199
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1200
|
+
bookingNumber: z.ZodString;
|
|
1201
|
+
personId: z.ZodNullable<z.ZodString>;
|
|
1202
|
+
isLeadTraveler: z.ZodBoolean;
|
|
1203
|
+
sharingGroupId: z.ZodString;
|
|
1204
|
+
roomTypeId: z.ZodNullable<z.ZodString>;
|
|
1205
|
+
bedPreference: z.ZodNullable<z.ZodString>;
|
|
1206
|
+
allocations: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1207
|
+
}, z.core.$strip>>;
|
|
1208
|
+
}, z.core.$strip>;
|
|
1043
1209
|
export declare const bookingPassengersResponse: z.ZodObject<{
|
|
1044
1210
|
data: z.ZodArray<z.ZodObject<{
|
|
1045
1211
|
id: z.ZodString;
|
|
@@ -1065,9 +1231,9 @@ export declare const bookingItemParticipantsResponse: z.ZodObject<{
|
|
|
1065
1231
|
bookingItemId: z.ZodString;
|
|
1066
1232
|
travelerId: z.ZodString;
|
|
1067
1233
|
role: z.ZodEnum<{
|
|
1234
|
+
other: "other";
|
|
1068
1235
|
traveler: "traveler";
|
|
1069
1236
|
occupant: "occupant";
|
|
1070
|
-
other: "other";
|
|
1071
1237
|
beneficiary: "beneficiary";
|
|
1072
1238
|
service_assignee: "service_assignee";
|
|
1073
1239
|
primary_contact: "primary_contact";
|
|
@@ -1146,9 +1312,9 @@ export declare const publicBookingSessionResponse: z.ZodObject<{
|
|
|
1146
1312
|
travelers: z.ZodArray<z.ZodObject<{
|
|
1147
1313
|
id: z.ZodString;
|
|
1148
1314
|
participantType: z.ZodEnum<{
|
|
1315
|
+
other: "other";
|
|
1149
1316
|
traveler: "traveler";
|
|
1150
1317
|
occupant: "occupant";
|
|
1151
|
-
other: "other";
|
|
1152
1318
|
}>;
|
|
1153
1319
|
travelerCategory: z.ZodNullable<z.ZodEnum<{
|
|
1154
1320
|
other: "other";
|
|
@@ -1209,9 +1375,9 @@ export declare const publicBookingSessionResponse: z.ZodObject<{
|
|
|
1209
1375
|
id: z.ZodString;
|
|
1210
1376
|
travelerId: z.ZodString;
|
|
1211
1377
|
role: z.ZodEnum<{
|
|
1378
|
+
other: "other";
|
|
1212
1379
|
traveler: "traveler";
|
|
1213
1380
|
occupant: "occupant";
|
|
1214
|
-
other: "other";
|
|
1215
1381
|
beneficiary: "beneficiary";
|
|
1216
1382
|
}>;
|
|
1217
1383
|
isPrimary: z.ZodBoolean;
|
|
@@ -1339,9 +1505,9 @@ export declare const publicBookingSessionRepriceResponse: z.ZodObject<{
|
|
|
1339
1505
|
travelers: z.ZodArray<z.ZodObject<{
|
|
1340
1506
|
id: z.ZodString;
|
|
1341
1507
|
participantType: z.ZodEnum<{
|
|
1508
|
+
other: "other";
|
|
1342
1509
|
traveler: "traveler";
|
|
1343
1510
|
occupant: "occupant";
|
|
1344
|
-
other: "other";
|
|
1345
1511
|
}>;
|
|
1346
1512
|
travelerCategory: z.ZodNullable<z.ZodEnum<{
|
|
1347
1513
|
other: "other";
|
|
@@ -1402,9 +1568,9 @@ export declare const publicBookingSessionRepriceResponse: z.ZodObject<{
|
|
|
1402
1568
|
id: z.ZodString;
|
|
1403
1569
|
travelerId: z.ZodString;
|
|
1404
1570
|
role: z.ZodEnum<{
|
|
1571
|
+
other: "other";
|
|
1405
1572
|
traveler: "traveler";
|
|
1406
1573
|
occupant: "occupant";
|
|
1407
|
-
other: "other";
|
|
1408
1574
|
beneficiary: "beneficiary";
|
|
1409
1575
|
}>;
|
|
1410
1576
|
isPrimary: z.ZodBoolean;
|
package/dist/schemas.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../src/schemas.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,eAAO,MAAM,iBAAiB,GAAI,CAAC,SAAS,CAAC,CAAC,UAAU,EAAE,MAAM,CAAC;;;;;iBAM7D,CAAA;AAEJ,eAAO,MAAM,cAAc,GAAI,CAAC,SAAS,CAAC,CAAC,UAAU,EAAE,MAAM,CAAC;;iBAA6B,CAAA;AAC3F,eAAO,MAAM,aAAa,GAAI,CAAC,SAAS,CAAC,CAAC,UAAU,EAAE,MAAM,CAAC;;iBAAsC,CAAA;AACnG,eAAO,MAAM,eAAe;;iBAAqC,CAAA;AAEjE,eAAO,MAAM,mBAAmB;;;;;;;;;EAS9B,CAAA;AAEF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAA;AAE/D,eAAO,MAAM,gCAAgC;;;;;EAK3C,CAAA;AAQF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;iBAKrC,CAAA;AAEF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAA;AAE7E,eAAO,MAAM,8BAA8B;;;;;;iBAMzC,CAAA;AAEF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAA;AAErF,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../src/schemas.ts"],"names":[],"mappings":"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"}
|
package/dist/schemas.js
CHANGED
|
@@ -36,6 +36,15 @@ export const bookingPaymentPolicySchema = z.object({
|
|
|
36
36
|
balanceDueDaysBeforeDeparture: z.number().int().min(0),
|
|
37
37
|
balanceDueMinDaysFromNow: z.number().int().min(0),
|
|
38
38
|
});
|
|
39
|
+
export const bookingPriceOverrideSchema = z.object({
|
|
40
|
+
isManual: z.literal(true),
|
|
41
|
+
originalAmountCents: z.number().int().nullable(),
|
|
42
|
+
overriddenAmountCents: z.number().int(),
|
|
43
|
+
currency: z.string(),
|
|
44
|
+
reason: z.string(),
|
|
45
|
+
overriddenBy: z.string(),
|
|
46
|
+
overriddenAt: z.string(),
|
|
47
|
+
});
|
|
39
48
|
export const bookingRecordItemSummarySchema = z.object({
|
|
40
49
|
id: z.string(),
|
|
41
50
|
title: z.string(),
|
|
@@ -72,6 +81,7 @@ export const bookingRecordSchema = z.object({
|
|
|
72
81
|
contactAddressLine1: z.string().nullable().optional(),
|
|
73
82
|
contactPostalCode: z.string().nullable().optional(),
|
|
74
83
|
customerPaymentPolicy: bookingPaymentPolicySchema.nullable().optional(),
|
|
84
|
+
priceOverride: bookingPriceOverrideSchema.nullable().optional(),
|
|
75
85
|
createdAt: z.string(),
|
|
76
86
|
updatedAt: z.string(),
|
|
77
87
|
});
|
|
@@ -104,12 +114,32 @@ export const bookingTravelerTravelDetailsSchema = z.object({
|
|
|
104
114
|
dietaryRequirements: z.string().nullable(),
|
|
105
115
|
accessibilityNeeds: z.string().nullable(),
|
|
106
116
|
isLeadTraveler: z.boolean(),
|
|
117
|
+
sharingGroupId: z.string().nullable(),
|
|
118
|
+
roomTypeId: z.string().nullable(),
|
|
119
|
+
bedPreference: z.enum(["single", "twin", "double", "no-preference"]).nullable(),
|
|
120
|
+
allocations: z.record(z.string(), z.string()),
|
|
107
121
|
createdAt: z.string(),
|
|
108
122
|
updatedAt: z.string(),
|
|
109
123
|
});
|
|
110
124
|
export const bookingTravelerRevealRecordSchema = bookingTravelerRecordSchema.extend({
|
|
111
125
|
travelDetails: bookingTravelerTravelDetailsSchema.nullable(),
|
|
112
126
|
});
|
|
127
|
+
export const bookingTravelerSharingGroupSummarySchema = z.object({
|
|
128
|
+
id: z.string(),
|
|
129
|
+
label: z.string(),
|
|
130
|
+
occupancy: z.number().int(),
|
|
131
|
+
roomTypeId: z.string().nullable(),
|
|
132
|
+
bookingIds: z.array(z.string()),
|
|
133
|
+
});
|
|
134
|
+
export const bookingTravelerSharingGroupMemberSchema = bookingTravelerRecordSchema.extend({
|
|
135
|
+
bookingNumber: z.string(),
|
|
136
|
+
personId: z.string().nullable(),
|
|
137
|
+
isLeadTraveler: z.boolean(),
|
|
138
|
+
sharingGroupId: z.string(),
|
|
139
|
+
roomTypeId: z.string().nullable(),
|
|
140
|
+
bedPreference: z.string().nullable(),
|
|
141
|
+
allocations: z.record(z.string(), z.string()),
|
|
142
|
+
});
|
|
113
143
|
export const bookingSupplierStatusRecordSchema = z.object({
|
|
114
144
|
id: z.string(),
|
|
115
145
|
bookingId: z.string(),
|
|
@@ -263,6 +293,8 @@ export const bookingGroupForBookingResponse = z.object({
|
|
|
263
293
|
});
|
|
264
294
|
export const bookingTravelersResponse = arrayEnvelope(bookingTravelerRecordSchema);
|
|
265
295
|
export const bookingTravelerSingleResponse = singleEnvelope(bookingTravelerRevealRecordSchema);
|
|
296
|
+
export const bookingTravelerSharingGroupsResponse = arrayEnvelope(bookingTravelerSharingGroupSummarySchema);
|
|
297
|
+
export const bookingTravelersBySharingGroupResponse = arrayEnvelope(bookingTravelerSharingGroupMemberSchema);
|
|
266
298
|
export const bookingPassengersResponse = bookingTravelersResponse;
|
|
267
299
|
export const bookingItemParticipantsResponse = bookingItemTravelersResponse;
|
|
268
300
|
export const bookingSupplierStatusesResponse = arrayEnvelope(bookingSupplierStatusRecordSchema);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/bookings-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.37.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"react": "^19.0.0",
|
|
42
42
|
"react-dom": "^19.0.0",
|
|
43
43
|
"zod": "^4.0.0",
|
|
44
|
-
"@voyantjs/bookings": "0.
|
|
44
|
+
"@voyantjs/bookings": "0.37.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@tanstack/react-query": "^5.96.2",
|
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
"typescript": "^6.0.2",
|
|
53
53
|
"vitest": "^4.1.2",
|
|
54
54
|
"zod": "^4.3.6",
|
|
55
|
-
"@voyantjs/bookings": "0.
|
|
56
|
-
"@voyantjs/react": "0.
|
|
55
|
+
"@voyantjs/bookings": "0.37.0",
|
|
56
|
+
"@voyantjs/react": "0.37.0",
|
|
57
57
|
"@voyantjs/voyant-typescript-config": "0.1.0"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@voyantjs/react": "0.
|
|
60
|
+
"@voyantjs/react": "0.37.0"
|
|
61
61
|
},
|
|
62
62
|
"files": [
|
|
63
63
|
"dist"
|