@voyantjs/travel-composer 0.55.0 → 0.56.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/LICENSE +201 -0
- package/dist/mcp-tools.d.ts +4 -4
- package/dist/routes.d.ts +122 -122
- package/dist/schema.d.ts +5 -5
- package/dist/validation.d.ts +20 -20
- package/package.json +56 -66
- package/dist/service-drafts.d.ts +0 -13
- package/dist/service-drafts.d.ts.map +0 -1
- package/dist/service-drafts.js +0 -223
package/dist/routes.d.ts
CHANGED
|
@@ -37,9 +37,9 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
37
37
|
data: {
|
|
38
38
|
envelope: {
|
|
39
39
|
id: string;
|
|
40
|
-
status: "cancelled" | "draft" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked" | "failed";
|
|
41
|
-
title: string | null;
|
|
42
40
|
description: string | null;
|
|
41
|
+
status: "cancelled" | "draft" | "failed" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked";
|
|
42
|
+
title: string | null;
|
|
43
43
|
travelerParty: {
|
|
44
44
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
45
45
|
};
|
|
@@ -75,12 +75,17 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
75
75
|
};
|
|
76
76
|
components: {
|
|
77
77
|
id: string;
|
|
78
|
+
description: string | null;
|
|
79
|
+
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
80
|
+
status: "unavailable" | "cancelled" | "draft" | "held" | "failed" | "priced" | "checkout_started" | "booked" | "removed";
|
|
78
81
|
sourceKind: string | null;
|
|
79
82
|
sourceConnectionId: string | null;
|
|
80
83
|
sourceRef: string | null;
|
|
81
|
-
|
|
84
|
+
entityModule: string | null;
|
|
85
|
+
entityId: string | null;
|
|
86
|
+
bookingId: string | null;
|
|
87
|
+
holdToken: string | null;
|
|
82
88
|
title: string | null;
|
|
83
|
-
description: string | null;
|
|
84
89
|
bookingGroupId: string | null;
|
|
85
90
|
orderId: string | null;
|
|
86
91
|
paymentSessionId: string | null;
|
|
@@ -88,12 +93,8 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
88
93
|
updatedAt: string;
|
|
89
94
|
envelopeId: string;
|
|
90
95
|
sequence: number;
|
|
91
|
-
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
92
|
-
entityModule: string | null;
|
|
93
|
-
entityId: string | null;
|
|
94
96
|
bookingDraftId: string | null;
|
|
95
97
|
catalogQuoteId: string | null;
|
|
96
|
-
bookingId: string | null;
|
|
97
98
|
providerRef: string | null;
|
|
98
99
|
supplierRef: string | null;
|
|
99
100
|
componentCurrency: string | null;
|
|
@@ -121,7 +122,6 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
121
122
|
cancellationSnapshot: {
|
|
122
123
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
123
124
|
} | null;
|
|
124
|
-
holdToken: string | null;
|
|
125
125
|
holdExpiresAt: string | null;
|
|
126
126
|
priceExpiresAt: string | null;
|
|
127
127
|
warningCodes: string[];
|
|
@@ -146,9 +146,9 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
146
146
|
data: {
|
|
147
147
|
envelope: {
|
|
148
148
|
id: string;
|
|
149
|
-
status: "cancelled" | "draft" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked" | "failed";
|
|
150
|
-
title: string | null;
|
|
151
149
|
description: string | null;
|
|
150
|
+
status: "cancelled" | "draft" | "failed" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked";
|
|
151
|
+
title: string | null;
|
|
152
152
|
travelerParty: {
|
|
153
153
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
154
154
|
};
|
|
@@ -184,12 +184,17 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
184
184
|
};
|
|
185
185
|
components: {
|
|
186
186
|
id: string;
|
|
187
|
+
description: string | null;
|
|
188
|
+
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
189
|
+
status: "unavailable" | "cancelled" | "draft" | "held" | "failed" | "priced" | "checkout_started" | "booked" | "removed";
|
|
187
190
|
sourceKind: string | null;
|
|
188
191
|
sourceConnectionId: string | null;
|
|
189
192
|
sourceRef: string | null;
|
|
190
|
-
|
|
193
|
+
entityModule: string | null;
|
|
194
|
+
entityId: string | null;
|
|
195
|
+
bookingId: string | null;
|
|
196
|
+
holdToken: string | null;
|
|
191
197
|
title: string | null;
|
|
192
|
-
description: string | null;
|
|
193
198
|
bookingGroupId: string | null;
|
|
194
199
|
orderId: string | null;
|
|
195
200
|
paymentSessionId: string | null;
|
|
@@ -197,12 +202,8 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
197
202
|
updatedAt: string;
|
|
198
203
|
envelopeId: string;
|
|
199
204
|
sequence: number;
|
|
200
|
-
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
201
|
-
entityModule: string | null;
|
|
202
|
-
entityId: string | null;
|
|
203
205
|
bookingDraftId: string | null;
|
|
204
206
|
catalogQuoteId: string | null;
|
|
205
|
-
bookingId: string | null;
|
|
206
207
|
providerRef: string | null;
|
|
207
208
|
supplierRef: string | null;
|
|
208
209
|
componentCurrency: string | null;
|
|
@@ -230,7 +231,6 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
230
231
|
cancellationSnapshot: {
|
|
231
232
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
232
233
|
} | null;
|
|
233
|
-
holdToken: string | null;
|
|
234
234
|
holdExpiresAt: string | null;
|
|
235
235
|
priceExpiresAt: string | null;
|
|
236
236
|
warningCodes: string[];
|
|
@@ -274,9 +274,9 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
274
274
|
data: {
|
|
275
275
|
envelope: {
|
|
276
276
|
id: string;
|
|
277
|
-
status: "cancelled" | "draft" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked" | "failed";
|
|
278
|
-
title: string | null;
|
|
279
277
|
description: string | null;
|
|
278
|
+
status: "cancelled" | "draft" | "failed" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked";
|
|
279
|
+
title: string | null;
|
|
280
280
|
travelerParty: {
|
|
281
281
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
282
282
|
};
|
|
@@ -312,12 +312,17 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
312
312
|
};
|
|
313
313
|
components: {
|
|
314
314
|
id: string;
|
|
315
|
+
description: string | null;
|
|
316
|
+
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
317
|
+
status: "unavailable" | "cancelled" | "draft" | "held" | "failed" | "priced" | "checkout_started" | "booked" | "removed";
|
|
315
318
|
sourceKind: string | null;
|
|
316
319
|
sourceConnectionId: string | null;
|
|
317
320
|
sourceRef: string | null;
|
|
318
|
-
|
|
321
|
+
entityModule: string | null;
|
|
322
|
+
entityId: string | null;
|
|
323
|
+
bookingId: string | null;
|
|
324
|
+
holdToken: string | null;
|
|
319
325
|
title: string | null;
|
|
320
|
-
description: string | null;
|
|
321
326
|
bookingGroupId: string | null;
|
|
322
327
|
orderId: string | null;
|
|
323
328
|
paymentSessionId: string | null;
|
|
@@ -325,12 +330,8 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
325
330
|
updatedAt: string;
|
|
326
331
|
envelopeId: string;
|
|
327
332
|
sequence: number;
|
|
328
|
-
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
329
|
-
entityModule: string | null;
|
|
330
|
-
entityId: string | null;
|
|
331
333
|
bookingDraftId: string | null;
|
|
332
334
|
catalogQuoteId: string | null;
|
|
333
|
-
bookingId: string | null;
|
|
334
335
|
providerRef: string | null;
|
|
335
336
|
supplierRef: string | null;
|
|
336
337
|
componentCurrency: string | null;
|
|
@@ -358,7 +359,6 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
358
359
|
cancellationSnapshot: {
|
|
359
360
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
360
361
|
} | null;
|
|
361
|
-
holdToken: string | null;
|
|
362
362
|
holdExpiresAt: string | null;
|
|
363
363
|
priceExpiresAt: string | null;
|
|
364
364
|
warningCodes: string[];
|
|
@@ -396,12 +396,17 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
396
396
|
output: {
|
|
397
397
|
data: {
|
|
398
398
|
id: string;
|
|
399
|
+
description: string | null;
|
|
400
|
+
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
401
|
+
status: "unavailable" | "cancelled" | "draft" | "held" | "failed" | "priced" | "checkout_started" | "booked" | "removed";
|
|
399
402
|
sourceKind: string | null;
|
|
400
403
|
sourceConnectionId: string | null;
|
|
401
404
|
sourceRef: string | null;
|
|
402
|
-
|
|
405
|
+
entityModule: string | null;
|
|
406
|
+
entityId: string | null;
|
|
407
|
+
bookingId: string | null;
|
|
408
|
+
holdToken: string | null;
|
|
403
409
|
title: string | null;
|
|
404
|
-
description: string | null;
|
|
405
410
|
bookingGroupId: string | null;
|
|
406
411
|
orderId: string | null;
|
|
407
412
|
paymentSessionId: string | null;
|
|
@@ -409,12 +414,8 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
409
414
|
updatedAt: string;
|
|
410
415
|
envelopeId: string;
|
|
411
416
|
sequence: number;
|
|
412
|
-
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
413
|
-
entityModule: string | null;
|
|
414
|
-
entityId: string | null;
|
|
415
417
|
bookingDraftId: string | null;
|
|
416
418
|
catalogQuoteId: string | null;
|
|
417
|
-
bookingId: string | null;
|
|
418
419
|
providerRef: string | null;
|
|
419
420
|
supplierRef: string | null;
|
|
420
421
|
componentCurrency: string | null;
|
|
@@ -442,7 +443,6 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
442
443
|
cancellationSnapshot: {
|
|
443
444
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
444
445
|
} | null;
|
|
445
|
-
holdToken: string | null;
|
|
446
446
|
holdExpiresAt: string | null;
|
|
447
447
|
priceExpiresAt: string | null;
|
|
448
448
|
warningCodes: string[];
|
|
@@ -502,9 +502,9 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
502
502
|
data: {
|
|
503
503
|
envelope: {
|
|
504
504
|
id: string;
|
|
505
|
-
status: "cancelled" | "draft" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked" | "failed";
|
|
506
|
-
title: string | null;
|
|
507
505
|
description: string | null;
|
|
506
|
+
status: "cancelled" | "draft" | "failed" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked";
|
|
507
|
+
title: string | null;
|
|
508
508
|
travelerParty: {
|
|
509
509
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
510
510
|
};
|
|
@@ -540,12 +540,17 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
540
540
|
};
|
|
541
541
|
components: {
|
|
542
542
|
id: string;
|
|
543
|
+
description: string | null;
|
|
544
|
+
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
545
|
+
status: "unavailable" | "cancelled" | "draft" | "held" | "failed" | "priced" | "checkout_started" | "booked" | "removed";
|
|
543
546
|
sourceKind: string | null;
|
|
544
547
|
sourceConnectionId: string | null;
|
|
545
548
|
sourceRef: string | null;
|
|
546
|
-
|
|
549
|
+
entityModule: string | null;
|
|
550
|
+
entityId: string | null;
|
|
551
|
+
bookingId: string | null;
|
|
552
|
+
holdToken: string | null;
|
|
547
553
|
title: string | null;
|
|
548
|
-
description: string | null;
|
|
549
554
|
bookingGroupId: string | null;
|
|
550
555
|
orderId: string | null;
|
|
551
556
|
paymentSessionId: string | null;
|
|
@@ -553,12 +558,8 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
553
558
|
updatedAt: string;
|
|
554
559
|
envelopeId: string;
|
|
555
560
|
sequence: number;
|
|
556
|
-
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
557
|
-
entityModule: string | null;
|
|
558
|
-
entityId: string | null;
|
|
559
561
|
bookingDraftId: string | null;
|
|
560
562
|
catalogQuoteId: string | null;
|
|
561
|
-
bookingId: string | null;
|
|
562
563
|
providerRef: string | null;
|
|
563
564
|
supplierRef: string | null;
|
|
564
565
|
componentCurrency: string | null;
|
|
@@ -586,7 +587,6 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
586
587
|
cancellationSnapshot: {
|
|
587
588
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
588
589
|
} | null;
|
|
589
|
-
holdToken: string | null;
|
|
590
590
|
holdExpiresAt: string | null;
|
|
591
591
|
priceExpiresAt: string | null;
|
|
592
592
|
warningCodes: string[];
|
|
@@ -648,9 +648,9 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
648
648
|
data: {
|
|
649
649
|
envelope: {
|
|
650
650
|
id: string;
|
|
651
|
-
status: "cancelled" | "draft" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked" | "failed";
|
|
652
|
-
title: string | null;
|
|
653
651
|
description: string | null;
|
|
652
|
+
status: "cancelled" | "draft" | "failed" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked";
|
|
653
|
+
title: string | null;
|
|
654
654
|
travelerParty: {
|
|
655
655
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
656
656
|
};
|
|
@@ -686,12 +686,17 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
686
686
|
};
|
|
687
687
|
components: {
|
|
688
688
|
id: string;
|
|
689
|
+
description: string | null;
|
|
690
|
+
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
691
|
+
status: "unavailable" | "cancelled" | "draft" | "held" | "failed" | "priced" | "checkout_started" | "booked" | "removed";
|
|
689
692
|
sourceKind: string | null;
|
|
690
693
|
sourceConnectionId: string | null;
|
|
691
694
|
sourceRef: string | null;
|
|
692
|
-
|
|
695
|
+
entityModule: string | null;
|
|
696
|
+
entityId: string | null;
|
|
697
|
+
bookingId: string | null;
|
|
698
|
+
holdToken: string | null;
|
|
693
699
|
title: string | null;
|
|
694
|
-
description: string | null;
|
|
695
700
|
bookingGroupId: string | null;
|
|
696
701
|
orderId: string | null;
|
|
697
702
|
paymentSessionId: string | null;
|
|
@@ -699,12 +704,8 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
699
704
|
updatedAt: string;
|
|
700
705
|
envelopeId: string;
|
|
701
706
|
sequence: number;
|
|
702
|
-
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
703
|
-
entityModule: string | null;
|
|
704
|
-
entityId: string | null;
|
|
705
707
|
bookingDraftId: string | null;
|
|
706
708
|
catalogQuoteId: string | null;
|
|
707
|
-
bookingId: string | null;
|
|
708
709
|
providerRef: string | null;
|
|
709
710
|
supplierRef: string | null;
|
|
710
711
|
componentCurrency: string | null;
|
|
@@ -732,7 +733,6 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
732
733
|
cancellationSnapshot: {
|
|
733
734
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
734
735
|
} | null;
|
|
735
|
-
holdToken: string | null;
|
|
736
736
|
holdExpiresAt: string | null;
|
|
737
737
|
priceExpiresAt: string | null;
|
|
738
738
|
warningCodes: string[];
|
|
@@ -798,9 +798,9 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
798
798
|
data: {
|
|
799
799
|
envelope: {
|
|
800
800
|
id: string;
|
|
801
|
-
status: "cancelled" | "draft" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked" | "failed";
|
|
802
|
-
title: string | null;
|
|
803
801
|
description: string | null;
|
|
802
|
+
status: "cancelled" | "draft" | "failed" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked";
|
|
803
|
+
title: string | null;
|
|
804
804
|
travelerParty: {
|
|
805
805
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
806
806
|
};
|
|
@@ -836,12 +836,17 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
836
836
|
};
|
|
837
837
|
components: {
|
|
838
838
|
id: string;
|
|
839
|
+
description: string | null;
|
|
840
|
+
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
841
|
+
status: "unavailable" | "cancelled" | "draft" | "held" | "failed" | "priced" | "checkout_started" | "booked" | "removed";
|
|
839
842
|
sourceKind: string | null;
|
|
840
843
|
sourceConnectionId: string | null;
|
|
841
844
|
sourceRef: string | null;
|
|
842
|
-
|
|
845
|
+
entityModule: string | null;
|
|
846
|
+
entityId: string | null;
|
|
847
|
+
bookingId: string | null;
|
|
848
|
+
holdToken: string | null;
|
|
843
849
|
title: string | null;
|
|
844
|
-
description: string | null;
|
|
845
850
|
bookingGroupId: string | null;
|
|
846
851
|
orderId: string | null;
|
|
847
852
|
paymentSessionId: string | null;
|
|
@@ -849,12 +854,8 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
849
854
|
updatedAt: string;
|
|
850
855
|
envelopeId: string;
|
|
851
856
|
sequence: number;
|
|
852
|
-
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
853
|
-
entityModule: string | null;
|
|
854
|
-
entityId: string | null;
|
|
855
857
|
bookingDraftId: string | null;
|
|
856
858
|
catalogQuoteId: string | null;
|
|
857
|
-
bookingId: string | null;
|
|
858
859
|
providerRef: string | null;
|
|
859
860
|
supplierRef: string | null;
|
|
860
861
|
componentCurrency: string | null;
|
|
@@ -882,7 +883,6 @@ export declare function createTravelComposerRoutes(options?: TravelComposerRoute
|
|
|
882
883
|
cancellationSnapshot: {
|
|
883
884
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
884
885
|
} | null;
|
|
885
|
-
holdToken: string | null;
|
|
886
886
|
holdExpiresAt: string | null;
|
|
887
887
|
priceExpiresAt: string | null;
|
|
888
888
|
warningCodes: string[];
|
|
@@ -1021,9 +1021,9 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1021
1021
|
data: {
|
|
1022
1022
|
envelope: {
|
|
1023
1023
|
id: string;
|
|
1024
|
-
status: "cancelled" | "draft" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked" | "failed";
|
|
1025
|
-
title: string | null;
|
|
1026
1024
|
description: string | null;
|
|
1025
|
+
status: "cancelled" | "draft" | "failed" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked";
|
|
1026
|
+
title: string | null;
|
|
1027
1027
|
travelerParty: {
|
|
1028
1028
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
1029
1029
|
};
|
|
@@ -1059,12 +1059,17 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1059
1059
|
};
|
|
1060
1060
|
components: {
|
|
1061
1061
|
id: string;
|
|
1062
|
+
description: string | null;
|
|
1063
|
+
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
1064
|
+
status: "unavailable" | "cancelled" | "draft" | "held" | "failed" | "priced" | "checkout_started" | "booked" | "removed";
|
|
1062
1065
|
sourceKind: string | null;
|
|
1063
1066
|
sourceConnectionId: string | null;
|
|
1064
1067
|
sourceRef: string | null;
|
|
1065
|
-
|
|
1068
|
+
entityModule: string | null;
|
|
1069
|
+
entityId: string | null;
|
|
1070
|
+
bookingId: string | null;
|
|
1071
|
+
holdToken: string | null;
|
|
1066
1072
|
title: string | null;
|
|
1067
|
-
description: string | null;
|
|
1068
1073
|
bookingGroupId: string | null;
|
|
1069
1074
|
orderId: string | null;
|
|
1070
1075
|
paymentSessionId: string | null;
|
|
@@ -1072,12 +1077,8 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1072
1077
|
updatedAt: string;
|
|
1073
1078
|
envelopeId: string;
|
|
1074
1079
|
sequence: number;
|
|
1075
|
-
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
1076
|
-
entityModule: string | null;
|
|
1077
|
-
entityId: string | null;
|
|
1078
1080
|
bookingDraftId: string | null;
|
|
1079
1081
|
catalogQuoteId: string | null;
|
|
1080
|
-
bookingId: string | null;
|
|
1081
1082
|
providerRef: string | null;
|
|
1082
1083
|
supplierRef: string | null;
|
|
1083
1084
|
componentCurrency: string | null;
|
|
@@ -1105,7 +1106,6 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1105
1106
|
cancellationSnapshot: {
|
|
1106
1107
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
1107
1108
|
} | null;
|
|
1108
|
-
holdToken: string | null;
|
|
1109
1109
|
holdExpiresAt: string | null;
|
|
1110
1110
|
priceExpiresAt: string | null;
|
|
1111
1111
|
warningCodes: string[];
|
|
@@ -1130,9 +1130,9 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1130
1130
|
data: {
|
|
1131
1131
|
envelope: {
|
|
1132
1132
|
id: string;
|
|
1133
|
-
status: "cancelled" | "draft" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked" | "failed";
|
|
1134
|
-
title: string | null;
|
|
1135
1133
|
description: string | null;
|
|
1134
|
+
status: "cancelled" | "draft" | "failed" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked";
|
|
1135
|
+
title: string | null;
|
|
1136
1136
|
travelerParty: {
|
|
1137
1137
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
1138
1138
|
};
|
|
@@ -1168,12 +1168,17 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1168
1168
|
};
|
|
1169
1169
|
components: {
|
|
1170
1170
|
id: string;
|
|
1171
|
+
description: string | null;
|
|
1172
|
+
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
1173
|
+
status: "unavailable" | "cancelled" | "draft" | "held" | "failed" | "priced" | "checkout_started" | "booked" | "removed";
|
|
1171
1174
|
sourceKind: string | null;
|
|
1172
1175
|
sourceConnectionId: string | null;
|
|
1173
1176
|
sourceRef: string | null;
|
|
1174
|
-
|
|
1177
|
+
entityModule: string | null;
|
|
1178
|
+
entityId: string | null;
|
|
1179
|
+
bookingId: string | null;
|
|
1180
|
+
holdToken: string | null;
|
|
1175
1181
|
title: string | null;
|
|
1176
|
-
description: string | null;
|
|
1177
1182
|
bookingGroupId: string | null;
|
|
1178
1183
|
orderId: string | null;
|
|
1179
1184
|
paymentSessionId: string | null;
|
|
@@ -1181,12 +1186,8 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1181
1186
|
updatedAt: string;
|
|
1182
1187
|
envelopeId: string;
|
|
1183
1188
|
sequence: number;
|
|
1184
|
-
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
1185
|
-
entityModule: string | null;
|
|
1186
|
-
entityId: string | null;
|
|
1187
1189
|
bookingDraftId: string | null;
|
|
1188
1190
|
catalogQuoteId: string | null;
|
|
1189
|
-
bookingId: string | null;
|
|
1190
1191
|
providerRef: string | null;
|
|
1191
1192
|
supplierRef: string | null;
|
|
1192
1193
|
componentCurrency: string | null;
|
|
@@ -1214,7 +1215,6 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1214
1215
|
cancellationSnapshot: {
|
|
1215
1216
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
1216
1217
|
} | null;
|
|
1217
|
-
holdToken: string | null;
|
|
1218
1218
|
holdExpiresAt: string | null;
|
|
1219
1219
|
priceExpiresAt: string | null;
|
|
1220
1220
|
warningCodes: string[];
|
|
@@ -1258,9 +1258,9 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1258
1258
|
data: {
|
|
1259
1259
|
envelope: {
|
|
1260
1260
|
id: string;
|
|
1261
|
-
status: "cancelled" | "draft" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked" | "failed";
|
|
1262
|
-
title: string | null;
|
|
1263
1261
|
description: string | null;
|
|
1262
|
+
status: "cancelled" | "draft" | "failed" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked";
|
|
1263
|
+
title: string | null;
|
|
1264
1264
|
travelerParty: {
|
|
1265
1265
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
1266
1266
|
};
|
|
@@ -1296,12 +1296,17 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1296
1296
|
};
|
|
1297
1297
|
components: {
|
|
1298
1298
|
id: string;
|
|
1299
|
+
description: string | null;
|
|
1300
|
+
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
1301
|
+
status: "unavailable" | "cancelled" | "draft" | "held" | "failed" | "priced" | "checkout_started" | "booked" | "removed";
|
|
1299
1302
|
sourceKind: string | null;
|
|
1300
1303
|
sourceConnectionId: string | null;
|
|
1301
1304
|
sourceRef: string | null;
|
|
1302
|
-
|
|
1305
|
+
entityModule: string | null;
|
|
1306
|
+
entityId: string | null;
|
|
1307
|
+
bookingId: string | null;
|
|
1308
|
+
holdToken: string | null;
|
|
1303
1309
|
title: string | null;
|
|
1304
|
-
description: string | null;
|
|
1305
1310
|
bookingGroupId: string | null;
|
|
1306
1311
|
orderId: string | null;
|
|
1307
1312
|
paymentSessionId: string | null;
|
|
@@ -1309,12 +1314,8 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1309
1314
|
updatedAt: string;
|
|
1310
1315
|
envelopeId: string;
|
|
1311
1316
|
sequence: number;
|
|
1312
|
-
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
1313
|
-
entityModule: string | null;
|
|
1314
|
-
entityId: string | null;
|
|
1315
1317
|
bookingDraftId: string | null;
|
|
1316
1318
|
catalogQuoteId: string | null;
|
|
1317
|
-
bookingId: string | null;
|
|
1318
1319
|
providerRef: string | null;
|
|
1319
1320
|
supplierRef: string | null;
|
|
1320
1321
|
componentCurrency: string | null;
|
|
@@ -1342,7 +1343,6 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1342
1343
|
cancellationSnapshot: {
|
|
1343
1344
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
1344
1345
|
} | null;
|
|
1345
|
-
holdToken: string | null;
|
|
1346
1346
|
holdExpiresAt: string | null;
|
|
1347
1347
|
priceExpiresAt: string | null;
|
|
1348
1348
|
warningCodes: string[];
|
|
@@ -1380,12 +1380,17 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1380
1380
|
output: {
|
|
1381
1381
|
data: {
|
|
1382
1382
|
id: string;
|
|
1383
|
+
description: string | null;
|
|
1384
|
+
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
1385
|
+
status: "unavailable" | "cancelled" | "draft" | "held" | "failed" | "priced" | "checkout_started" | "booked" | "removed";
|
|
1383
1386
|
sourceKind: string | null;
|
|
1384
1387
|
sourceConnectionId: string | null;
|
|
1385
1388
|
sourceRef: string | null;
|
|
1386
|
-
|
|
1389
|
+
entityModule: string | null;
|
|
1390
|
+
entityId: string | null;
|
|
1391
|
+
bookingId: string | null;
|
|
1392
|
+
holdToken: string | null;
|
|
1387
1393
|
title: string | null;
|
|
1388
|
-
description: string | null;
|
|
1389
1394
|
bookingGroupId: string | null;
|
|
1390
1395
|
orderId: string | null;
|
|
1391
1396
|
paymentSessionId: string | null;
|
|
@@ -1393,12 +1398,8 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1393
1398
|
updatedAt: string;
|
|
1394
1399
|
envelopeId: string;
|
|
1395
1400
|
sequence: number;
|
|
1396
|
-
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
1397
|
-
entityModule: string | null;
|
|
1398
|
-
entityId: string | null;
|
|
1399
1401
|
bookingDraftId: string | null;
|
|
1400
1402
|
catalogQuoteId: string | null;
|
|
1401
|
-
bookingId: string | null;
|
|
1402
1403
|
providerRef: string | null;
|
|
1403
1404
|
supplierRef: string | null;
|
|
1404
1405
|
componentCurrency: string | null;
|
|
@@ -1426,7 +1427,6 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1426
1427
|
cancellationSnapshot: {
|
|
1427
1428
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
1428
1429
|
} | null;
|
|
1429
|
-
holdToken: string | null;
|
|
1430
1430
|
holdExpiresAt: string | null;
|
|
1431
1431
|
priceExpiresAt: string | null;
|
|
1432
1432
|
warningCodes: string[];
|
|
@@ -1486,9 +1486,9 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1486
1486
|
data: {
|
|
1487
1487
|
envelope: {
|
|
1488
1488
|
id: string;
|
|
1489
|
-
status: "cancelled" | "draft" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked" | "failed";
|
|
1490
|
-
title: string | null;
|
|
1491
1489
|
description: string | null;
|
|
1490
|
+
status: "cancelled" | "draft" | "failed" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked";
|
|
1491
|
+
title: string | null;
|
|
1492
1492
|
travelerParty: {
|
|
1493
1493
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
1494
1494
|
};
|
|
@@ -1524,12 +1524,17 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1524
1524
|
};
|
|
1525
1525
|
components: {
|
|
1526
1526
|
id: string;
|
|
1527
|
+
description: string | null;
|
|
1528
|
+
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
1529
|
+
status: "unavailable" | "cancelled" | "draft" | "held" | "failed" | "priced" | "checkout_started" | "booked" | "removed";
|
|
1527
1530
|
sourceKind: string | null;
|
|
1528
1531
|
sourceConnectionId: string | null;
|
|
1529
1532
|
sourceRef: string | null;
|
|
1530
|
-
|
|
1533
|
+
entityModule: string | null;
|
|
1534
|
+
entityId: string | null;
|
|
1535
|
+
bookingId: string | null;
|
|
1536
|
+
holdToken: string | null;
|
|
1531
1537
|
title: string | null;
|
|
1532
|
-
description: string | null;
|
|
1533
1538
|
bookingGroupId: string | null;
|
|
1534
1539
|
orderId: string | null;
|
|
1535
1540
|
paymentSessionId: string | null;
|
|
@@ -1537,12 +1542,8 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1537
1542
|
updatedAt: string;
|
|
1538
1543
|
envelopeId: string;
|
|
1539
1544
|
sequence: number;
|
|
1540
|
-
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
1541
|
-
entityModule: string | null;
|
|
1542
|
-
entityId: string | null;
|
|
1543
1545
|
bookingDraftId: string | null;
|
|
1544
1546
|
catalogQuoteId: string | null;
|
|
1545
|
-
bookingId: string | null;
|
|
1546
1547
|
providerRef: string | null;
|
|
1547
1548
|
supplierRef: string | null;
|
|
1548
1549
|
componentCurrency: string | null;
|
|
@@ -1570,7 +1571,6 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1570
1571
|
cancellationSnapshot: {
|
|
1571
1572
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
1572
1573
|
} | null;
|
|
1573
|
-
holdToken: string | null;
|
|
1574
1574
|
holdExpiresAt: string | null;
|
|
1575
1575
|
priceExpiresAt: string | null;
|
|
1576
1576
|
warningCodes: string[];
|
|
@@ -1632,9 +1632,9 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1632
1632
|
data: {
|
|
1633
1633
|
envelope: {
|
|
1634
1634
|
id: string;
|
|
1635
|
-
status: "cancelled" | "draft" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked" | "failed";
|
|
1636
|
-
title: string | null;
|
|
1637
1635
|
description: string | null;
|
|
1636
|
+
status: "cancelled" | "draft" | "failed" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked";
|
|
1637
|
+
title: string | null;
|
|
1638
1638
|
travelerParty: {
|
|
1639
1639
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
1640
1640
|
};
|
|
@@ -1670,12 +1670,17 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1670
1670
|
};
|
|
1671
1671
|
components: {
|
|
1672
1672
|
id: string;
|
|
1673
|
+
description: string | null;
|
|
1674
|
+
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
1675
|
+
status: "unavailable" | "cancelled" | "draft" | "held" | "failed" | "priced" | "checkout_started" | "booked" | "removed";
|
|
1673
1676
|
sourceKind: string | null;
|
|
1674
1677
|
sourceConnectionId: string | null;
|
|
1675
1678
|
sourceRef: string | null;
|
|
1676
|
-
|
|
1679
|
+
entityModule: string | null;
|
|
1680
|
+
entityId: string | null;
|
|
1681
|
+
bookingId: string | null;
|
|
1682
|
+
holdToken: string | null;
|
|
1677
1683
|
title: string | null;
|
|
1678
|
-
description: string | null;
|
|
1679
1684
|
bookingGroupId: string | null;
|
|
1680
1685
|
orderId: string | null;
|
|
1681
1686
|
paymentSessionId: string | null;
|
|
@@ -1683,12 +1688,8 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1683
1688
|
updatedAt: string;
|
|
1684
1689
|
envelopeId: string;
|
|
1685
1690
|
sequence: number;
|
|
1686
|
-
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
1687
|
-
entityModule: string | null;
|
|
1688
|
-
entityId: string | null;
|
|
1689
1691
|
bookingDraftId: string | null;
|
|
1690
1692
|
catalogQuoteId: string | null;
|
|
1691
|
-
bookingId: string | null;
|
|
1692
1693
|
providerRef: string | null;
|
|
1693
1694
|
supplierRef: string | null;
|
|
1694
1695
|
componentCurrency: string | null;
|
|
@@ -1716,7 +1717,6 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1716
1717
|
cancellationSnapshot: {
|
|
1717
1718
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
1718
1719
|
} | null;
|
|
1719
|
-
holdToken: string | null;
|
|
1720
1720
|
holdExpiresAt: string | null;
|
|
1721
1721
|
priceExpiresAt: string | null;
|
|
1722
1722
|
warningCodes: string[];
|
|
@@ -1782,9 +1782,9 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1782
1782
|
data: {
|
|
1783
1783
|
envelope: {
|
|
1784
1784
|
id: string;
|
|
1785
|
-
status: "cancelled" | "draft" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked" | "failed";
|
|
1786
|
-
title: string | null;
|
|
1787
1785
|
description: string | null;
|
|
1786
|
+
status: "cancelled" | "draft" | "failed" | "priced" | "reserve_in_progress" | "reserved" | "checkout_started" | "booked";
|
|
1787
|
+
title: string | null;
|
|
1788
1788
|
travelerParty: {
|
|
1789
1789
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
1790
1790
|
};
|
|
@@ -1820,12 +1820,17 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1820
1820
|
};
|
|
1821
1821
|
components: {
|
|
1822
1822
|
id: string;
|
|
1823
|
+
description: string | null;
|
|
1824
|
+
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
1825
|
+
status: "unavailable" | "cancelled" | "draft" | "held" | "failed" | "priced" | "checkout_started" | "booked" | "removed";
|
|
1823
1826
|
sourceKind: string | null;
|
|
1824
1827
|
sourceConnectionId: string | null;
|
|
1825
1828
|
sourceRef: string | null;
|
|
1826
|
-
|
|
1829
|
+
entityModule: string | null;
|
|
1830
|
+
entityId: string | null;
|
|
1831
|
+
bookingId: string | null;
|
|
1832
|
+
holdToken: string | null;
|
|
1827
1833
|
title: string | null;
|
|
1828
|
-
description: string | null;
|
|
1829
1834
|
bookingGroupId: string | null;
|
|
1830
1835
|
orderId: string | null;
|
|
1831
1836
|
paymentSessionId: string | null;
|
|
@@ -1833,12 +1838,8 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1833
1838
|
updatedAt: string;
|
|
1834
1839
|
envelopeId: string;
|
|
1835
1840
|
sequence: number;
|
|
1836
|
-
kind: "catalog_booking" | "manual_placeholder" | "flight_placeholder" | "flight_order" | "external_order";
|
|
1837
|
-
entityModule: string | null;
|
|
1838
|
-
entityId: string | null;
|
|
1839
1841
|
bookingDraftId: string | null;
|
|
1840
1842
|
catalogQuoteId: string | null;
|
|
1841
|
-
bookingId: string | null;
|
|
1842
1843
|
providerRef: string | null;
|
|
1843
1844
|
supplierRef: string | null;
|
|
1844
1845
|
componentCurrency: string | null;
|
|
@@ -1866,7 +1867,6 @@ export declare const travelComposerRoutes: import("hono/hono-base").HonoBase<Env
|
|
|
1866
1867
|
cancellationSnapshot: {
|
|
1867
1868
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
1868
1869
|
} | null;
|
|
1869
|
-
holdToken: string | null;
|
|
1870
1870
|
holdExpiresAt: string | null;
|
|
1871
1871
|
priceExpiresAt: string | null;
|
|
1872
1872
|
warningCodes: string[];
|