@voyant-travel/flights-react 0.119.2 → 0.120.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/admin/index.d.ts +1 -1
- package/dist/hooks/use-flight-ancillaries.d.ts +2 -2
- package/dist/hooks/use-flight-book.d.ts +2 -2
- package/dist/hooks/use-flight-offer.d.ts +1 -1
- package/dist/hooks/use-flight-order.d.ts +4 -4
- package/dist/hooks/use-flight-orders.d.ts +2 -2
- package/dist/hooks/use-flight-search.d.ts +1 -1
- package/dist/query-options.d.ts +12 -12
- package/dist/schemas.d.ts +28 -28
- package/package.json +14 -14
package/dist/admin/index.d.ts
CHANGED
|
@@ -45,8 +45,8 @@ declare module "@voyant-travel/admin" {
|
|
|
45
45
|
*/
|
|
46
46
|
export declare const flightsIndexSearchSchema: z.ZodObject<{
|
|
47
47
|
tripType: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
48
|
-
round_trip: "round_trip";
|
|
49
48
|
one_way: "one_way";
|
|
49
|
+
round_trip: "round_trip";
|
|
50
50
|
}>>>;
|
|
51
51
|
from: z.ZodOptional<z.ZodString>;
|
|
52
52
|
to: z.ZodOptional<z.ZodString>;
|
|
@@ -23,7 +23,7 @@ export declare function useFlightAncillaries(input: {
|
|
|
23
23
|
baggage: {
|
|
24
24
|
id: string;
|
|
25
25
|
label: string;
|
|
26
|
-
category: "
|
|
26
|
+
category: "checked" | "cabin" | "personal_item" | "sports" | "oversized";
|
|
27
27
|
price: {
|
|
28
28
|
amount: string;
|
|
29
29
|
currency: string;
|
|
@@ -40,7 +40,7 @@ export declare function useFlightAncillaries(input: {
|
|
|
40
40
|
assistance: {
|
|
41
41
|
id: string;
|
|
42
42
|
label: string;
|
|
43
|
-
category: "
|
|
43
|
+
category: "medical" | "other" | "wheelchair" | "visual" | "hearing" | "cognitive";
|
|
44
44
|
price?: {
|
|
45
45
|
amount: string;
|
|
46
46
|
currency: string;
|
|
@@ -7,7 +7,7 @@ import type { FlightBookRequest } from "@voyant-travel/flights/contract/types";
|
|
|
7
7
|
export declare function useFlightBook(): import("@tanstack/react-query").UseMutationResult<{
|
|
8
8
|
order: {
|
|
9
9
|
orderId: string;
|
|
10
|
-
status: "
|
|
10
|
+
status: "failed" | "confirmed" | "pending" | "ticketed" | "cancelled";
|
|
11
11
|
offer: {
|
|
12
12
|
offerId: string;
|
|
13
13
|
source: string;
|
|
@@ -85,7 +85,7 @@ export declare function useFlightBook(): import("@tanstack/react-query").UseMuta
|
|
|
85
85
|
pieces?: number | undefined;
|
|
86
86
|
weightKg?: number | undefined;
|
|
87
87
|
} | undefined;
|
|
88
|
-
seatSelection?: "
|
|
88
|
+
seatSelection?: "standard" | "none" | "free" | undefined;
|
|
89
89
|
priorityBoarding?: boolean | undefined;
|
|
90
90
|
loungeAccess?: boolean | undefined;
|
|
91
91
|
refundable?: boolean | undefined;
|
|
@@ -88,7 +88,7 @@ export declare function useFlightOfferPrice(): import("@tanstack/react-query").U
|
|
|
88
88
|
pieces?: number | undefined;
|
|
89
89
|
weightKg?: number | undefined;
|
|
90
90
|
} | undefined;
|
|
91
|
-
seatSelection?: "
|
|
91
|
+
seatSelection?: "standard" | "none" | "free" | undefined;
|
|
92
92
|
priorityBoarding?: boolean | undefined;
|
|
93
93
|
loungeAccess?: boolean | undefined;
|
|
94
94
|
refundable?: boolean | undefined;
|
|
@@ -9,7 +9,7 @@ export interface UseFlightOrderOptions {
|
|
|
9
9
|
export declare function useFlightOrder(orderId: string | null, options?: UseFlightOrderOptions): import("@tanstack/react-query").UseQueryResult<{
|
|
10
10
|
order: {
|
|
11
11
|
orderId: string;
|
|
12
|
-
status: "
|
|
12
|
+
status: "failed" | "confirmed" | "pending" | "ticketed" | "cancelled";
|
|
13
13
|
offer: {
|
|
14
14
|
offerId: string;
|
|
15
15
|
source: string;
|
|
@@ -87,7 +87,7 @@ export declare function useFlightOrder(orderId: string | null, options?: UseFlig
|
|
|
87
87
|
pieces?: number | undefined;
|
|
88
88
|
weightKg?: number | undefined;
|
|
89
89
|
} | undefined;
|
|
90
|
-
seatSelection?: "
|
|
90
|
+
seatSelection?: "standard" | "none" | "free" | undefined;
|
|
91
91
|
priorityBoarding?: boolean | undefined;
|
|
92
92
|
loungeAccess?: boolean | undefined;
|
|
93
93
|
refundable?: boolean | undefined;
|
|
@@ -150,7 +150,7 @@ export interface CancelOrderInput {
|
|
|
150
150
|
export declare function useFlightOrderCancel(): import("@tanstack/react-query").UseMutationResult<{
|
|
151
151
|
order: {
|
|
152
152
|
orderId: string;
|
|
153
|
-
status: "
|
|
153
|
+
status: "failed" | "confirmed" | "pending" | "ticketed" | "cancelled";
|
|
154
154
|
offer: {
|
|
155
155
|
offerId: string;
|
|
156
156
|
source: string;
|
|
@@ -228,7 +228,7 @@ export declare function useFlightOrderCancel(): import("@tanstack/react-query").
|
|
|
228
228
|
pieces?: number | undefined;
|
|
229
229
|
weightKg?: number | undefined;
|
|
230
230
|
} | undefined;
|
|
231
|
-
seatSelection?: "
|
|
231
|
+
seatSelection?: "standard" | "none" | "free" | undefined;
|
|
232
232
|
priorityBoarding?: boolean | undefined;
|
|
233
233
|
loungeAccess?: boolean | undefined;
|
|
234
234
|
refundable?: boolean | undefined;
|
|
@@ -10,7 +10,7 @@ export interface UseFlightOrdersOptions {
|
|
|
10
10
|
export declare function useFlightOrders(filters?: FlightOrdersListFilters, options?: UseFlightOrdersOptions): import("@tanstack/react-query").UseQueryResult<{
|
|
11
11
|
orders: {
|
|
12
12
|
orderId: string;
|
|
13
|
-
status: "
|
|
13
|
+
status: "failed" | "confirmed" | "pending" | "ticketed" | "cancelled";
|
|
14
14
|
offer: {
|
|
15
15
|
offerId: string;
|
|
16
16
|
source: string;
|
|
@@ -88,7 +88,7 @@ export declare function useFlightOrders(filters?: FlightOrdersListFilters, optio
|
|
|
88
88
|
pieces?: number | undefined;
|
|
89
89
|
weightKg?: number | undefined;
|
|
90
90
|
} | undefined;
|
|
91
|
-
seatSelection?: "
|
|
91
|
+
seatSelection?: "standard" | "none" | "free" | undefined;
|
|
92
92
|
priorityBoarding?: boolean | undefined;
|
|
93
93
|
loungeAccess?: boolean | undefined;
|
|
94
94
|
refundable?: boolean | undefined;
|
|
@@ -88,7 +88,7 @@ export declare function useFlightSearch(request: FlightSearchRequest, options?:
|
|
|
88
88
|
pieces?: number | undefined;
|
|
89
89
|
weightKg?: number | undefined;
|
|
90
90
|
} | undefined;
|
|
91
|
-
seatSelection?: "
|
|
91
|
+
seatSelection?: "standard" | "none" | "free" | undefined;
|
|
92
92
|
priorityBoarding?: boolean | undefined;
|
|
93
93
|
loungeAccess?: boolean | undefined;
|
|
94
94
|
refundable?: boolean | undefined;
|
package/dist/query-options.d.ts
CHANGED
|
@@ -79,7 +79,7 @@ export declare function getFlightSearchQueryOptions(client: FetchWithValidationO
|
|
|
79
79
|
pieces?: number | undefined;
|
|
80
80
|
weightKg?: number | undefined;
|
|
81
81
|
} | undefined;
|
|
82
|
-
seatSelection?: "
|
|
82
|
+
seatSelection?: "standard" | "none" | "free" | undefined;
|
|
83
83
|
priorityBoarding?: boolean | undefined;
|
|
84
84
|
loungeAccess?: boolean | undefined;
|
|
85
85
|
refundable?: boolean | undefined;
|
|
@@ -175,7 +175,7 @@ export declare function getFlightSearchQueryOptions(client: FetchWithValidationO
|
|
|
175
175
|
pieces?: number | undefined;
|
|
176
176
|
weightKg?: number | undefined;
|
|
177
177
|
} | undefined;
|
|
178
|
-
seatSelection?: "
|
|
178
|
+
seatSelection?: "standard" | "none" | "free" | undefined;
|
|
179
179
|
priorityBoarding?: boolean | undefined;
|
|
180
180
|
loungeAccess?: boolean | undefined;
|
|
181
181
|
refundable?: boolean | undefined;
|
|
@@ -272,7 +272,7 @@ export declare function getFlightSearchQueryOptions(client: FetchWithValidationO
|
|
|
272
272
|
pieces?: number | undefined;
|
|
273
273
|
weightKg?: number | undefined;
|
|
274
274
|
} | undefined;
|
|
275
|
-
seatSelection?: "
|
|
275
|
+
seatSelection?: "standard" | "none" | "free" | undefined;
|
|
276
276
|
priorityBoarding?: boolean | undefined;
|
|
277
277
|
loungeAccess?: boolean | undefined;
|
|
278
278
|
refundable?: boolean | undefined;
|
|
@@ -371,7 +371,7 @@ export declare function getFlightSearchQueryOptions(client: FetchWithValidationO
|
|
|
371
371
|
pieces?: number | undefined;
|
|
372
372
|
weightKg?: number | undefined;
|
|
373
373
|
} | undefined;
|
|
374
|
-
seatSelection?: "
|
|
374
|
+
seatSelection?: "standard" | "none" | "free" | undefined;
|
|
375
375
|
priorityBoarding?: boolean | undefined;
|
|
376
376
|
loungeAccess?: boolean | undefined;
|
|
377
377
|
refundable?: boolean | undefined;
|
|
@@ -401,7 +401,7 @@ export declare function getFlightAncillariesQueryOptions(client: FetchWithValida
|
|
|
401
401
|
baggage: {
|
|
402
402
|
id: string;
|
|
403
403
|
label: string;
|
|
404
|
-
category: "
|
|
404
|
+
category: "checked" | "cabin" | "personal_item" | "sports" | "oversized";
|
|
405
405
|
price: {
|
|
406
406
|
amount: string;
|
|
407
407
|
currency: string;
|
|
@@ -418,7 +418,7 @@ export declare function getFlightAncillariesQueryOptions(client: FetchWithValida
|
|
|
418
418
|
assistance: {
|
|
419
419
|
id: string;
|
|
420
420
|
label: string;
|
|
421
|
-
category: "
|
|
421
|
+
category: "medical" | "other" | "wheelchair" | "visual" | "hearing" | "cognitive";
|
|
422
422
|
price?: {
|
|
423
423
|
amount: string;
|
|
424
424
|
currency: string;
|
|
@@ -442,7 +442,7 @@ export declare function getFlightAncillariesQueryOptions(client: FetchWithValida
|
|
|
442
442
|
baggage: {
|
|
443
443
|
id: string;
|
|
444
444
|
label: string;
|
|
445
|
-
category: "
|
|
445
|
+
category: "checked" | "cabin" | "personal_item" | "sports" | "oversized";
|
|
446
446
|
price: {
|
|
447
447
|
amount: string;
|
|
448
448
|
currency: string;
|
|
@@ -459,7 +459,7 @@ export declare function getFlightAncillariesQueryOptions(client: FetchWithValida
|
|
|
459
459
|
assistance: {
|
|
460
460
|
id: string;
|
|
461
461
|
label: string;
|
|
462
|
-
category: "
|
|
462
|
+
category: "medical" | "other" | "wheelchair" | "visual" | "hearing" | "cognitive";
|
|
463
463
|
price?: {
|
|
464
464
|
amount: string;
|
|
465
465
|
currency: string;
|
|
@@ -484,7 +484,7 @@ export declare function getFlightAncillariesQueryOptions(client: FetchWithValida
|
|
|
484
484
|
baggage: {
|
|
485
485
|
id: string;
|
|
486
486
|
label: string;
|
|
487
|
-
category: "
|
|
487
|
+
category: "checked" | "cabin" | "personal_item" | "sports" | "oversized";
|
|
488
488
|
price: {
|
|
489
489
|
amount: string;
|
|
490
490
|
currency: string;
|
|
@@ -501,7 +501,7 @@ export declare function getFlightAncillariesQueryOptions(client: FetchWithValida
|
|
|
501
501
|
assistance: {
|
|
502
502
|
id: string;
|
|
503
503
|
label: string;
|
|
504
|
-
category: "
|
|
504
|
+
category: "medical" | "other" | "wheelchair" | "visual" | "hearing" | "cognitive";
|
|
505
505
|
price?: {
|
|
506
506
|
amount: string;
|
|
507
507
|
currency: string;
|
|
@@ -528,7 +528,7 @@ export declare function getFlightAncillariesQueryOptions(client: FetchWithValida
|
|
|
528
528
|
baggage: {
|
|
529
529
|
id: string;
|
|
530
530
|
label: string;
|
|
531
|
-
category: "
|
|
531
|
+
category: "checked" | "cabin" | "personal_item" | "sports" | "oversized";
|
|
532
532
|
price: {
|
|
533
533
|
amount: string;
|
|
534
534
|
currency: string;
|
|
@@ -545,7 +545,7 @@ export declare function getFlightAncillariesQueryOptions(client: FetchWithValida
|
|
|
545
545
|
assistance: {
|
|
546
546
|
id: string;
|
|
547
547
|
label: string;
|
|
548
|
-
category: "
|
|
548
|
+
category: "medical" | "other" | "wheelchair" | "visual" | "hearing" | "cognitive";
|
|
549
549
|
price?: {
|
|
550
550
|
amount: string;
|
|
551
551
|
currency: string;
|
package/dist/schemas.d.ts
CHANGED
|
@@ -31,8 +31,8 @@ export declare const fareBundleSchema: z.ZodObject<{
|
|
|
31
31
|
weightKg: z.ZodOptional<z.ZodNumber>;
|
|
32
32
|
}, z.core.$strip>>;
|
|
33
33
|
seatSelection: z.ZodOptional<z.ZodEnum<{
|
|
34
|
-
none: "none";
|
|
35
34
|
standard: "standard";
|
|
35
|
+
none: "none";
|
|
36
36
|
free: "free";
|
|
37
37
|
}>>;
|
|
38
38
|
priorityBoarding: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -139,8 +139,8 @@ export declare const flightOfferSchema: z.ZodObject<{
|
|
|
139
139
|
weightKg: z.ZodOptional<z.ZodNumber>;
|
|
140
140
|
}, z.core.$strip>>;
|
|
141
141
|
seatSelection: z.ZodOptional<z.ZodEnum<{
|
|
142
|
-
none: "none";
|
|
143
142
|
standard: "standard";
|
|
143
|
+
none: "none";
|
|
144
144
|
free: "free";
|
|
145
145
|
}>>;
|
|
146
146
|
priorityBoarding: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -256,8 +256,8 @@ export declare const flightSearchResponseSchema: z.ZodObject<{
|
|
|
256
256
|
weightKg: z.ZodOptional<z.ZodNumber>;
|
|
257
257
|
}, z.core.$strip>>;
|
|
258
258
|
seatSelection: z.ZodOptional<z.ZodEnum<{
|
|
259
|
-
none: "none";
|
|
260
259
|
standard: "standard";
|
|
260
|
+
none: "none";
|
|
261
261
|
free: "free";
|
|
262
262
|
}>>;
|
|
263
263
|
priorityBoarding: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -374,8 +374,8 @@ export declare const flightPriceResponseSchema: z.ZodObject<{
|
|
|
374
374
|
weightKg: z.ZodOptional<z.ZodNumber>;
|
|
375
375
|
}, z.core.$strip>>;
|
|
376
376
|
seatSelection: z.ZodOptional<z.ZodEnum<{
|
|
377
|
-
none: "none";
|
|
378
377
|
standard: "standard";
|
|
378
|
+
none: "none";
|
|
379
379
|
free: "free";
|
|
380
380
|
}>>;
|
|
381
381
|
priorityBoarding: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -396,11 +396,11 @@ export declare const flightOrderSchema: z.ZodObject<{
|
|
|
396
396
|
orderId: z.ZodString;
|
|
397
397
|
pnr: z.ZodOptional<z.ZodString>;
|
|
398
398
|
status: z.ZodEnum<{
|
|
399
|
-
pending: "pending";
|
|
400
399
|
failed: "failed";
|
|
401
|
-
cancelled: "cancelled";
|
|
402
400
|
confirmed: "confirmed";
|
|
401
|
+
pending: "pending";
|
|
403
402
|
ticketed: "ticketed";
|
|
403
|
+
cancelled: "cancelled";
|
|
404
404
|
}>;
|
|
405
405
|
offer: z.ZodObject<{
|
|
406
406
|
offerId: z.ZodString;
|
|
@@ -497,8 +497,8 @@ export declare const flightOrderSchema: z.ZodObject<{
|
|
|
497
497
|
weightKg: z.ZodOptional<z.ZodNumber>;
|
|
498
498
|
}, z.core.$strip>>;
|
|
499
499
|
seatSelection: z.ZodOptional<z.ZodEnum<{
|
|
500
|
-
none: "none";
|
|
501
500
|
standard: "standard";
|
|
501
|
+
none: "none";
|
|
502
502
|
free: "free";
|
|
503
503
|
}>>;
|
|
504
504
|
priorityBoarding: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -568,11 +568,11 @@ export declare const flightBookResponseSchema: z.ZodObject<{
|
|
|
568
568
|
orderId: z.ZodString;
|
|
569
569
|
pnr: z.ZodOptional<z.ZodString>;
|
|
570
570
|
status: z.ZodEnum<{
|
|
571
|
-
pending: "pending";
|
|
572
571
|
failed: "failed";
|
|
573
|
-
cancelled: "cancelled";
|
|
574
572
|
confirmed: "confirmed";
|
|
573
|
+
pending: "pending";
|
|
575
574
|
ticketed: "ticketed";
|
|
575
|
+
cancelled: "cancelled";
|
|
576
576
|
}>;
|
|
577
577
|
offer: z.ZodObject<{
|
|
578
578
|
offerId: z.ZodString;
|
|
@@ -669,8 +669,8 @@ export declare const flightBookResponseSchema: z.ZodObject<{
|
|
|
669
669
|
weightKg: z.ZodOptional<z.ZodNumber>;
|
|
670
670
|
}, z.core.$strip>>;
|
|
671
671
|
seatSelection: z.ZodOptional<z.ZodEnum<{
|
|
672
|
-
none: "none";
|
|
673
672
|
standard: "standard";
|
|
673
|
+
none: "none";
|
|
674
674
|
free: "free";
|
|
675
675
|
}>>;
|
|
676
676
|
priorityBoarding: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -741,11 +741,11 @@ export declare const flightGetOrderResponseSchema: z.ZodObject<{
|
|
|
741
741
|
orderId: z.ZodString;
|
|
742
742
|
pnr: z.ZodOptional<z.ZodString>;
|
|
743
743
|
status: z.ZodEnum<{
|
|
744
|
-
pending: "pending";
|
|
745
744
|
failed: "failed";
|
|
746
|
-
cancelled: "cancelled";
|
|
747
745
|
confirmed: "confirmed";
|
|
746
|
+
pending: "pending";
|
|
748
747
|
ticketed: "ticketed";
|
|
748
|
+
cancelled: "cancelled";
|
|
749
749
|
}>;
|
|
750
750
|
offer: z.ZodObject<{
|
|
751
751
|
offerId: z.ZodString;
|
|
@@ -842,8 +842,8 @@ export declare const flightGetOrderResponseSchema: z.ZodObject<{
|
|
|
842
842
|
weightKg: z.ZodOptional<z.ZodNumber>;
|
|
843
843
|
}, z.core.$strip>>;
|
|
844
844
|
seatSelection: z.ZodOptional<z.ZodEnum<{
|
|
845
|
-
none: "none";
|
|
846
845
|
standard: "standard";
|
|
846
|
+
none: "none";
|
|
847
847
|
free: "free";
|
|
848
848
|
}>>;
|
|
849
849
|
priorityBoarding: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -914,11 +914,11 @@ export declare const flightCancelResponseSchema: z.ZodObject<{
|
|
|
914
914
|
orderId: z.ZodString;
|
|
915
915
|
pnr: z.ZodOptional<z.ZodString>;
|
|
916
916
|
status: z.ZodEnum<{
|
|
917
|
-
pending: "pending";
|
|
918
917
|
failed: "failed";
|
|
919
|
-
cancelled: "cancelled";
|
|
920
918
|
confirmed: "confirmed";
|
|
919
|
+
pending: "pending";
|
|
921
920
|
ticketed: "ticketed";
|
|
921
|
+
cancelled: "cancelled";
|
|
922
922
|
}>;
|
|
923
923
|
offer: z.ZodObject<{
|
|
924
924
|
offerId: z.ZodString;
|
|
@@ -1015,8 +1015,8 @@ export declare const flightCancelResponseSchema: z.ZodObject<{
|
|
|
1015
1015
|
weightKg: z.ZodOptional<z.ZodNumber>;
|
|
1016
1016
|
}, z.core.$strip>>;
|
|
1017
1017
|
seatSelection: z.ZodOptional<z.ZodEnum<{
|
|
1018
|
-
none: "none";
|
|
1019
1018
|
standard: "standard";
|
|
1019
|
+
none: "none";
|
|
1020
1020
|
free: "free";
|
|
1021
1021
|
}>>;
|
|
1022
1022
|
priorityBoarding: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1091,11 +1091,11 @@ export declare const flightOrdersListResponseSchema: z.ZodObject<{
|
|
|
1091
1091
|
orderId: z.ZodString;
|
|
1092
1092
|
pnr: z.ZodOptional<z.ZodString>;
|
|
1093
1093
|
status: z.ZodEnum<{
|
|
1094
|
-
pending: "pending";
|
|
1095
1094
|
failed: "failed";
|
|
1096
|
-
cancelled: "cancelled";
|
|
1097
1095
|
confirmed: "confirmed";
|
|
1096
|
+
pending: "pending";
|
|
1098
1097
|
ticketed: "ticketed";
|
|
1098
|
+
cancelled: "cancelled";
|
|
1099
1099
|
}>;
|
|
1100
1100
|
offer: z.ZodObject<{
|
|
1101
1101
|
offerId: z.ZodString;
|
|
@@ -1192,8 +1192,8 @@ export declare const flightOrdersListResponseSchema: z.ZodObject<{
|
|
|
1192
1192
|
weightKg: z.ZodOptional<z.ZodNumber>;
|
|
1193
1193
|
}, z.core.$strip>>;
|
|
1194
1194
|
seatSelection: z.ZodOptional<z.ZodEnum<{
|
|
1195
|
-
none: "none";
|
|
1196
1195
|
standard: "standard";
|
|
1196
|
+
none: "none";
|
|
1197
1197
|
free: "free";
|
|
1198
1198
|
}>>;
|
|
1199
1199
|
priorityBoarding: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1268,8 +1268,8 @@ declare const ancillaryBaggageOptionSchema: z.ZodObject<{
|
|
|
1268
1268
|
id: z.ZodString;
|
|
1269
1269
|
label: z.ZodString;
|
|
1270
1270
|
category: z.ZodEnum<{
|
|
1271
|
-
cabin: "cabin";
|
|
1272
1271
|
checked: "checked";
|
|
1272
|
+
cabin: "cabin";
|
|
1273
1273
|
personal_item: "personal_item";
|
|
1274
1274
|
sports: "sports";
|
|
1275
1275
|
oversized: "oversized";
|
|
@@ -1292,12 +1292,12 @@ declare const ancillaryAssistanceOptionSchema: z.ZodObject<{
|
|
|
1292
1292
|
id: z.ZodString;
|
|
1293
1293
|
label: z.ZodString;
|
|
1294
1294
|
category: z.ZodEnum<{
|
|
1295
|
+
medical: "medical";
|
|
1296
|
+
other: "other";
|
|
1295
1297
|
wheelchair: "wheelchair";
|
|
1296
1298
|
visual: "visual";
|
|
1297
1299
|
hearing: "hearing";
|
|
1298
1300
|
cognitive: "cognitive";
|
|
1299
|
-
medical: "medical";
|
|
1300
|
-
other: "other";
|
|
1301
1301
|
}>;
|
|
1302
1302
|
price: z.ZodOptional<z.ZodObject<{
|
|
1303
1303
|
amount: z.ZodString;
|
|
@@ -1325,8 +1325,8 @@ export declare const ancillaryCatalogSchema: z.ZodObject<{
|
|
|
1325
1325
|
id: z.ZodString;
|
|
1326
1326
|
label: z.ZodString;
|
|
1327
1327
|
category: z.ZodEnum<{
|
|
1328
|
-
cabin: "cabin";
|
|
1329
1328
|
checked: "checked";
|
|
1329
|
+
cabin: "cabin";
|
|
1330
1330
|
personal_item: "personal_item";
|
|
1331
1331
|
sports: "sports";
|
|
1332
1332
|
oversized: "oversized";
|
|
@@ -1348,12 +1348,12 @@ export declare const ancillaryCatalogSchema: z.ZodObject<{
|
|
|
1348
1348
|
id: z.ZodString;
|
|
1349
1349
|
label: z.ZodString;
|
|
1350
1350
|
category: z.ZodEnum<{
|
|
1351
|
+
medical: "medical";
|
|
1352
|
+
other: "other";
|
|
1351
1353
|
wheelchair: "wheelchair";
|
|
1352
1354
|
visual: "visual";
|
|
1353
1355
|
hearing: "hearing";
|
|
1354
1356
|
cognitive: "cognitive";
|
|
1355
|
-
medical: "medical";
|
|
1356
|
-
other: "other";
|
|
1357
1357
|
}>;
|
|
1358
1358
|
price: z.ZodOptional<z.ZodObject<{
|
|
1359
1359
|
amount: z.ZodString;
|
|
@@ -1382,8 +1382,8 @@ export declare const ancillaryResponseSchema: z.ZodObject<{
|
|
|
1382
1382
|
id: z.ZodString;
|
|
1383
1383
|
label: z.ZodString;
|
|
1384
1384
|
category: z.ZodEnum<{
|
|
1385
|
-
cabin: "cabin";
|
|
1386
1385
|
checked: "checked";
|
|
1386
|
+
cabin: "cabin";
|
|
1387
1387
|
personal_item: "personal_item";
|
|
1388
1388
|
sports: "sports";
|
|
1389
1389
|
oversized: "oversized";
|
|
@@ -1405,12 +1405,12 @@ export declare const ancillaryResponseSchema: z.ZodObject<{
|
|
|
1405
1405
|
id: z.ZodString;
|
|
1406
1406
|
label: z.ZodString;
|
|
1407
1407
|
category: z.ZodEnum<{
|
|
1408
|
+
medical: "medical";
|
|
1409
|
+
other: "other";
|
|
1408
1410
|
wheelchair: "wheelchair";
|
|
1409
1411
|
visual: "visual";
|
|
1410
1412
|
hearing: "hearing";
|
|
1411
1413
|
cognitive: "cognitive";
|
|
1412
|
-
medical: "medical";
|
|
1413
|
-
other: "other";
|
|
1414
1414
|
}>;
|
|
1415
1415
|
price: z.ZodOptional<z.ZodObject<{
|
|
1416
1416
|
amount: z.ZodString;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyant-travel/flights-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.120.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -75,12 +75,12 @@
|
|
|
75
75
|
"react": "^19.0.0",
|
|
76
76
|
"react-dom": "^19.0.0",
|
|
77
77
|
"zod": "^4.0.0",
|
|
78
|
-
"@voyant-travel/admin": "^0.111.
|
|
79
|
-
"@voyant-travel/
|
|
80
|
-
"@voyant-travel/
|
|
81
|
-
"@voyant-travel/
|
|
82
|
-
"@voyant-travel/finance
|
|
83
|
-
"@voyant-travel/flights": "^0.
|
|
78
|
+
"@voyant-travel/admin": "^0.111.1",
|
|
79
|
+
"@voyant-travel/bookings-react": "^0.120.0",
|
|
80
|
+
"@voyant-travel/finance-react": "^0.120.0",
|
|
81
|
+
"@voyant-travel/relationships-react": "^0.120.0",
|
|
82
|
+
"@voyant-travel/finance": "^0.120.0",
|
|
83
|
+
"@voyant-travel/flights": "^0.120.0",
|
|
84
84
|
"@voyant-travel/ui": "^0.106.1"
|
|
85
85
|
},
|
|
86
86
|
"peerDependenciesMeta": {
|
|
@@ -118,16 +118,16 @@
|
|
|
118
118
|
"typescript": "^6.0.2",
|
|
119
119
|
"vitest": "^4.1.2",
|
|
120
120
|
"zod": "^4.3.6",
|
|
121
|
-
"@voyant-travel/bookings-react": "^0.
|
|
122
|
-
"@voyant-travel/
|
|
123
|
-
"@voyant-travel/relationships-react": "^0.
|
|
121
|
+
"@voyant-travel/bookings-react": "^0.120.0",
|
|
122
|
+
"@voyant-travel/finance-react": "^0.120.0",
|
|
123
|
+
"@voyant-travel/relationships-react": "^0.120.0",
|
|
124
|
+
"@voyant-travel/finance": "^0.120.0",
|
|
125
|
+
"@voyant-travel/flights": "^0.120.0",
|
|
124
126
|
"@voyant-travel/i18n": "^0.106.1",
|
|
125
|
-
"@voyant-travel/finance": "^0.119.5",
|
|
126
|
-
"@voyant-travel/finance-react": "^0.119.5",
|
|
127
127
|
"@voyant-travel/react": "^0.104.1",
|
|
128
|
-
"@voyant-travel/
|
|
128
|
+
"@voyant-travel/ui": "^0.106.1",
|
|
129
129
|
"@voyant-travel/voyant-typescript-config": "^0.1.0",
|
|
130
|
-
"@voyant-travel/
|
|
130
|
+
"@voyant-travel/admin": "^0.111.1"
|
|
131
131
|
},
|
|
132
132
|
"files": [
|
|
133
133
|
"dist",
|