@xivart/edge 0.0.1-security → 2.534.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of @xivart/edge might be problematic. Click here for more details.
- package/LICENSE +21 -0
- package/README.md +29 -3
- package/package.json +28 -3
- package/scripts/build.js +132 -0
- package/src/application/handlers/features/describers/api.describer.js +68 -0
- package/src/application/handlers/features/describers/extras.describer.js +12 -0
- package/src/application/handlers/features/describers/featureTypeBase.describer.js +8 -0
- package/src/application/handlers/features/describers/headers.describer.js +24 -0
- package/src/application/handlers/features/describers/passenger.describer.js +12 -0
- package/src/application/handlers/features/describers/summary.describer.js +7 -0
- package/src/application/handlers/features/describers/upsell.describer.js +11 -0
- package/src/application/types/checkoutGoogleFlights.type.js +8 -0
- package/src/application/types/discountVoucher.type.js +25 -0
- package/src/domain/account/autoCheckIn/schemas/bookingAutoCheckIn.api.schema.js +9 -0
- package/src/domain/account/bank-transfer/constants.js +33 -0
- package/src/domain/account/booking-details/types/importantMessages.type.js +13 -0
- package/src/domain/account/booking-details/types/messageHistory.type.js +15 -0
- package/src/domain/account/booking-details/types/ticketEligibility.js +8 -0
- package/src/domain/account/booking-payments/schemas/bookingPayments.api.schema.js +22 -0
- package/src/domain/account/costs/types/flightExchangeCost.type.js +8 -0
- package/src/domain/account/eligibilities/types/eligibilities.type.js +42 -0
- package/src/domain/account/eligibilities/types/flowEligibilityReason.type.js +7 -0
- package/src/domain/account/exchange-payment-status/exchangePaymentStatus.api.schema.js +11 -0
- package/src/domain/account/free-exchange/types/freeExchange.type.js +7 -0
- package/src/domain/account/online-checkin/types/onlineCheckIn.type.js +12 -0
- package/src/domain/account/postSale/constants.js +9 -0
- package/src/domain/account/postSale/schemas/product.api.schema.js +12 -0
- package/src/domain/account/postSale/schemas/shoppingCart.api.schema.js +7 -0
- package/src/domain/account/self-cancel-flight/schemas/selfCancelFlight.api.schema.js +7 -0
- package/src/domain/account/send-email/types/sendEmail.type.js +7 -0
- package/src/domain/account/special-luggage/types/specialLuggage.type.js +24 -0
- package/src/domain/ancillary/fare-families/types/fareFamily.type.js +9 -0
- package/src/domain/ancillary/fare-families/types/item.type.js +22 -0
- package/src/domain/ancillary/fare-families/types/upsellProductType.type.js +7 -0
- package/src/domain/cross-sell/airhelp/types/airhelpEntity.type.js +7 -0
- package/src/domain/cross-sell/cancel-for-any-reason/types/cfar.type.js +7 -0
- package/src/domain/cross-sell/cars-locations/types/carsLocations.type.js +10 -0
- package/src/domain/cross-sell/service-package/types/servicePackage.type.js +14 -0
- package/src/domain/cross-sell/service-package/types/usp.type.js +30 -0
- package/src/domain/customer/passenger/types/passenger.type.js +7 -0
- package/src/domain/kernel/car-details/schemas/carDetails.api.schema.js +30 -0
- package/src/domain/kernel/cars/types/car.type.js +47 -0
- package/src/domain/kernel/costs/types/bundleItemLevel.type.js +8 -0
- package/src/domain/kernel/costs/types/costProductTypes.type.js +20 -0
- package/src/domain/kernel/costs/types/postPaidProductTypes.type.js +6 -0
- package/src/domain/kernel/costs/types/unit.type.js +7 -0
- package/src/domain/kernel/flight-details/types/flightDirection.type.js +7 -0
- package/src/domain/kernel/flight-details/types/flightType.type.js +10 -0
- package/src/domain/kernel/flight-details/types/haulType.type.js +8 -0
- package/src/domain/kernel/flight-details/types/vehicle.type.js +9 -0
- package/src/domain/kernel/insurance/types/insurance.type.js +19 -0
- package/src/domain/kernel/passengers/types/passengerType.type.js +8 -0
- package/src/domain/kernel/payment/types/paymentFlowTypes.type.js +8 -0
- package/src/domain/kernel/seatMap/schemas/seatSupplier.api.type.js +8 -0
- package/src/domain/kernel/seatMap/schemas/seatSupplier.type.js +7 -0
- package/src/domain/order/flight-details/types/vehicle.type.js +8 -0
- package/src/domain/order/route-happy/types/upa.type.js +13 -0
- package/src/domain/order/travelAuthorization/types/travelAuthorizationCodes.type.js +7 -0
- package/src/domain/paylink/paylinkPaymentStatus/schemas/paylinkPaymentStatus.api.schema.js +17 -0
- package/src/domain/payment/payment-options/types/eWalletOption.type.js +10 -0
- package/src/domain/payment/payment-options/types/paymentOption.type.js +48 -0
- package/src/domain/payment/payment-states/types/paymentState.type.js +11 -0
- package/src/domain/payment/processing/transforms/payment.transformBillingAddress.js +21 -0
- package/src/domain/payment/processing/transforms/payment.transformCardPayment.js +29 -0
- package/src/domain/payment/processing/transforms/payment.transformDirectLink.js +25 -0
- package/src/domain/postSale/types/deck.type.js +8 -0
- package/src/domain/postSale/types/legend.type.js +16 -0
- package/src/domain/postSale/types/seatPassenger.type.js +8 -0
- package/src/domain/productEvent/types/productOfferedEvent.type.js +38 -0
- package/src/domain/seatMap/types/deck.type.js +7 -0
- package/src/domain/seatMap/types/seat.type.js +21 -0
- package/src/infrastructure/error-handler/types/errorCode.js +138 -0
- package/tpp/paymentTransform.js +6 -0
- package/types/account.js +35 -0
- package/types/airhelp.js +5 -0
- package/types/api.describer.js +16 -0
- package/types/autoCheckIn.js +4 -0
- package/types/cars.js +12 -0
- package/types/cfar.js +5 -0
- package/types/customer.js +6 -0
- package/types/error.js +4 -0
- package/types/fareFamilies.js +11 -0
- package/types/insurance.js +5 -0
- package/types/kernel.js +18 -0
- package/types/metaPartner.js +4 -0
- package/types/order.js +10 -0
- package/types/paylink.js +6 -0
- package/types/payment.js +10 -0
- package/types/postSale.js +7 -0
- package/types/productEvent.js +7 -0
- package/types/search-results.js +5 -0
- package/types/seatMap.js +9 -0
- package/types/servicePackage.js +10 -0
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.DeckTypes = void 0;
|
4
|
+
var DeckTypes;
|
5
|
+
(function (DeckTypes) {
|
6
|
+
DeckTypes["Main"] = "MAIN";
|
7
|
+
DeckTypes["Upper"] = "UPPER";
|
8
|
+
})(DeckTypes = exports.DeckTypes || (exports.DeckTypes = {}));
|
@@ -0,0 +1,16 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.SeatTypes = void 0;
|
4
|
+
var SeatTypes;
|
5
|
+
(function (SeatTypes) {
|
6
|
+
SeatTypes["AdditionalLegroom"] = "AdditionalLegroom";
|
7
|
+
SeatTypes["Coffee"] = "Coffee";
|
8
|
+
SeatTypes["Comfort"] = "Comfort";
|
9
|
+
SeatTypes["Empty"] = "Empty";
|
10
|
+
SeatTypes["Kitchen"] = "Kitchen";
|
11
|
+
SeatTypes["NotAvailable"] = "NotAvailable";
|
12
|
+
SeatTypes["Stairs"] = "Stairs";
|
13
|
+
SeatTypes["Standard"] = "Standard";
|
14
|
+
SeatTypes["Toilet"] = "Toilet";
|
15
|
+
SeatTypes["Wheelchair"] = "Wheelchair";
|
16
|
+
})(SeatTypes = exports.SeatTypes || (exports.SeatTypes = {}));
|
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.SeatAssignmentStatus = void 0;
|
4
|
+
var SeatAssignmentStatus;
|
5
|
+
(function (SeatAssignmentStatus) {
|
6
|
+
SeatAssignmentStatus["PURCHASED"] = "PURCHASED";
|
7
|
+
SeatAssignmentStatus["IN_SHOPPING"] = "IN_SHOPPING";
|
8
|
+
})(SeatAssignmentStatus = exports.SeatAssignmentStatus || (exports.SeatAssignmentStatus = {}));
|
@@ -0,0 +1,38 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
var ProductEventProductType;
|
4
|
+
(function (ProductEventProductType) {
|
5
|
+
ProductEventProductType["Baggage"] = "Baggage";
|
6
|
+
ProductEventProductType["Seat"] = "Seat";
|
7
|
+
ProductEventProductType["FareFamily"] = "FareFamily";
|
8
|
+
ProductEventProductType["Insurance"] = "Insurance";
|
9
|
+
ProductEventProductType["RefundProtect"] = "RefundProtect";
|
10
|
+
ProductEventProductType["ServicePackage"] = "ServicePackage";
|
11
|
+
ProductEventProductType["AirHelp"] = "AirHelp";
|
12
|
+
ProductEventProductType["TicketInsurance"] = "TicketInsurance";
|
13
|
+
ProductEventProductType["AutoCheckIn"] = "AutoCheckIn";
|
14
|
+
ProductEventProductType["Car"] = "Car";
|
15
|
+
})(ProductEventProductType = exports.ProductEventProductType || (exports.ProductEventProductType = {}));
|
16
|
+
var ProductEventProductNames;
|
17
|
+
(function (ProductEventProductNames) {
|
18
|
+
ProductEventProductNames["Baggage"] = "Baggage";
|
19
|
+
ProductEventProductNames["Seat"] = "Seat";
|
20
|
+
ProductEventProductNames["AirHelp"] = "Airhelp+";
|
21
|
+
ProductEventProductNames["TicketInsurance"] = "Ticket Guarantee";
|
22
|
+
ProductEventProductNames["AutoCheckIn"] = "Automated Check-in";
|
23
|
+
ProductEventProductNames["CarRental"] = "Car Rental";
|
24
|
+
ProductEventProductNames["CarInsurance"] = "Car Insurance";
|
25
|
+
})(ProductEventProductNames = exports.ProductEventProductNames || (exports.ProductEventProductNames = {}));
|
26
|
+
var Touchpoint;
|
27
|
+
(function (Touchpoint) {
|
28
|
+
Touchpoint["CoUpsell"] = "Checkout0";
|
29
|
+
Touchpoint["CoPax"] = "Checkout1";
|
30
|
+
Touchpoint["CoExtras"] = "Checkout2";
|
31
|
+
Touchpoint["MyAccount"] = "MyAccount";
|
32
|
+
Touchpoint["WhiteLabel"] = "WhiteLabel";
|
33
|
+
})(Touchpoint = exports.Touchpoint || (exports.Touchpoint = {}));
|
34
|
+
var BusinessProcess;
|
35
|
+
(function (BusinessProcess) {
|
36
|
+
BusinessProcess["InFlow"] = "InFlow";
|
37
|
+
BusinessProcess["PostSale"] = "PostSale";
|
38
|
+
})(BusinessProcess = exports.BusinessProcess || (exports.BusinessProcess = {}));
|
@@ -0,0 +1,21 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
var SeatTypes;
|
4
|
+
(function (SeatTypes) {
|
5
|
+
SeatTypes["AdditionalLegroom"] = "AdditionalLegroom";
|
6
|
+
SeatTypes["Coffee"] = "Coffee";
|
7
|
+
SeatTypes["Comfort"] = "Comfort";
|
8
|
+
SeatTypes["Empty"] = "Empty";
|
9
|
+
SeatTypes["Kitchen"] = "Kitchen";
|
10
|
+
SeatTypes["NotAvailable"] = "NotAvailable";
|
11
|
+
SeatTypes["Stairs"] = "Stairs";
|
12
|
+
SeatTypes["Standard"] = "Standard";
|
13
|
+
SeatTypes["Toilet"] = "Toilet";
|
14
|
+
SeatTypes["Wheelchair"] = "Wheelchair";
|
15
|
+
})(SeatTypes = exports.SeatTypes || (exports.SeatTypes = {}));
|
16
|
+
var SeatPositionTypes;
|
17
|
+
(function (SeatPositionTypes) {
|
18
|
+
SeatPositionTypes["Aisle"] = "AISLE";
|
19
|
+
SeatPositionTypes["Center"] = "CENTER";
|
20
|
+
SeatPositionTypes["Window"] = "WINDOW";
|
21
|
+
})(SeatPositionTypes = exports.SeatPositionTypes || (exports.SeatPositionTypes = {}));
|
@@ -0,0 +1,138 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
var ErrorCode;
|
4
|
+
(function (ErrorCode) {
|
5
|
+
ErrorCode["InvalidDomain"] = "INVALID_DOMAIN";
|
6
|
+
ErrorCode["BadGateway"] = "BAD_GATEWAY";
|
7
|
+
ErrorCode["BadRequest"] = "BAD_REQUEST";
|
8
|
+
ErrorCode["FlightNotBookable"] = "FLIGHT_NOT_BOOKABLE";
|
9
|
+
ErrorCode["GatewayTimeout"] = "GATEWAY_TIMEOUT";
|
10
|
+
ErrorCode["InternalServerError"] = "INTERNAL_SERVER_ERROR";
|
11
|
+
ErrorCode["ServiceUnavailable"] = "SERVICE_UNAVAILABLE";
|
12
|
+
ErrorCode["Unauthorized"] = "UNAUTHORIZED";
|
13
|
+
ErrorCode["SessionExpired"] = "SESSION_EXPIRED";
|
14
|
+
ErrorCode["CheckoutSessionFailed"] = "CHECKOUT_SESSION_FAILED";
|
15
|
+
ErrorCode["PaymentOptionSelectionFailed"] = "PAYMENT_OPTION_SELECTION_FAILED";
|
16
|
+
ErrorCode["AllBookingsRequestFailed"] = "ALL_BOOKINGS_REQUEST_FAILED";
|
17
|
+
ErrorCode["PdfRequestFailed"] = "PDF_REQUEST_FAILED";
|
18
|
+
ErrorCode["BookingDetailsRequestFailed"] = "BOOKING_DETAILS_REQUEST_FAILED";
|
19
|
+
ErrorCode["RegisterUserRequestFailed"] = "REGISTER_USER_REQUEST_FAILED";
|
20
|
+
ErrorCode["GetAuthTokenRequestFailed"] = "GET_AUTH_TOKEN_REQUEST_FAILED";
|
21
|
+
ErrorCode["GetIdentityRequestFailed"] = "GET_IDENTITY_REQUEST_FAILED";
|
22
|
+
ErrorCode["SendEmailFailed"] = "SEND_EMAIL_FAILED";
|
23
|
+
ErrorCode["CancelFlightFailed"] = "CANCEL_FLIGHT_FAILED";
|
24
|
+
ErrorCode["SelfCancelFlightFailed"] = "SELF_CANCEL_FLIGHT_FAILED";
|
25
|
+
ErrorCode["GetFlightReshopResultsFailed"] = "GET_FLIGHT_RESHOP_RESULTS_FAILED";
|
26
|
+
ErrorCode["ChangeFlightFailed"] = "CHANGE_FLIGHT_FAILED";
|
27
|
+
ErrorCode["ChangePassengerFailed"] = "CHANGE_PASSENGER_FAILED";
|
28
|
+
ErrorCode["SpecialLuggageRequestFailed"] = "SPECIAL_LUGGAGE_REQUEST_FAILED";
|
29
|
+
ErrorCode["BookingPaymentsRequestFailed"] = "BOOKING_PAYMENTS_REQUEST_FAILED";
|
30
|
+
ErrorCode["ExchangePaymentStatusRequestFailed"] = "EXCHANGE_PAYMENT_STATUS_REQUEST_FAILED";
|
31
|
+
ErrorCode["CancellationStatusFailed"] = "CANCELLATION_STATUS_FAILED";
|
32
|
+
ErrorCode["AmenitiesRequestFailed"] = "AMENITIES_REQUEST_FAILED";
|
33
|
+
ErrorCode["UpasRequestFailed"] = "UPAS_REQUEST_FAILED";
|
34
|
+
ErrorCode["AbandonedCartSaveEmailRequestFailed"] = "ABANDONED_CART_EMAIL_SAVE_FAILED";
|
35
|
+
ErrorCode["AbandonedCartUpdateEmailRequestFailed"] = "ABANDONED_CART_EMAIL_UPDATE_FAILED";
|
36
|
+
ErrorCode["PassengerRequestFailed"] = "PASSENGER_REQUEST_FAILED";
|
37
|
+
ErrorCode["PassengerSaveRequestFailed"] = "PASSENGER_SAVE_REQUEST_FAILED";
|
38
|
+
ErrorCode["ResetPasswordRequestFailed"] = "RESET_PASSWORD_REQUEST_FAILED";
|
39
|
+
ErrorCode["CreateFlightExchangeFailed"] = "CREATE_FLIGHT_EXCHANGE_FAILED";
|
40
|
+
ErrorCode["GetFlightExchangeRequestFailed"] = "GET_FLIGHT_EXCHANGE_REQUEST_FAILED";
|
41
|
+
ErrorCode["ConfirmFreeExchangeRequestFailed"] = "CONFIRM_FREE_EXCHANGE_REQUEST_FAILED";
|
42
|
+
ErrorCode["BaggagesEligibilityRequestFailed"] = "BAGGAGES_ELIGIBILITY_REQUEST_FAILED";
|
43
|
+
ErrorCode["BaggagesOptionsRequestFailed"] = "BAGGAGES_OPTIONS_REQUEST_FAILED";
|
44
|
+
ErrorCode["ChangeBaggagesFailed"] = "CHANGE_BAGGAGES_FAILED";
|
45
|
+
ErrorCode["AccountFLowNotImplemented"] = "ACCOUNT_FLOW_NOT_IMPLEMENTED";
|
46
|
+
ErrorCode["EligibilitiesRequestFailed"] = "ELIGIBILITIES_REQUEST_FAILED";
|
47
|
+
ErrorCode["BanksRequestFailed"] = "BANKS_REQUEST_FAILED";
|
48
|
+
ErrorCode["GetVoucherRequestFailed"] = "GET_VOUCHER_REQUEST_FAILED";
|
49
|
+
ErrorCode["SendVoucherCodeRequestFailed"] = "SEND_VOUCHER_CODE_REQUEST_FAILED";
|
50
|
+
ErrorCode["SeatMapRequestFailed"] = "SEATMAP_REQUEST_FAILED";
|
51
|
+
ErrorCode["SeatMapAssignmentsRequestFailed"] = "SEATMAP_ASSIGNMENTS_REQUEST_FAILED";
|
52
|
+
ErrorCode["ReservedSeatsRequestFailed"] = "RESERVE_SEATS_REQUEST_FAILED";
|
53
|
+
ErrorCode["SeatMapRequestTimeOut"] = "SEATMAP_REQUEST_TIMEOUT";
|
54
|
+
ErrorCode["CountriesRequestFailed"] = "COUNTRIES_REQUEST_FAILED";
|
55
|
+
ErrorCode["CountriesStateRequestFailed"] = "COUNTRIES_STATE_REQUEST_FAILED";
|
56
|
+
ErrorCode["AcceptConditionsRequestFailed"] = "ACCEPT_CONDITIONS_FAILED";
|
57
|
+
ErrorCode["GetContactPaybookLinksFailed"] = "GET_CONTACT_PAYBOOK_LINKS_REQUEST_FAILED";
|
58
|
+
ErrorCode["GetContactRequestFailed"] = "GET_CONTACT_REQUEST_FAILED";
|
59
|
+
ErrorCode["SendContactRequestFailed"] = "SEND_CONTACT_REQUEST_FAILED";
|
60
|
+
ErrorCode["ShoppingCartAddItemLinkFailed"] = "SHOPPING_CART_ADD_ITEM_LINK_FAILED";
|
61
|
+
ErrorCode["ShoppingCartRemoveItemLinkFailed"] = "SHOPPING_CART_REMOVE_ITEM_LINK_FAILED";
|
62
|
+
ErrorCode["SendTicketInsurance"] = "SEND_TICKET_INSURANCE_REQUEST_FAILED";
|
63
|
+
ErrorCode["GetTicketInsurance"] = "GET_TICKET_INSURANCE_REQUEST_FAILED";
|
64
|
+
ErrorCode["AirlinesRequestFailed"] = "AIRLINES_REQUEST_FAILED";
|
65
|
+
ErrorCode["AirlinesInfoRequestFailed"] = "AIRLINES_INFO_REQUEST_FAILED";
|
66
|
+
ErrorCode["FlightRootRequestFailed"] = "FLIGHT_ROOT_REQUEST_FAILED";
|
67
|
+
ErrorCode["FlightBookingRequestFailed"] = "FLIGHT_BOOKING_REQUEST_FAILED";
|
68
|
+
ErrorCode["FlightMultiStopRequestFailed"] = "FLIGHT_MULTI_STOP_REQUEST_FAILED";
|
69
|
+
ErrorCode["FlightDetailsRequestFailed"] = "FLIGHT_DETAILS_REQUEST_FAILED";
|
70
|
+
ErrorCode["FareFamiliesRequestFailed"] = "FARE_FAMILIES_REQUEST_FAILED";
|
71
|
+
ErrorCode["AirhelpRequestFailed"] = "AIRHELP_REQUEST_FAILED";
|
72
|
+
ErrorCode["AirhelpRequestLoaded"] = "AIRHELP_REQUEST_LOADED";
|
73
|
+
ErrorCode["ServicePackageRequestFailed"] = "SERVICE_PACKAGE_REQUEST_FAILED";
|
74
|
+
ErrorCode["ServicePackageRequestLoaded"] = "SERVICE_PACKAGE_REQUEST_LOADED";
|
75
|
+
ErrorCode["InsuranceRequestFailed"] = "INSURANCE_REQUEST_FAILED";
|
76
|
+
ErrorCode["CarsRequestFailed"] = "CARS_REQUEST_FAILED";
|
77
|
+
ErrorCode["CarsRequestLoaded"] = "CARS_REQUEST_LOADED";
|
78
|
+
ErrorCode["CarDetailsRequestLoaded"] = "CAR_DETAILS_REQUEST_LOADED";
|
79
|
+
ErrorCode["CarDetailsRequestFailed"] = "CAR_DETAILS_REQUEST_FAILED";
|
80
|
+
ErrorCode["InsuranceRequestLoaded"] = "INSURANCE_REQUEST_LOADED";
|
81
|
+
ErrorCode["ExtraFeeRequestFailed"] = "EXTRA_FEE_REQUEST_FAILED";
|
82
|
+
ErrorCode["ParkingRequestFailed"] = "PARKING_REQUEST_FAILED";
|
83
|
+
ErrorCode["ParkingRequestLoaded"] = "PARKING_REQUEST_LOADED";
|
84
|
+
ErrorCode["UpdatePostPaidProductRequestFailed"] = "UPDATE_POST_PAID_PRODUCT_REQUEST_FAILED";
|
85
|
+
ErrorCode["GetPostPaidProductRequestFailed"] = "GET_POST_PAID_PRODUCT_REQUEST_FAILED";
|
86
|
+
ErrorCode["AddInsuranceFailed"] = "ADD_INSURANCE_FAILED";
|
87
|
+
ErrorCode["AddCarFailed"] = "ADD_CAR_FAILED";
|
88
|
+
ErrorCode["AddCarInsuranceFailed"] = "ADD_CAR_INSURANCE_FAILED";
|
89
|
+
ErrorCode["CarsLocationsRequestFailed"] = "CARS_LOCATIONS_REQUEST_FAILED";
|
90
|
+
ErrorCode["CarsLocationDetailsRequestFailed"] = "CARS_LOCATION_DETAILS_REQUEST_FAILED";
|
91
|
+
ErrorCode["PaymentOptionsRequestFailed"] = "PAYMENT_OPTIONS_REQUEST_FAILED";
|
92
|
+
ErrorCode["PaymentOptionRequestFailed"] = "PAYMENT_OPTION_REQUEST_FAILED";
|
93
|
+
ErrorCode["PaymentValidationFailed"] = "PAYMENT_VALIDATION_FAILED";
|
94
|
+
ErrorCode["PaymentConfirmationFailed"] = "PAYMENT_CONFIRMATION_FAILED";
|
95
|
+
ErrorCode["PaymentStatusFailed"] = "PAYMENT_STATUS_FAILED";
|
96
|
+
ErrorCode["PaymentFailed"] = "PAYMENT_REQUEST_FAILED";
|
97
|
+
ErrorCode["DeviceDataCollectionFailed"] = "DEVICE_DATA_COLLECTION_FAILED";
|
98
|
+
ErrorCode["PaymentCodeMissing"] = "PAYMENT_CODE_MISSING_ON_SUBMIT";
|
99
|
+
ErrorCode["PaymentResponseMultipleStatusCodes"] = "PAYMENT_RESPONSE_MULTIPLE_STATUS_CODES";
|
100
|
+
ErrorCode["BINRequestFailed"] = "BIN_REQUEST_FAILED";
|
101
|
+
ErrorCode["BINDigitsAmountError"] = "BIN_DIGITS_AMOUNT_ERROR";
|
102
|
+
ErrorCode["PaymentProcessingState"] = "PAYMENT_PROCESSING_STATE";
|
103
|
+
ErrorCode["PaymentPendingState"] = "PAYMENT_PENDING_STATE";
|
104
|
+
ErrorCode["PaymentConfirmationState"] = "PAYMENT_CONFIRMATION_STATE";
|
105
|
+
ErrorCode["SummaryInfo"] = "SUMMARY_INFO";
|
106
|
+
ErrorCode["GtmDataCollection"] = "GTM_DATA_COLLECTION";
|
107
|
+
ErrorCode["BraintreeClientTokenFailed"] = "BRAINTREE_CLIENT_TOKEN_FAILED";
|
108
|
+
ErrorCode["TrustPilotRequestFailed"] = "TRUSTPILOT_REQUEST_FAILED";
|
109
|
+
ErrorCode["AddProductFailed"] = "ADD_PRODUCT_FAILED";
|
110
|
+
ErrorCode["RemoveProductFailed"] = "REMOVE_PRODUCT_FAILED";
|
111
|
+
ErrorCode["GetCostsProductsFailed"] = "GET_COSTS_PRODUCTS_FAILED";
|
112
|
+
ErrorCode["GetCostsLinksFailed"] = "GET_COSTS_LINKS_FAILED";
|
113
|
+
ErrorCode["TrackEventRequestFailed"] = "TRACK_EVENT_REQUEST_FAILED";
|
114
|
+
ErrorCode["TrackSessionIdRequestFailed"] = "TRACK_SESSION_ID_REQUEST_FAILED";
|
115
|
+
ErrorCode["ActivateExperimentFailed"] = "ACTIVATE_EXPERIMENT_REQUEST_FAILED";
|
116
|
+
ErrorCode["SetGaClientIdRequestFailed"] = "SET_GA_CLIENT_ID_REQUEST_FAILED";
|
117
|
+
ErrorCode["AirportsRequestFailed"] = "AIRPORTS_REQUEST_FAILED";
|
118
|
+
ErrorCode["AirportRequestFailed"] = "AIRPORT_REQUEST_FAILED";
|
119
|
+
ErrorCode["TravelAuthorizationRequestFailed"] = "TRAVEL_AUTHORIZATION_REQUEST_FAILED";
|
120
|
+
ErrorCode["FarecacheRequestFailed"] = "FARECACHE_REQUEST_FAILED";
|
121
|
+
ErrorCode["SearchCriteriaRequestFailed"] = "SEARCH_CRITERIA_REQUEST_FAILED";
|
122
|
+
ErrorCode["GetMetaDataRequestFailed"] = "GET_META_DATA_REQUEST_FAILED";
|
123
|
+
ErrorCode["GetMetaLinksFailed"] = "GET_META_LINKS_FAILED";
|
124
|
+
ErrorCode["GetGoogleFlightsDataRequestFailed"] = "GET_GOOGLE_FLIGHTS_DATA_REQUEST_FAILED";
|
125
|
+
ErrorCode["GetGoogleFlightsRootLinksRequestFailed"] = "GET_GOOGLE_FLIGHTS_ROOT_LNKS_REQUEST_FAILED";
|
126
|
+
ErrorCode["GetGoogleFlightsLinksRequestFailed"] = "GET_GOOGLE_FLIGHTS_LINKS_REQUEST_FAILED";
|
127
|
+
ErrorCode["ItineraryAPINoParamsResponse"] = "ITINERARY_API_NO_PARAMS_RESPONSE";
|
128
|
+
ErrorCode["FlightRootParamsNotAvailable"] = "FLIGHT_ROOT_PARAMS_NOT_AVAILABLE";
|
129
|
+
ErrorCode["FlightRootDataNotAvailable"] = "FLIGHT_ROOT_DATA_NOT_AVAILABLE";
|
130
|
+
ErrorCode["PaylinkSummaryRequestFailed"] = "PAYLINK_SUMMARY_REQUEST_FAILED";
|
131
|
+
ErrorCode["PaylinkPaymentStatusRequestFailed"] = "PAYLINK_PAYMENT_STATUS_REQUEST_FAILED";
|
132
|
+
ErrorCode["SubscribeRequestFailed"] = "SUBSCRIBE_REQUEST_FAILED";
|
133
|
+
ErrorCode["SubscribeRequestNotEmptyResponse"] = "SUBSCRIBE_REQUEST_NOT_EMPTY_RESPONSE";
|
134
|
+
ErrorCode["GetRouteHappyAccessTokenRequestFailed"] = "GET_ROUTEHAPPY_ACCESS_TOKEN_REQUEST_FAILED";
|
135
|
+
ErrorCode["SendAutoCheckInRequestFailed"] = "SEND_AUTO_CHECKIN_REQUEST_FAILED";
|
136
|
+
ErrorCode["GetAutoCheckInRequestFailed"] = "GET_AUTO_CHECK_IN_REQUEST_FAILED";
|
137
|
+
ErrorCode["AutoCheckInNotAvailable"] = "AUTO_CHECK_IN_NOT_AVAILABLE";
|
138
|
+
})(ErrorCode = exports.ErrorCode || (exports.ErrorCode = {}));
|
@@ -0,0 +1,6 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
var payment_transformDirectLink_1 = require("../src/domain/payment/processing/transforms/payment.transformDirectLink");
|
4
|
+
exports.transformDirectLink = payment_transformDirectLink_1.transformDirectLink;
|
5
|
+
var payment_transformCardPayment_1 = require("../src/domain/payment/processing/transforms/payment.transformCardPayment");
|
6
|
+
exports.transformCardPayment = payment_transformCardPayment_1.transformCardPayment;
|
package/types/account.js
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const exchangePaymentStatus_api_schema_1 = require("../src/domain/account/exchange-payment-status/exchangePaymentStatus.api.schema");
|
4
|
+
exports.ExchangePaymentStatus = exchangePaymentStatus_api_schema_1.ExchangePaymentStatus;
|
5
|
+
const onlineCheckIn_type_1 = require("../src/domain/account/online-checkin/types/onlineCheckIn.type");
|
6
|
+
exports.CheckInStatus = onlineCheckIn_type_1.CheckInStatus;
|
7
|
+
const ticketEligibility_1 = require("../src/domain/account/booking-details/types/ticketEligibility");
|
8
|
+
exports.TicketEligibility = ticketEligibility_1.TicketEligibility;
|
9
|
+
const importantMessages_type_1 = require("../src/domain/account/booking-details/types/importantMessages.type");
|
10
|
+
exports.ImportantMessagesTypes = importantMessages_type_1.ImportantMessagesTypes;
|
11
|
+
const bookingPayments_api_schema_1 = require("../src/domain/account/booking-payments/schemas/bookingPayments.api.schema");
|
12
|
+
exports.InvoiceGroupType = bookingPayments_api_schema_1.InvoiceGroupTypeAPI;
|
13
|
+
exports.InvoiceSubGroupType = bookingPayments_api_schema_1.InvoiceSubGroupTypeAPI;
|
14
|
+
const sendEmail_type_1 = require("../src/domain/account/send-email/types/sendEmail.type");
|
15
|
+
exports.SendEmailTypes = sendEmail_type_1.SendEmailTypes;
|
16
|
+
const selfCancelFlight_api_schema_1 = require("../src/domain/account/self-cancel-flight/schemas/selfCancelFlight.api.schema");
|
17
|
+
exports.SelfCancelFlightStatus = selfCancelFlight_api_schema_1.SelfCancelFlightStatus;
|
18
|
+
const specialLuggage_type_1 = require("../src/domain/account/special-luggage/types/specialLuggage.type");
|
19
|
+
exports.SpecialLuggageType = specialLuggage_type_1.SpecialLuggageType;
|
20
|
+
exports.TypesOfMedicine = specialLuggage_type_1.TypesOfMedicine;
|
21
|
+
exports.WheelchairType = specialLuggage_type_1.WheelchairType;
|
22
|
+
exports.WheelchairBatteryType = specialLuggage_type_1.WheelchairBatteryType;
|
23
|
+
const messageHistory_type_1 = require("../src/domain/account/booking-details/types/messageHistory.type");
|
24
|
+
exports.ContactMethod = messageHistory_type_1.ContactMethod;
|
25
|
+
exports.MessageTypes = messageHistory_type_1.MessageTypes;
|
26
|
+
const eligibilities_type_1 = require("../src/domain/account/eligibilities/types/eligibilities.type");
|
27
|
+
exports.EligibilitiesItemType = eligibilities_type_1.EligibilitiesItemType;
|
28
|
+
exports.EligibilitiesFeeType = eligibilities_type_1.EligibilitiesFeeType;
|
29
|
+
exports.EligibilitiesNonRefundableFeeType = eligibilities_type_1.EligibilitiesNonRefundableFeeType;
|
30
|
+
const flightExchangeCost_type_1 = require("../src/domain/account/costs/types/flightExchangeCost.type");
|
31
|
+
exports.ExchangeFeeTypes = flightExchangeCost_type_1.ExchangeFeeTypes;
|
32
|
+
const flowEligibilityReason_type_1 = require("../src/domain/account/eligibilities/types/flowEligibilityReason.type");
|
33
|
+
exports.FlowEligibilityReason = flowEligibilityReason_type_1.FlowEligibilityReason;
|
34
|
+
const freeExchange_type_1 = require("../src/domain/account/free-exchange/types/freeExchange.type");
|
35
|
+
exports.FreeExchangeStatus = freeExchange_type_1.FreeExchangeStatus;
|
package/types/airhelp.js
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.AirhelpKeys = void 0;
|
4
|
+
var airhelpEntity_type_1 = require("../src/domain/cross-sell/airhelp/types/airhelpEntity.type");
|
5
|
+
Object.defineProperty(exports, "AirhelpKeys", { enumerable: true, get: function () { return airhelpEntity_type_1.AirhelpKeys; } });
|
@@ -0,0 +1,16 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const api_describer_1 = require("../src/application/handlers/features/describers/api.describer");
|
4
|
+
exports.APIRoute = api_describer_1.APIRoute;
|
5
|
+
const passenger_describer_1 = require("../src/application/handlers/features/describers/passenger.describer");
|
6
|
+
exports.PassengerFeatures = passenger_describer_1.PassengerFeatures;
|
7
|
+
exports.PassengerOptionalQueryParams = passenger_describer_1.PassengerOptionalQueryParams;
|
8
|
+
const extras_describer_1 = require("../src/application/handlers/features/describers/extras.describer");
|
9
|
+
exports.ExtrasFeatures = extras_describer_1.ExtrasFeatures;
|
10
|
+
const summary_describer_1 = require("../src/application/handlers/features/describers/summary.describer");
|
11
|
+
exports.SummaryFeatures = summary_describer_1.SummaryFeatures;
|
12
|
+
const upsell_describer_1 = require("../src/application/handlers/features/describers/upsell.describer");
|
13
|
+
exports.UpsellFeatures = upsell_describer_1.UpsellFeatures;
|
14
|
+
exports.UpsellOptionalQueryParams = upsell_describer_1.UpsellOptionalQueryParams;
|
15
|
+
const featureTypeBase_describer_1 = require("../src/application/handlers/features/describers/featureTypeBase.describer");
|
16
|
+
exports.HTTPMethod = featureTypeBase_describer_1.HTTPMethod;
|
@@ -0,0 +1,4 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const bookingAutoCheckIn_api_schema_1 = require("../src/domain/account/autoCheckIn/schemas/bookingAutoCheckIn.api.schema");
|
4
|
+
exports.BookingAutoCheckInStatus = bookingAutoCheckIn_api_schema_1.BookingAutoCheckInStatus;
|
package/types/cars.js
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
var car_type_1 = require("../src/domain/kernel/cars/types/car.type");
|
4
|
+
exports.CarType = car_type_1.CarType;
|
5
|
+
exports.RateType = car_type_1.RateType;
|
6
|
+
exports.VehicleDetailFuelTransmissionType = car_type_1.VehicleDetailFuelTransmissionType;
|
7
|
+
exports.VehicleDetailFuelType = car_type_1.VehicleDetailFuelType;
|
8
|
+
exports.VehicleDetailType = car_type_1.VehicleDetailType;
|
9
|
+
var carDetails_api_schema_1 = require("../src/domain/kernel/car-details/schemas/carDetails.api.schema");
|
10
|
+
exports.ExplanationTypes = carDetails_api_schema_1.ExplanationTypes;
|
11
|
+
var carsLocations_type_1 = require("../src/domain/cross-sell/cars-locations/types/carsLocations.type");
|
12
|
+
exports.CarsLocationCodeTypes = carsLocations_type_1.CarsLocationCodeTypes;
|
package/types/cfar.js
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CfarKeys = void 0;
|
4
|
+
var cfar_type_1 = require("../src/domain/cross-sell/cancel-for-any-reason/types/cfar.type");
|
5
|
+
Object.defineProperty(exports, "CfarKeys", { enumerable: true, get: function () { return cfar_type_1.CfarKeys; } });
|
@@ -0,0 +1,6 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const passenger_type_1 = require("../src/domain/customer/passenger/types/passenger.type");
|
4
|
+
exports.GenderTypes = passenger_type_1.GenderTypes;
|
5
|
+
const passengerType_type_1 = require("../src/domain/kernel/passengers/types/passengerType.type");
|
6
|
+
exports.PassengerTypes = passengerType_type_1.PassengerTypes;
|
package/types/error.js
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
var bundleItemLevel_type_1 = require("../src/domain/kernel/costs/types/bundleItemLevel.type");
|
4
|
+
exports.BundleItemLevel = bundleItemLevel_type_1.BundleItemLevel;
|
5
|
+
var upsellProductType_type_1 = require("../src/domain/ancillary/fare-families/types/upsellProductType.type");
|
6
|
+
exports.UpsellProductType = upsellProductType_type_1.UpsellProductType;
|
7
|
+
var fareFamily_type_1 = require("../src/domain/ancillary/fare-families/types/fareFamily.type");
|
8
|
+
exports.FareFamilyCodes = fareFamily_type_1.FareFamilyCodes;
|
9
|
+
var item_type_1 = require("../src/domain/ancillary/fare-families/types/item.type");
|
10
|
+
exports.FareFamilyItemCodeTypes = item_type_1.FareFamilyItemCodeTypes;
|
11
|
+
exports.FareFamilyItemPlaceholderTypes = item_type_1.FareFamilyItemPlaceholderTypes;
|
@@ -0,0 +1,5 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
var insurance_type_1 = require("../src/domain/kernel/insurance/types/insurance.type");
|
4
|
+
exports.InsuranceType = insurance_type_1.InsuranceType;
|
5
|
+
exports.Category = insurance_type_1.InsuranceCategory;
|
package/types/kernel.js
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const costProductTypes_type_1 = require("../src/domain/kernel/costs/types/costProductTypes.type");
|
4
|
+
exports.CostProductType = costProductTypes_type_1.CostProductType;
|
5
|
+
const postPaidProductTypes_type_1 = require("../src/domain/kernel/costs/types/postPaidProductTypes.type");
|
6
|
+
exports.PostPaidProductType = postPaidProductTypes_type_1.PostPaidProductType;
|
7
|
+
const paymentFlowTypes_type_1 = require("../src/domain/kernel/payment/types/paymentFlowTypes.type");
|
8
|
+
exports.FlowType = paymentFlowTypes_type_1.FlowType;
|
9
|
+
const passengerType_type_1 = require("../src/domain/kernel/passengers/types/passengerType.type");
|
10
|
+
exports.PassengerTypes = passengerType_type_1.PassengerTypes;
|
11
|
+
const flightType_type_1 = require("../src/domain/kernel/flight-details/types/flightType.type");
|
12
|
+
exports.FlightTypes = flightType_type_1.FlightTypes;
|
13
|
+
const flightDirection_type_1 = require("../src/domain/kernel/flight-details/types/flightDirection.type");
|
14
|
+
exports.FlightDirection = flightDirection_type_1.FlightDirection;
|
15
|
+
const haulType_type_1 = require("../src/domain/kernel/flight-details/types/haulType.type");
|
16
|
+
exports.HaulTypes = haulType_type_1.HaulTypes;
|
17
|
+
const unit_type_1 = require("../src/domain/kernel/costs/types/unit.type");
|
18
|
+
exports.Unit = unit_type_1.Unit;
|
package/types/order.js
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const discountVoucher_type_1 = require("../src/application/types/discountVoucher.type");
|
4
|
+
exports.VoucherErrorCodes = discountVoucher_type_1.VoucherErrorCodes;
|
5
|
+
const upa_type_1 = require("../src/domain/order/route-happy/types/upa.type");
|
6
|
+
exports.UpaType = upa_type_1.UpaType;
|
7
|
+
const vehicle_type_1 = require("../src/domain/order/flight-details/types/vehicle.type");
|
8
|
+
exports.VehicleTypes = vehicle_type_1.VehicleTypes;
|
9
|
+
const travelAuthorizationCodes_type_1 = require("../src/domain/order/travelAuthorization/types/travelAuthorizationCodes.type");
|
10
|
+
exports.TravelAuthorizationCodes = travelAuthorizationCodes_type_1.TravelAuthorizationCodes;
|
package/types/paylink.js
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.PaylinkErrorType = exports.PaylinkPaymentStatus = void 0;
|
4
|
+
const paylinkPaymentStatus_api_schema_1 = require("../src/domain/paylink/paylinkPaymentStatus/schemas/paylinkPaymentStatus.api.schema");
|
5
|
+
Object.defineProperty(exports, "PaylinkPaymentStatus", { enumerable: true, get: function () { return paylinkPaymentStatus_api_schema_1.PaylinkPaymentStatus; } });
|
6
|
+
Object.defineProperty(exports, "PaylinkErrorType", { enumerable: true, get: function () { return paylinkPaymentStatus_api_schema_1.PaylinkErrorType; } });
|
package/types/payment.js
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const paymentOption_type_1 = require("../src/domain/payment/payment-options/types/paymentOption.type");
|
4
|
+
exports.PaymentTypes = paymentOption_type_1.PaymentTypes;
|
5
|
+
exports.PaymentCodes = paymentOption_type_1.PaymentCodes;
|
6
|
+
const eWalletOption_type_1 = require("../src/domain/payment/payment-options/types/eWalletOption.type");
|
7
|
+
exports.EWalletPaymentCodes = eWalletOption_type_1.EWalletPaymentCodes;
|
8
|
+
exports.EWalletPaymentCodesList = eWalletOption_type_1.EWalletPaymentCodesList;
|
9
|
+
const paymentState_type_1 = require("../src/domain/payment/payment-states/types/paymentState.type");
|
10
|
+
exports.PaymentStates = paymentState_type_1.PaymentStates;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const product_api_schema_1 = require("../src/domain/account/postSale/schemas/product.api.schema");
|
4
|
+
exports.ProductType = product_api_schema_1.ProductTypeAPI;
|
5
|
+
exports.ProductStatus = product_api_schema_1.ProductStatusAPI;
|
6
|
+
const shoppingCart_api_schema_1 = require("../src/domain/account/postSale/schemas/shoppingCart.api.schema");
|
7
|
+
exports.PostSaleShoppingStatus = shoppingCart_api_schema_1.PostSaleShoppingStatus;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const productOfferedEvent_type_1 = require("../src/domain/productEvent/types/productOfferedEvent.type");
|
4
|
+
exports.ProductEventProductType = productOfferedEvent_type_1.ProductEventProductType;
|
5
|
+
exports.ProductEventProductNames = productOfferedEvent_type_1.ProductEventProductNames;
|
6
|
+
exports.Touchpoint = productOfferedEvent_type_1.Touchpoint;
|
7
|
+
exports.BusinessProcess = productOfferedEvent_type_1.BusinessProcess;
|
@@ -0,0 +1,5 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.HeaderKeys = void 0;
|
4
|
+
const headers_describer_1 = require("../src/application/handlers/features/describers/headers.describer");
|
5
|
+
Object.defineProperty(exports, "HeaderKeys", { enumerable: true, get: function () { return headers_describer_1.HeaderKeys; } });
|
package/types/seatMap.js
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const deck_type_1 = require("../src/domain/seatMap/types/deck.type");
|
4
|
+
exports.DeckTypes = deck_type_1.DeckTypes;
|
5
|
+
const seat_type_1 = require("../src/domain/seatMap/types/seat.type");
|
6
|
+
exports.SeatTypes = seat_type_1.SeatTypes;
|
7
|
+
exports.SeatPositionTypes = seat_type_1.SeatPositionTypes;
|
8
|
+
const seatSupplier_type_1 = require("../src/domain/kernel/seatMap/schemas/seatSupplier.type");
|
9
|
+
exports.SeatSupplierTypes = seatSupplier_type_1.SeatSupplierTypes;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.UspPlaceholderTypes = exports.UspCodes = exports.RateTypes = exports.LabelKeys = exports.CodeTypes = void 0;
|
4
|
+
const servicePackage_type_1 = require("../src/domain/cross-sell/service-package/types/servicePackage.type");
|
5
|
+
Object.defineProperty(exports, "CodeTypes", { enumerable: true, get: function () { return servicePackage_type_1.CodeTypes; } });
|
6
|
+
Object.defineProperty(exports, "RateTypes", { enumerable: true, get: function () { return servicePackage_type_1.RateTypes; } });
|
7
|
+
const usp_type_1 = require("../src/domain/cross-sell/service-package/types/usp.type");
|
8
|
+
Object.defineProperty(exports, "LabelKeys", { enumerable: true, get: function () { return usp_type_1.LabelKeys; } });
|
9
|
+
Object.defineProperty(exports, "UspCodes", { enumerable: true, get: function () { return usp_type_1.UspCodes; } });
|
10
|
+
Object.defineProperty(exports, "UspPlaceholderTypes", { enumerable: true, get: function () { return usp_type_1.UspPlaceholderTypes; } });
|