@voyantjs/bookings-react 0.20.0 → 0.21.1
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 +24 -1
- package/dist/hooks/use-booking-cancel-mutation.d.ts.map +1 -1
- package/dist/hooks/use-booking-convert-mutation.d.ts +24 -1
- package/dist/hooks/use-booking-convert-mutation.d.ts.map +1 -1
- package/dist/hooks/use-booking-dual-create-mutation.d.ts +104 -2
- package/dist/hooks/use-booking-dual-create-mutation.d.ts.map +1 -1
- package/dist/hooks/use-booking-group.d.ts +24 -1
- package/dist/hooks/use-booking-group.d.ts.map +1 -1
- package/dist/hooks/use-booking-mutation.d.ts +49 -3
- package/dist/hooks/use-booking-mutation.d.ts.map +1 -1
- package/dist/hooks/use-booking-quick-create-mutation.d.ts +52 -1
- package/dist/hooks/use-booking-quick-create-mutation.d.ts.map +1 -1
- package/dist/hooks/use-booking-status-mutation.d.ts +48 -2
- package/dist/hooks/use-booking-status-mutation.d.ts.map +1 -1
- package/dist/hooks/use-booking.d.ts +24 -1
- package/dist/hooks/use-booking.d.ts.map +1 -1
- package/dist/hooks/use-bookings.d.ts +24 -1
- package/dist/hooks/use-bookings.d.ts.map +1 -1
- package/dist/hooks/use-public-booking-session-flow-mutation.d.ts +1 -1
- package/dist/hooks/use-public-booking-session.d.ts +1 -1
- package/dist/hooks/use-reveal-traveler.d.ts +45 -0
- package/dist/hooks/use-reveal-traveler.d.ts.map +1 -0
- package/dist/hooks/use-reveal-traveler.js +18 -0
- package/dist/query-options.d.ts +423 -16
- package/dist/query-options.d.ts.map +1 -1
- package/dist/query-options.js +18 -1
- package/dist/schemas.d.ts +286 -0
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +42 -0
- package/dist/status-presentation.d.ts +1 -1
- package/dist/status-presentation.d.ts.map +1 -1
- package/dist/status-presentation.js +1 -0
- package/package.json +5 -5
package/dist/query-options.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export declare function getBookingsQueryOptions(client: FetchWithValidationOptio
|
|
|
16
16
|
data: {
|
|
17
17
|
id: string;
|
|
18
18
|
bookingNumber: string;
|
|
19
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
19
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
20
20
|
personId: string | null;
|
|
21
21
|
organizationId: string | null;
|
|
22
22
|
sellCurrency: string;
|
|
@@ -29,6 +29,29 @@ export declare function getBookingsQueryOptions(client: FetchWithValidationOptio
|
|
|
29
29
|
internalNotes: string | null;
|
|
30
30
|
createdAt: string;
|
|
31
31
|
updatedAt: string;
|
|
32
|
+
startsAt?: string | null | undefined;
|
|
33
|
+
endsAt?: string | null | undefined;
|
|
34
|
+
communicationLanguage?: string | null | undefined;
|
|
35
|
+
contactFirstName?: string | null | undefined;
|
|
36
|
+
contactLastName?: string | null | undefined;
|
|
37
|
+
contactEmail?: string | null | undefined;
|
|
38
|
+
contactPhone?: string | null | undefined;
|
|
39
|
+
contactPreferredLanguage?: string | null | undefined;
|
|
40
|
+
contactCountry?: string | null | undefined;
|
|
41
|
+
contactRegion?: string | null | undefined;
|
|
42
|
+
contactCity?: string | null | undefined;
|
|
43
|
+
contactAddressLine1?: string | null | undefined;
|
|
44
|
+
contactPostalCode?: string | null | undefined;
|
|
45
|
+
customerPaymentPolicy?: {
|
|
46
|
+
deposit: {
|
|
47
|
+
kind: "none" | "percent" | "fixed_cents";
|
|
48
|
+
percent?: number | undefined;
|
|
49
|
+
amountCents?: number | undefined;
|
|
50
|
+
};
|
|
51
|
+
minDaysBeforeDepartureForDeposit: number;
|
|
52
|
+
balanceDueDaysBeforeDeparture: number;
|
|
53
|
+
balanceDueMinDaysFromNow: number;
|
|
54
|
+
} | null | undefined;
|
|
32
55
|
}[];
|
|
33
56
|
total: number;
|
|
34
57
|
limit: number;
|
|
@@ -37,7 +60,7 @@ export declare function getBookingsQueryOptions(client: FetchWithValidationOptio
|
|
|
37
60
|
data: {
|
|
38
61
|
id: string;
|
|
39
62
|
bookingNumber: string;
|
|
40
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
63
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
41
64
|
personId: string | null;
|
|
42
65
|
organizationId: string | null;
|
|
43
66
|
sellCurrency: string;
|
|
@@ -50,6 +73,29 @@ export declare function getBookingsQueryOptions(client: FetchWithValidationOptio
|
|
|
50
73
|
internalNotes: string | null;
|
|
51
74
|
createdAt: string;
|
|
52
75
|
updatedAt: string;
|
|
76
|
+
startsAt?: string | null | undefined;
|
|
77
|
+
endsAt?: string | null | undefined;
|
|
78
|
+
communicationLanguage?: string | null | undefined;
|
|
79
|
+
contactFirstName?: string | null | undefined;
|
|
80
|
+
contactLastName?: string | null | undefined;
|
|
81
|
+
contactEmail?: string | null | undefined;
|
|
82
|
+
contactPhone?: string | null | undefined;
|
|
83
|
+
contactPreferredLanguage?: string | null | undefined;
|
|
84
|
+
contactCountry?: string | null | undefined;
|
|
85
|
+
contactRegion?: string | null | undefined;
|
|
86
|
+
contactCity?: string | null | undefined;
|
|
87
|
+
contactAddressLine1?: string | null | undefined;
|
|
88
|
+
contactPostalCode?: string | null | undefined;
|
|
89
|
+
customerPaymentPolicy?: {
|
|
90
|
+
deposit: {
|
|
91
|
+
kind: "none" | "percent" | "fixed_cents";
|
|
92
|
+
percent?: number | undefined;
|
|
93
|
+
amountCents?: number | undefined;
|
|
94
|
+
};
|
|
95
|
+
minDaysBeforeDepartureForDeposit: number;
|
|
96
|
+
balanceDueDaysBeforeDeparture: number;
|
|
97
|
+
balanceDueMinDaysFromNow: number;
|
|
98
|
+
} | null | undefined;
|
|
53
99
|
}[];
|
|
54
100
|
total: number;
|
|
55
101
|
limit: number;
|
|
@@ -59,7 +105,7 @@ export declare function getBookingsQueryOptions(client: FetchWithValidationOptio
|
|
|
59
105
|
data: {
|
|
60
106
|
id: string;
|
|
61
107
|
bookingNumber: string;
|
|
62
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
108
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
63
109
|
personId: string | null;
|
|
64
110
|
organizationId: string | null;
|
|
65
111
|
sellCurrency: string;
|
|
@@ -72,6 +118,29 @@ export declare function getBookingsQueryOptions(client: FetchWithValidationOptio
|
|
|
72
118
|
internalNotes: string | null;
|
|
73
119
|
createdAt: string;
|
|
74
120
|
updatedAt: string;
|
|
121
|
+
startsAt?: string | null | undefined;
|
|
122
|
+
endsAt?: string | null | undefined;
|
|
123
|
+
communicationLanguage?: string | null | undefined;
|
|
124
|
+
contactFirstName?: string | null | undefined;
|
|
125
|
+
contactLastName?: string | null | undefined;
|
|
126
|
+
contactEmail?: string | null | undefined;
|
|
127
|
+
contactPhone?: string | null | undefined;
|
|
128
|
+
contactPreferredLanguage?: string | null | undefined;
|
|
129
|
+
contactCountry?: string | null | undefined;
|
|
130
|
+
contactRegion?: string | null | undefined;
|
|
131
|
+
contactCity?: string | null | undefined;
|
|
132
|
+
contactAddressLine1?: string | null | undefined;
|
|
133
|
+
contactPostalCode?: string | null | undefined;
|
|
134
|
+
customerPaymentPolicy?: {
|
|
135
|
+
deposit: {
|
|
136
|
+
kind: "none" | "percent" | "fixed_cents";
|
|
137
|
+
percent?: number | undefined;
|
|
138
|
+
amountCents?: number | undefined;
|
|
139
|
+
};
|
|
140
|
+
minDaysBeforeDepartureForDeposit: number;
|
|
141
|
+
balanceDueDaysBeforeDeparture: number;
|
|
142
|
+
balanceDueMinDaysFromNow: number;
|
|
143
|
+
} | null | undefined;
|
|
75
144
|
}[];
|
|
76
145
|
total: number;
|
|
77
146
|
limit: number;
|
|
@@ -83,7 +152,7 @@ export declare function getBookingsQueryOptions(client: FetchWithValidationOptio
|
|
|
83
152
|
data: {
|
|
84
153
|
id: string;
|
|
85
154
|
bookingNumber: string;
|
|
86
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
155
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
87
156
|
personId: string | null;
|
|
88
157
|
organizationId: string | null;
|
|
89
158
|
sellCurrency: string;
|
|
@@ -96,6 +165,29 @@ export declare function getBookingsQueryOptions(client: FetchWithValidationOptio
|
|
|
96
165
|
internalNotes: string | null;
|
|
97
166
|
createdAt: string;
|
|
98
167
|
updatedAt: string;
|
|
168
|
+
startsAt?: string | null | undefined;
|
|
169
|
+
endsAt?: string | null | undefined;
|
|
170
|
+
communicationLanguage?: string | null | undefined;
|
|
171
|
+
contactFirstName?: string | null | undefined;
|
|
172
|
+
contactLastName?: string | null | undefined;
|
|
173
|
+
contactEmail?: string | null | undefined;
|
|
174
|
+
contactPhone?: string | null | undefined;
|
|
175
|
+
contactPreferredLanguage?: string | null | undefined;
|
|
176
|
+
contactCountry?: string | null | undefined;
|
|
177
|
+
contactRegion?: string | null | undefined;
|
|
178
|
+
contactCity?: string | null | undefined;
|
|
179
|
+
contactAddressLine1?: string | null | undefined;
|
|
180
|
+
contactPostalCode?: string | null | undefined;
|
|
181
|
+
customerPaymentPolicy?: {
|
|
182
|
+
deposit: {
|
|
183
|
+
kind: "none" | "percent" | "fixed_cents";
|
|
184
|
+
percent?: number | undefined;
|
|
185
|
+
amountCents?: number | undefined;
|
|
186
|
+
};
|
|
187
|
+
minDaysBeforeDepartureForDeposit: number;
|
|
188
|
+
balanceDueDaysBeforeDeparture: number;
|
|
189
|
+
balanceDueMinDaysFromNow: number;
|
|
190
|
+
} | null | undefined;
|
|
99
191
|
}[];
|
|
100
192
|
total: number;
|
|
101
193
|
limit: number;
|
|
@@ -108,7 +200,7 @@ export declare function getBookingQueryOptions(client: FetchWithValidationOption
|
|
|
108
200
|
data: {
|
|
109
201
|
id: string;
|
|
110
202
|
bookingNumber: string;
|
|
111
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
203
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
112
204
|
personId: string | null;
|
|
113
205
|
organizationId: string | null;
|
|
114
206
|
sellCurrency: string;
|
|
@@ -121,12 +213,35 @@ export declare function getBookingQueryOptions(client: FetchWithValidationOption
|
|
|
121
213
|
internalNotes: string | null;
|
|
122
214
|
createdAt: string;
|
|
123
215
|
updatedAt: string;
|
|
216
|
+
startsAt?: string | null | undefined;
|
|
217
|
+
endsAt?: string | null | undefined;
|
|
218
|
+
communicationLanguage?: string | null | undefined;
|
|
219
|
+
contactFirstName?: string | null | undefined;
|
|
220
|
+
contactLastName?: string | null | undefined;
|
|
221
|
+
contactEmail?: string | null | undefined;
|
|
222
|
+
contactPhone?: string | null | undefined;
|
|
223
|
+
contactPreferredLanguage?: string | null | undefined;
|
|
224
|
+
contactCountry?: string | null | undefined;
|
|
225
|
+
contactRegion?: string | null | undefined;
|
|
226
|
+
contactCity?: string | null | undefined;
|
|
227
|
+
contactAddressLine1?: string | null | undefined;
|
|
228
|
+
contactPostalCode?: string | null | undefined;
|
|
229
|
+
customerPaymentPolicy?: {
|
|
230
|
+
deposit: {
|
|
231
|
+
kind: "none" | "percent" | "fixed_cents";
|
|
232
|
+
percent?: number | undefined;
|
|
233
|
+
amountCents?: number | undefined;
|
|
234
|
+
};
|
|
235
|
+
minDaysBeforeDepartureForDeposit: number;
|
|
236
|
+
balanceDueDaysBeforeDeparture: number;
|
|
237
|
+
balanceDueMinDaysFromNow: number;
|
|
238
|
+
} | null | undefined;
|
|
124
239
|
};
|
|
125
240
|
}, Error, {
|
|
126
241
|
data: {
|
|
127
242
|
id: string;
|
|
128
243
|
bookingNumber: string;
|
|
129
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
244
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
130
245
|
personId: string | null;
|
|
131
246
|
organizationId: string | null;
|
|
132
247
|
sellCurrency: string;
|
|
@@ -139,13 +254,36 @@ export declare function getBookingQueryOptions(client: FetchWithValidationOption
|
|
|
139
254
|
internalNotes: string | null;
|
|
140
255
|
createdAt: string;
|
|
141
256
|
updatedAt: string;
|
|
257
|
+
startsAt?: string | null | undefined;
|
|
258
|
+
endsAt?: string | null | undefined;
|
|
259
|
+
communicationLanguage?: string | null | undefined;
|
|
260
|
+
contactFirstName?: string | null | undefined;
|
|
261
|
+
contactLastName?: string | null | undefined;
|
|
262
|
+
contactEmail?: string | null | undefined;
|
|
263
|
+
contactPhone?: string | null | undefined;
|
|
264
|
+
contactPreferredLanguage?: string | null | undefined;
|
|
265
|
+
contactCountry?: string | null | undefined;
|
|
266
|
+
contactRegion?: string | null | undefined;
|
|
267
|
+
contactCity?: string | null | undefined;
|
|
268
|
+
contactAddressLine1?: string | null | undefined;
|
|
269
|
+
contactPostalCode?: string | null | undefined;
|
|
270
|
+
customerPaymentPolicy?: {
|
|
271
|
+
deposit: {
|
|
272
|
+
kind: "none" | "percent" | "fixed_cents";
|
|
273
|
+
percent?: number | undefined;
|
|
274
|
+
amountCents?: number | undefined;
|
|
275
|
+
};
|
|
276
|
+
minDaysBeforeDepartureForDeposit: number;
|
|
277
|
+
balanceDueDaysBeforeDeparture: number;
|
|
278
|
+
balanceDueMinDaysFromNow: number;
|
|
279
|
+
} | null | undefined;
|
|
142
280
|
};
|
|
143
281
|
}, readonly ["voyant", "bookings", "bookings", "detail", string]>, "queryFn"> & {
|
|
144
282
|
queryFn?: import("@tanstack/react-query").QueryFunction<{
|
|
145
283
|
data: {
|
|
146
284
|
id: string;
|
|
147
285
|
bookingNumber: string;
|
|
148
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
286
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
149
287
|
personId: string | null;
|
|
150
288
|
organizationId: string | null;
|
|
151
289
|
sellCurrency: string;
|
|
@@ -158,6 +296,29 @@ export declare function getBookingQueryOptions(client: FetchWithValidationOption
|
|
|
158
296
|
internalNotes: string | null;
|
|
159
297
|
createdAt: string;
|
|
160
298
|
updatedAt: string;
|
|
299
|
+
startsAt?: string | null | undefined;
|
|
300
|
+
endsAt?: string | null | undefined;
|
|
301
|
+
communicationLanguage?: string | null | undefined;
|
|
302
|
+
contactFirstName?: string | null | undefined;
|
|
303
|
+
contactLastName?: string | null | undefined;
|
|
304
|
+
contactEmail?: string | null | undefined;
|
|
305
|
+
contactPhone?: string | null | undefined;
|
|
306
|
+
contactPreferredLanguage?: string | null | undefined;
|
|
307
|
+
contactCountry?: string | null | undefined;
|
|
308
|
+
contactRegion?: string | null | undefined;
|
|
309
|
+
contactCity?: string | null | undefined;
|
|
310
|
+
contactAddressLine1?: string | null | undefined;
|
|
311
|
+
contactPostalCode?: string | null | undefined;
|
|
312
|
+
customerPaymentPolicy?: {
|
|
313
|
+
deposit: {
|
|
314
|
+
kind: "none" | "percent" | "fixed_cents";
|
|
315
|
+
percent?: number | undefined;
|
|
316
|
+
amountCents?: number | undefined;
|
|
317
|
+
};
|
|
318
|
+
minDaysBeforeDepartureForDeposit: number;
|
|
319
|
+
balanceDueDaysBeforeDeparture: number;
|
|
320
|
+
balanceDueMinDaysFromNow: number;
|
|
321
|
+
} | null | undefined;
|
|
161
322
|
};
|
|
162
323
|
}, readonly ["voyant", "bookings", "bookings", "detail", string], never> | undefined;
|
|
163
324
|
} & {
|
|
@@ -166,7 +327,7 @@ export declare function getBookingQueryOptions(client: FetchWithValidationOption
|
|
|
166
327
|
data: {
|
|
167
328
|
id: string;
|
|
168
329
|
bookingNumber: string;
|
|
169
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
330
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
170
331
|
personId: string | null;
|
|
171
332
|
organizationId: string | null;
|
|
172
333
|
sellCurrency: string;
|
|
@@ -179,6 +340,29 @@ export declare function getBookingQueryOptions(client: FetchWithValidationOption
|
|
|
179
340
|
internalNotes: string | null;
|
|
180
341
|
createdAt: string;
|
|
181
342
|
updatedAt: string;
|
|
343
|
+
startsAt?: string | null | undefined;
|
|
344
|
+
endsAt?: string | null | undefined;
|
|
345
|
+
communicationLanguage?: string | null | undefined;
|
|
346
|
+
contactFirstName?: string | null | undefined;
|
|
347
|
+
contactLastName?: string | null | undefined;
|
|
348
|
+
contactEmail?: string | null | undefined;
|
|
349
|
+
contactPhone?: string | null | undefined;
|
|
350
|
+
contactPreferredLanguage?: string | null | undefined;
|
|
351
|
+
contactCountry?: string | null | undefined;
|
|
352
|
+
contactRegion?: string | null | undefined;
|
|
353
|
+
contactCity?: string | null | undefined;
|
|
354
|
+
contactAddressLine1?: string | null | undefined;
|
|
355
|
+
contactPostalCode?: string | null | undefined;
|
|
356
|
+
customerPaymentPolicy?: {
|
|
357
|
+
deposit: {
|
|
358
|
+
kind: "none" | "percent" | "fixed_cents";
|
|
359
|
+
percent?: number | undefined;
|
|
360
|
+
amountCents?: number | undefined;
|
|
361
|
+
};
|
|
362
|
+
minDaysBeforeDepartureForDeposit: number;
|
|
363
|
+
balanceDueDaysBeforeDeparture: number;
|
|
364
|
+
balanceDueMinDaysFromNow: number;
|
|
365
|
+
} | null | undefined;
|
|
182
366
|
};
|
|
183
367
|
};
|
|
184
368
|
[dataTagErrorSymbol]: Error;
|
|
@@ -472,6 +656,137 @@ export declare function getTravelersQueryOptions(client: FetchWithValidationOpti
|
|
|
472
656
|
[dataTagErrorSymbol]: Error;
|
|
473
657
|
};
|
|
474
658
|
};
|
|
659
|
+
/**
|
|
660
|
+
* Fetch a single traveler with PII unmasked. Backend authorizes via
|
|
661
|
+
* the same policy as `/travel-details` (staff or `bookings-pii:read`)
|
|
662
|
+
* and audit-logs the access. Used by the "click to reveal" eye button
|
|
663
|
+
* in the operator's traveler list — fetched lazily so unauthenticated
|
|
664
|
+
* pageloads don't trigger reveal logs.
|
|
665
|
+
*/
|
|
666
|
+
export declare function getTravelerRevealQueryOptions(client: FetchWithValidationOptions, bookingId: string | null | undefined, travelerId: string | null | undefined): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<{
|
|
667
|
+
data: {
|
|
668
|
+
id: string;
|
|
669
|
+
bookingId: string;
|
|
670
|
+
participantType: string;
|
|
671
|
+
firstName: string;
|
|
672
|
+
lastName: string;
|
|
673
|
+
email: string | null;
|
|
674
|
+
phone: string | null;
|
|
675
|
+
specialRequests: string | null;
|
|
676
|
+
isPrimary: boolean;
|
|
677
|
+
createdAt: string;
|
|
678
|
+
travelDetails: {
|
|
679
|
+
travelerId: string;
|
|
680
|
+
nationality: string | null;
|
|
681
|
+
passportNumber: string | null;
|
|
682
|
+
passportExpiry: string | null;
|
|
683
|
+
dateOfBirth: string | null;
|
|
684
|
+
dietaryRequirements: string | null;
|
|
685
|
+
accessibilityNeeds: string | null;
|
|
686
|
+
isLeadTraveler: boolean;
|
|
687
|
+
createdAt: string;
|
|
688
|
+
updatedAt: string;
|
|
689
|
+
} | null;
|
|
690
|
+
travelerCategory?: string | null | undefined;
|
|
691
|
+
preferredLanguage?: string | null | undefined;
|
|
692
|
+
notes?: string | null | undefined;
|
|
693
|
+
updatedAt?: string | undefined;
|
|
694
|
+
};
|
|
695
|
+
}, Error, {
|
|
696
|
+
data: {
|
|
697
|
+
id: string;
|
|
698
|
+
bookingId: string;
|
|
699
|
+
participantType: string;
|
|
700
|
+
firstName: string;
|
|
701
|
+
lastName: string;
|
|
702
|
+
email: string | null;
|
|
703
|
+
phone: string | null;
|
|
704
|
+
specialRequests: string | null;
|
|
705
|
+
isPrimary: boolean;
|
|
706
|
+
createdAt: string;
|
|
707
|
+
travelDetails: {
|
|
708
|
+
travelerId: string;
|
|
709
|
+
nationality: string | null;
|
|
710
|
+
passportNumber: string | null;
|
|
711
|
+
passportExpiry: string | null;
|
|
712
|
+
dateOfBirth: string | null;
|
|
713
|
+
dietaryRequirements: string | null;
|
|
714
|
+
accessibilityNeeds: string | null;
|
|
715
|
+
isLeadTraveler: boolean;
|
|
716
|
+
createdAt: string;
|
|
717
|
+
updatedAt: string;
|
|
718
|
+
} | null;
|
|
719
|
+
travelerCategory?: string | null | undefined;
|
|
720
|
+
preferredLanguage?: string | null | undefined;
|
|
721
|
+
notes?: string | null | undefined;
|
|
722
|
+
updatedAt?: string | undefined;
|
|
723
|
+
};
|
|
724
|
+
}, string[]>, "queryFn"> & {
|
|
725
|
+
queryFn?: import("@tanstack/react-query").QueryFunction<{
|
|
726
|
+
data: {
|
|
727
|
+
id: string;
|
|
728
|
+
bookingId: string;
|
|
729
|
+
participantType: string;
|
|
730
|
+
firstName: string;
|
|
731
|
+
lastName: string;
|
|
732
|
+
email: string | null;
|
|
733
|
+
phone: string | null;
|
|
734
|
+
specialRequests: string | null;
|
|
735
|
+
isPrimary: boolean;
|
|
736
|
+
createdAt: string;
|
|
737
|
+
travelDetails: {
|
|
738
|
+
travelerId: string;
|
|
739
|
+
nationality: string | null;
|
|
740
|
+
passportNumber: string | null;
|
|
741
|
+
passportExpiry: string | null;
|
|
742
|
+
dateOfBirth: string | null;
|
|
743
|
+
dietaryRequirements: string | null;
|
|
744
|
+
accessibilityNeeds: string | null;
|
|
745
|
+
isLeadTraveler: boolean;
|
|
746
|
+
createdAt: string;
|
|
747
|
+
updatedAt: string;
|
|
748
|
+
} | null;
|
|
749
|
+
travelerCategory?: string | null | undefined;
|
|
750
|
+
preferredLanguage?: string | null | undefined;
|
|
751
|
+
notes?: string | null | undefined;
|
|
752
|
+
updatedAt?: string | undefined;
|
|
753
|
+
};
|
|
754
|
+
}, string[], never> | undefined;
|
|
755
|
+
} & {
|
|
756
|
+
queryKey: string[] & {
|
|
757
|
+
[dataTagSymbol]: {
|
|
758
|
+
data: {
|
|
759
|
+
id: string;
|
|
760
|
+
bookingId: string;
|
|
761
|
+
participantType: string;
|
|
762
|
+
firstName: string;
|
|
763
|
+
lastName: string;
|
|
764
|
+
email: string | null;
|
|
765
|
+
phone: string | null;
|
|
766
|
+
specialRequests: string | null;
|
|
767
|
+
isPrimary: boolean;
|
|
768
|
+
createdAt: string;
|
|
769
|
+
travelDetails: {
|
|
770
|
+
travelerId: string;
|
|
771
|
+
nationality: string | null;
|
|
772
|
+
passportNumber: string | null;
|
|
773
|
+
passportExpiry: string | null;
|
|
774
|
+
dateOfBirth: string | null;
|
|
775
|
+
dietaryRequirements: string | null;
|
|
776
|
+
accessibilityNeeds: string | null;
|
|
777
|
+
isLeadTraveler: boolean;
|
|
778
|
+
createdAt: string;
|
|
779
|
+
updatedAt: string;
|
|
780
|
+
} | null;
|
|
781
|
+
travelerCategory?: string | null | undefined;
|
|
782
|
+
preferredLanguage?: string | null | undefined;
|
|
783
|
+
notes?: string | null | undefined;
|
|
784
|
+
updatedAt?: string | undefined;
|
|
785
|
+
};
|
|
786
|
+
};
|
|
787
|
+
[dataTagErrorSymbol]: Error;
|
|
788
|
+
};
|
|
789
|
+
};
|
|
475
790
|
export declare const getPassengersQueryOptions: typeof getTravelersQueryOptions;
|
|
476
791
|
export declare const getBookingItemParticipantsQueryOptions: typeof getBookingItemTravelersQueryOptions;
|
|
477
792
|
export declare function getSupplierStatusesQueryOptions(client: FetchWithValidationOptions, bookingId: string | null | undefined, options?: UseSupplierStatusesOptions): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<{
|
|
@@ -634,7 +949,7 @@ export declare function getPublicBookingSessionQueryOptions(client: FetchWithVal
|
|
|
634
949
|
data: {
|
|
635
950
|
sessionId: string;
|
|
636
951
|
bookingNumber: string;
|
|
637
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
952
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
638
953
|
externalBookingRef: string | null;
|
|
639
954
|
communicationLanguage: string | null;
|
|
640
955
|
sellCurrency: string;
|
|
@@ -725,7 +1040,7 @@ export declare function getPublicBookingSessionQueryOptions(client: FetchWithVal
|
|
|
725
1040
|
data: {
|
|
726
1041
|
sessionId: string;
|
|
727
1042
|
bookingNumber: string;
|
|
728
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
1043
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
729
1044
|
externalBookingRef: string | null;
|
|
730
1045
|
communicationLanguage: string | null;
|
|
731
1046
|
sellCurrency: string;
|
|
@@ -817,7 +1132,7 @@ export declare function getPublicBookingSessionQueryOptions(client: FetchWithVal
|
|
|
817
1132
|
data: {
|
|
818
1133
|
sessionId: string;
|
|
819
1134
|
bookingNumber: string;
|
|
820
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
1135
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
821
1136
|
externalBookingRef: string | null;
|
|
822
1137
|
communicationLanguage: string | null;
|
|
823
1138
|
sellCurrency: string;
|
|
@@ -911,7 +1226,7 @@ export declare function getPublicBookingSessionQueryOptions(client: FetchWithVal
|
|
|
911
1226
|
data: {
|
|
912
1227
|
sessionId: string;
|
|
913
1228
|
bookingNumber: string;
|
|
914
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
1229
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
915
1230
|
externalBookingRef: string | null;
|
|
916
1231
|
communicationLanguage: string | null;
|
|
917
1232
|
sellCurrency: string;
|
|
@@ -1142,7 +1457,7 @@ export declare function getBookingGroupQueryOptions(client: FetchWithValidationO
|
|
|
1142
1457
|
booking: {
|
|
1143
1458
|
id: string;
|
|
1144
1459
|
bookingNumber: string;
|
|
1145
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
1460
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
1146
1461
|
personId: string | null;
|
|
1147
1462
|
organizationId: string | null;
|
|
1148
1463
|
sellCurrency: string;
|
|
@@ -1155,6 +1470,29 @@ export declare function getBookingGroupQueryOptions(client: FetchWithValidationO
|
|
|
1155
1470
|
internalNotes: string | null;
|
|
1156
1471
|
createdAt: string;
|
|
1157
1472
|
updatedAt: string;
|
|
1473
|
+
startsAt?: string | null | undefined;
|
|
1474
|
+
endsAt?: string | null | undefined;
|
|
1475
|
+
communicationLanguage?: string | null | undefined;
|
|
1476
|
+
contactFirstName?: string | null | undefined;
|
|
1477
|
+
contactLastName?: string | null | undefined;
|
|
1478
|
+
contactEmail?: string | null | undefined;
|
|
1479
|
+
contactPhone?: string | null | undefined;
|
|
1480
|
+
contactPreferredLanguage?: string | null | undefined;
|
|
1481
|
+
contactCountry?: string | null | undefined;
|
|
1482
|
+
contactRegion?: string | null | undefined;
|
|
1483
|
+
contactCity?: string | null | undefined;
|
|
1484
|
+
contactAddressLine1?: string | null | undefined;
|
|
1485
|
+
contactPostalCode?: string | null | undefined;
|
|
1486
|
+
customerPaymentPolicy?: {
|
|
1487
|
+
deposit: {
|
|
1488
|
+
kind: "none" | "percent" | "fixed_cents";
|
|
1489
|
+
percent?: number | undefined;
|
|
1490
|
+
amountCents?: number | undefined;
|
|
1491
|
+
};
|
|
1492
|
+
minDaysBeforeDepartureForDeposit: number;
|
|
1493
|
+
balanceDueDaysBeforeDeparture: number;
|
|
1494
|
+
balanceDueMinDaysFromNow: number;
|
|
1495
|
+
} | null | undefined;
|
|
1158
1496
|
} | null;
|
|
1159
1497
|
}[];
|
|
1160
1498
|
};
|
|
@@ -1178,7 +1516,7 @@ export declare function getBookingGroupQueryOptions(client: FetchWithValidationO
|
|
|
1178
1516
|
booking: {
|
|
1179
1517
|
id: string;
|
|
1180
1518
|
bookingNumber: string;
|
|
1181
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
1519
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
1182
1520
|
personId: string | null;
|
|
1183
1521
|
organizationId: string | null;
|
|
1184
1522
|
sellCurrency: string;
|
|
@@ -1191,6 +1529,29 @@ export declare function getBookingGroupQueryOptions(client: FetchWithValidationO
|
|
|
1191
1529
|
internalNotes: string | null;
|
|
1192
1530
|
createdAt: string;
|
|
1193
1531
|
updatedAt: string;
|
|
1532
|
+
startsAt?: string | null | undefined;
|
|
1533
|
+
endsAt?: string | null | undefined;
|
|
1534
|
+
communicationLanguage?: string | null | undefined;
|
|
1535
|
+
contactFirstName?: string | null | undefined;
|
|
1536
|
+
contactLastName?: string | null | undefined;
|
|
1537
|
+
contactEmail?: string | null | undefined;
|
|
1538
|
+
contactPhone?: string | null | undefined;
|
|
1539
|
+
contactPreferredLanguage?: string | null | undefined;
|
|
1540
|
+
contactCountry?: string | null | undefined;
|
|
1541
|
+
contactRegion?: string | null | undefined;
|
|
1542
|
+
contactCity?: string | null | undefined;
|
|
1543
|
+
contactAddressLine1?: string | null | undefined;
|
|
1544
|
+
contactPostalCode?: string | null | undefined;
|
|
1545
|
+
customerPaymentPolicy?: {
|
|
1546
|
+
deposit: {
|
|
1547
|
+
kind: "none" | "percent" | "fixed_cents";
|
|
1548
|
+
percent?: number | undefined;
|
|
1549
|
+
amountCents?: number | undefined;
|
|
1550
|
+
};
|
|
1551
|
+
minDaysBeforeDepartureForDeposit: number;
|
|
1552
|
+
balanceDueDaysBeforeDeparture: number;
|
|
1553
|
+
balanceDueMinDaysFromNow: number;
|
|
1554
|
+
} | null | undefined;
|
|
1194
1555
|
} | null;
|
|
1195
1556
|
}[];
|
|
1196
1557
|
};
|
|
@@ -1215,7 +1576,7 @@ export declare function getBookingGroupQueryOptions(client: FetchWithValidationO
|
|
|
1215
1576
|
booking: {
|
|
1216
1577
|
id: string;
|
|
1217
1578
|
bookingNumber: string;
|
|
1218
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
1579
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
1219
1580
|
personId: string | null;
|
|
1220
1581
|
organizationId: string | null;
|
|
1221
1582
|
sellCurrency: string;
|
|
@@ -1228,6 +1589,29 @@ export declare function getBookingGroupQueryOptions(client: FetchWithValidationO
|
|
|
1228
1589
|
internalNotes: string | null;
|
|
1229
1590
|
createdAt: string;
|
|
1230
1591
|
updatedAt: string;
|
|
1592
|
+
startsAt?: string | null | undefined;
|
|
1593
|
+
endsAt?: string | null | undefined;
|
|
1594
|
+
communicationLanguage?: string | null | undefined;
|
|
1595
|
+
contactFirstName?: string | null | undefined;
|
|
1596
|
+
contactLastName?: string | null | undefined;
|
|
1597
|
+
contactEmail?: string | null | undefined;
|
|
1598
|
+
contactPhone?: string | null | undefined;
|
|
1599
|
+
contactPreferredLanguage?: string | null | undefined;
|
|
1600
|
+
contactCountry?: string | null | undefined;
|
|
1601
|
+
contactRegion?: string | null | undefined;
|
|
1602
|
+
contactCity?: string | null | undefined;
|
|
1603
|
+
contactAddressLine1?: string | null | undefined;
|
|
1604
|
+
contactPostalCode?: string | null | undefined;
|
|
1605
|
+
customerPaymentPolicy?: {
|
|
1606
|
+
deposit: {
|
|
1607
|
+
kind: "none" | "percent" | "fixed_cents";
|
|
1608
|
+
percent?: number | undefined;
|
|
1609
|
+
amountCents?: number | undefined;
|
|
1610
|
+
};
|
|
1611
|
+
minDaysBeforeDepartureForDeposit: number;
|
|
1612
|
+
balanceDueDaysBeforeDeparture: number;
|
|
1613
|
+
balanceDueMinDaysFromNow: number;
|
|
1614
|
+
} | null | undefined;
|
|
1231
1615
|
} | null;
|
|
1232
1616
|
}[];
|
|
1233
1617
|
};
|
|
@@ -1254,7 +1638,7 @@ export declare function getBookingGroupQueryOptions(client: FetchWithValidationO
|
|
|
1254
1638
|
booking: {
|
|
1255
1639
|
id: string;
|
|
1256
1640
|
bookingNumber: string;
|
|
1257
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
1641
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
1258
1642
|
personId: string | null;
|
|
1259
1643
|
organizationId: string | null;
|
|
1260
1644
|
sellCurrency: string;
|
|
@@ -1267,6 +1651,29 @@ export declare function getBookingGroupQueryOptions(client: FetchWithValidationO
|
|
|
1267
1651
|
internalNotes: string | null;
|
|
1268
1652
|
createdAt: string;
|
|
1269
1653
|
updatedAt: string;
|
|
1654
|
+
startsAt?: string | null | undefined;
|
|
1655
|
+
endsAt?: string | null | undefined;
|
|
1656
|
+
communicationLanguage?: string | null | undefined;
|
|
1657
|
+
contactFirstName?: string | null | undefined;
|
|
1658
|
+
contactLastName?: string | null | undefined;
|
|
1659
|
+
contactEmail?: string | null | undefined;
|
|
1660
|
+
contactPhone?: string | null | undefined;
|
|
1661
|
+
contactPreferredLanguage?: string | null | undefined;
|
|
1662
|
+
contactCountry?: string | null | undefined;
|
|
1663
|
+
contactRegion?: string | null | undefined;
|
|
1664
|
+
contactCity?: string | null | undefined;
|
|
1665
|
+
contactAddressLine1?: string | null | undefined;
|
|
1666
|
+
contactPostalCode?: string | null | undefined;
|
|
1667
|
+
customerPaymentPolicy?: {
|
|
1668
|
+
deposit: {
|
|
1669
|
+
kind: "none" | "percent" | "fixed_cents";
|
|
1670
|
+
percent?: number | undefined;
|
|
1671
|
+
amountCents?: number | undefined;
|
|
1672
|
+
};
|
|
1673
|
+
minDaysBeforeDepartureForDeposit: number;
|
|
1674
|
+
balanceDueDaysBeforeDeparture: number;
|
|
1675
|
+
balanceDueMinDaysFromNow: number;
|
|
1676
|
+
} | null | undefined;
|
|
1270
1677
|
} | null;
|
|
1271
1678
|
}[];
|
|
1272
1679
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query-options.d.ts","sourceRoot":"","sources":["../src/query-options.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,0BAA0B,EAAuB,MAAM,aAAa,CAAA;AAClF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAC/D,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,iCAAiC,CAAA;AAChF,OAAO,KAAK,EAAE,kCAAkC,EAAE,MAAM,kCAAkC,CAAA;AAC1F,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAA;AAC1E,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,0CAA0C,CAAA;AAChG,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,+BAA+B,CAAA;AAC5E,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,uCAAuC,CAAA;AAC3F,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAA;AAC1E,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAA;AAC1E,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAA;AACjE,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,kCAAkC,CAAA;AAClF,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAA;AACnE,OAAO,EAAqB,KAAK,qBAAqB,EAAE,MAAM,iBAAiB,CAAA;
|
|
1
|
+
{"version":3,"file":"query-options.d.ts","sourceRoot":"","sources":["../src/query-options.ts"],"names":[],"mappings":"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"}
|