@mirai/core 0.3.138 → 0.3.140
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/build/Core.Notifications.js +101 -0
- package/build/Core.Notifications.js.map +1 -0
- package/build/Core.Notifications.module.css +56 -0
- package/build/Core.constants.js +47 -0
- package/build/Core.constants.js.map +1 -0
- package/build/Core.definition.js +10 -0
- package/build/Core.definition.js.map +1 -0
- package/build/Core.js +114 -0
- package/build/Core.js.map +1 -0
- package/build/Core.provider.js +73 -0
- package/build/Core.provider.js.map +1 -0
- package/build/components/BannerLoyalty/BannerLoyalty.js +83 -0
- package/build/components/BannerLoyalty/BannerLoyalty.js.map +1 -0
- package/build/components/BannerLoyalty/BannerLoyalty.module.css +73 -0
- package/build/components/BannerLoyalty/__tests__/__snapshots__/BannerLoyalty.test.js.snap +9 -0
- package/build/components/BannerLoyalty/index.js +17 -0
- package/build/components/BannerLoyalty/index.js.map +1 -0
- package/build/components/Booking/Booking.constants.js +54 -0
- package/build/components/Booking/Booking.constants.js.map +1 -0
- package/build/components/Booking/Booking.js +202 -0
- package/build/components/Booking/Booking.js.map +1 -0
- package/build/components/Booking/Booking.l10n.js +222 -0
- package/build/components/Booking/Booking.l10n.js.map +1 -0
- package/build/components/Booking/Booking.module.css +280 -0
- package/build/components/Booking/Booking.skeleton.js +85 -0
- package/build/components/Booking/Booking.skeleton.js.map +1 -0
- package/build/components/Booking/__tests__/__snapshots__/Booking.test.js.snap +362 -0
- package/build/components/Booking/components/Field/Field.js +72 -0
- package/build/components/Booking/components/Field/Field.js.map +1 -0
- package/build/components/Booking/components/Field/Field.l10n.js +12 -0
- package/build/components/Booking/components/Field/Field.l10n.js.map +1 -0
- package/build/components/Booking/components/Field/Field.module.css +54 -0
- package/build/components/Booking/components/Field/__tests__/__snapshots__/Field.test.js.snap +139 -0
- package/build/components/Booking/components/Field/index.js +17 -0
- package/build/components/Booking/components/Field/index.js.map +1 -0
- package/build/components/Booking/components/Hotelverse/Hotelverse.js +79 -0
- package/build/components/Booking/components/Hotelverse/Hotelverse.js.map +1 -0
- package/build/components/Booking/components/Hotelverse/Hotelverse.l10n.js +15 -0
- package/build/components/Booking/components/Hotelverse/Hotelverse.l10n.js.map +1 -0
- package/build/components/Booking/components/Hotelverse/Hotelverse.module.css +11 -0
- package/build/components/Booking/components/Hotelverse/index.js +17 -0
- package/build/components/Booking/components/Hotelverse/index.js.map +1 -0
- package/build/components/Booking/components/index.js +28 -0
- package/build/components/Booking/components/index.js.map +1 -0
- package/build/components/Booking/helpers/constants.js +8 -0
- package/build/components/Booking/helpers/constants.js.map +1 -0
- package/build/components/Booking/helpers/index.js +17 -0
- package/build/components/Booking/helpers/index.js.map +1 -0
- package/build/components/Booking/index.js +13 -0
- package/build/components/Booking/index.js.map +1 -0
- package/build/components/Booking/mocks/booking.json +176 -0
- package/build/components/Booking/partials/Booking.Details.js +141 -0
- package/build/components/Booking/partials/Booking.Details.js.map +1 -0
- package/build/components/Booking/partials/Booking.FormCancel.js +106 -0
- package/build/components/Booking/partials/Booking.FormCancel.js.map +1 -0
- package/build/components/Booking/partials/Booking.FormEdit.js +24 -0
- package/build/components/Booking/partials/Booking.FormEdit.js.map +1 -0
- package/build/components/Booking/partials/Booking.FormResend.js +56 -0
- package/build/components/Booking/partials/Booking.FormResend.js.map +1 -0
- package/build/components/Booking/partials/Booking.Menu.js +138 -0
- package/build/components/Booking/partials/Booking.Menu.js.map +1 -0
- package/build/components/Booking/partials/Booking.Modal.js +144 -0
- package/build/components/Booking/partials/Booking.Modal.js.map +1 -0
- package/build/components/Booking/partials/Booking.ModalAgency.js +65 -0
- package/build/components/Booking/partials/Booking.ModalAgency.js.map +1 -0
- package/build/components/Booking/partials/Booking.Others.js +102 -0
- package/build/components/Booking/partials/Booking.Others.js.map +1 -0
- package/build/components/Booking/partials/Booking.PriceBreakdown.js +118 -0
- package/build/components/Booking/partials/Booking.PriceBreakdown.js.map +1 -0
- package/build/components/Booking/partials/Booking.Summary.js +241 -0
- package/build/components/Booking/partials/Booking.Summary.js.map +1 -0
- package/build/components/Booking/partials/__tests__/__snapshots__/Booking.Details.test.js.snap +4910 -0
- package/build/components/Booking/partials/__tests__/__snapshots__/Booking.Menu.test.js.snap +1338 -0
- package/build/components/Booking/partials/__tests__/__snapshots__/Booking.Modal.test.js.snap +400 -0
- package/build/components/Booking/partials/__tests__/__snapshots__/Booking.Others.test.js.snap +442 -0
- package/build/components/Booking/partials/__tests__/__snapshots__/Booking.Summary.test.js.snap +1046 -0
- package/build/components/Booking/partials/index.js +72 -0
- package/build/components/Booking/partials/index.js.map +1 -0
- package/build/components/BookingQuery/BookingQuery.constants.js +11 -0
- package/build/components/BookingQuery/BookingQuery.constants.js.map +1 -0
- package/build/components/BookingQuery/BookingQuery.js +143 -0
- package/build/components/BookingQuery/BookingQuery.js.map +1 -0
- package/build/components/BookingQuery/BookingQuery.l10n.js +39 -0
- package/build/components/BookingQuery/BookingQuery.l10n.js.map +1 -0
- package/build/components/BookingQuery/BookingQuery.module.css +17 -0
- package/build/components/BookingQuery/__tests__/__snapshots__/BookingQuery.test.js.snap +1078 -0
- package/build/components/BookingQuery/helpers/getErrorText.js +11 -0
- package/build/components/BookingQuery/helpers/getErrorText.js.map +1 -0
- package/build/components/BookingQuery/helpers/index.js +17 -0
- package/build/components/BookingQuery/helpers/index.js.map +1 -0
- package/build/components/BookingQuery/index.js +13 -0
- package/build/components/BookingQuery/index.js.map +1 -0
- package/build/components/Checkout/Checkout.constants.js +45 -0
- package/build/components/Checkout/Checkout.constants.js.map +1 -0
- package/build/components/Checkout/Checkout.js +190 -0
- package/build/components/Checkout/Checkout.js.map +1 -0
- package/build/components/Checkout/Checkout.l10n.js +139 -0
- package/build/components/Checkout/Checkout.l10n.js.map +1 -0
- package/build/components/Checkout/Checkout.module.css +277 -0
- package/build/components/Checkout/Checkout.skeleton.js +64 -0
- package/build/components/Checkout/Checkout.skeleton.js.map +1 -0
- package/build/components/Checkout/__tests__/__snapshots__/Checkout.test.js.snap +410 -0
- package/build/components/Checkout/components/InputRadio/InputRadio.js +61 -0
- package/build/components/Checkout/components/InputRadio/InputRadio.js.map +1 -0
- package/build/components/Checkout/components/InputRadio/InputRadio.module.css +3 -0
- package/build/components/Checkout/components/InputRadio/__tests__/__snapshots__/InputRadio.test.js.snap +323 -0
- package/build/components/Checkout/components/InputRadio/index.js +17 -0
- package/build/components/Checkout/components/InputRadio/index.js.map +1 -0
- package/build/components/Checkout/components/index.js +17 -0
- package/build/components/Checkout/components/index.js.map +1 -0
- package/build/components/Checkout/helpers/getFieldProps.js +73 -0
- package/build/components/Checkout/helpers/getFieldProps.js.map +1 -0
- package/build/components/Checkout/helpers/getRoomNumber.js +23 -0
- package/build/components/Checkout/helpers/getRoomNumber.js.map +1 -0
- package/build/components/Checkout/helpers/getSchemaProps.js +18 -0
- package/build/components/Checkout/helpers/getSchemaProps.js.map +1 -0
- package/build/components/Checkout/helpers/getVariant.js +28 -0
- package/build/components/Checkout/helpers/getVariant.js.map +1 -0
- package/build/components/Checkout/helpers/index.js +61 -0
- package/build/components/Checkout/helpers/index.js.map +1 -0
- package/build/components/Checkout/helpers/testDNI.js +13 -0
- package/build/components/Checkout/helpers/testDNI.js.map +1 -0
- package/build/components/Checkout/helpers/trackForm.js +29 -0
- package/build/components/Checkout/helpers/trackForm.js.map +1 -0
- package/build/components/Checkout/index.js +13 -0
- package/build/components/Checkout/index.js.map +1 -0
- package/build/components/Checkout/mocks/checkout.json +519 -0
- package/build/components/Checkout/partials/Checkout.Confirmation.js +201 -0
- package/build/components/Checkout/partials/Checkout.Confirmation.js.map +1 -0
- package/build/components/Checkout/partials/Checkout.Details.js +180 -0
- package/build/components/Checkout/partials/Checkout.Details.js.map +1 -0
- package/build/components/Checkout/partials/Checkout.Form.js +187 -0
- package/build/components/Checkout/partials/Checkout.Form.js.map +1 -0
- package/build/components/Checkout/partials/Checkout.Session.js +100 -0
- package/build/components/Checkout/partials/Checkout.Session.js.map +1 -0
- package/build/components/Checkout/partials/Checkout.Summary.Line.js +57 -0
- package/build/components/Checkout/partials/Checkout.Summary.Line.js.map +1 -0
- package/build/components/Checkout/partials/Checkout.Summary.js +217 -0
- package/build/components/Checkout/partials/Checkout.Summary.js.map +1 -0
- package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Confirmation.test.js.snap +1616 -0
- package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Details.test.js.snap +1662 -0
- package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Form.test.js.snap +5662 -0
- package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Session.test.js.snap +818 -0
- package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Summary.test.js.snap +822 -0
- package/build/components/Checkout/partials/index.js +61 -0
- package/build/components/Checkout/partials/index.js.map +1 -0
- package/build/components/Deals/Deals.Calendar.js +162 -0
- package/build/components/Deals/Deals.Calendar.js.map +1 -0
- package/build/components/Deals/Deals.constants.js +16 -0
- package/build/components/Deals/Deals.constants.js.map +1 -0
- package/build/components/Deals/Deals.js +233 -0
- package/build/components/Deals/Deals.js.map +1 -0
- package/build/components/Deals/Deals.l10n.js +46 -0
- package/build/components/Deals/Deals.l10n.js.map +1 -0
- package/build/components/Deals/Deals.module.css +112 -0
- package/build/components/Deals/Deals.skeleton.js +112 -0
- package/build/components/Deals/Deals.skeleton.js.map +1 -0
- package/build/components/Deals/__tests__/__snapshots__/Deals.Calendar.test.js.snap +4584 -0
- package/build/components/Deals/__tests__/__snapshots__/Deals.test.js.snap +7867 -0
- package/build/components/Deals/helpers/__tests__/__mocks__/deal.json +25 -0
- package/build/components/Deals/helpers/calcFromDate.js +21 -0
- package/build/components/Deals/helpers/calcFromDate.js.map +1 -0
- package/build/components/Deals/helpers/calcMinStay.js +23 -0
- package/build/components/Deals/helpers/calcMinStay.js.map +1 -0
- package/build/components/Deals/helpers/calcNightWithDeals.js +18 -0
- package/build/components/Deals/helpers/calcNightWithDeals.js.map +1 -0
- package/build/components/Deals/helpers/calcToDate.js +14 -0
- package/build/components/Deals/helpers/calcToDate.js.map +1 -0
- package/build/components/Deals/helpers/calcTooltips.js +60 -0
- package/build/components/Deals/helpers/calcTooltips.js.map +1 -0
- package/build/components/Deals/helpers/getCurrency.js +21 -0
- package/build/components/Deals/helpers/getCurrency.js.map +1 -0
- package/build/components/Deals/helpers/index.js +83 -0
- package/build/components/Deals/helpers/index.js.map +1 -0
- package/build/components/Deals/helpers/validate.js +28 -0
- package/build/components/Deals/helpers/validate.js.map +1 -0
- package/build/components/Deals/index.js +13 -0
- package/build/components/Deals/index.js.map +1 -0
- package/build/components/Environment/Environment.State.js +105 -0
- package/build/components/Environment/Environment.State.js.map +1 -0
- package/build/components/Environment/Environment.js +42 -0
- package/build/components/Environment/Environment.js.map +1 -0
- package/build/components/Environment/Environment.module.css +59 -0
- package/build/components/Environment/index.js +13 -0
- package/build/components/Environment/index.js.map +1 -0
- package/build/components/Finder/Finder.compact.js +116 -0
- package/build/components/Finder/Finder.compact.js.map +1 -0
- package/build/components/Finder/Finder.constants.js +43 -0
- package/build/components/Finder/Finder.constants.js.map +1 -0
- package/build/components/Finder/Finder.js +294 -0
- package/build/components/Finder/Finder.js.map +1 -0
- package/build/components/Finder/Finder.l10n.js +24 -0
- package/build/components/Finder/Finder.l10n.js.map +1 -0
- package/build/components/Finder/Finder.module.css +86 -0
- package/build/components/Finder/__tests__/__snapshots__/Finder.test.js.snap +22991 -0
- package/build/components/Finder/components/Calendar/Calendar.constants.js +20 -0
- package/build/components/Finder/components/Calendar/Calendar.constants.js.map +1 -0
- package/build/components/Finder/components/Calendar/Calendar.js +189 -0
- package/build/components/Finder/components/Calendar/Calendar.js.map +1 -0
- package/build/components/Finder/components/Calendar/Calendar.l10n.js +18 -0
- package/build/components/Finder/components/Calendar/Calendar.l10n.js.map +1 -0
- package/build/components/Finder/components/Calendar/Calendar.module.css +29 -0
- package/build/components/Finder/components/Calendar/__tests__/__mocks__/prices.json +11 -0
- package/build/components/Finder/components/Calendar/__tests__/__snapshots__/Calendar.test.js.snap +11299 -0
- package/build/components/Finder/components/Calendar/helpers/fetchPrices.js +49 -0
- package/build/components/Finder/components/Calendar/helpers/fetchPrices.js.map +1 -0
- package/build/components/Finder/components/Calendar/helpers/getVisibleDate.js +18 -0
- package/build/components/Finder/components/Calendar/helpers/getVisibleDate.js.map +1 -0
- package/build/components/Finder/components/Calendar/helpers/index.js +50 -0
- package/build/components/Finder/components/Calendar/helpers/index.js.map +1 -0
- package/build/components/Finder/components/Calendar/helpers/parseValue.js +14 -0
- package/build/components/Finder/components/Calendar/helpers/parseValue.js.map +1 -0
- package/build/components/Finder/components/Calendar/helpers/valueFormat.js +18 -0
- package/build/components/Finder/components/Calendar/helpers/valueFormat.js.map +1 -0
- package/build/components/Finder/components/Calendar/index.js +17 -0
- package/build/components/Finder/components/Calendar/index.js.map +1 -0
- package/build/components/Finder/components/Places/Places.js +96 -0
- package/build/components/Finder/components/Places/Places.js.map +1 -0
- package/build/components/Finder/components/Places/Places.l10n.js +12 -0
- package/build/components/Finder/components/Places/Places.l10n.js.map +1 -0
- package/build/components/Finder/components/Places/Places.module.css +87 -0
- package/build/components/Finder/components/Places/__tests__/__mocks__/places.json +44 -0
- package/build/components/Finder/components/Places/__tests__/__snapshots__/Places.test.js.snap +288 -0
- package/build/components/Finder/components/Places/helpers/calcColumns.js +35 -0
- package/build/components/Finder/components/Places/helpers/calcColumns.js.map +1 -0
- package/build/components/Finder/components/Places/helpers/index.js +17 -0
- package/build/components/Finder/components/Places/helpers/index.js.map +1 -0
- package/build/components/Finder/components/Places/index.js +17 -0
- package/build/components/Finder/components/Places/index.js.map +1 -0
- package/build/components/Finder/components/index.js +28 -0
- package/build/components/Finder/components/index.js.map +1 -0
- package/build/components/Finder/helpers/__tests__/__mocks__/chain.json +1113 -0
- package/build/components/Finder/helpers/__tests__/__mocks__/dataSource.json +1382 -0
- package/build/components/Finder/helpers/__tests__/__mocks__/hotel.json +199 -0
- package/build/components/Finder/helpers/getDataSource.js +58 -0
- package/build/components/Finder/helpers/getDataSource.js.map +1 -0
- package/build/components/Finder/helpers/getForwarderUrl.js +74 -0
- package/build/components/Finder/helpers/getForwarderUrl.js.map +1 -0
- package/build/components/Finder/helpers/getHotels.js +29 -0
- package/build/components/Finder/helpers/getHotels.js.map +1 -0
- package/build/components/Finder/helpers/getOccupationDataSource.js +93 -0
- package/build/components/Finder/helpers/getOccupationDataSource.js.map +1 -0
- package/build/components/Finder/helpers/getPlaceCaption.js +15 -0
- package/build/components/Finder/helpers/getPlaceCaption.js.map +1 -0
- package/build/components/Finder/helpers/getPlacesOptions.js +44 -0
- package/build/components/Finder/helpers/getPlacesOptions.js.map +1 -0
- package/build/components/Finder/helpers/index.js +105 -0
- package/build/components/Finder/helpers/index.js.map +1 -0
- package/build/components/Finder/helpers/parseCalendarProps.js +37 -0
- package/build/components/Finder/helpers/parseCalendarProps.js.map +1 -0
- package/build/components/Finder/helpers/parseValue.js +22 -0
- package/build/components/Finder/helpers/parseValue.js.map +1 -0
- package/build/components/Finder/helpers/validate.js +16 -0
- package/build/components/Finder/helpers/validate.js.map +1 -0
- package/build/components/Finder/index.js +13 -0
- package/build/components/Finder/index.js.map +1 -0
- package/build/components/Header/Header.js +85 -0
- package/build/components/Header/Header.js.map +1 -0
- package/build/components/Header/Header.module.css +46 -0
- package/build/components/Header/components/BookingProcess/BookingProcess.js +83 -0
- package/build/components/Header/components/BookingProcess/BookingProcess.js.map +1 -0
- package/build/components/Header/components/BookingProcess/BookingProcess.l10n.js +18 -0
- package/build/components/Header/components/BookingProcess/BookingProcess.l10n.js.map +1 -0
- package/build/components/Header/components/BookingProcess/BookingProcess.module.css +70 -0
- package/build/components/Header/components/BookingProcess/index.js +17 -0
- package/build/components/Header/components/BookingProcess/index.js.map +1 -0
- package/build/components/Header/components/index.js +17 -0
- package/build/components/Header/components/index.js.map +1 -0
- package/build/components/Header/index.js +17 -0
- package/build/components/Header/index.js.map +1 -0
- package/build/components/Profile/Profile.Account.js +165 -0
- package/build/components/Profile/Profile.Account.js.map +1 -0
- package/build/components/Profile/Profile.Password.js +123 -0
- package/build/components/Profile/Profile.Password.js.map +1 -0
- package/build/components/Profile/Profile.Signout.js +100 -0
- package/build/components/Profile/Profile.Signout.js.map +1 -0
- package/build/components/Profile/Profile.constants.js +13 -0
- package/build/components/Profile/Profile.constants.js.map +1 -0
- package/build/components/Profile/Profile.js +69 -0
- package/build/components/Profile/Profile.js.map +1 -0
- package/build/components/Profile/Profile.l10n.js +118 -0
- package/build/components/Profile/Profile.l10n.js.map +1 -0
- package/build/components/Profile/Profile.module.css +70 -0
- package/build/components/Profile/components/Bookings/Booking.constants.js +20 -0
- package/build/components/Profile/components/Bookings/Booking.constants.js.map +1 -0
- package/build/components/Profile/components/Bookings/Booking.l10n.js +48 -0
- package/build/components/Profile/components/Bookings/Booking.l10n.js.map +1 -0
- package/build/components/Profile/components/Bookings/Bookings.Item.js +112 -0
- package/build/components/Profile/components/Bookings/Bookings.Item.js.map +1 -0
- package/build/components/Profile/components/Bookings/Bookings.Search.js +88 -0
- package/build/components/Profile/components/Bookings/Bookings.Search.js.map +1 -0
- package/build/components/Profile/components/Bookings/Bookings.js +154 -0
- package/build/components/Profile/components/Bookings/Bookings.js.map +1 -0
- package/build/components/Profile/components/Bookings/Bookings.module.css +171 -0
- package/build/components/Profile/components/Bookings/__tests__/__snapshots__/Bookings.test.js.snap +9 -0
- package/build/components/Profile/components/Bookings/helpers/groupDatasource.js +25 -0
- package/build/components/Profile/components/Bookings/helpers/groupDatasource.js.map +1 -0
- package/build/components/Profile/components/Bookings/helpers/index.js +17 -0
- package/build/components/Profile/components/Bookings/helpers/index.js.map +1 -0
- package/build/components/Profile/components/Bookings/index.js +17 -0
- package/build/components/Profile/components/Bookings/index.js.map +1 -0
- package/build/components/Profile/components/index.js +17 -0
- package/build/components/Profile/components/index.js.map +1 -0
- package/build/components/Profile/index.js +13 -0
- package/build/components/Profile/index.js.map +1 -0
- package/build/components/Rates/Rates.Content.js +29 -0
- package/build/components/Rates/Rates.Content.js.map +1 -0
- package/build/components/Rates/Rates.Footer.js +137 -0
- package/build/components/Rates/Rates.Footer.js.map +1 -0
- package/build/components/Rates/Rates.Header.js +117 -0
- package/build/components/Rates/Rates.Header.js.map +1 -0
- package/build/components/Rates/Rates.RoomSelector.js +117 -0
- package/build/components/Rates/Rates.RoomSelector.js.map +1 -0
- package/build/components/Rates/Rates.Skeleton.js +187 -0
- package/build/components/Rates/Rates.Skeleton.js.map +1 -0
- package/build/components/Rates/Rates.Unavailability.js +242 -0
- package/build/components/Rates/Rates.Unavailability.js.map +1 -0
- package/build/components/Rates/Rates.constants.js +20 -0
- package/build/components/Rates/Rates.constants.js.map +1 -0
- package/build/components/Rates/Rates.js +391 -0
- package/build/components/Rates/Rates.js.map +1 -0
- package/build/components/Rates/Rates.l10n.js +96 -0
- package/build/components/Rates/Rates.l10n.js.map +1 -0
- package/build/components/Rates/Rates.module.css +428 -0
- package/build/components/Rates/components/CardHotel/CardHotel.js +173 -0
- package/build/components/Rates/components/CardHotel/CardHotel.js.map +1 -0
- package/build/components/Rates/components/CardHotel/CardHotel.l10n.js +30 -0
- package/build/components/Rates/components/CardHotel/CardHotel.l10n.js.map +1 -0
- package/build/components/Rates/components/CardHotel/CardHotel.module.css +76 -0
- package/build/components/Rates/components/CardHotel/index.js +17 -0
- package/build/components/Rates/components/CardHotel/index.js.map +1 -0
- package/build/components/Rates/components/ClubRate/ClubRate.js +79 -0
- package/build/components/Rates/components/ClubRate/ClubRate.js.map +1 -0
- package/build/components/Rates/components/ClubRate/ClubRate.l10n.js +21 -0
- package/build/components/Rates/components/ClubRate/ClubRate.l10n.js.map +1 -0
- package/build/components/Rates/components/ClubRate/ClubRate.module.css +35 -0
- package/build/components/Rates/components/ClubRate/index.js +17 -0
- package/build/components/Rates/components/ClubRate/index.js.map +1 -0
- package/build/components/Rates/components/Hotelverse/Hotelverse.js +212 -0
- package/build/components/Rates/components/Hotelverse/Hotelverse.js.map +1 -0
- package/build/components/Rates/components/Hotelverse/Hotelverse.l10n.js +15 -0
- package/build/components/Rates/components/Hotelverse/Hotelverse.l10n.js.map +1 -0
- package/build/components/Rates/components/Hotelverse/Hotelverse.module.css +21 -0
- package/build/components/Rates/components/Hotelverse/index.js +17 -0
- package/build/components/Rates/components/Hotelverse/index.js.map +1 -0
- package/build/components/Rates/components/Item/Item.Preview.js +170 -0
- package/build/components/Rates/components/Item/Item.Preview.js.map +1 -0
- package/build/components/Rates/components/Item/Item.Rates.js +165 -0
- package/build/components/Rates/components/Item/Item.Rates.js.map +1 -0
- package/build/components/Rates/components/Item/Item.Summary.js +137 -0
- package/build/components/Rates/components/Item/Item.Summary.js.map +1 -0
- package/build/components/Rates/components/Item/Item.js +90 -0
- package/build/components/Rates/components/Item/Item.js.map +1 -0
- package/build/components/Rates/components/Item/Item.l10n.js +112 -0
- package/build/components/Rates/components/Item/Item.l10n.js.map +1 -0
- package/build/components/Rates/components/Item/Item.module.css +134 -0
- package/build/components/Rates/components/Item/components/Amenities/Amenities.js +68 -0
- package/build/components/Rates/components/Item/components/Amenities/Amenities.js.map +1 -0
- package/build/components/Rates/components/Item/components/Amenities/Amenities.module.css +61 -0
- package/build/components/Rates/components/Item/components/Amenities/index.js +17 -0
- package/build/components/Rates/components/Item/components/Amenities/index.js.map +1 -0
- package/build/components/Rates/components/Item/components/Features/Features.js +62 -0
- package/build/components/Rates/components/Item/components/Features/Features.js.map +1 -0
- package/build/components/Rates/components/Item/components/Features/Features.module.css +16 -0
- package/build/components/Rates/components/Item/components/Features/index.js +17 -0
- package/build/components/Rates/components/Item/components/Features/index.js.map +1 -0
- package/build/components/Rates/components/Item/components/ModalInfo/ModalInfo.js +150 -0
- package/build/components/Rates/components/Item/components/ModalInfo/ModalInfo.js.map +1 -0
- package/build/components/Rates/components/Item/components/ModalInfo/ModalInfo.module.css +42 -0
- package/build/components/Rates/components/Item/components/ModalInfo/index.js +17 -0
- package/build/components/Rates/components/Item/components/ModalInfo/index.js.map +1 -0
- package/build/components/Rates/components/Item/components/ModalRateInfo/ModalRateInfo.js +72 -0
- package/build/components/Rates/components/Item/components/ModalRateInfo/ModalRateInfo.js.map +1 -0
- package/build/components/Rates/components/Item/components/ModalRateInfo/ModalRateInfo.module.css +20 -0
- package/build/components/Rates/components/Item/components/ModalRateInfo/index.js +17 -0
- package/build/components/Rates/components/Item/components/ModalRateInfo/index.js.map +1 -0
- package/build/components/Rates/components/Item/components/ModalUrl/ModalUrl.js +38 -0
- package/build/components/Rates/components/Item/components/ModalUrl/ModalUrl.js.map +1 -0
- package/build/components/Rates/components/Item/components/ModalUrl/ModalUrl.module.css +20 -0
- package/build/components/Rates/components/Item/components/ModalUrl/index.js +17 -0
- package/build/components/Rates/components/Item/components/ModalUrl/index.js.map +1 -0
- package/build/components/Rates/components/Item/components/Option/Option.js +73 -0
- package/build/components/Rates/components/Item/components/Option/Option.js.map +1 -0
- package/build/components/Rates/components/Item/components/Option/Option.module.css +29 -0
- package/build/components/Rates/components/Item/components/Option/index.js +17 -0
- package/build/components/Rates/components/Item/components/Option/index.js.map +1 -0
- package/build/components/Rates/components/Item/components/PriceDetails/PriceDetails.js +156 -0
- package/build/components/Rates/components/Item/components/PriceDetails/PriceDetails.js.map +1 -0
- package/build/components/Rates/components/Item/components/PriceDetails/PriceDetails.module.css +29 -0
- package/build/components/Rates/components/Item/components/PriceDetails/helpers/getPrices.js +82 -0
- package/build/components/Rates/components/Item/components/PriceDetails/helpers/getPrices.js.map +1 -0
- package/build/components/Rates/components/Item/components/PriceDetails/helpers/index.js +17 -0
- package/build/components/Rates/components/Item/components/PriceDetails/helpers/index.js.map +1 -0
- package/build/components/Rates/components/Item/components/PriceDetails/index.js +17 -0
- package/build/components/Rates/components/Item/components/PriceDetails/index.js.map +1 -0
- package/build/components/Rates/components/Item/components/RateDetails/RateDetails.Countdown.js +69 -0
- package/build/components/Rates/components/Item/components/RateDetails/RateDetails.Countdown.js.map +1 -0
- package/build/components/Rates/components/Item/components/RateDetails/RateDetails.Tooltip.js +49 -0
- package/build/components/Rates/components/Item/components/RateDetails/RateDetails.Tooltip.js.map +1 -0
- package/build/components/Rates/components/Item/components/RateDetails/RateDetails.constants.js +8 -0
- package/build/components/Rates/components/Item/components/RateDetails/RateDetails.constants.js.map +1 -0
- package/build/components/Rates/components/Item/components/RateDetails/RateDetails.js +85 -0
- package/build/components/Rates/components/Item/components/RateDetails/RateDetails.js.map +1 -0
- package/build/components/Rates/components/Item/components/RateDetails/RateDetails.module.css +36 -0
- package/build/components/Rates/components/Item/components/RateDetails/index.js +17 -0
- package/build/components/Rates/components/Item/components/RateDetails/index.js.map +1 -0
- package/build/components/Rates/components/Item/components/Slider/Slider.js +95 -0
- package/build/components/Rates/components/Item/components/Slider/Slider.js.map +1 -0
- package/build/components/Rates/components/Item/components/Slider/Slider.l10n.js +15 -0
- package/build/components/Rates/components/Item/components/Slider/Slider.l10n.js.map +1 -0
- package/build/components/Rates/components/Item/components/Slider/Slider.module.css +36 -0
- package/build/components/Rates/components/Item/components/Slider/index.js +17 -0
- package/build/components/Rates/components/Item/components/Slider/index.js.map +1 -0
- package/build/components/Rates/components/Item/components/index.js +105 -0
- package/build/components/Rates/components/Item/components/index.js.map +1 -0
- package/build/components/Rates/components/Item/index.js +42 -0
- package/build/components/Rates/components/Item/index.js.map +1 -0
- package/build/components/Rates/components/ModalExtras/ModalExtras.js +261 -0
- package/build/components/Rates/components/ModalExtras/ModalExtras.js.map +1 -0
- package/build/components/Rates/components/ModalExtras/ModalExtras.l10n.js +48 -0
- package/build/components/Rates/components/ModalExtras/ModalExtras.l10n.js.map +1 -0
- package/build/components/Rates/components/ModalExtras/ModalExtras.module.css +104 -0
- package/build/components/Rates/components/ModalExtras/helpers/getCaption.js +23 -0
- package/build/components/Rates/components/ModalExtras/helpers/getCaption.js.map +1 -0
- package/build/components/Rates/components/ModalExtras/helpers/index.js +17 -0
- package/build/components/Rates/components/ModalExtras/helpers/index.js.map +1 -0
- package/build/components/Rates/components/ModalExtras/index.js +17 -0
- package/build/components/Rates/components/ModalExtras/index.js.map +1 -0
- package/build/components/Rates/components/index.js +61 -0
- package/build/components/Rates/components/index.js.map +1 -0
- package/build/components/Rates/helpers/getCheckoutParams.js +86 -0
- package/build/components/Rates/helpers/getCheckoutParams.js.map +1 -0
- package/build/components/Rates/helpers/getFinderParams.js +40 -0
- package/build/components/Rates/helpers/getFinderParams.js.map +1 -0
- package/build/components/Rates/helpers/getForwarderUrl.js +31 -0
- package/build/components/Rates/helpers/getForwarderUrl.js.map +1 -0
- package/build/components/Rates/helpers/getLabelTaxes.js +10 -0
- package/build/components/Rates/helpers/getLabelTaxes.js.map +1 -0
- package/build/components/Rates/helpers/index.js +72 -0
- package/build/components/Rates/helpers/index.js.map +1 -0
- package/build/components/Rates/helpers/signout.js +19 -0
- package/build/components/Rates/helpers/signout.js.map +1 -0
- package/build/components/Rates/helpers/trackDataSource.js +60 -0
- package/build/components/Rates/helpers/trackDataSource.js.map +1 -0
- package/build/components/Rates/index.js +13 -0
- package/build/components/Rates/index.js.map +1 -0
- package/build/components/Session/Session.Account.js +153 -0
- package/build/components/Session/Session.Account.js.map +1 -0
- package/build/components/Session/Session.Login.Modal.js +267 -0
- package/build/components/Session/Session.Login.Modal.js.map +1 -0
- package/build/components/Session/Session.Login.js +82 -0
- package/build/components/Session/Session.Login.js.map +1 -0
- package/build/components/Session/Session.constants.js +20 -0
- package/build/components/Session/Session.constants.js.map +1 -0
- package/build/components/Session/Session.js +37 -0
- package/build/components/Session/Session.js.map +1 -0
- package/build/components/Session/Session.l10n.js +82 -0
- package/build/components/Session/Session.l10n.js.map +1 -0
- package/build/components/Session/Session.module.css +68 -0
- package/build/components/Session/__tests__/__snapshots__/Session.test.js.snap +1139 -0
- package/build/components/Session/helpers/getDomain.js +15 -0
- package/build/components/Session/helpers/getDomain.js.map +1 -0
- package/build/components/Session/helpers/getProfileUrl.js +31 -0
- package/build/components/Session/helpers/getProfileUrl.js.map +1 -0
- package/build/components/Session/helpers/getSignupUrl.js +29 -0
- package/build/components/Session/helpers/getSignupUrl.js.map +1 -0
- package/build/components/Session/helpers/index.js +61 -0
- package/build/components/Session/helpers/index.js.map +1 -0
- package/build/components/Session/helpers/template.js +16 -0
- package/build/components/Session/helpers/template.js.map +1 -0
- package/build/components/Session/helpers/trackLogin.js +26 -0
- package/build/components/Session/helpers/trackLogin.js.map +1 -0
- package/build/components/Session/index.js +13 -0
- package/build/components/Session/index.js.map +1 -0
- package/build/components/Signup/Signup.constants.js +8 -0
- package/build/components/Signup/Signup.constants.js.map +1 -0
- package/build/components/Signup/Signup.js +198 -0
- package/build/components/Signup/Signup.js.map +1 -0
- package/build/components/Signup/Signup.l10n.js +84 -0
- package/build/components/Signup/Signup.l10n.js.map +1 -0
- package/build/components/Signup/Signup.module.css +25 -0
- package/build/components/Signup/__tests__/__snapshots__/Signup.test.js.snap +1025 -0
- package/build/components/Signup/index.js +13 -0
- package/build/components/Signup/index.js.map +1 -0
- package/build/components/__shared__/BookingDates/BookingDates.constants.js +12 -0
- package/build/components/__shared__/BookingDates/BookingDates.constants.js.map +1 -0
- package/build/components/__shared__/BookingDates/BookingDates.js +73 -0
- package/build/components/__shared__/BookingDates/BookingDates.js.map +1 -0
- package/build/components/__shared__/BookingDates/BookingDates.l10n.js +30 -0
- package/build/components/__shared__/BookingDates/BookingDates.l10n.js.map +1 -0
- package/build/components/__shared__/BookingDates/BookingDates.module.css +13 -0
- package/build/components/__shared__/BookingDates/__tests__/__snapshots__/BookingDates.test.js.snap +208 -0
- package/build/components/__shared__/BookingDates/index.js +17 -0
- package/build/components/__shared__/BookingDates/index.js.map +1 -0
- package/build/components/__shared__/BookingTable/BookingTable.Row.js +106 -0
- package/build/components/__shared__/BookingTable/BookingTable.Row.js.map +1 -0
- package/build/components/__shared__/BookingTable/BookingTable.constants.js +18 -0
- package/build/components/__shared__/BookingTable/BookingTable.constants.js.map +1 -0
- package/build/components/__shared__/BookingTable/BookingTable.js +76 -0
- package/build/components/__shared__/BookingTable/BookingTable.js.map +1 -0
- package/build/components/__shared__/BookingTable/BookingTable.l10n.js +15 -0
- package/build/components/__shared__/BookingTable/BookingTable.l10n.js.map +1 -0
- package/build/components/__shared__/BookingTable/BookingTable.module.css +125 -0
- package/build/components/__shared__/BookingTable/__tests__/__snapshots__/BookingTable.Row.test.js.snap +444 -0
- package/build/components/__shared__/BookingTable/__tests__/__snapshots__/BookingTable.test.js.snap +619 -0
- package/build/components/__shared__/BookingTable/index.js +17 -0
- package/build/components/__shared__/BookingTable/index.js.map +1 -0
- package/build/components/__shared__/ButtonMore/ButtonMore.js +49 -0
- package/build/components/__shared__/ButtonMore/ButtonMore.js.map +1 -0
- package/build/components/__shared__/ButtonMore/ButtonMore.l10n.js +12 -0
- package/build/components/__shared__/ButtonMore/ButtonMore.l10n.js.map +1 -0
- package/build/components/__shared__/ButtonMore/ButtonMore.module.css +9 -0
- package/build/components/__shared__/ButtonMore/__tests__/__snapshots__/ButtonMore.test.js.snap +110 -0
- package/build/components/__shared__/ButtonMore/index.js +17 -0
- package/build/components/__shared__/ButtonMore/index.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/ButtonPayment.constants.js +21 -0
- package/build/components/__shared__/ButtonPayment/ButtonPayment.constants.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/ButtonPayment.js +200 -0
- package/build/components/__shared__/ButtonPayment/ButtonPayment.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/ButtonPayment.l10n.js +12 -0
- package/build/components/__shared__/ButtonPayment/ButtonPayment.l10n.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/ButtonPayment.module.css +3 -0
- package/build/components/__shared__/ButtonPayment/__tests__/__snapshots__/ButtonPayment.test.js.snap +195 -0
- package/build/components/__shared__/ButtonPayment/components/FormAddon/FormAddon.js +80 -0
- package/build/components/__shared__/ButtonPayment/components/FormAddon/FormAddon.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormAddon/FormAddon.l10n.js +21 -0
- package/build/components/__shared__/ButtonPayment/components/FormAddon/FormAddon.l10n.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormAddon/FormAddon.module.css +9 -0
- package/build/components/__shared__/ButtonPayment/components/FormAddon/__tests__/__snapshots__/FormAddon.test.js.snap +68 -0
- package/build/components/__shared__/ButtonPayment/components/FormAddon/helpers/getCtaKey.js +21 -0
- package/build/components/__shared__/ButtonPayment/components/FormAddon/helpers/getCtaKey.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormAddon/helpers/index.js +17 -0
- package/build/components/__shared__/ButtonPayment/components/FormAddon/helpers/index.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormAddon/index.js +17 -0
- package/build/components/__shared__/ButtonPayment/components/FormAddon/index.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/FormCheckout.constants.js +37 -0
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/FormCheckout.constants.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/FormCheckout.js +181 -0
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/FormCheckout.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/FormCheckout.l10n.js +30 -0
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/FormCheckout.l10n.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/FormCheckout.module.css +27 -0
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/__tests__/__snapshots__/FormCheckout.test.js.snap +308 -0
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/helpers/getStyle.js +37 -0
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/helpers/getStyle.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/helpers/index.js +17 -0
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/helpers/index.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/index.js +17 -0
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/index.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/FormPaycomet.constants.js +8 -0
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/FormPaycomet.constants.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/FormPaycomet.js +210 -0
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/FormPaycomet.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/FormPaycomet.l10n.js +30 -0
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/FormPaycomet.l10n.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/FormPaycomet.module.css +26 -0
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/__tests__/__snapshots__/FormPaycomet.test.js.snap +148 -0
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/helpers/index.js +17 -0
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/helpers/index.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/helpers/useMutationObserver.js +23 -0
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/helpers/useMutationObserver.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/index.js +17 -0
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/index.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormSipay/FormSipay.constants.js +18 -0
- package/build/components/__shared__/ButtonPayment/components/FormSipay/FormSipay.constants.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormSipay/FormSipay.js +119 -0
- package/build/components/__shared__/ButtonPayment/components/FormSipay/FormSipay.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormSipay/FormSipay.l10n.js +21 -0
- package/build/components/__shared__/ButtonPayment/components/FormSipay/FormSipay.l10n.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormSipay/FormSipay.module.css +17 -0
- package/build/components/__shared__/ButtonPayment/components/FormSipay/__tests__/__snapshots__/FormSipay.test.js.snap +149 -0
- package/build/components/__shared__/ButtonPayment/components/FormSipay/helpers/getStyle.js +24 -0
- package/build/components/__shared__/ButtonPayment/components/FormSipay/helpers/getStyle.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormSipay/helpers/index.js +17 -0
- package/build/components/__shared__/ButtonPayment/components/FormSipay/helpers/index.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/FormSipay/index.js +17 -0
- package/build/components/__shared__/ButtonPayment/components/FormSipay/index.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/InputField/InputField.js +52 -0
- package/build/components/__shared__/ButtonPayment/components/InputField/InputField.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/InputField/InputField.module.css +60 -0
- package/build/components/__shared__/ButtonPayment/components/InputField/__tests__/__snapshots__/InputField.test.js.snap +166 -0
- package/build/components/__shared__/ButtonPayment/components/InputField/index.js +17 -0
- package/build/components/__shared__/ButtonPayment/components/InputField/index.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/components/index.js +50 -0
- package/build/components/__shared__/ButtonPayment/components/index.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/helpers/getComponent.js +32 -0
- package/build/components/__shared__/ButtonPayment/helpers/getComponent.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/helpers/getUrl.js +21 -0
- package/build/components/__shared__/ButtonPayment/helpers/getUrl.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/helpers/getUrlBooking.js +41 -0
- package/build/components/__shared__/ButtonPayment/helpers/getUrlBooking.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/helpers/getUrlCriptan.js +28 -0
- package/build/components/__shared__/ButtonPayment/helpers/getUrlCriptan.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/helpers/getUrlTpv.js +41 -0
- package/build/components/__shared__/ButtonPayment/helpers/getUrlTpv.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/helpers/index.js +39 -0
- package/build/components/__shared__/ButtonPayment/helpers/index.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/helpers/loadScript.js +27 -0
- package/build/components/__shared__/ButtonPayment/helpers/loadScript.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/helpers/toUrlParams.js +18 -0
- package/build/components/__shared__/ButtonPayment/helpers/toUrlParams.js.map +1 -0
- package/build/components/__shared__/ButtonPayment/index.js +17 -0
- package/build/components/__shared__/ButtonPayment/index.js.map +1 -0
- package/build/components/__shared__/Field/Field.js +89 -0
- package/build/components/__shared__/Field/Field.js.map +1 -0
- package/build/components/__shared__/Field/Field.module.css +98 -0
- package/build/components/__shared__/Field/__tests__/__snapshots__/Field.test.js.snap +844 -0
- package/build/components/__shared__/Field/index.js +17 -0
- package/build/components/__shared__/Field/index.js.map +1 -0
- package/build/components/__shared__/FieldOccupation/FieldOccupation.js +82 -0
- package/build/components/__shared__/FieldOccupation/FieldOccupation.js.map +1 -0
- package/build/components/__shared__/FieldOccupation/FieldOccupation.l10n.js +13 -0
- package/build/components/__shared__/FieldOccupation/FieldOccupation.l10n.js.map +1 -0
- package/build/components/__shared__/FieldOccupation/FieldOccupation.module.css +5 -0
- package/build/components/__shared__/FieldOccupation/__tests__/__snapshots__/FieldOccupation.test.js.snap +2364 -0
- package/build/components/__shared__/FieldOccupation/index.js +17 -0
- package/build/components/__shared__/FieldOccupation/index.js.map +1 -0
- package/build/components/__shared__/FieldPromocode/FieldPromocode.js +50 -0
- package/build/components/__shared__/FieldPromocode/FieldPromocode.js.map +1 -0
- package/build/components/__shared__/FieldPromocode/FieldPromocode.l10n.js +13 -0
- package/build/components/__shared__/FieldPromocode/FieldPromocode.l10n.js.map +1 -0
- package/build/components/__shared__/FieldPromocode/FieldPromocode.module.css +24 -0
- package/build/components/__shared__/FieldPromocode/__tests__/__snapshots__/FieldPromocode.test.jsx.snap +293 -0
- package/build/components/__shared__/FieldPromocode/index.js +17 -0
- package/build/components/__shared__/FieldPromocode/index.js.map +1 -0
- package/build/components/__shared__/Occupation/Occupation.Group.js +107 -0
- package/build/components/__shared__/Occupation/Occupation.Group.js.map +1 -0
- package/build/components/__shared__/Occupation/Occupation.constants.js +65 -0
- package/build/components/__shared__/Occupation/Occupation.constants.js.map +1 -0
- package/build/components/__shared__/Occupation/Occupation.js +208 -0
- package/build/components/__shared__/Occupation/Occupation.js.map +1 -0
- package/build/components/__shared__/Occupation/Occupation.l10n.js +59 -0
- package/build/components/__shared__/Occupation/Occupation.l10n.js.map +1 -0
- package/build/components/__shared__/Occupation/Occupation.module.css +124 -0
- package/build/components/__shared__/Occupation/__tests__/__mocks__/occupation.json +17 -0
- package/build/components/__shared__/Occupation/__tests__/__snapshots__/Occupation.test.js.snap +3785 -0
- package/build/components/__shared__/Occupation/helpers/checkRoom.js +36 -0
- package/build/components/__shared__/Occupation/helpers/checkRoom.js.map +1 -0
- package/build/components/__shared__/Occupation/helpers/consolidateValue.js +88 -0
- package/build/components/__shared__/Occupation/helpers/consolidateValue.js.map +1 -0
- package/build/components/__shared__/Occupation/helpers/getAgeOptions.js +20 -0
- package/build/components/__shared__/Occupation/helpers/getAgeOptions.js.map +1 -0
- package/build/components/__shared__/Occupation/helpers/getScrollHeight.js +16 -0
- package/build/components/__shared__/Occupation/helpers/getScrollHeight.js.map +1 -0
- package/build/components/__shared__/Occupation/helpers/index.js +61 -0
- package/build/components/__shared__/Occupation/helpers/index.js.map +1 -0
- package/build/components/__shared__/Occupation/helpers/prepareRoom.js +34 -0
- package/build/components/__shared__/Occupation/helpers/prepareRoom.js.map +1 -0
- package/build/components/__shared__/Occupation/helpers/toParties.js +40 -0
- package/build/components/__shared__/Occupation/helpers/toParties.js.map +1 -0
- package/build/components/__shared__/Occupation/index.js +28 -0
- package/build/components/__shared__/Occupation/index.js.map +1 -0
- package/build/components/__shared__/Payment/Payment.constants.js +39 -0
- package/build/components/__shared__/Payment/Payment.constants.js.map +1 -0
- package/build/components/__shared__/Payment/Payment.js +181 -0
- package/build/components/__shared__/Payment/Payment.js.map +1 -0
- package/build/components/__shared__/Payment/Payment.l10n.js +84 -0
- package/build/components/__shared__/Payment/Payment.l10n.js.map +1 -0
- package/build/components/__shared__/Payment/Payment.module.css +61 -0
- package/build/components/__shared__/Payment/__tests__/__snapshots__/Payment.test.js.snap +750 -0
- package/build/components/__shared__/Payment/components/AmazonPay/AmazonPay.constants.js +43 -0
- package/build/components/__shared__/Payment/components/AmazonPay/AmazonPay.constants.js.map +1 -0
- package/build/components/__shared__/Payment/components/AmazonPay/AmazonPay.js +167 -0
- package/build/components/__shared__/Payment/components/AmazonPay/AmazonPay.js.map +1 -0
- package/build/components/__shared__/Payment/components/AmazonPay/AmazonPay.l10n.js +18 -0
- package/build/components/__shared__/Payment/components/AmazonPay/AmazonPay.l10n.js.map +1 -0
- package/build/components/__shared__/Payment/components/AmazonPay/AmazonPay.module.css +8 -0
- package/build/components/__shared__/Payment/components/AmazonPay/__tests__/__snapshots__/AmazonPay.test.js.snap +23 -0
- package/build/components/__shared__/Payment/components/AmazonPay/helpers/getScriptUrl.js +19 -0
- package/build/components/__shared__/Payment/components/AmazonPay/helpers/getScriptUrl.js.map +1 -0
- package/build/components/__shared__/Payment/components/AmazonPay/helpers/index.js +17 -0
- package/build/components/__shared__/Payment/components/AmazonPay/helpers/index.js.map +1 -0
- package/build/components/__shared__/Payment/components/AmazonPay/index.js +17 -0
- package/build/components/__shared__/Payment/components/AmazonPay/index.js.map +1 -0
- package/build/components/__shared__/Payment/components/Aplazame/Aplazame.js +79 -0
- package/build/components/__shared__/Payment/components/Aplazame/Aplazame.js.map +1 -0
- package/build/components/__shared__/Payment/components/Aplazame/Aplazame.l10n.js +12 -0
- package/build/components/__shared__/Payment/components/Aplazame/Aplazame.l10n.js.map +1 -0
- package/build/components/__shared__/Payment/components/Aplazame/__tests__/__snapshots__/Aplazame.test.js.snap +30 -0
- package/build/components/__shared__/Payment/components/Aplazame/index.js +17 -0
- package/build/components/__shared__/Payment/components/Aplazame/index.js.map +1 -0
- package/build/components/__shared__/Payment/components/Card/Card.constants.js +29 -0
- package/build/components/__shared__/Payment/components/Card/Card.constants.js.map +1 -0
- package/build/components/__shared__/Payment/components/Card/Card.js +129 -0
- package/build/components/__shared__/Payment/components/Card/Card.js.map +1 -0
- package/build/components/__shared__/Payment/components/Card/Card.l10n.js +27 -0
- package/build/components/__shared__/Payment/components/Card/Card.l10n.js.map +1 -0
- package/build/components/__shared__/Payment/components/Card/Card.module.css +23 -0
- package/build/components/__shared__/Payment/components/Card/__tests__/__snapshots__/Card.test.js.snap +887 -0
- package/build/components/__shared__/Payment/components/Card/helpers/formatValues.js +38 -0
- package/build/components/__shared__/Payment/components/Card/helpers/formatValues.js.map +1 -0
- package/build/components/__shared__/Payment/components/Card/helpers/getCardConfig.js +11 -0
- package/build/components/__shared__/Payment/components/Card/helpers/getCardConfig.js.map +1 -0
- package/build/components/__shared__/Payment/components/Card/helpers/getCardType.js +31 -0
- package/build/components/__shared__/Payment/components/Card/helpers/getCardType.js.map +1 -0
- package/build/components/__shared__/Payment/components/Card/helpers/index.js +61 -0
- package/build/components/__shared__/Payment/components/Card/helpers/index.js.map +1 -0
- package/build/components/__shared__/Payment/components/Card/helpers/testCVV.js +9 -0
- package/build/components/__shared__/Payment/components/Card/helpers/testCVV.js.map +1 -0
- package/build/components/__shared__/Payment/components/Card/helpers/testCard.js +12 -0
- package/build/components/__shared__/Payment/components/Card/helpers/testCard.js.map +1 -0
- package/build/components/__shared__/Payment/components/Card/helpers/testExpire.js +13 -0
- package/build/components/__shared__/Payment/components/Card/helpers/testExpire.js.map +1 -0
- package/build/components/__shared__/Payment/components/Card/index.js +17 -0
- package/build/components/__shared__/Payment/components/Card/index.js.map +1 -0
- package/build/components/__shared__/Payment/components/PCI/PCI.constants.js +25 -0
- package/build/components/__shared__/Payment/components/PCI/PCI.constants.js.map +1 -0
- package/build/components/__shared__/Payment/components/PCI/PCI.js +298 -0
- package/build/components/__shared__/Payment/components/PCI/PCI.js.map +1 -0
- package/build/components/__shared__/Payment/components/PCI/PCI.l10n.js +30 -0
- package/build/components/__shared__/Payment/components/PCI/PCI.l10n.js.map +1 -0
- package/build/components/__shared__/Payment/components/PCI/PCI.module.css +9 -0
- package/build/components/__shared__/Payment/components/PCI/__tests__/__snapshots__/PCI.test.js.snap +399 -0
- package/build/components/__shared__/Payment/components/PCI/helpers/formatValues.js +27 -0
- package/build/components/__shared__/Payment/components/PCI/helpers/formatValues.js.map +1 -0
- package/build/components/__shared__/Payment/components/PCI/helpers/getStyle.js +32 -0
- package/build/components/__shared__/Payment/components/PCI/helpers/getStyle.js.map +1 -0
- package/build/components/__shared__/Payment/components/PCI/helpers/index.js +28 -0
- package/build/components/__shared__/Payment/components/PCI/helpers/index.js.map +1 -0
- package/build/components/__shared__/Payment/components/PCI/index.js +17 -0
- package/build/components/__shared__/Payment/components/PCI/index.js.map +1 -0
- package/build/components/__shared__/Payment/components/Tpv/Tpv.js +58 -0
- package/build/components/__shared__/Payment/components/Tpv/Tpv.js.map +1 -0
- package/build/components/__shared__/Payment/components/Tpv/Tpv.l10n.js +12 -0
- package/build/components/__shared__/Payment/components/Tpv/Tpv.l10n.js.map +1 -0
- package/build/components/__shared__/Payment/components/Tpv/__tests__/__snapshots__/Tpv.test.js.snap +92 -0
- package/build/components/__shared__/Payment/components/Tpv/index.js +17 -0
- package/build/components/__shared__/Payment/components/Tpv/index.js.map +1 -0
- package/build/components/__shared__/Payment/components/index.js +61 -0
- package/build/components/__shared__/Payment/components/index.js.map +1 -0
- package/build/components/__shared__/Payment/helpers/getCaption.js +44 -0
- package/build/components/__shared__/Payment/helpers/getCaption.js.map +1 -0
- package/build/components/__shared__/Payment/helpers/getComponent.js +35 -0
- package/build/components/__shared__/Payment/helpers/getComponent.js.map +1 -0
- package/build/components/__shared__/Payment/helpers/getImage.js +17 -0
- package/build/components/__shared__/Payment/helpers/getImage.js.map +1 -0
- package/build/components/__shared__/Payment/helpers/index.js +39 -0
- package/build/components/__shared__/Payment/helpers/index.js.map +1 -0
- package/build/components/__shared__/Payment/index.js +49 -0
- package/build/components/__shared__/Payment/index.js.map +1 -0
- package/build/components/__shared__/PriceBreakdown/PriceBreakdown.Line.js +57 -0
- package/build/components/__shared__/PriceBreakdown/PriceBreakdown.Line.js.map +1 -0
- package/build/components/__shared__/PriceBreakdown/PriceBreakdown.js +168 -0
- package/build/components/__shared__/PriceBreakdown/PriceBreakdown.js.map +1 -0
- package/build/components/__shared__/PriceBreakdown/PriceBreakdown.l10n.js +93 -0
- package/build/components/__shared__/PriceBreakdown/PriceBreakdown.l10n.js.map +1 -0
- package/build/components/__shared__/PriceBreakdown/PriceBreakdown.module.css +34 -0
- package/build/components/__shared__/PriceBreakdown/index.js +17 -0
- package/build/components/__shared__/PriceBreakdown/index.js.map +1 -0
- package/build/components/__shared__/SelectEnvironment/SelectEnvironment.constants.js +16 -0
- package/build/components/__shared__/SelectEnvironment/SelectEnvironment.constants.js.map +1 -0
- package/build/components/__shared__/SelectEnvironment/SelectEnvironment.js +85 -0
- package/build/components/__shared__/SelectEnvironment/SelectEnvironment.js.map +1 -0
- package/build/components/__shared__/SelectEnvironment/SelectEnvironment.l10n.js +15 -0
- package/build/components/__shared__/SelectEnvironment/SelectEnvironment.l10n.js.map +1 -0
- package/build/components/__shared__/SelectEnvironment/SelectEnvironment.module.css +40 -0
- package/build/components/__shared__/SelectEnvironment/__tests__/__snapshots__/SelectEnvironment.test.js.snap +909 -0
- package/build/components/__shared__/SelectEnvironment/index.js +17 -0
- package/build/components/__shared__/SelectEnvironment/index.js.map +1 -0
- package/build/components/__shared__/Skeleton/Skeleton.js +32 -0
- package/build/components/__shared__/Skeleton/Skeleton.js.map +1 -0
- package/build/components/__shared__/Skeleton/Skeleton.module.css +37 -0
- package/build/components/__shared__/Skeleton/index.js +17 -0
- package/build/components/__shared__/Skeleton/index.js.map +1 -0
- package/build/components/__shared__/TextRequiredFields/TextRequiredFields.js +34 -0
- package/build/components/__shared__/TextRequiredFields/TextRequiredFields.js.map +1 -0
- package/build/components/__shared__/TextRequiredFields/TextRequiredFields.l10n.js +13 -0
- package/build/components/__shared__/TextRequiredFields/TextRequiredFields.l10n.js.map +1 -0
- package/build/components/__shared__/TextRequiredFields/TextRequiredFields.module.css +8 -0
- package/build/components/__shared__/TextRequiredFields/__tests__/__snapshots__/TextRequiredFields.test.js.snap +41 -0
- package/build/components/__shared__/TextRequiredFields/index.js +17 -0
- package/build/components/__shared__/TextRequiredFields/index.js.map +1 -0
- package/build/components/__shared__/index.js +149 -0
- package/build/components/__shared__/index.js.map +1 -0
- package/build/components/helpers/ICON.AMENITIES.js +149 -0
- package/build/components/helpers/ICON.AMENITIES.js.map +1 -0
- package/build/components/helpers/ICON.js +74 -0
- package/build/components/helpers/ICON.js.map +1 -0
- package/build/components/helpers/__tests__/__mocks__/hotels.json +87 -0
- package/build/components/helpers/__tests__/__snapshots__/parseHtml.test.js.snap +313 -0
- package/build/components/helpers/constants.js +86 -0
- package/build/components/helpers/constants.js.map +1 -0
- package/build/components/helpers/generateId.js +22 -0
- package/build/components/helpers/generateId.js.map +1 -0
- package/build/components/helpers/getAccommodationLabel.js +36 -0
- package/build/components/helpers/getAccommodationLabel.js.map +1 -0
- package/build/components/helpers/getAccommodationType.js +45 -0
- package/build/components/helpers/getAccommodationType.js.map +1 -0
- package/build/components/helpers/getAgeRange.js +34 -0
- package/build/components/helpers/getAgeRange.js.map +1 -0
- package/build/components/helpers/getButtonPaymentKey.js +29 -0
- package/build/components/helpers/getButtonPaymentKey.js.map +1 -0
- package/build/components/helpers/getButtonPaymentKey.l10n.js +18 -0
- package/build/components/helpers/getButtonPaymentKey.l10n.js.map +1 -0
- package/build/components/helpers/getCalendarCaption.js +24 -0
- package/build/components/helpers/getCalendarCaption.js.map +1 -0
- package/build/components/helpers/getCountryCode.js +12 -0
- package/build/components/helpers/getCountryCode.js.map +1 -0
- package/build/components/helpers/getGuestLabel.js +36 -0
- package/build/components/helpers/getGuestLabel.js.map +1 -0
- package/build/components/helpers/getOccupationLabel.js +29 -0
- package/build/components/helpers/getOccupationLabel.js.map +1 -0
- package/build/components/helpers/getOccupationSummary.js +58 -0
- package/build/components/helpers/getOccupationSummary.js.map +1 -0
- package/build/components/helpers/getRoomOccupationLabel.js +60 -0
- package/build/components/helpers/getRoomOccupationLabel.js.map +1 -0
- package/build/components/helpers/index.js +237 -0
- package/build/components/helpers/index.js.map +1 -0
- package/build/components/helpers/isJest.js +9 -0
- package/build/components/helpers/isJest.js.map +1 -0
- package/build/components/helpers/opacity.js +17 -0
- package/build/components/helpers/opacity.js.map +1 -0
- package/build/components/helpers/parseHtml.js +75 -0
- package/build/components/helpers/parseHtml.js.map +1 -0
- package/build/components/helpers/parseToParties.js +19 -0
- package/build/components/helpers/parseToParties.js.map +1 -0
- package/build/components/helpers/testPassword.js +12 -0
- package/build/components/helpers/testPassword.js.map +1 -0
- package/build/components/helpers/toQueryString.js +20 -0
- package/build/components/helpers/toQueryString.js.map +1 -0
- package/build/components/helpers/toUrlParams.js +18 -0
- package/build/components/helpers/toUrlParams.js.map +1 -0
- package/build/components/helpers/trace.js +19 -0
- package/build/components/helpers/trace.js.map +1 -0
- package/build/components/index.js +33 -0
- package/build/components/index.js.map +1 -0
- package/build/helpers/__mocks__/loyalty.json +10 -0
- package/build/helpers/checkSession.js +29 -0
- package/build/helpers/checkSession.js.map +1 -0
- package/build/helpers/consolidateStore.js +296 -0
- package/build/helpers/consolidateStore.js.map +1 -0
- package/build/helpers/fetchConfig.js +25 -0
- package/build/helpers/fetchConfig.js.map +1 -0
- package/build/helpers/fetchCookies.js +28 -0
- package/build/helpers/fetchCookies.js.map +1 -0
- package/build/helpers/fetchSession.js +59 -0
- package/build/helpers/fetchSession.js.map +1 -0
- package/build/helpers/fetchUrlParams.js +16 -0
- package/build/helpers/fetchUrlParams.js.map +1 -0
- package/build/helpers/findComponents.js +37 -0
- package/build/helpers/findComponents.js.map +1 -0
- package/build/helpers/findDangerousCSSRules.js +33 -0
- package/build/helpers/findDangerousCSSRules.js.map +1 -0
- package/build/helpers/findInstance.js +34 -0
- package/build/helpers/findInstance.js.map +1 -0
- package/build/helpers/getAccommodationType.js +15 -0
- package/build/helpers/getAccommodationType.js.map +1 -0
- package/build/helpers/getGhost.js +20 -0
- package/build/helpers/getGhost.js.map +1 -0
- package/build/helpers/getLocale.js +24 -0
- package/build/helpers/getLocale.js.map +1 -0
- package/build/helpers/getTags.js +44 -0
- package/build/helpers/getTags.js.map +1 -0
- package/build/helpers/index.js +149 -0
- package/build/helpers/index.js.map +1 -0
- package/build/helpers/loadEnvironment.js +26 -0
- package/build/helpers/loadEnvironment.js.map +1 -0
- package/build/helpers/loadSentry.js +30 -0
- package/build/helpers/loadSentry.js.map +1 -0
- package/build/helpers/sanitizeComponent.js +21 -0
- package/build/helpers/sanitizeComponent.js.map +1 -0
- package/build/helpers/theme.js +52 -0
- package/build/helpers/theme.js.map +1 -0
- package/build/helpers/themeDirection.js +14 -0
- package/build/helpers/themeDirection.js.map +1 -0
- package/build/helpers/toOccupation.js +73 -0
- package/build/helpers/toOccupation.js.map +1 -0
- package/build/index.js +106 -0
- package/build/index.js.map +1 -0
- package/build/services/Club/__tests__/__mocks__/get.json +66 -0
- package/build/services/Club/constants.js +10 -0
- package/build/services/Club/constants.js.map +1 -0
- package/build/services/Club/get.js +30 -0
- package/build/services/Club/get.js.map +1 -0
- package/build/services/Club/index.js +11 -0
- package/build/services/Club/index.js.map +1 -0
- package/build/services/Engine/__tests__/__mocks__/chain.json +2695 -0
- package/build/services/Engine/__tests__/__mocks__/hotel.json +184 -0
- package/build/services/Engine/constants.js +10 -0
- package/build/services/Engine/constants.js.map +1 -0
- package/build/services/Engine/get.js +31 -0
- package/build/services/Engine/get.js.map +1 -0
- package/build/services/Engine/index.js +11 -0
- package/build/services/Engine/index.js.map +1 -0
- package/build/services/Rates/__tests__/__mocks__/extras-success-all.json +264 -0
- package/build/services/Rates/__tests__/__mocks__/extras-success.json +1000 -0
- package/build/services/Rates/__tests__/__mocks__/rates-response-cancel-types.json +2885 -0
- package/build/services/Rates/__tests__/__mocks__/rates-response-no-taxes-no-local.json +806 -0
- package/build/services/Rates/__tests__/__mocks__/rates-response-no-taxes.json +2069 -0
- package/build/services/Rates/__tests__/__mocks__/rates-response.json +474 -0
- package/build/services/Rates/__tests__/__mocks__/rates-success-cancel-types.json +32481 -0
- package/build/services/Rates/__tests__/__mocks__/rates-success-no-taxes-no-local.json +6674 -0
- package/build/services/Rates/__tests__/__mocks__/rates-success-no-taxes.json +16508 -0
- package/build/services/Rates/__tests__/__mocks__/rates-success.json +5648 -0
- package/build/services/Rates/constants.js +121 -0
- package/build/services/Rates/constants.js.map +1 -0
- package/build/services/Rates/extras.js +182 -0
- package/build/services/Rates/extras.js.map +1 -0
- package/build/services/Rates/get.js +34 -0
- package/build/services/Rates/get.js.map +1 -0
- package/build/services/Rates/helpers/getIncrements.js +69 -0
- package/build/services/Rates/helpers/getIncrements.js.map +1 -0
- package/build/services/Rates/helpers/getOccupationSuggestions.js +183 -0
- package/build/services/Rates/helpers/getOccupationSuggestions.js.map +1 -0
- package/build/services/Rates/helpers/getPrice.js +22 -0
- package/build/services/Rates/helpers/getPrice.js.map +1 -0
- package/build/services/Rates/helpers/getTaxesType.js +16 -0
- package/build/services/Rates/helpers/getTaxesType.js.map +1 -0
- package/build/services/Rates/helpers/index.js +116 -0
- package/build/services/Rates/helpers/index.js.map +1 -0
- package/build/services/Rates/helpers/normalizePrice.js +15 -0
- package/build/services/Rates/helpers/normalizePrice.js.map +1 -0
- package/build/services/Rates/helpers/parseAmenities.js +87 -0
- package/build/services/Rates/helpers/parseAmenities.js.map +1 -0
- package/build/services/Rates/helpers/parseBoards.js +187 -0
- package/build/services/Rates/helpers/parseBoards.js.map +1 -0
- package/build/services/Rates/helpers/parseDiscount.js +48 -0
- package/build/services/Rates/helpers/parseDiscount.js.map +1 -0
- package/build/services/Rates/helpers/parseExternalToken.js +24 -0
- package/build/services/Rates/helpers/parseExternalToken.js.map +1 -0
- package/build/services/Rates/helpers/parseHotelDiscount.js +29 -0
- package/build/services/Rates/helpers/parseHotelDiscount.js.map +1 -0
- package/build/services/Rates/helpers/parseTracking.js +112 -0
- package/build/services/Rates/helpers/parseTracking.js.map +1 -0
- package/build/services/Rates/helpers/parseUnavailability.js +70 -0
- package/build/services/Rates/helpers/parseUnavailability.js.map +1 -0
- package/build/services/Rates/hotels.js +140 -0
- package/build/services/Rates/hotels.js.map +1 -0
- package/build/services/Rates/index.js +13 -0
- package/build/services/Rates/index.js.map +1 -0
- package/build/services/Rates/rates.js +178 -0
- package/build/services/Rates/rates.js.map +1 -0
- package/build/services/index.js +39 -0
- package/build/services/index.js.map +1 -0
- package/build/theme.css +7 -0
- package/package.json +2 -2
- package/public/routes/Step1-Rates.jsx +2 -2
|
@@ -0,0 +1,2695 @@
|
|
|
1
|
+
{
|
|
2
|
+
"maxBookingDays": 64,
|
|
3
|
+
"visibleMonths": 2,
|
|
4
|
+
"maxDate": 1095,
|
|
5
|
+
"promoText": {
|
|
6
|
+
"en": "Promotional Code",
|
|
7
|
+
"es": "Código Promocional",
|
|
8
|
+
"de": "Promo Code",
|
|
9
|
+
"ru": "Промо-код"
|
|
10
|
+
},
|
|
11
|
+
"promoTextKey": "key.mre.engine.configuration.promocode",
|
|
12
|
+
"showPromoNav": true,
|
|
13
|
+
"showPromoBooking": true,
|
|
14
|
+
"bookText": {
|
|
15
|
+
"en": "Book",
|
|
16
|
+
"es": "Reservar",
|
|
17
|
+
"de": "Buchen",
|
|
18
|
+
"ru": "ЗАБРОНИРОВАТЬ"
|
|
19
|
+
},
|
|
20
|
+
"bookTextKey": "key.mre.engine.configuration.book",
|
|
21
|
+
"lodgingDenomination": {
|
|
22
|
+
"100376315": "ROOMS",
|
|
23
|
+
"100376314": "ROOMS",
|
|
24
|
+
"100376313": "ROOMS",
|
|
25
|
+
"100376312": "ROOMS",
|
|
26
|
+
"100376319": "ROOMS",
|
|
27
|
+
"70465526": "ROOMS",
|
|
28
|
+
"100376316": "ROOMS",
|
|
29
|
+
"100376307": "ROOMS",
|
|
30
|
+
"100376306": "ROOMS",
|
|
31
|
+
"67140298": "ROOMS",
|
|
32
|
+
"100376304": "ROOMS",
|
|
33
|
+
"100376308": "ROOMS",
|
|
34
|
+
"100376303": "ROOMS",
|
|
35
|
+
"34923905": "ROOMS",
|
|
36
|
+
"46089703": "ROOMS",
|
|
37
|
+
"100180004": "ROOMS",
|
|
38
|
+
"21926480": "ROOMS",
|
|
39
|
+
"62421414": "ROOMS",
|
|
40
|
+
"100194007": "ROOMS",
|
|
41
|
+
"100376520": "ROOMS",
|
|
42
|
+
"52456469": "ROOMS",
|
|
43
|
+
"71794866": "ROOMS",
|
|
44
|
+
"24686991": "ROOMS",
|
|
45
|
+
"100376320": "ROOMS",
|
|
46
|
+
"100376768": "ROOMS",
|
|
47
|
+
"100376519": "ROOMS"
|
|
48
|
+
},
|
|
49
|
+
"showReservationText": {
|
|
50
|
+
"en": "My booking",
|
|
51
|
+
"es": "Mi reserva",
|
|
52
|
+
"de": "Meine Buchung",
|
|
53
|
+
"ru": "My booking"
|
|
54
|
+
},
|
|
55
|
+
"showReservationKey": "key.mre.engine.configuration.myreservation",
|
|
56
|
+
"showTotalNights": true,
|
|
57
|
+
"version": "candidate",
|
|
58
|
+
"showLanguageSwitcher": true,
|
|
59
|
+
"minRoomsEngineNotification": 1,
|
|
60
|
+
"languages": ["en", "es", "de", "ru"],
|
|
61
|
+
"multiroom": true,
|
|
62
|
+
"occupationDescriptionMode": "adultChildren",
|
|
63
|
+
"occupationConfig": {
|
|
64
|
+
"maxReservableRooms": 3,
|
|
65
|
+
"hotels": {
|
|
66
|
+
"100376315": {
|
|
67
|
+
"childrenAgeRanges": {
|
|
68
|
+
"firstRangeChildren": [3, 12]
|
|
69
|
+
},
|
|
70
|
+
"maxOccupation": {
|
|
71
|
+
"maxAdults": 3,
|
|
72
|
+
"maxFirstRangeChildren": 3,
|
|
73
|
+
"maxSecondRangeChildren": 0,
|
|
74
|
+
"maxBabies": 1
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"100376314": {
|
|
78
|
+
"childrenAgeRanges": {
|
|
79
|
+
"firstRangeChildren": [0, 17]
|
|
80
|
+
},
|
|
81
|
+
"maxOccupation": {
|
|
82
|
+
"maxAdults": 4,
|
|
83
|
+
"maxFirstRangeChildren": 0,
|
|
84
|
+
"maxSecondRangeChildren": 0,
|
|
85
|
+
"maxBabies": 0
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"100376313": {
|
|
89
|
+
"childrenAgeRanges": {
|
|
90
|
+
"firstRangeChildren": [3, 12]
|
|
91
|
+
},
|
|
92
|
+
"maxOccupation": {
|
|
93
|
+
"maxAdults": 3,
|
|
94
|
+
"maxFirstRangeChildren": 3,
|
|
95
|
+
"maxSecondRangeChildren": 0,
|
|
96
|
+
"maxBabies": 1
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"100376312": {
|
|
100
|
+
"childrenAgeRanges": {
|
|
101
|
+
"firstRangeChildren": [3, 12]
|
|
102
|
+
},
|
|
103
|
+
"maxOccupation": {
|
|
104
|
+
"maxAdults": 3,
|
|
105
|
+
"maxFirstRangeChildren": 4,
|
|
106
|
+
"maxSecondRangeChildren": 0,
|
|
107
|
+
"maxBabies": 1
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"100376319": {
|
|
111
|
+
"childrenAgeRanges": {
|
|
112
|
+
"firstRangeChildren": [2, 11]
|
|
113
|
+
},
|
|
114
|
+
"maxOccupation": {
|
|
115
|
+
"maxAdults": 4,
|
|
116
|
+
"maxFirstRangeChildren": 4,
|
|
117
|
+
"maxSecondRangeChildren": 0,
|
|
118
|
+
"maxBabies": 1
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"70465526": {
|
|
122
|
+
"childrenAgeRanges": {
|
|
123
|
+
"firstRangeChildren": [2, 15]
|
|
124
|
+
},
|
|
125
|
+
"maxOccupation": {
|
|
126
|
+
"maxAdults": 3,
|
|
127
|
+
"maxFirstRangeChildren": 0,
|
|
128
|
+
"maxSecondRangeChildren": 0,
|
|
129
|
+
"maxBabies": 0
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"100376316": {
|
|
133
|
+
"childrenAgeRanges": {
|
|
134
|
+
"firstRangeChildren": [3, 12]
|
|
135
|
+
},
|
|
136
|
+
"maxOccupation": {
|
|
137
|
+
"maxAdults": 3,
|
|
138
|
+
"maxFirstRangeChildren": 3,
|
|
139
|
+
"maxSecondRangeChildren": 0,
|
|
140
|
+
"maxBabies": 1
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"100376307": {
|
|
144
|
+
"childrenAgeRanges": {
|
|
145
|
+
"firstRangeChildren": [0, 17]
|
|
146
|
+
},
|
|
147
|
+
"maxOccupation": {
|
|
148
|
+
"maxAdults": 3,
|
|
149
|
+
"maxFirstRangeChildren": 0,
|
|
150
|
+
"maxSecondRangeChildren": 0,
|
|
151
|
+
"maxBabies": 0
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"100376306": {
|
|
155
|
+
"childrenAgeRanges": {
|
|
156
|
+
"firstRangeChildren": [3, 12]
|
|
157
|
+
},
|
|
158
|
+
"maxOccupation": {
|
|
159
|
+
"maxAdults": 3,
|
|
160
|
+
"maxFirstRangeChildren": 3,
|
|
161
|
+
"maxSecondRangeChildren": 0,
|
|
162
|
+
"maxBabies": 1
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"67140298": {
|
|
166
|
+
"childrenAgeRanges": {
|
|
167
|
+
"firstRangeChildren": [2, 11]
|
|
168
|
+
},
|
|
169
|
+
"maxOccupation": {
|
|
170
|
+
"maxAdults": 4,
|
|
171
|
+
"maxFirstRangeChildren": 4,
|
|
172
|
+
"maxSecondRangeChildren": 0,
|
|
173
|
+
"maxBabies": 1
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"100376304": {
|
|
177
|
+
"childrenAgeRanges": {
|
|
178
|
+
"firstRangeChildren": [3, 12]
|
|
179
|
+
},
|
|
180
|
+
"maxOccupation": {
|
|
181
|
+
"maxAdults": 3,
|
|
182
|
+
"maxFirstRangeChildren": 4,
|
|
183
|
+
"maxSecondRangeChildren": 0,
|
|
184
|
+
"maxBabies": 1
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"100376308": {
|
|
188
|
+
"childrenAgeRanges": {
|
|
189
|
+
"firstRangeChildren": [3, 12]
|
|
190
|
+
},
|
|
191
|
+
"maxOccupation": {
|
|
192
|
+
"maxAdults": 3,
|
|
193
|
+
"maxFirstRangeChildren": 4,
|
|
194
|
+
"maxSecondRangeChildren": 0,
|
|
195
|
+
"maxBabies": 1
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
"100376303": {
|
|
199
|
+
"childrenAgeRanges": {
|
|
200
|
+
"firstRangeChildren": [2, 13]
|
|
201
|
+
},
|
|
202
|
+
"maxOccupation": {
|
|
203
|
+
"maxAdults": 4,
|
|
204
|
+
"maxFirstRangeChildren": 3,
|
|
205
|
+
"maxSecondRangeChildren": 0,
|
|
206
|
+
"maxBabies": 1
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"34923905": {
|
|
210
|
+
"childrenAgeRanges": {
|
|
211
|
+
"firstRangeChildren": [2, 13]
|
|
212
|
+
},
|
|
213
|
+
"maxOccupation": {
|
|
214
|
+
"maxAdults": 4,
|
|
215
|
+
"maxFirstRangeChildren": 3,
|
|
216
|
+
"maxSecondRangeChildren": 0,
|
|
217
|
+
"maxBabies": 1
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"46089703": {
|
|
221
|
+
"childrenAgeRanges": {
|
|
222
|
+
"firstRangeChildren": [2, 11]
|
|
223
|
+
},
|
|
224
|
+
"maxOccupation": {
|
|
225
|
+
"maxAdults": 4,
|
|
226
|
+
"maxFirstRangeChildren": 4,
|
|
227
|
+
"maxSecondRangeChildren": 0,
|
|
228
|
+
"maxBabies": 1
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"100180004": {
|
|
232
|
+
"childrenAgeRanges": {
|
|
233
|
+
"firstRangeChildren": [2, 11]
|
|
234
|
+
},
|
|
235
|
+
"maxOccupation": {
|
|
236
|
+
"maxAdults": 4,
|
|
237
|
+
"maxFirstRangeChildren": 4,
|
|
238
|
+
"maxSecondRangeChildren": 0,
|
|
239
|
+
"maxBabies": 1
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"21926480": {
|
|
243
|
+
"childrenAgeRanges": {
|
|
244
|
+
"firstRangeChildren": [2, 11]
|
|
245
|
+
},
|
|
246
|
+
"maxOccupation": {
|
|
247
|
+
"maxAdults": 4,
|
|
248
|
+
"maxFirstRangeChildren": 4,
|
|
249
|
+
"maxSecondRangeChildren": 0,
|
|
250
|
+
"maxBabies": 1
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
"62421414": {
|
|
254
|
+
"childrenAgeRanges": {
|
|
255
|
+
"firstRangeChildren": [2, 11]
|
|
256
|
+
},
|
|
257
|
+
"maxOccupation": {
|
|
258
|
+
"maxAdults": 4,
|
|
259
|
+
"maxFirstRangeChildren": 4,
|
|
260
|
+
"maxSecondRangeChildren": 0,
|
|
261
|
+
"maxBabies": 1
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"100194007": {
|
|
265
|
+
"childrenAgeRanges": {
|
|
266
|
+
"firstRangeChildren": [0, 15]
|
|
267
|
+
},
|
|
268
|
+
"maxOccupation": {
|
|
269
|
+
"maxAdults": 3,
|
|
270
|
+
"maxFirstRangeChildren": 0,
|
|
271
|
+
"maxSecondRangeChildren": 0,
|
|
272
|
+
"maxBabies": 0
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
"100376520": {
|
|
276
|
+
"childrenAgeRanges": {
|
|
277
|
+
"firstRangeChildren": [3, 12]
|
|
278
|
+
},
|
|
279
|
+
"maxOccupation": {
|
|
280
|
+
"maxAdults": 3,
|
|
281
|
+
"maxFirstRangeChildren": 4,
|
|
282
|
+
"maxSecondRangeChildren": 0,
|
|
283
|
+
"maxBabies": 1
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"52456469": {
|
|
287
|
+
"childrenAgeRanges": {
|
|
288
|
+
"firstRangeChildren": [2, 11]
|
|
289
|
+
},
|
|
290
|
+
"maxOccupation": {
|
|
291
|
+
"maxAdults": 3,
|
|
292
|
+
"maxFirstRangeChildren": 0,
|
|
293
|
+
"maxSecondRangeChildren": 0,
|
|
294
|
+
"maxBabies": 0
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
"71794866": {
|
|
298
|
+
"childrenAgeRanges": {
|
|
299
|
+
"firstRangeChildren": [2, 11],
|
|
300
|
+
"secondRangeChildren": [12, 17]
|
|
301
|
+
},
|
|
302
|
+
"maxOccupation": {
|
|
303
|
+
"maxAdults": 4,
|
|
304
|
+
"maxFirstRangeChildren": 4,
|
|
305
|
+
"maxSecondRangeChildren": 0,
|
|
306
|
+
"maxBabies": 1
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"24686991": {
|
|
310
|
+
"childrenAgeRanges": {
|
|
311
|
+
"firstRangeChildren": [2, 11]
|
|
312
|
+
},
|
|
313
|
+
"maxOccupation": {
|
|
314
|
+
"maxAdults": 3,
|
|
315
|
+
"maxFirstRangeChildren": 2,
|
|
316
|
+
"maxSecondRangeChildren": 0,
|
|
317
|
+
"maxBabies": 1
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
"100376320": {
|
|
321
|
+
"childrenAgeRanges": {
|
|
322
|
+
"firstRangeChildren": [0, 15]
|
|
323
|
+
},
|
|
324
|
+
"maxOccupation": {
|
|
325
|
+
"maxAdults": 3,
|
|
326
|
+
"maxFirstRangeChildren": 0,
|
|
327
|
+
"maxSecondRangeChildren": 0,
|
|
328
|
+
"maxBabies": 0
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"100376768": {
|
|
332
|
+
"childrenAgeRanges": {
|
|
333
|
+
"firstRangeChildren": [0, 16]
|
|
334
|
+
},
|
|
335
|
+
"maxOccupation": {
|
|
336
|
+
"maxAdults": 3,
|
|
337
|
+
"maxFirstRangeChildren": 0,
|
|
338
|
+
"maxSecondRangeChildren": 0,
|
|
339
|
+
"maxBabies": 0
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
"100376519": {
|
|
343
|
+
"childrenAgeRanges": {
|
|
344
|
+
"firstRangeChildren": [3, 12]
|
|
345
|
+
},
|
|
346
|
+
"maxOccupation": {
|
|
347
|
+
"maxAdults": 3,
|
|
348
|
+
"maxFirstRangeChildren": 2,
|
|
349
|
+
"maxSecondRangeChildren": 0,
|
|
350
|
+
"maxBabies": 1
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"chainSelector": {
|
|
356
|
+
"placeHolder": {
|
|
357
|
+
"en": "Selected hotel",
|
|
358
|
+
"es": "Seleccione hotel",
|
|
359
|
+
"de": "Alle Hotels",
|
|
360
|
+
"ru": "Selected hotel"
|
|
361
|
+
},
|
|
362
|
+
"trees": [
|
|
363
|
+
{
|
|
364
|
+
"visible": false,
|
|
365
|
+
"name": {
|
|
366
|
+
"en": "Hotels",
|
|
367
|
+
"es": "Hoteles",
|
|
368
|
+
"de": "Hotels",
|
|
369
|
+
"ru": "Hotels"
|
|
370
|
+
},
|
|
371
|
+
"ids": [
|
|
372
|
+
"67140298",
|
|
373
|
+
"71794866",
|
|
374
|
+
"52456469",
|
|
375
|
+
"100194007",
|
|
376
|
+
"62421414",
|
|
377
|
+
"24686991",
|
|
378
|
+
"46089703",
|
|
379
|
+
"100376313",
|
|
380
|
+
"100376314",
|
|
381
|
+
"100376315",
|
|
382
|
+
"100376316",
|
|
383
|
+
"100376312",
|
|
384
|
+
"100376519",
|
|
385
|
+
"34923905",
|
|
386
|
+
"100180004",
|
|
387
|
+
"100376319",
|
|
388
|
+
"21926480",
|
|
389
|
+
"70465526",
|
|
390
|
+
"100376303",
|
|
391
|
+
"100376304",
|
|
392
|
+
"100376320",
|
|
393
|
+
"100376520",
|
|
394
|
+
"100376306",
|
|
395
|
+
"100376768",
|
|
396
|
+
"100376307",
|
|
397
|
+
"100376308"
|
|
398
|
+
],
|
|
399
|
+
"tags": [
|
|
400
|
+
{
|
|
401
|
+
"isHotel": false,
|
|
402
|
+
"name": {
|
|
403
|
+
"en": "All Hotels",
|
|
404
|
+
"es": "Todos los Hoteles",
|
|
405
|
+
"de": "Alle Hotels",
|
|
406
|
+
"ru": "All Hotels"
|
|
407
|
+
},
|
|
408
|
+
"ids": [
|
|
409
|
+
"67140298",
|
|
410
|
+
"71794866",
|
|
411
|
+
"52456469",
|
|
412
|
+
"100194007",
|
|
413
|
+
"62421414",
|
|
414
|
+
"24686991",
|
|
415
|
+
"46089703",
|
|
416
|
+
"100376313",
|
|
417
|
+
"100376314",
|
|
418
|
+
"100376315",
|
|
419
|
+
"100376316",
|
|
420
|
+
"100376312",
|
|
421
|
+
"100376519",
|
|
422
|
+
"34923905",
|
|
423
|
+
"100180004",
|
|
424
|
+
"100376319",
|
|
425
|
+
"21926480",
|
|
426
|
+
"70465526",
|
|
427
|
+
"100376303",
|
|
428
|
+
"100376304",
|
|
429
|
+
"100376320",
|
|
430
|
+
"100376520",
|
|
431
|
+
"100376306",
|
|
432
|
+
"100376768",
|
|
433
|
+
"100376307",
|
|
434
|
+
"100376308"
|
|
435
|
+
],
|
|
436
|
+
"tags": [
|
|
437
|
+
{
|
|
438
|
+
"isHotel": true,
|
|
439
|
+
"name": {
|
|
440
|
+
"en": "Bahía Princess",
|
|
441
|
+
"es": "Bahía Princess",
|
|
442
|
+
"de": "Bahía Princess",
|
|
443
|
+
"ru": "Bahía Princess"
|
|
444
|
+
},
|
|
445
|
+
"ids": ["52456469"],
|
|
446
|
+
"visible": false,
|
|
447
|
+
"tags": [],
|
|
448
|
+
"tagId": 6950
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"isHotel": true,
|
|
452
|
+
"name": {
|
|
453
|
+
"en": "Barcelona Princess",
|
|
454
|
+
"es": "Barcelona Princess",
|
|
455
|
+
"de": "Barcelona Princess",
|
|
456
|
+
"ru": "Barcelona Princess"
|
|
457
|
+
},
|
|
458
|
+
"ids": ["34923905"],
|
|
459
|
+
"visible": false,
|
|
460
|
+
"tags": [],
|
|
461
|
+
"tagId": 9451
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"isHotel": true,
|
|
465
|
+
"name": {
|
|
466
|
+
"en": "Caribe Deluxe Princess",
|
|
467
|
+
"es": "Caribe Deluxe Princess",
|
|
468
|
+
"de": "Caribe Deluxe Princess",
|
|
469
|
+
"ru": "Caribe Deluxe Princess"
|
|
470
|
+
},
|
|
471
|
+
"ids": ["100376316"],
|
|
472
|
+
"visible": false,
|
|
473
|
+
"tags": [],
|
|
474
|
+
"tagId": 9453
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"isHotel": true,
|
|
478
|
+
"name": {
|
|
479
|
+
"en": "Club Jandía Princess",
|
|
480
|
+
"es": "Club Jandía Princess",
|
|
481
|
+
"de": "Club Jandía Princess",
|
|
482
|
+
"ru": "Club Jandía Princess"
|
|
483
|
+
},
|
|
484
|
+
"ids": ["71794866"],
|
|
485
|
+
"visible": false,
|
|
486
|
+
"tags": [],
|
|
487
|
+
"tagId": 8594
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"isHotel": true,
|
|
491
|
+
"name": {
|
|
492
|
+
"en": "Fuerteventura Princess",
|
|
493
|
+
"es": "Fuerteventura Princess",
|
|
494
|
+
"de": "Fuerteventura Princess",
|
|
495
|
+
"ru": "Fuerteventura Princess"
|
|
496
|
+
},
|
|
497
|
+
"ids": ["21926480"],
|
|
498
|
+
"visible": false,
|
|
499
|
+
"tags": [],
|
|
500
|
+
"tagId": 8595
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"isHotel": true,
|
|
504
|
+
"name": {
|
|
505
|
+
"en": "Gran Canaria Princess (+16)",
|
|
506
|
+
"es": "Gran Canaria Princess (+16)",
|
|
507
|
+
"de": "Gran Canaria Princess (+16)",
|
|
508
|
+
"ru": "Gran Canaria Princess (+16)"
|
|
509
|
+
},
|
|
510
|
+
"ids": ["70465526"],
|
|
511
|
+
"visible": false,
|
|
512
|
+
"tags": [],
|
|
513
|
+
"tagId": 6947
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"isHotel": true,
|
|
517
|
+
"name": {
|
|
518
|
+
"en": "Grand Bavaro Princess",
|
|
519
|
+
"es": "Grand Bavaro Princess",
|
|
520
|
+
"de": "Grand Bavaro Princess",
|
|
521
|
+
"ru": "Grand Bavaro Princess"
|
|
522
|
+
},
|
|
523
|
+
"ids": ["100376312"],
|
|
524
|
+
"visible": false,
|
|
525
|
+
"tags": [],
|
|
526
|
+
"tagId": 9455
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"isHotel": true,
|
|
530
|
+
"name": {
|
|
531
|
+
"en": "Grand Riviera Princess",
|
|
532
|
+
"es": "Grand Riviera Princess",
|
|
533
|
+
"de": "Grand Riviera Princess",
|
|
534
|
+
"ru": "Grand Riviera Princess"
|
|
535
|
+
},
|
|
536
|
+
"ids": ["100376304"],
|
|
537
|
+
"visible": false,
|
|
538
|
+
"tags": [],
|
|
539
|
+
"tagId": 9460
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"isHotel": true,
|
|
543
|
+
"name": {
|
|
544
|
+
"en": "Grand Sunset Princess",
|
|
545
|
+
"es": "Grand Sunset Princess",
|
|
546
|
+
"de": "Grand Sunset Princess",
|
|
547
|
+
"ru": "Grand Sunset Princess"
|
|
548
|
+
},
|
|
549
|
+
"ids": ["100376306"],
|
|
550
|
+
"visible": false,
|
|
551
|
+
"tags": [],
|
|
552
|
+
"tagId": 9459
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"isHotel": true,
|
|
556
|
+
"name": {
|
|
557
|
+
"en": "Guayarmina Princess (+16)",
|
|
558
|
+
"es": "Guayarmina Princess (+16)",
|
|
559
|
+
"de": "Guayarmina Princess (+16)",
|
|
560
|
+
"ru": "Guayarmina Princess (+16)"
|
|
561
|
+
},
|
|
562
|
+
"ids": ["100376320"],
|
|
563
|
+
"visible": false,
|
|
564
|
+
"tags": [],
|
|
565
|
+
"tagId": 6954
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"isHotel": true,
|
|
569
|
+
"name": {
|
|
570
|
+
"en": "La Palma & Teneguía Princess",
|
|
571
|
+
"es": "La Palma & Teneguía Princess",
|
|
572
|
+
"de": "La Palma & Teneguía Princess",
|
|
573
|
+
"ru": "La Palma & Teneguía Princess"
|
|
574
|
+
},
|
|
575
|
+
"ids": ["46089703"],
|
|
576
|
+
"visible": false,
|
|
577
|
+
"tags": [],
|
|
578
|
+
"tagId": 6945
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"isHotel": true,
|
|
582
|
+
"name": {
|
|
583
|
+
"en": "Esencia de La Palma by Princess (+16)",
|
|
584
|
+
"es": "Esencia de La Palma by Princess (+16)",
|
|
585
|
+
"de": "Esencia de La Palma by Princess (+16)",
|
|
586
|
+
"ru": "Esencia de La Palma by Princess (+16)"
|
|
587
|
+
},
|
|
588
|
+
"ids": ["100376768"],
|
|
589
|
+
"visible": false,
|
|
590
|
+
"tags": [],
|
|
591
|
+
"tagId": 12392
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"isHotel": true,
|
|
595
|
+
"name": {
|
|
596
|
+
"en": "Esencia de Fuerteventura by Princess",
|
|
597
|
+
"es": "Esencia de Fuerteventura by Princess",
|
|
598
|
+
"de": "Esencia de Fuerteventura by Princess",
|
|
599
|
+
"ru": "Esencia de Fuerteventura by Princess"
|
|
600
|
+
},
|
|
601
|
+
"ids": ["100376319"],
|
|
602
|
+
"visible": false,
|
|
603
|
+
"tags": [],
|
|
604
|
+
"tagId": 6953
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"isHotel": true,
|
|
608
|
+
"name": {
|
|
609
|
+
"en": "Maspalomas Princess",
|
|
610
|
+
"es": "Maspalomas Princess",
|
|
611
|
+
"de": "Maspalomas Princess",
|
|
612
|
+
"ru": "Maspalomas Princess"
|
|
613
|
+
},
|
|
614
|
+
"ids": ["62421414"],
|
|
615
|
+
"visible": false,
|
|
616
|
+
"tags": [],
|
|
617
|
+
"tagId": 8596
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"isHotel": true,
|
|
621
|
+
"name": {
|
|
622
|
+
"en": "Mogan Princess & Beach Club",
|
|
623
|
+
"es": "Mogan Princess & Beach Club",
|
|
624
|
+
"de": "Mogan Princess & Beach Club",
|
|
625
|
+
"ru": "Mogan Princess & Beach Club"
|
|
626
|
+
},
|
|
627
|
+
"ids": ["24686991"],
|
|
628
|
+
"visible": false,
|
|
629
|
+
"tags": [],
|
|
630
|
+
"tagId": 6943
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"isHotel": true,
|
|
634
|
+
"name": {
|
|
635
|
+
"en": "Negresco Princess",
|
|
636
|
+
"es": "Negresco Princess",
|
|
637
|
+
"de": "Negresco Princess",
|
|
638
|
+
"ru": "Negresco Princess"
|
|
639
|
+
},
|
|
640
|
+
"ids": ["100376303"],
|
|
641
|
+
"visible": false,
|
|
642
|
+
"tags": [],
|
|
643
|
+
"tagId": 9450
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"isHotel": true,
|
|
647
|
+
"name": {
|
|
648
|
+
"en": "Platinum at Grand Bavaro Princess",
|
|
649
|
+
"es": "Platinum at Grand Bavaro Princess",
|
|
650
|
+
"de": "Platinum at Grand Bavaro Princess",
|
|
651
|
+
"ru": "Platinum at Grand Bavaro Princess"
|
|
652
|
+
},
|
|
653
|
+
"ids": ["100376519"],
|
|
654
|
+
"visible": false,
|
|
655
|
+
"tags": [],
|
|
656
|
+
"tagId": 11139
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"isHotel": true,
|
|
660
|
+
"name": {
|
|
661
|
+
"en": "Platinum at Grand Riviera & Sunset Princess",
|
|
662
|
+
"es": "Platinum at Grand Riviera & Sunset Princess",
|
|
663
|
+
"de": "Platinum at Grand Riviera & Sunset Princess",
|
|
664
|
+
"ru": "Platinum at Grand Riviera & Sunset Princess"
|
|
665
|
+
},
|
|
666
|
+
"ids": ["100376313"],
|
|
667
|
+
"visible": false,
|
|
668
|
+
"tags": [],
|
|
669
|
+
"tagId": 9456
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"isHotel": true,
|
|
673
|
+
"name": {
|
|
674
|
+
"en": "Platinum Yucatán Princess (+18)",
|
|
675
|
+
"es": "Platinum Yucatán Princess (+18)",
|
|
676
|
+
"de": "Platinum Yucatán Princess (+18)",
|
|
677
|
+
"ru": "Platinum Yucatán Princess (+18)"
|
|
678
|
+
},
|
|
679
|
+
"ids": ["100376307"],
|
|
680
|
+
"visible": false,
|
|
681
|
+
"tags": [],
|
|
682
|
+
"tagId": 9458
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"isHotel": true,
|
|
686
|
+
"name": {
|
|
687
|
+
"en": "Princess Family Club Bavaro",
|
|
688
|
+
"es": "Princess Family Club Bavaro",
|
|
689
|
+
"de": "Princess Family Club Bavaro",
|
|
690
|
+
"ru": "Princess Family Club Bavaro"
|
|
691
|
+
},
|
|
692
|
+
"ids": ["100376520"],
|
|
693
|
+
"visible": false,
|
|
694
|
+
"tags": [],
|
|
695
|
+
"tagId": 11138
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"isHotel": true,
|
|
699
|
+
"name": {
|
|
700
|
+
"en": "Princess Family Club Riviera",
|
|
701
|
+
"es": "Princess Family Club Riviera",
|
|
702
|
+
"de": "Princess Family Club Riviera",
|
|
703
|
+
"ru": "Princess Family Club Riviera"
|
|
704
|
+
},
|
|
705
|
+
"ids": ["100376308"],
|
|
706
|
+
"visible": false,
|
|
707
|
+
"tags": [],
|
|
708
|
+
"tagId": 9457
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"isHotel": true,
|
|
712
|
+
"name": {
|
|
713
|
+
"en": "Punta Cana Princess (+18)",
|
|
714
|
+
"es": "Punta Cana Princess (+18)",
|
|
715
|
+
"de": "Punta Cana Princess (+18)",
|
|
716
|
+
"ru": "Punta Cana Princess (+18)"
|
|
717
|
+
},
|
|
718
|
+
"ids": ["100376314"],
|
|
719
|
+
"visible": false,
|
|
720
|
+
"tags": [],
|
|
721
|
+
"tagId": 9454
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"isHotel": true,
|
|
725
|
+
"name": {
|
|
726
|
+
"en": "Tabaiba Princess",
|
|
727
|
+
"es": "Tabaiba Princess",
|
|
728
|
+
"de": "Tabaiba Princess",
|
|
729
|
+
"ru": "Tabaiba Princess"
|
|
730
|
+
},
|
|
731
|
+
"ids": ["67140298"],
|
|
732
|
+
"visible": false,
|
|
733
|
+
"tags": [],
|
|
734
|
+
"tagId": 8598
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"isHotel": true,
|
|
738
|
+
"name": {
|
|
739
|
+
"en": "Taurito Princess",
|
|
740
|
+
"es": "Taurito Princess",
|
|
741
|
+
"de": "Taurito Princess",
|
|
742
|
+
"ru": "Taurito Princess"
|
|
743
|
+
},
|
|
744
|
+
"ids": ["100180004"],
|
|
745
|
+
"visible": false,
|
|
746
|
+
"tags": [],
|
|
747
|
+
"tagId": 6933
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"isHotel": true,
|
|
751
|
+
"name": {
|
|
752
|
+
"en": "Tropical Deluxe Princess",
|
|
753
|
+
"es": "Tropical Deluxe Princess",
|
|
754
|
+
"de": "Tropical Deluxe Princess",
|
|
755
|
+
"ru": "Tropical Deluxe Princess"
|
|
756
|
+
},
|
|
757
|
+
"ids": ["100376315"],
|
|
758
|
+
"visible": false,
|
|
759
|
+
"tags": [],
|
|
760
|
+
"tagId": 9452
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"isHotel": true,
|
|
764
|
+
"name": {
|
|
765
|
+
"en": "TUI Blue Suite Princess (+16)",
|
|
766
|
+
"es": "TUI Blue Suite Princess (+16)",
|
|
767
|
+
"de": "TUI Blue Suite Princess (+16)",
|
|
768
|
+
"ru": "TUI Blue Suite Princess (+16)"
|
|
769
|
+
},
|
|
770
|
+
"ids": ["100194007"],
|
|
771
|
+
"visible": false,
|
|
772
|
+
"tags": [],
|
|
773
|
+
"tagId": 8597
|
|
774
|
+
}
|
|
775
|
+
],
|
|
776
|
+
"tagId": 10684
|
|
777
|
+
}
|
|
778
|
+
]
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"visible": false,
|
|
782
|
+
"name": {
|
|
783
|
+
"en": "Spain",
|
|
784
|
+
"es": "España",
|
|
785
|
+
"de": "Spanien",
|
|
786
|
+
"ru": "Spain"
|
|
787
|
+
},
|
|
788
|
+
"ids": [
|
|
789
|
+
"67140298",
|
|
790
|
+
"21926480",
|
|
791
|
+
"70465526",
|
|
792
|
+
"71794866",
|
|
793
|
+
"52456469",
|
|
794
|
+
"100194007",
|
|
795
|
+
"62421414",
|
|
796
|
+
"24686991",
|
|
797
|
+
"46089703",
|
|
798
|
+
"100376303",
|
|
799
|
+
"100376320",
|
|
800
|
+
"100180004",
|
|
801
|
+
"34923905",
|
|
802
|
+
"100376768",
|
|
803
|
+
"100376319"
|
|
804
|
+
],
|
|
805
|
+
"tags": [
|
|
806
|
+
{
|
|
807
|
+
"isHotel": false,
|
|
808
|
+
"name": {
|
|
809
|
+
"en": "Spain",
|
|
810
|
+
"es": "España",
|
|
811
|
+
"de": "Spanien",
|
|
812
|
+
"ru": "Spain"
|
|
813
|
+
},
|
|
814
|
+
"ids": [
|
|
815
|
+
"67140298",
|
|
816
|
+
"21926480",
|
|
817
|
+
"70465526",
|
|
818
|
+
"71794866",
|
|
819
|
+
"52456469",
|
|
820
|
+
"100194007",
|
|
821
|
+
"62421414",
|
|
822
|
+
"24686991",
|
|
823
|
+
"46089703",
|
|
824
|
+
"100376303",
|
|
825
|
+
"100376320",
|
|
826
|
+
"100180004",
|
|
827
|
+
"34923905",
|
|
828
|
+
"100376768",
|
|
829
|
+
"100376319"
|
|
830
|
+
],
|
|
831
|
+
"tags": [
|
|
832
|
+
{
|
|
833
|
+
"isHotel": false,
|
|
834
|
+
"name": {
|
|
835
|
+
"en": "Canary Islands",
|
|
836
|
+
"es": "Islas Canarias",
|
|
837
|
+
"de": "Kanarische Inseln",
|
|
838
|
+
"ru": "Canary Islands"
|
|
839
|
+
},
|
|
840
|
+
"ids": [
|
|
841
|
+
"67140298",
|
|
842
|
+
"21926480",
|
|
843
|
+
"70465526",
|
|
844
|
+
"71794866",
|
|
845
|
+
"52456469",
|
|
846
|
+
"100194007",
|
|
847
|
+
"62421414",
|
|
848
|
+
"24686991",
|
|
849
|
+
"46089703",
|
|
850
|
+
"100376320",
|
|
851
|
+
"100180004",
|
|
852
|
+
"100376768",
|
|
853
|
+
"100376319"
|
|
854
|
+
],
|
|
855
|
+
"tags": [
|
|
856
|
+
{
|
|
857
|
+
"isHotel": true,
|
|
858
|
+
"name": {
|
|
859
|
+
"en": "Taurito Princess",
|
|
860
|
+
"es": "Taurito Princess",
|
|
861
|
+
"de": "Taurito Princess",
|
|
862
|
+
"ru": "Taurito Princess"
|
|
863
|
+
},
|
|
864
|
+
"ids": ["100180004"],
|
|
865
|
+
"visible": false,
|
|
866
|
+
"tags": [],
|
|
867
|
+
"tagId": 6933
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"isHotel": true,
|
|
871
|
+
"name": {
|
|
872
|
+
"en": "Mogan Princess & Beach Club",
|
|
873
|
+
"es": "Mogan Princess & Beach Club",
|
|
874
|
+
"de": "Mogan Princess & Beach Club",
|
|
875
|
+
"ru": "Mogan Princess & Beach Club"
|
|
876
|
+
},
|
|
877
|
+
"ids": ["24686991"],
|
|
878
|
+
"visible": false,
|
|
879
|
+
"tags": [],
|
|
880
|
+
"tagId": 6943
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"isHotel": true,
|
|
884
|
+
"name": {
|
|
885
|
+
"en": "Gran Canaria Princess (+16)",
|
|
886
|
+
"es": "Gran Canaria Princess (+16)",
|
|
887
|
+
"de": "Gran Canaria Princess (+16)",
|
|
888
|
+
"ru": "Gran Canaria Princess (+16)"
|
|
889
|
+
},
|
|
890
|
+
"ids": ["70465526"],
|
|
891
|
+
"visible": false,
|
|
892
|
+
"tags": [],
|
|
893
|
+
"tagId": 6947
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"isHotel": true,
|
|
897
|
+
"name": {
|
|
898
|
+
"en": "Fuerteventura Princess",
|
|
899
|
+
"es": "Fuerteventura Princess",
|
|
900
|
+
"de": "Fuerteventura Princess",
|
|
901
|
+
"ru": "Fuerteventura Princess"
|
|
902
|
+
},
|
|
903
|
+
"ids": ["21926480"],
|
|
904
|
+
"visible": false,
|
|
905
|
+
"tags": [],
|
|
906
|
+
"tagId": 8595
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"isHotel": true,
|
|
910
|
+
"name": {
|
|
911
|
+
"en": "Tabaiba Princess",
|
|
912
|
+
"es": "Tabaiba Princess",
|
|
913
|
+
"de": "Tabaiba Princess",
|
|
914
|
+
"ru": "Tabaiba Princess"
|
|
915
|
+
},
|
|
916
|
+
"ids": ["67140298"],
|
|
917
|
+
"visible": false,
|
|
918
|
+
"tags": [],
|
|
919
|
+
"tagId": 8598
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"isHotel": true,
|
|
923
|
+
"name": {
|
|
924
|
+
"en": "Esencia de La Palma by Princess (+16)",
|
|
925
|
+
"es": "Esencia de La Palma by Princess (+16)",
|
|
926
|
+
"de": "Esencia de La Palma by Princess (+16)",
|
|
927
|
+
"ru": "Esencia de La Palma by Princess (+16)"
|
|
928
|
+
},
|
|
929
|
+
"ids": ["100376768"],
|
|
930
|
+
"visible": false,
|
|
931
|
+
"tags": [],
|
|
932
|
+
"tagId": 12392
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
"isHotel": true,
|
|
936
|
+
"name": {
|
|
937
|
+
"en": "Maspalomas Princess",
|
|
938
|
+
"es": "Maspalomas Princess",
|
|
939
|
+
"de": "Maspalomas Princess",
|
|
940
|
+
"ru": "Maspalomas Princess"
|
|
941
|
+
},
|
|
942
|
+
"ids": ["62421414"],
|
|
943
|
+
"visible": false,
|
|
944
|
+
"tags": [],
|
|
945
|
+
"tagId": 8596
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"isHotel": true,
|
|
949
|
+
"name": {
|
|
950
|
+
"en": "Club Jandía Princess",
|
|
951
|
+
"es": "Club Jandía Princess",
|
|
952
|
+
"de": "Club Jandía Princess",
|
|
953
|
+
"ru": "Club Jandía Princess"
|
|
954
|
+
},
|
|
955
|
+
"ids": ["71794866"],
|
|
956
|
+
"visible": false,
|
|
957
|
+
"tags": [],
|
|
958
|
+
"tagId": 8594
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"isHotel": true,
|
|
962
|
+
"name": {
|
|
963
|
+
"en": "Bahía Princess",
|
|
964
|
+
"es": "Bahía Princess",
|
|
965
|
+
"de": "Bahía Princess",
|
|
966
|
+
"ru": "Bahía Princess"
|
|
967
|
+
},
|
|
968
|
+
"ids": ["52456469"],
|
|
969
|
+
"visible": false,
|
|
970
|
+
"tags": [],
|
|
971
|
+
"tagId": 6950
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
"isHotel": true,
|
|
975
|
+
"name": {
|
|
976
|
+
"en": "La Palma & Teneguía Princess",
|
|
977
|
+
"es": "La Palma & Teneguía Princess",
|
|
978
|
+
"de": "La Palma & Teneguía Princess",
|
|
979
|
+
"ru": "La Palma & Teneguía Princess"
|
|
980
|
+
},
|
|
981
|
+
"ids": ["46089703"],
|
|
982
|
+
"visible": false,
|
|
983
|
+
"tags": [],
|
|
984
|
+
"tagId": 6945
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
"isHotel": true,
|
|
988
|
+
"name": {
|
|
989
|
+
"en": "Guayarmina Princess (+16)",
|
|
990
|
+
"es": "Guayarmina Princess (+16)",
|
|
991
|
+
"de": "Guayarmina Princess (+16)",
|
|
992
|
+
"ru": "Guayarmina Princess (+16)"
|
|
993
|
+
},
|
|
994
|
+
"ids": ["100376320"],
|
|
995
|
+
"visible": false,
|
|
996
|
+
"tags": [],
|
|
997
|
+
"tagId": 6954
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"isHotel": true,
|
|
1001
|
+
"name": {
|
|
1002
|
+
"en": "TUI Blue Suite Princess (+16)",
|
|
1003
|
+
"es": "TUI Blue Suite Princess (+16)",
|
|
1004
|
+
"de": "TUI Blue Suite Princess (+16)",
|
|
1005
|
+
"ru": "TUI Blue Suite Princess (+16)"
|
|
1006
|
+
},
|
|
1007
|
+
"ids": ["100194007"],
|
|
1008
|
+
"visible": false,
|
|
1009
|
+
"tags": [],
|
|
1010
|
+
"tagId": 8597
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"isHotel": true,
|
|
1014
|
+
"name": {
|
|
1015
|
+
"en": "Esencia de Fuerteventura by Princess",
|
|
1016
|
+
"es": "Esencia de Fuerteventura by Princess",
|
|
1017
|
+
"de": "Esencia de Fuerteventura by Princess",
|
|
1018
|
+
"ru": "Esencia de Fuerteventura by Princess"
|
|
1019
|
+
},
|
|
1020
|
+
"ids": ["100376319"],
|
|
1021
|
+
"visible": false,
|
|
1022
|
+
"tags": [],
|
|
1023
|
+
"tagId": 6953
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"isHotel": false,
|
|
1027
|
+
"name": {
|
|
1028
|
+
"en": "Gran Canaria",
|
|
1029
|
+
"es": "Gran Canaria",
|
|
1030
|
+
"de": "Gran Canaria",
|
|
1031
|
+
"ru": "Gran Canaria"
|
|
1032
|
+
},
|
|
1033
|
+
"ids": ["67140298", "70465526", "100180004", "100194007", "62421414", "24686991"],
|
|
1034
|
+
"tags": [
|
|
1035
|
+
{
|
|
1036
|
+
"isHotel": true,
|
|
1037
|
+
"name": {
|
|
1038
|
+
"en": "Taurito Princess",
|
|
1039
|
+
"es": "Taurito Princess",
|
|
1040
|
+
"de": "Taurito Princess",
|
|
1041
|
+
"ru": "Taurito Princess"
|
|
1042
|
+
},
|
|
1043
|
+
"ids": ["100180004"],
|
|
1044
|
+
"visible": true,
|
|
1045
|
+
"tags": [],
|
|
1046
|
+
"tagId": 6933
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"isHotel": true,
|
|
1050
|
+
"name": {
|
|
1051
|
+
"en": "TUI Blue Suite Princess (+16)",
|
|
1052
|
+
"es": "TUI Blue Suite Princess (+16)",
|
|
1053
|
+
"de": "TUI Blue Suite Princess (+16)",
|
|
1054
|
+
"ru": "TUI Blue Suite Princess (+16)"
|
|
1055
|
+
},
|
|
1056
|
+
"ids": ["100194007"],
|
|
1057
|
+
"visible": true,
|
|
1058
|
+
"tags": [],
|
|
1059
|
+
"tagId": 8597
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"isHotel": true,
|
|
1063
|
+
"name": {
|
|
1064
|
+
"en": "Gran Canaria Princess (+16)",
|
|
1065
|
+
"es": "Gran Canaria Princess (+16)",
|
|
1066
|
+
"de": "Gran Canaria Princess (+16)",
|
|
1067
|
+
"ru": "Gran Canaria Princess (+16)"
|
|
1068
|
+
},
|
|
1069
|
+
"ids": ["70465526"],
|
|
1070
|
+
"visible": true,
|
|
1071
|
+
"tags": [],
|
|
1072
|
+
"tagId": 6947
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
"isHotel": true,
|
|
1076
|
+
"name": {
|
|
1077
|
+
"en": "Maspalomas Princess",
|
|
1078
|
+
"es": "Maspalomas Princess",
|
|
1079
|
+
"de": "Maspalomas Princess",
|
|
1080
|
+
"ru": "Maspalomas Princess"
|
|
1081
|
+
},
|
|
1082
|
+
"ids": ["62421414"],
|
|
1083
|
+
"visible": true,
|
|
1084
|
+
"tags": [],
|
|
1085
|
+
"tagId": 8596
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"isHotel": true,
|
|
1089
|
+
"name": {
|
|
1090
|
+
"en": "Tabaiba Princess",
|
|
1091
|
+
"es": "Tabaiba Princess",
|
|
1092
|
+
"de": "Tabaiba Princess",
|
|
1093
|
+
"ru": "Tabaiba Princess"
|
|
1094
|
+
},
|
|
1095
|
+
"ids": ["67140298"],
|
|
1096
|
+
"visible": true,
|
|
1097
|
+
"tags": [],
|
|
1098
|
+
"tagId": 8598
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"isHotel": true,
|
|
1102
|
+
"name": {
|
|
1103
|
+
"en": "Mogan Princess & Beach Club",
|
|
1104
|
+
"es": "Mogan Princess & Beach Club",
|
|
1105
|
+
"de": "Mogan Princess & Beach Club",
|
|
1106
|
+
"ru": "Mogan Princess & Beach Club"
|
|
1107
|
+
},
|
|
1108
|
+
"ids": ["24686991"],
|
|
1109
|
+
"visible": true,
|
|
1110
|
+
"tags": [],
|
|
1111
|
+
"tagId": 6943
|
|
1112
|
+
}
|
|
1113
|
+
],
|
|
1114
|
+
"tagId": 9585
|
|
1115
|
+
}
|
|
1116
|
+
],
|
|
1117
|
+
"tagId": 10683
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"isHotel": false,
|
|
1121
|
+
"name": {
|
|
1122
|
+
"en": "Tenerife",
|
|
1123
|
+
"es": "Tenerife",
|
|
1124
|
+
"de": "Teneriffa",
|
|
1125
|
+
"ru": "Tenerife"
|
|
1126
|
+
},
|
|
1127
|
+
"ids": ["100376320", "52456469"],
|
|
1128
|
+
"tags": [
|
|
1129
|
+
{
|
|
1130
|
+
"isHotel": true,
|
|
1131
|
+
"name": {
|
|
1132
|
+
"en": "Guayarmina Princess (+16)",
|
|
1133
|
+
"es": "Guayarmina Princess (+16)",
|
|
1134
|
+
"de": "Guayarmina Princess (+16)",
|
|
1135
|
+
"ru": "Guayarmina Princess (+16)"
|
|
1136
|
+
},
|
|
1137
|
+
"ids": ["100376320"],
|
|
1138
|
+
"visible": true,
|
|
1139
|
+
"tags": [],
|
|
1140
|
+
"tagId": 6954
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
"isHotel": true,
|
|
1144
|
+
"name": {
|
|
1145
|
+
"en": "Bahía Princess",
|
|
1146
|
+
"es": "Bahía Princess",
|
|
1147
|
+
"de": "Bahía Princess",
|
|
1148
|
+
"ru": "Bahía Princess"
|
|
1149
|
+
},
|
|
1150
|
+
"ids": ["52456469"],
|
|
1151
|
+
"visible": true,
|
|
1152
|
+
"tags": [],
|
|
1153
|
+
"tagId": 6950
|
|
1154
|
+
}
|
|
1155
|
+
],
|
|
1156
|
+
"tagId": 9586
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
"isHotel": false,
|
|
1160
|
+
"name": {
|
|
1161
|
+
"en": "Fuerteventura",
|
|
1162
|
+
"es": "Fuerteventura",
|
|
1163
|
+
"de": "Fuerteventura",
|
|
1164
|
+
"ru": "Fuerteventura"
|
|
1165
|
+
},
|
|
1166
|
+
"ids": ["21926480", "71794866", "100376319"],
|
|
1167
|
+
"tags": [
|
|
1168
|
+
{
|
|
1169
|
+
"isHotel": true,
|
|
1170
|
+
"name": {
|
|
1171
|
+
"en": "Club Jandía Princess",
|
|
1172
|
+
"es": "Club Jandía Princess",
|
|
1173
|
+
"de": "Club Jandía Princess",
|
|
1174
|
+
"ru": "Club Jandía Princess"
|
|
1175
|
+
},
|
|
1176
|
+
"ids": ["71794866"],
|
|
1177
|
+
"visible": true,
|
|
1178
|
+
"tags": [],
|
|
1179
|
+
"tagId": 8594
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
"isHotel": true,
|
|
1183
|
+
"name": {
|
|
1184
|
+
"en": "Fuerteventura Princess",
|
|
1185
|
+
"es": "Fuerteventura Princess",
|
|
1186
|
+
"de": "Fuerteventura Princess",
|
|
1187
|
+
"ru": "Fuerteventura Princess"
|
|
1188
|
+
},
|
|
1189
|
+
"ids": ["21926480"],
|
|
1190
|
+
"visible": true,
|
|
1191
|
+
"tags": [],
|
|
1192
|
+
"tagId": 8595
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
"isHotel": true,
|
|
1196
|
+
"name": {
|
|
1197
|
+
"en": "Esencia de Fuerteventura by Princess",
|
|
1198
|
+
"es": "Esencia de Fuerteventura by Princess",
|
|
1199
|
+
"de": "Esencia de Fuerteventura by Princess",
|
|
1200
|
+
"ru": "Esencia de Fuerteventura by Princess"
|
|
1201
|
+
},
|
|
1202
|
+
"ids": ["100376319"],
|
|
1203
|
+
"visible": true,
|
|
1204
|
+
"tags": [],
|
|
1205
|
+
"tagId": 6953
|
|
1206
|
+
}
|
|
1207
|
+
],
|
|
1208
|
+
"tagId": 9587
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"isHotel": false,
|
|
1212
|
+
"name": {
|
|
1213
|
+
"en": "La Palma",
|
|
1214
|
+
"es": "La Palma",
|
|
1215
|
+
"de": "La Palma",
|
|
1216
|
+
"ru": "La Palma"
|
|
1217
|
+
},
|
|
1218
|
+
"ids": ["100376768", "46089703"],
|
|
1219
|
+
"tags": [
|
|
1220
|
+
{
|
|
1221
|
+
"isHotel": true,
|
|
1222
|
+
"name": {
|
|
1223
|
+
"en": "La Palma & Teneguía Princess",
|
|
1224
|
+
"es": "La Palma & Teneguía Princess",
|
|
1225
|
+
"de": "La Palma & Teneguía Princess",
|
|
1226
|
+
"ru": "La Palma & Teneguía Princess"
|
|
1227
|
+
},
|
|
1228
|
+
"ids": ["46089703"],
|
|
1229
|
+
"visible": true,
|
|
1230
|
+
"tags": [],
|
|
1231
|
+
"tagId": 6945
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
"isHotel": true,
|
|
1235
|
+
"name": {
|
|
1236
|
+
"en": "Esencia de La Palma by Princess (+16)",
|
|
1237
|
+
"es": "Esencia de La Palma by Princess (+16)",
|
|
1238
|
+
"de": "Esencia de La Palma by Princess (+16)",
|
|
1239
|
+
"ru": "Esencia de La Palma by Princess (+16)"
|
|
1240
|
+
},
|
|
1241
|
+
"ids": ["100376768"],
|
|
1242
|
+
"visible": true,
|
|
1243
|
+
"tags": [],
|
|
1244
|
+
"tagId": 12392
|
|
1245
|
+
}
|
|
1246
|
+
],
|
|
1247
|
+
"tagId": 9588
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
"isHotel": false,
|
|
1251
|
+
"name": {
|
|
1252
|
+
"en": "Barcelona",
|
|
1253
|
+
"es": "Barcelona",
|
|
1254
|
+
"de": "Barcelona",
|
|
1255
|
+
"ru": "Barcelona"
|
|
1256
|
+
},
|
|
1257
|
+
"ids": ["100376303", "34923905"],
|
|
1258
|
+
"tags": [
|
|
1259
|
+
{
|
|
1260
|
+
"isHotel": true,
|
|
1261
|
+
"name": {
|
|
1262
|
+
"en": "Barcelona Princess",
|
|
1263
|
+
"es": "Barcelona Princess",
|
|
1264
|
+
"de": "Barcelona Princess",
|
|
1265
|
+
"ru": "Barcelona Princess"
|
|
1266
|
+
},
|
|
1267
|
+
"ids": ["34923905"],
|
|
1268
|
+
"visible": true,
|
|
1269
|
+
"tags": [],
|
|
1270
|
+
"tagId": 9451
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
"isHotel": true,
|
|
1274
|
+
"name": {
|
|
1275
|
+
"en": "Negresco Princess",
|
|
1276
|
+
"es": "Negresco Princess",
|
|
1277
|
+
"de": "Negresco Princess",
|
|
1278
|
+
"ru": "Negresco Princess"
|
|
1279
|
+
},
|
|
1280
|
+
"ids": ["100376303"],
|
|
1281
|
+
"visible": true,
|
|
1282
|
+
"tags": [],
|
|
1283
|
+
"tagId": 9450
|
|
1284
|
+
}
|
|
1285
|
+
],
|
|
1286
|
+
"tagId": 9589
|
|
1287
|
+
}
|
|
1288
|
+
],
|
|
1289
|
+
"tagId": 10685
|
|
1290
|
+
}
|
|
1291
|
+
]
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
"visible": false,
|
|
1295
|
+
"name": {
|
|
1296
|
+
"en": "Caribbean",
|
|
1297
|
+
"es": "Caribe",
|
|
1298
|
+
"de": "Karibik",
|
|
1299
|
+
"ru": "Caribbean"
|
|
1300
|
+
},
|
|
1301
|
+
"ids": [
|
|
1302
|
+
"100376313",
|
|
1303
|
+
"100376314",
|
|
1304
|
+
"100376315",
|
|
1305
|
+
"100376304",
|
|
1306
|
+
"100376316",
|
|
1307
|
+
"100376520",
|
|
1308
|
+
"100376312",
|
|
1309
|
+
"100376519",
|
|
1310
|
+
"100376306",
|
|
1311
|
+
"100376307",
|
|
1312
|
+
"100376308"
|
|
1313
|
+
],
|
|
1314
|
+
"tags": [
|
|
1315
|
+
{
|
|
1316
|
+
"isHotel": false,
|
|
1317
|
+
"name": {
|
|
1318
|
+
"en": "Caribbean",
|
|
1319
|
+
"es": "Caribe",
|
|
1320
|
+
"de": "Karibik",
|
|
1321
|
+
"ru": "Caribbean"
|
|
1322
|
+
},
|
|
1323
|
+
"ids": [
|
|
1324
|
+
"100376313",
|
|
1325
|
+
"100376314",
|
|
1326
|
+
"100376315",
|
|
1327
|
+
"100376304",
|
|
1328
|
+
"100376316",
|
|
1329
|
+
"100376520",
|
|
1330
|
+
"100376312",
|
|
1331
|
+
"100376519",
|
|
1332
|
+
"100376306",
|
|
1333
|
+
"100376307",
|
|
1334
|
+
"100376308"
|
|
1335
|
+
],
|
|
1336
|
+
"tags": [
|
|
1337
|
+
{
|
|
1338
|
+
"isHotel": false,
|
|
1339
|
+
"name": {
|
|
1340
|
+
"en": "Punta Cana",
|
|
1341
|
+
"es": "Punta Cana",
|
|
1342
|
+
"de": "Punta Cana",
|
|
1343
|
+
"ru": "Punta Cana"
|
|
1344
|
+
},
|
|
1345
|
+
"ids": ["100376314", "100376315", "100376316", "100376520", "100376312", "100376519"],
|
|
1346
|
+
"tags": [
|
|
1347
|
+
{
|
|
1348
|
+
"isHotel": true,
|
|
1349
|
+
"name": {
|
|
1350
|
+
"en": "Grand Bavaro Princess",
|
|
1351
|
+
"es": "Grand Bavaro Princess",
|
|
1352
|
+
"de": "Grand Bavaro Princess",
|
|
1353
|
+
"ru": "Grand Bavaro Princess"
|
|
1354
|
+
},
|
|
1355
|
+
"ids": ["100376312"],
|
|
1356
|
+
"visible": true,
|
|
1357
|
+
"tags": [],
|
|
1358
|
+
"tagId": 9455
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"isHotel": true,
|
|
1362
|
+
"name": {
|
|
1363
|
+
"en": "Platinum at Grand Bavaro Princess",
|
|
1364
|
+
"es": "Platinum at Grand Bavaro Princess",
|
|
1365
|
+
"de": "Platinum at Grand Bavaro Princess",
|
|
1366
|
+
"ru": "Platinum at Grand Bavaro Princess"
|
|
1367
|
+
},
|
|
1368
|
+
"ids": ["100376519"],
|
|
1369
|
+
"visible": true,
|
|
1370
|
+
"tags": [],
|
|
1371
|
+
"tagId": 11139
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
"isHotel": true,
|
|
1375
|
+
"name": {
|
|
1376
|
+
"en": "Princess Family Club Bavaro",
|
|
1377
|
+
"es": "Princess Family Club Bavaro",
|
|
1378
|
+
"de": "Princess Family Club Bavaro",
|
|
1379
|
+
"ru": "Princess Family Club Bavaro"
|
|
1380
|
+
},
|
|
1381
|
+
"ids": ["100376520"],
|
|
1382
|
+
"visible": true,
|
|
1383
|
+
"tags": [],
|
|
1384
|
+
"tagId": 11138
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"isHotel": true,
|
|
1388
|
+
"name": {
|
|
1389
|
+
"en": "Caribe Deluxe Princess",
|
|
1390
|
+
"es": "Caribe Deluxe Princess",
|
|
1391
|
+
"de": "Caribe Deluxe Princess",
|
|
1392
|
+
"ru": "Caribe Deluxe Princess"
|
|
1393
|
+
},
|
|
1394
|
+
"ids": ["100376316"],
|
|
1395
|
+
"visible": true,
|
|
1396
|
+
"tags": [],
|
|
1397
|
+
"tagId": 9453
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"isHotel": true,
|
|
1401
|
+
"name": {
|
|
1402
|
+
"en": "Punta Cana Princess (+18)",
|
|
1403
|
+
"es": "Punta Cana Princess (+18)",
|
|
1404
|
+
"de": "Punta Cana Princess (+18)",
|
|
1405
|
+
"ru": "Punta Cana Princess (+18)"
|
|
1406
|
+
},
|
|
1407
|
+
"ids": ["100376314"],
|
|
1408
|
+
"visible": true,
|
|
1409
|
+
"tags": [],
|
|
1410
|
+
"tagId": 9454
|
|
1411
|
+
},
|
|
1412
|
+
{
|
|
1413
|
+
"isHotel": true,
|
|
1414
|
+
"name": {
|
|
1415
|
+
"en": "Tropical Deluxe Princess",
|
|
1416
|
+
"es": "Tropical Deluxe Princess",
|
|
1417
|
+
"de": "Tropical Deluxe Princess",
|
|
1418
|
+
"ru": "Tropical Deluxe Princess"
|
|
1419
|
+
},
|
|
1420
|
+
"ids": ["100376315"],
|
|
1421
|
+
"visible": true,
|
|
1422
|
+
"tags": [],
|
|
1423
|
+
"tagId": 9452
|
|
1424
|
+
}
|
|
1425
|
+
],
|
|
1426
|
+
"tagId": 9590
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
"isHotel": false,
|
|
1430
|
+
"name": {
|
|
1431
|
+
"en": "Riviera Maya",
|
|
1432
|
+
"es": "Riviera Maya",
|
|
1433
|
+
"de": "Riviera Maya",
|
|
1434
|
+
"ru": "Riviera Maya"
|
|
1435
|
+
},
|
|
1436
|
+
"ids": ["100376313", "100376304", "100376306", "100376307", "100376308"],
|
|
1437
|
+
"tags": [
|
|
1438
|
+
{
|
|
1439
|
+
"isHotel": true,
|
|
1440
|
+
"name": {
|
|
1441
|
+
"en": "Grand Sunset Princess",
|
|
1442
|
+
"es": "Grand Sunset Princess",
|
|
1443
|
+
"de": "Grand Sunset Princess",
|
|
1444
|
+
"ru": "Grand Sunset Princess"
|
|
1445
|
+
},
|
|
1446
|
+
"ids": ["100376306"],
|
|
1447
|
+
"visible": true,
|
|
1448
|
+
"tags": [],
|
|
1449
|
+
"tagId": 9459
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"isHotel": true,
|
|
1453
|
+
"name": {
|
|
1454
|
+
"en": "Grand Riviera Princess",
|
|
1455
|
+
"es": "Grand Riviera Princess",
|
|
1456
|
+
"de": "Grand Riviera Princess",
|
|
1457
|
+
"ru": "Grand Riviera Princess"
|
|
1458
|
+
},
|
|
1459
|
+
"ids": ["100376304"],
|
|
1460
|
+
"visible": true,
|
|
1461
|
+
"tags": [],
|
|
1462
|
+
"tagId": 9460
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
"isHotel": true,
|
|
1466
|
+
"name": {
|
|
1467
|
+
"en": "Platinum at Grand Riviera & Sunset Princess",
|
|
1468
|
+
"es": "Platinum at Grand Riviera & Sunset Princess",
|
|
1469
|
+
"de": "Platinum at Grand Riviera & Sunset Princess",
|
|
1470
|
+
"ru": "Platinum at Grand Riviera & Sunset Princess"
|
|
1471
|
+
},
|
|
1472
|
+
"ids": ["100376313"],
|
|
1473
|
+
"visible": true,
|
|
1474
|
+
"tags": [],
|
|
1475
|
+
"tagId": 9456
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
"isHotel": true,
|
|
1479
|
+
"name": {
|
|
1480
|
+
"en": "Princess Family Club Riviera",
|
|
1481
|
+
"es": "Princess Family Club Riviera",
|
|
1482
|
+
"de": "Princess Family Club Riviera",
|
|
1483
|
+
"ru": "Princess Family Club Riviera"
|
|
1484
|
+
},
|
|
1485
|
+
"ids": ["100376308"],
|
|
1486
|
+
"visible": true,
|
|
1487
|
+
"tags": [],
|
|
1488
|
+
"tagId": 9457
|
|
1489
|
+
},
|
|
1490
|
+
{
|
|
1491
|
+
"isHotel": true,
|
|
1492
|
+
"name": {
|
|
1493
|
+
"en": "Platinum Yucatán Princess (+18)",
|
|
1494
|
+
"es": "Platinum Yucatán Princess (+18)",
|
|
1495
|
+
"de": "Platinum Yucatán Princess (+18)",
|
|
1496
|
+
"ru": "Platinum Yucatán Princess (+18)"
|
|
1497
|
+
},
|
|
1498
|
+
"ids": ["100376307"],
|
|
1499
|
+
"visible": true,
|
|
1500
|
+
"tags": [],
|
|
1501
|
+
"tagId": 9458
|
|
1502
|
+
}
|
|
1503
|
+
],
|
|
1504
|
+
"tagId": 9591
|
|
1505
|
+
}
|
|
1506
|
+
],
|
|
1507
|
+
"tagId": 10686
|
|
1508
|
+
}
|
|
1509
|
+
]
|
|
1510
|
+
}
|
|
1511
|
+
]
|
|
1512
|
+
},
|
|
1513
|
+
"promoValue": "",
|
|
1514
|
+
"tracking": {
|
|
1515
|
+
"idChain": 500255,
|
|
1516
|
+
"trackingChain": {
|
|
1517
|
+
"analyticsTracking": [
|
|
1518
|
+
{
|
|
1519
|
+
"id": 15886,
|
|
1520
|
+
"idTokenProvider": 500255,
|
|
1521
|
+
"type": "ANALYTICS",
|
|
1522
|
+
"enabled": true,
|
|
1523
|
+
"siteType": [""],
|
|
1524
|
+
"configuration": {
|
|
1525
|
+
"idAnalytics": "G-W0BFYSLCMM",
|
|
1526
|
+
"propertyId": null
|
|
1527
|
+
}
|
|
1528
|
+
},
|
|
1529
|
+
{
|
|
1530
|
+
"id": 892,
|
|
1531
|
+
"idTokenProvider": 500255,
|
|
1532
|
+
"type": "ANALYTICS",
|
|
1533
|
+
"enabled": true,
|
|
1534
|
+
"siteType": [""],
|
|
1535
|
+
"configuration": {
|
|
1536
|
+
"idAnalytics": "UA-1540678-1",
|
|
1537
|
+
"propertyId": null
|
|
1538
|
+
}
|
|
1539
|
+
}
|
|
1540
|
+
],
|
|
1541
|
+
"adwordsTracking": [
|
|
1542
|
+
{
|
|
1543
|
+
"id": 11640,
|
|
1544
|
+
"idTokenProvider": 500255,
|
|
1545
|
+
"type": "ADWORDS",
|
|
1546
|
+
"enabled": true,
|
|
1547
|
+
"siteType": [""],
|
|
1548
|
+
"configuration": {
|
|
1549
|
+
"idAdwords": "670081056",
|
|
1550
|
+
"conversionLabel": "rIhpCMvVzo8DEKDAwr8C",
|
|
1551
|
+
"cookiePrefix": "MIRAI"
|
|
1552
|
+
}
|
|
1553
|
+
}
|
|
1554
|
+
],
|
|
1555
|
+
"gtmTracking": [
|
|
1556
|
+
{
|
|
1557
|
+
"id": 893,
|
|
1558
|
+
"idTokenProvider": 500255,
|
|
1559
|
+
"type": "GTM",
|
|
1560
|
+
"enabled": true,
|
|
1561
|
+
"siteType": [""],
|
|
1562
|
+
"configuration": {
|
|
1563
|
+
"idGTM": "GTM-N428D7"
|
|
1564
|
+
}
|
|
1565
|
+
}
|
|
1566
|
+
],
|
|
1567
|
+
"bingTracking": [
|
|
1568
|
+
{
|
|
1569
|
+
"id": 13105,
|
|
1570
|
+
"idTokenProvider": 500255,
|
|
1571
|
+
"type": "BING",
|
|
1572
|
+
"enabled": true,
|
|
1573
|
+
"siteType": [""],
|
|
1574
|
+
"configuration": {
|
|
1575
|
+
"idBing": "13019496"
|
|
1576
|
+
}
|
|
1577
|
+
},
|
|
1578
|
+
{
|
|
1579
|
+
"id": 13104,
|
|
1580
|
+
"idTokenProvider": 500255,
|
|
1581
|
+
"type": "BING",
|
|
1582
|
+
"enabled": true,
|
|
1583
|
+
"siteType": [""],
|
|
1584
|
+
"configuration": {
|
|
1585
|
+
"idBing": "13019495"
|
|
1586
|
+
}
|
|
1587
|
+
},
|
|
1588
|
+
{
|
|
1589
|
+
"id": 13103,
|
|
1590
|
+
"idTokenProvider": 500255,
|
|
1591
|
+
"type": "BING",
|
|
1592
|
+
"enabled": true,
|
|
1593
|
+
"siteType": [""],
|
|
1594
|
+
"configuration": {
|
|
1595
|
+
"idBing": "13019494"
|
|
1596
|
+
}
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
"id": 13102,
|
|
1600
|
+
"idTokenProvider": 500255,
|
|
1601
|
+
"type": "BING",
|
|
1602
|
+
"enabled": true,
|
|
1603
|
+
"siteType": [""],
|
|
1604
|
+
"configuration": {
|
|
1605
|
+
"idBing": "13019493"
|
|
1606
|
+
}
|
|
1607
|
+
}
|
|
1608
|
+
],
|
|
1609
|
+
"affiliredTracking": [],
|
|
1610
|
+
"thnTracking": [],
|
|
1611
|
+
"miraiTracking": [
|
|
1612
|
+
{
|
|
1613
|
+
"id": 12255,
|
|
1614
|
+
"idTokenProvider": 500255,
|
|
1615
|
+
"type": "MIRAI",
|
|
1616
|
+
"enabled": true,
|
|
1617
|
+
"siteType": [""],
|
|
1618
|
+
"configuration": null
|
|
1619
|
+
}
|
|
1620
|
+
],
|
|
1621
|
+
"facebookTracking": [
|
|
1622
|
+
{
|
|
1623
|
+
"id": 15937,
|
|
1624
|
+
"idTokenProvider": 500255,
|
|
1625
|
+
"type": "FACEBOOK",
|
|
1626
|
+
"enabled": true,
|
|
1627
|
+
"siteType": [""],
|
|
1628
|
+
"configuration": {
|
|
1629
|
+
"pixelId": "210462059737364"
|
|
1630
|
+
}
|
|
1631
|
+
}
|
|
1632
|
+
],
|
|
1633
|
+
"compareTracking": [
|
|
1634
|
+
{
|
|
1635
|
+
"id": 17144,
|
|
1636
|
+
"idTokenProvider": 500255,
|
|
1637
|
+
"type": "COMPARE",
|
|
1638
|
+
"enabled": true,
|
|
1639
|
+
"siteType": [""],
|
|
1640
|
+
"configuration": null
|
|
1641
|
+
}
|
|
1642
|
+
]
|
|
1643
|
+
},
|
|
1644
|
+
"trackingHotels": [
|
|
1645
|
+
{
|
|
1646
|
+
"analyticsTracking": [],
|
|
1647
|
+
"adwordsTracking": [],
|
|
1648
|
+
"gtmTracking": [],
|
|
1649
|
+
"bingTracking": [],
|
|
1650
|
+
"affiliredTracking": [],
|
|
1651
|
+
"thnTracking": [],
|
|
1652
|
+
"miraiTracking": [],
|
|
1653
|
+
"facebookTracking": [],
|
|
1654
|
+
"compareTracking": [],
|
|
1655
|
+
"idTokenProvider": 100376303
|
|
1656
|
+
},
|
|
1657
|
+
{
|
|
1658
|
+
"analyticsTracking": [],
|
|
1659
|
+
"adwordsTracking": [],
|
|
1660
|
+
"gtmTracking": [],
|
|
1661
|
+
"bingTracking": [],
|
|
1662
|
+
"affiliredTracking": [],
|
|
1663
|
+
"thnTracking": [],
|
|
1664
|
+
"miraiTracking": [],
|
|
1665
|
+
"facebookTracking": [],
|
|
1666
|
+
"compareTracking": [],
|
|
1667
|
+
"idTokenProvider": 34923905
|
|
1668
|
+
},
|
|
1669
|
+
{
|
|
1670
|
+
"analyticsTracking": [],
|
|
1671
|
+
"adwordsTracking": [],
|
|
1672
|
+
"gtmTracking": [],
|
|
1673
|
+
"bingTracking": [],
|
|
1674
|
+
"affiliredTracking": [],
|
|
1675
|
+
"thnTracking": [],
|
|
1676
|
+
"miraiTracking": [],
|
|
1677
|
+
"facebookTracking": [],
|
|
1678
|
+
"compareTracking": [],
|
|
1679
|
+
"idTokenProvider": 100376316
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
"analyticsTracking": [],
|
|
1683
|
+
"adwordsTracking": [],
|
|
1684
|
+
"gtmTracking": [],
|
|
1685
|
+
"bingTracking": [],
|
|
1686
|
+
"affiliredTracking": [],
|
|
1687
|
+
"thnTracking": [],
|
|
1688
|
+
"miraiTracking": [],
|
|
1689
|
+
"facebookTracking": [],
|
|
1690
|
+
"compareTracking": [],
|
|
1691
|
+
"idTokenProvider": 100376307
|
|
1692
|
+
},
|
|
1693
|
+
{
|
|
1694
|
+
"analyticsTracking": [],
|
|
1695
|
+
"adwordsTracking": [],
|
|
1696
|
+
"gtmTracking": [],
|
|
1697
|
+
"bingTracking": [],
|
|
1698
|
+
"affiliredTracking": [],
|
|
1699
|
+
"thnTracking": [],
|
|
1700
|
+
"miraiTracking": [],
|
|
1701
|
+
"facebookTracking": [],
|
|
1702
|
+
"compareTracking": [],
|
|
1703
|
+
"idTokenProvider": 100376306
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
"analyticsTracking": [],
|
|
1707
|
+
"adwordsTracking": [],
|
|
1708
|
+
"gtmTracking": [],
|
|
1709
|
+
"bingTracking": [],
|
|
1710
|
+
"affiliredTracking": [],
|
|
1711
|
+
"thnTracking": [],
|
|
1712
|
+
"miraiTracking": [],
|
|
1713
|
+
"facebookTracking": [],
|
|
1714
|
+
"compareTracking": [],
|
|
1715
|
+
"idTokenProvider": 100376304
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
"analyticsTracking": [],
|
|
1719
|
+
"adwordsTracking": [],
|
|
1720
|
+
"gtmTracking": [],
|
|
1721
|
+
"bingTracking": [],
|
|
1722
|
+
"affiliredTracking": [],
|
|
1723
|
+
"thnTracking": [],
|
|
1724
|
+
"miraiTracking": [],
|
|
1725
|
+
"facebookTracking": [],
|
|
1726
|
+
"compareTracking": [],
|
|
1727
|
+
"idTokenProvider": 100376320
|
|
1728
|
+
},
|
|
1729
|
+
{
|
|
1730
|
+
"analyticsTracking": [],
|
|
1731
|
+
"adwordsTracking": [
|
|
1732
|
+
{
|
|
1733
|
+
"id": 3502,
|
|
1734
|
+
"idTokenProvider": 100376308,
|
|
1735
|
+
"type": "ADWORDS",
|
|
1736
|
+
"enabled": true,
|
|
1737
|
+
"siteType": ["100376308", "500255"],
|
|
1738
|
+
"configuration": {
|
|
1739
|
+
"idAdwords": "695391223",
|
|
1740
|
+
"conversionLabel": "SHATCNy7-bMBEPeny8sC",
|
|
1741
|
+
"cookiePrefix": "mirai_mcc_ha"
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
],
|
|
1745
|
+
"gtmTracking": [],
|
|
1746
|
+
"bingTracking": [],
|
|
1747
|
+
"affiliredTracking": [],
|
|
1748
|
+
"thnTracking": [],
|
|
1749
|
+
"miraiTracking": [],
|
|
1750
|
+
"facebookTracking": [],
|
|
1751
|
+
"compareTracking": [],
|
|
1752
|
+
"idTokenProvider": 100376308
|
|
1753
|
+
}
|
|
1754
|
+
]
|
|
1755
|
+
},
|
|
1756
|
+
"clubConfiguration": {
|
|
1757
|
+
"67140298": {
|
|
1758
|
+
"showClubDiscountFilter": true,
|
|
1759
|
+
"activeClubDiscountByDefault": true
|
|
1760
|
+
},
|
|
1761
|
+
"71794866": {
|
|
1762
|
+
"showClubDiscountFilter": true,
|
|
1763
|
+
"activeClubDiscountByDefault": true
|
|
1764
|
+
},
|
|
1765
|
+
"52456469": {
|
|
1766
|
+
"showClubDiscountFilter": true,
|
|
1767
|
+
"activeClubDiscountByDefault": true
|
|
1768
|
+
},
|
|
1769
|
+
"100194007": {
|
|
1770
|
+
"showClubDiscountFilter": true,
|
|
1771
|
+
"activeClubDiscountByDefault": true
|
|
1772
|
+
},
|
|
1773
|
+
"62421414": {
|
|
1774
|
+
"showClubDiscountFilter": true,
|
|
1775
|
+
"activeClubDiscountByDefault": true
|
|
1776
|
+
},
|
|
1777
|
+
"24686991": {
|
|
1778
|
+
"showClubDiscountFilter": true,
|
|
1779
|
+
"activeClubDiscountByDefault": true
|
|
1780
|
+
},
|
|
1781
|
+
"46089703": {
|
|
1782
|
+
"showClubDiscountFilter": true,
|
|
1783
|
+
"activeClubDiscountByDefault": true
|
|
1784
|
+
},
|
|
1785
|
+
"100376313": {
|
|
1786
|
+
"showClubDiscountFilter": true,
|
|
1787
|
+
"activeClubDiscountByDefault": true
|
|
1788
|
+
},
|
|
1789
|
+
"100376314": {
|
|
1790
|
+
"showClubDiscountFilter": true,
|
|
1791
|
+
"activeClubDiscountByDefault": true
|
|
1792
|
+
},
|
|
1793
|
+
"100376315": {
|
|
1794
|
+
"showClubDiscountFilter": true,
|
|
1795
|
+
"activeClubDiscountByDefault": true
|
|
1796
|
+
},
|
|
1797
|
+
"100376316": {
|
|
1798
|
+
"showClubDiscountFilter": true,
|
|
1799
|
+
"activeClubDiscountByDefault": true
|
|
1800
|
+
},
|
|
1801
|
+
"100376312": {
|
|
1802
|
+
"showClubDiscountFilter": true,
|
|
1803
|
+
"activeClubDiscountByDefault": true
|
|
1804
|
+
},
|
|
1805
|
+
"100376519": {
|
|
1806
|
+
"showClubDiscountFilter": true,
|
|
1807
|
+
"activeClubDiscountByDefault": true
|
|
1808
|
+
},
|
|
1809
|
+
"34923905": {
|
|
1810
|
+
"showClubDiscountFilter": true,
|
|
1811
|
+
"activeClubDiscountByDefault": true
|
|
1812
|
+
},
|
|
1813
|
+
"100180004": {
|
|
1814
|
+
"showClubDiscountFilter": true,
|
|
1815
|
+
"activeClubDiscountByDefault": true
|
|
1816
|
+
},
|
|
1817
|
+
"100376319": {
|
|
1818
|
+
"showClubDiscountFilter": true,
|
|
1819
|
+
"activeClubDiscountByDefault": true
|
|
1820
|
+
},
|
|
1821
|
+
"21926480": {
|
|
1822
|
+
"showClubDiscountFilter": true,
|
|
1823
|
+
"activeClubDiscountByDefault": true
|
|
1824
|
+
},
|
|
1825
|
+
"70465526": {
|
|
1826
|
+
"showClubDiscountFilter": true,
|
|
1827
|
+
"activeClubDiscountByDefault": true
|
|
1828
|
+
},
|
|
1829
|
+
"100376303": {
|
|
1830
|
+
"showClubDiscountFilter": true,
|
|
1831
|
+
"activeClubDiscountByDefault": true
|
|
1832
|
+
},
|
|
1833
|
+
"100376304": {
|
|
1834
|
+
"showClubDiscountFilter": true,
|
|
1835
|
+
"activeClubDiscountByDefault": true
|
|
1836
|
+
},
|
|
1837
|
+
"100376320": {
|
|
1838
|
+
"showClubDiscountFilter": true,
|
|
1839
|
+
"activeClubDiscountByDefault": true
|
|
1840
|
+
},
|
|
1841
|
+
"100376520": {
|
|
1842
|
+
"showClubDiscountFilter": true,
|
|
1843
|
+
"activeClubDiscountByDefault": true
|
|
1844
|
+
},
|
|
1845
|
+
"100376306": {
|
|
1846
|
+
"showClubDiscountFilter": true,
|
|
1847
|
+
"activeClubDiscountByDefault": true
|
|
1848
|
+
},
|
|
1849
|
+
"100376768": {
|
|
1850
|
+
"showClubDiscountFilter": true,
|
|
1851
|
+
"activeClubDiscountByDefault": true
|
|
1852
|
+
},
|
|
1853
|
+
"100376307": {
|
|
1854
|
+
"showClubDiscountFilter": true,
|
|
1855
|
+
"activeClubDiscountByDefault": true
|
|
1856
|
+
},
|
|
1857
|
+
"100376308": {
|
|
1858
|
+
"showClubDiscountFilter": true,
|
|
1859
|
+
"activeClubDiscountByDefault": true
|
|
1860
|
+
}
|
|
1861
|
+
},
|
|
1862
|
+
"hotels": {
|
|
1863
|
+
"100376315": {
|
|
1864
|
+
"clubConfiguration": {
|
|
1865
|
+
"showClubDiscountFilter": true,
|
|
1866
|
+
"activeClubDiscountByDefault": true
|
|
1867
|
+
},
|
|
1868
|
+
"showPricesInCalendar": false,
|
|
1869
|
+
"lodgingDenomination": 1
|
|
1870
|
+
},
|
|
1871
|
+
"100376314": {
|
|
1872
|
+
"clubConfiguration": {
|
|
1873
|
+
"showClubDiscountFilter": true,
|
|
1874
|
+
"activeClubDiscountByDefault": true
|
|
1875
|
+
},
|
|
1876
|
+
"showPricesInCalendar": false,
|
|
1877
|
+
"lodgingDenomination": 1
|
|
1878
|
+
},
|
|
1879
|
+
"100376313": {
|
|
1880
|
+
"clubConfiguration": {
|
|
1881
|
+
"showClubDiscountFilter": true,
|
|
1882
|
+
"activeClubDiscountByDefault": true
|
|
1883
|
+
},
|
|
1884
|
+
"showPricesInCalendar": false,
|
|
1885
|
+
"lodgingDenomination": 1
|
|
1886
|
+
},
|
|
1887
|
+
"100376312": {
|
|
1888
|
+
"clubConfiguration": {
|
|
1889
|
+
"showClubDiscountFilter": true,
|
|
1890
|
+
"activeClubDiscountByDefault": true
|
|
1891
|
+
},
|
|
1892
|
+
"showPricesInCalendar": false,
|
|
1893
|
+
"lodgingDenomination": 1
|
|
1894
|
+
},
|
|
1895
|
+
"100376319": {
|
|
1896
|
+
"clubConfiguration": {
|
|
1897
|
+
"showClubDiscountFilter": true,
|
|
1898
|
+
"activeClubDiscountByDefault": true
|
|
1899
|
+
},
|
|
1900
|
+
"showPricesInCalendar": false,
|
|
1901
|
+
"lodgingDenomination": 1
|
|
1902
|
+
},
|
|
1903
|
+
"70465526": {
|
|
1904
|
+
"clubConfiguration": {
|
|
1905
|
+
"showClubDiscountFilter": true,
|
|
1906
|
+
"activeClubDiscountByDefault": true
|
|
1907
|
+
},
|
|
1908
|
+
"showPricesInCalendar": false,
|
|
1909
|
+
"lodgingDenomination": 1
|
|
1910
|
+
},
|
|
1911
|
+
"100376316": {
|
|
1912
|
+
"clubConfiguration": {
|
|
1913
|
+
"showClubDiscountFilter": true,
|
|
1914
|
+
"activeClubDiscountByDefault": true
|
|
1915
|
+
},
|
|
1916
|
+
"showPricesInCalendar": false,
|
|
1917
|
+
"lodgingDenomination": 1
|
|
1918
|
+
},
|
|
1919
|
+
"100376307": {
|
|
1920
|
+
"clubConfiguration": {
|
|
1921
|
+
"showClubDiscountFilter": true,
|
|
1922
|
+
"activeClubDiscountByDefault": true
|
|
1923
|
+
},
|
|
1924
|
+
"showPricesInCalendar": false,
|
|
1925
|
+
"lodgingDenomination": 1
|
|
1926
|
+
},
|
|
1927
|
+
"100376306": {
|
|
1928
|
+
"clubConfiguration": {
|
|
1929
|
+
"showClubDiscountFilter": true,
|
|
1930
|
+
"activeClubDiscountByDefault": true
|
|
1931
|
+
},
|
|
1932
|
+
"showPricesInCalendar": false,
|
|
1933
|
+
"lodgingDenomination": 1
|
|
1934
|
+
},
|
|
1935
|
+
"67140298": {
|
|
1936
|
+
"clubConfiguration": {
|
|
1937
|
+
"showClubDiscountFilter": true,
|
|
1938
|
+
"activeClubDiscountByDefault": true
|
|
1939
|
+
},
|
|
1940
|
+
"showPricesInCalendar": false,
|
|
1941
|
+
"lodgingDenomination": 1
|
|
1942
|
+
},
|
|
1943
|
+
"100376304": {
|
|
1944
|
+
"clubConfiguration": {
|
|
1945
|
+
"showClubDiscountFilter": true,
|
|
1946
|
+
"activeClubDiscountByDefault": true
|
|
1947
|
+
},
|
|
1948
|
+
"showPricesInCalendar": false,
|
|
1949
|
+
"lodgingDenomination": 1
|
|
1950
|
+
},
|
|
1951
|
+
"100376308": {
|
|
1952
|
+
"clubConfiguration": {
|
|
1953
|
+
"showClubDiscountFilter": true,
|
|
1954
|
+
"activeClubDiscountByDefault": true
|
|
1955
|
+
},
|
|
1956
|
+
"showPricesInCalendar": false,
|
|
1957
|
+
"lodgingDenomination": 1
|
|
1958
|
+
},
|
|
1959
|
+
"100376303": {
|
|
1960
|
+
"clubConfiguration": {
|
|
1961
|
+
"showClubDiscountFilter": true,
|
|
1962
|
+
"activeClubDiscountByDefault": true
|
|
1963
|
+
},
|
|
1964
|
+
"showPricesInCalendar": false,
|
|
1965
|
+
"lodgingDenomination": 1
|
|
1966
|
+
},
|
|
1967
|
+
"34923905": {
|
|
1968
|
+
"clubConfiguration": {
|
|
1969
|
+
"showClubDiscountFilter": true,
|
|
1970
|
+
"activeClubDiscountByDefault": true
|
|
1971
|
+
},
|
|
1972
|
+
"showPricesInCalendar": false,
|
|
1973
|
+
"lodgingDenomination": 1
|
|
1974
|
+
},
|
|
1975
|
+
"46089703": {
|
|
1976
|
+
"clubConfiguration": {
|
|
1977
|
+
"showClubDiscountFilter": true,
|
|
1978
|
+
"activeClubDiscountByDefault": true
|
|
1979
|
+
},
|
|
1980
|
+
"showPricesInCalendar": false,
|
|
1981
|
+
"lodgingDenomination": 1
|
|
1982
|
+
},
|
|
1983
|
+
"100180004": {
|
|
1984
|
+
"clubConfiguration": {
|
|
1985
|
+
"showClubDiscountFilter": true,
|
|
1986
|
+
"activeClubDiscountByDefault": true
|
|
1987
|
+
},
|
|
1988
|
+
"showPricesInCalendar": false,
|
|
1989
|
+
"lodgingDenomination": 1
|
|
1990
|
+
},
|
|
1991
|
+
"21926480": {
|
|
1992
|
+
"clubConfiguration": {
|
|
1993
|
+
"showClubDiscountFilter": true,
|
|
1994
|
+
"activeClubDiscountByDefault": true
|
|
1995
|
+
},
|
|
1996
|
+
"showPricesInCalendar": false,
|
|
1997
|
+
"lodgingDenomination": 1
|
|
1998
|
+
},
|
|
1999
|
+
"62421414": {
|
|
2000
|
+
"clubConfiguration": {
|
|
2001
|
+
"showClubDiscountFilter": true,
|
|
2002
|
+
"activeClubDiscountByDefault": true
|
|
2003
|
+
},
|
|
2004
|
+
"showPricesInCalendar": false,
|
|
2005
|
+
"lodgingDenomination": 1
|
|
2006
|
+
},
|
|
2007
|
+
"100194007": {
|
|
2008
|
+
"clubConfiguration": {
|
|
2009
|
+
"showClubDiscountFilter": true,
|
|
2010
|
+
"activeClubDiscountByDefault": true
|
|
2011
|
+
},
|
|
2012
|
+
"showPricesInCalendar": false,
|
|
2013
|
+
"lodgingDenomination": 1
|
|
2014
|
+
},
|
|
2015
|
+
"100376520": {
|
|
2016
|
+
"clubConfiguration": {
|
|
2017
|
+
"showClubDiscountFilter": true,
|
|
2018
|
+
"activeClubDiscountByDefault": true
|
|
2019
|
+
},
|
|
2020
|
+
"showPricesInCalendar": false,
|
|
2021
|
+
"lodgingDenomination": 1
|
|
2022
|
+
},
|
|
2023
|
+
"52456469": {
|
|
2024
|
+
"clubConfiguration": {
|
|
2025
|
+
"showClubDiscountFilter": true,
|
|
2026
|
+
"activeClubDiscountByDefault": true
|
|
2027
|
+
},
|
|
2028
|
+
"showPricesInCalendar": false,
|
|
2029
|
+
"lodgingDenomination": 1
|
|
2030
|
+
},
|
|
2031
|
+
"71794866": {
|
|
2032
|
+
"clubConfiguration": {
|
|
2033
|
+
"showClubDiscountFilter": true,
|
|
2034
|
+
"activeClubDiscountByDefault": true
|
|
2035
|
+
},
|
|
2036
|
+
"showPricesInCalendar": false,
|
|
2037
|
+
"lodgingDenomination": 1
|
|
2038
|
+
},
|
|
2039
|
+
"24686991": {
|
|
2040
|
+
"clubConfiguration": {
|
|
2041
|
+
"showClubDiscountFilter": true,
|
|
2042
|
+
"activeClubDiscountByDefault": true
|
|
2043
|
+
},
|
|
2044
|
+
"showPricesInCalendar": false,
|
|
2045
|
+
"lodgingDenomination": 1
|
|
2046
|
+
},
|
|
2047
|
+
"100376320": {
|
|
2048
|
+
"clubConfiguration": {
|
|
2049
|
+
"showClubDiscountFilter": true,
|
|
2050
|
+
"activeClubDiscountByDefault": true
|
|
2051
|
+
},
|
|
2052
|
+
"showPricesInCalendar": false,
|
|
2053
|
+
"lodgingDenomination": 1
|
|
2054
|
+
},
|
|
2055
|
+
"100376768": {
|
|
2056
|
+
"clubConfiguration": {
|
|
2057
|
+
"showClubDiscountFilter": true,
|
|
2058
|
+
"activeClubDiscountByDefault": true
|
|
2059
|
+
},
|
|
2060
|
+
"showPricesInCalendar": false,
|
|
2061
|
+
"lodgingDenomination": 1
|
|
2062
|
+
},
|
|
2063
|
+
"100376519": {
|
|
2064
|
+
"clubConfiguration": {
|
|
2065
|
+
"showClubDiscountFilter": true,
|
|
2066
|
+
"activeClubDiscountByDefault": true
|
|
2067
|
+
},
|
|
2068
|
+
"showPricesInCalendar": false,
|
|
2069
|
+
"lodgingDenomination": 1
|
|
2070
|
+
}
|
|
2071
|
+
},
|
|
2072
|
+
"accomodation": {
|
|
2073
|
+
"id": 500255,
|
|
2074
|
+
"type": 1,
|
|
2075
|
+
"calendar": {
|
|
2076
|
+
"maxNights": 64,
|
|
2077
|
+
"prices": false,
|
|
2078
|
+
"pricesWithTaxes": false,
|
|
2079
|
+
"maxDays": 1095,
|
|
2080
|
+
"nightsForDeal": 1
|
|
2081
|
+
},
|
|
2082
|
+
"promo": {
|
|
2083
|
+
"code": ""
|
|
2084
|
+
},
|
|
2085
|
+
"club": {
|
|
2086
|
+
"rates": true,
|
|
2087
|
+
"discount": true
|
|
2088
|
+
},
|
|
2089
|
+
"rooms": {
|
|
2090
|
+
"maxOccupation": 3,
|
|
2091
|
+
"warning": 1
|
|
2092
|
+
},
|
|
2093
|
+
"variants": [
|
|
2094
|
+
{
|
|
2095
|
+
"id": 21926480,
|
|
2096
|
+
"occupation": [
|
|
2097
|
+
{
|
|
2098
|
+
"type": 2,
|
|
2099
|
+
"age": [12, 99],
|
|
2100
|
+
"max": 4,
|
|
2101
|
+
"min": 1,
|
|
2102
|
+
"fulfill": false
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"type": 3,
|
|
2106
|
+
"age": [2, 11],
|
|
2107
|
+
"max": 4,
|
|
2108
|
+
"min": 0,
|
|
2109
|
+
"fulfill": true
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
"type": 4,
|
|
2113
|
+
"age": [0, 1],
|
|
2114
|
+
"max": 1,
|
|
2115
|
+
"min": 0,
|
|
2116
|
+
"fulfill": true
|
|
2117
|
+
}
|
|
2118
|
+
]
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"id": 24686991,
|
|
2122
|
+
"occupation": [
|
|
2123
|
+
{
|
|
2124
|
+
"type": 2,
|
|
2125
|
+
"age": [12, 99],
|
|
2126
|
+
"max": 3,
|
|
2127
|
+
"min": 1,
|
|
2128
|
+
"fulfill": false
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"type": 3,
|
|
2132
|
+
"age": [2, 11],
|
|
2133
|
+
"max": 2,
|
|
2134
|
+
"min": 0,
|
|
2135
|
+
"fulfill": true
|
|
2136
|
+
},
|
|
2137
|
+
{
|
|
2138
|
+
"type": 4,
|
|
2139
|
+
"age": [0, 1],
|
|
2140
|
+
"max": 1,
|
|
2141
|
+
"min": 0,
|
|
2142
|
+
"fulfill": true
|
|
2143
|
+
}
|
|
2144
|
+
]
|
|
2145
|
+
},
|
|
2146
|
+
{
|
|
2147
|
+
"id": 34923905,
|
|
2148
|
+
"occupation": [
|
|
2149
|
+
{
|
|
2150
|
+
"type": 2,
|
|
2151
|
+
"age": [14, 99],
|
|
2152
|
+
"max": 4,
|
|
2153
|
+
"min": 1,
|
|
2154
|
+
"fulfill": false
|
|
2155
|
+
},
|
|
2156
|
+
{
|
|
2157
|
+
"type": 3,
|
|
2158
|
+
"age": [2, 13],
|
|
2159
|
+
"max": 3,
|
|
2160
|
+
"min": 0,
|
|
2161
|
+
"fulfill": true
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
"type": 4,
|
|
2165
|
+
"age": [0, 1],
|
|
2166
|
+
"max": 1,
|
|
2167
|
+
"min": 0,
|
|
2168
|
+
"fulfill": true
|
|
2169
|
+
}
|
|
2170
|
+
]
|
|
2171
|
+
},
|
|
2172
|
+
{
|
|
2173
|
+
"id": 46089703,
|
|
2174
|
+
"occupation": [
|
|
2175
|
+
{
|
|
2176
|
+
"type": 2,
|
|
2177
|
+
"age": [12, 99],
|
|
2178
|
+
"max": 4,
|
|
2179
|
+
"min": 1,
|
|
2180
|
+
"fulfill": false
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
"type": 3,
|
|
2184
|
+
"age": [2, 11],
|
|
2185
|
+
"max": 4,
|
|
2186
|
+
"min": 0,
|
|
2187
|
+
"fulfill": true
|
|
2188
|
+
},
|
|
2189
|
+
{
|
|
2190
|
+
"type": 4,
|
|
2191
|
+
"age": [0, 1],
|
|
2192
|
+
"max": 1,
|
|
2193
|
+
"min": 0,
|
|
2194
|
+
"fulfill": true
|
|
2195
|
+
}
|
|
2196
|
+
]
|
|
2197
|
+
},
|
|
2198
|
+
{
|
|
2199
|
+
"id": 52456469,
|
|
2200
|
+
"occupation": [
|
|
2201
|
+
{
|
|
2202
|
+
"type": 2,
|
|
2203
|
+
"age": [12, 99],
|
|
2204
|
+
"max": 3,
|
|
2205
|
+
"min": 1,
|
|
2206
|
+
"fulfill": false
|
|
2207
|
+
},
|
|
2208
|
+
{
|
|
2209
|
+
"type": 3,
|
|
2210
|
+
"age": [2, 11],
|
|
2211
|
+
"max": 2,
|
|
2212
|
+
"min": 0,
|
|
2213
|
+
"fulfill": true
|
|
2214
|
+
}
|
|
2215
|
+
]
|
|
2216
|
+
},
|
|
2217
|
+
{
|
|
2218
|
+
"id": 62421414,
|
|
2219
|
+
"occupation": [
|
|
2220
|
+
{
|
|
2221
|
+
"type": 2,
|
|
2222
|
+
"age": [12, 99],
|
|
2223
|
+
"max": 4,
|
|
2224
|
+
"min": 1,
|
|
2225
|
+
"fulfill": false
|
|
2226
|
+
},
|
|
2227
|
+
{
|
|
2228
|
+
"type": 3,
|
|
2229
|
+
"age": [2, 11],
|
|
2230
|
+
"max": 4,
|
|
2231
|
+
"min": 0,
|
|
2232
|
+
"fulfill": true
|
|
2233
|
+
},
|
|
2234
|
+
{
|
|
2235
|
+
"type": 4,
|
|
2236
|
+
"age": [0, 1],
|
|
2237
|
+
"max": 1,
|
|
2238
|
+
"min": 0,
|
|
2239
|
+
"fulfill": true
|
|
2240
|
+
}
|
|
2241
|
+
]
|
|
2242
|
+
},
|
|
2243
|
+
{
|
|
2244
|
+
"id": 67140298,
|
|
2245
|
+
"occupation": [
|
|
2246
|
+
{
|
|
2247
|
+
"type": 2,
|
|
2248
|
+
"age": [12, 99],
|
|
2249
|
+
"max": 4,
|
|
2250
|
+
"min": 1,
|
|
2251
|
+
"fulfill": false
|
|
2252
|
+
},
|
|
2253
|
+
{
|
|
2254
|
+
"type": 3,
|
|
2255
|
+
"age": [2, 11],
|
|
2256
|
+
"max": 4,
|
|
2257
|
+
"min": 0,
|
|
2258
|
+
"fulfill": true
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
"type": 4,
|
|
2262
|
+
"age": [0, 1],
|
|
2263
|
+
"max": 1,
|
|
2264
|
+
"min": 0,
|
|
2265
|
+
"fulfill": true
|
|
2266
|
+
}
|
|
2267
|
+
]
|
|
2268
|
+
},
|
|
2269
|
+
{
|
|
2270
|
+
"id": 70465526,
|
|
2271
|
+
"occupation": [
|
|
2272
|
+
{
|
|
2273
|
+
"type": 2,
|
|
2274
|
+
"age": [16, 99],
|
|
2275
|
+
"max": 3,
|
|
2276
|
+
"min": 1,
|
|
2277
|
+
"fulfill": false
|
|
2278
|
+
},
|
|
2279
|
+
{
|
|
2280
|
+
"type": 3,
|
|
2281
|
+
"age": [2, 15],
|
|
2282
|
+
"max": 0,
|
|
2283
|
+
"min": 0,
|
|
2284
|
+
"fulfill": true
|
|
2285
|
+
}
|
|
2286
|
+
]
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
"id": 71794866,
|
|
2290
|
+
"occupation": [
|
|
2291
|
+
{
|
|
2292
|
+
"type": 2,
|
|
2293
|
+
"age": [18, 99],
|
|
2294
|
+
"max": 4,
|
|
2295
|
+
"min": 1,
|
|
2296
|
+
"fulfill": false
|
|
2297
|
+
},
|
|
2298
|
+
{
|
|
2299
|
+
"type": 3,
|
|
2300
|
+
"age": [2, 11],
|
|
2301
|
+
"max": 4,
|
|
2302
|
+
"min": 0,
|
|
2303
|
+
"fulfill": true
|
|
2304
|
+
},
|
|
2305
|
+
{
|
|
2306
|
+
"type": 3,
|
|
2307
|
+
"age": [12, 17],
|
|
2308
|
+
"max": 1,
|
|
2309
|
+
"min": 0,
|
|
2310
|
+
"fulfill": true
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
"type": 4,
|
|
2314
|
+
"age": [0, 1],
|
|
2315
|
+
"max": 1,
|
|
2316
|
+
"min": 0,
|
|
2317
|
+
"fulfill": true
|
|
2318
|
+
}
|
|
2319
|
+
]
|
|
2320
|
+
},
|
|
2321
|
+
{
|
|
2322
|
+
"id": 100180004,
|
|
2323
|
+
"occupation": [
|
|
2324
|
+
{
|
|
2325
|
+
"type": 2,
|
|
2326
|
+
"age": [12, 99],
|
|
2327
|
+
"max": 4,
|
|
2328
|
+
"min": 1,
|
|
2329
|
+
"fulfill": false
|
|
2330
|
+
},
|
|
2331
|
+
{
|
|
2332
|
+
"type": 3,
|
|
2333
|
+
"age": [2, 11],
|
|
2334
|
+
"max": 4,
|
|
2335
|
+
"min": 0,
|
|
2336
|
+
"fulfill": true
|
|
2337
|
+
},
|
|
2338
|
+
{
|
|
2339
|
+
"type": 4,
|
|
2340
|
+
"age": [0, 1],
|
|
2341
|
+
"max": 1,
|
|
2342
|
+
"min": 0,
|
|
2343
|
+
"fulfill": true
|
|
2344
|
+
}
|
|
2345
|
+
]
|
|
2346
|
+
},
|
|
2347
|
+
{
|
|
2348
|
+
"id": 100194007,
|
|
2349
|
+
"occupation": [
|
|
2350
|
+
{
|
|
2351
|
+
"type": 2,
|
|
2352
|
+
"age": [16, 99],
|
|
2353
|
+
"max": 3,
|
|
2354
|
+
"min": 1,
|
|
2355
|
+
"fulfill": false
|
|
2356
|
+
}
|
|
2357
|
+
]
|
|
2358
|
+
},
|
|
2359
|
+
{
|
|
2360
|
+
"id": 100376303,
|
|
2361
|
+
"occupation": [
|
|
2362
|
+
{
|
|
2363
|
+
"type": 2,
|
|
2364
|
+
"age": [14, 99],
|
|
2365
|
+
"max": 4,
|
|
2366
|
+
"min": 1,
|
|
2367
|
+
"fulfill": false
|
|
2368
|
+
},
|
|
2369
|
+
{
|
|
2370
|
+
"type": 3,
|
|
2371
|
+
"age": [2, 13],
|
|
2372
|
+
"max": 3,
|
|
2373
|
+
"min": 0,
|
|
2374
|
+
"fulfill": true
|
|
2375
|
+
},
|
|
2376
|
+
{
|
|
2377
|
+
"type": 4,
|
|
2378
|
+
"age": [0, 1],
|
|
2379
|
+
"max": 1,
|
|
2380
|
+
"min": 0,
|
|
2381
|
+
"fulfill": true
|
|
2382
|
+
}
|
|
2383
|
+
]
|
|
2384
|
+
},
|
|
2385
|
+
{
|
|
2386
|
+
"id": 100376304,
|
|
2387
|
+
"occupation": [
|
|
2388
|
+
{
|
|
2389
|
+
"type": 2,
|
|
2390
|
+
"age": [13, 99],
|
|
2391
|
+
"max": 4,
|
|
2392
|
+
"min": 1,
|
|
2393
|
+
"fulfill": false
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
"type": 3,
|
|
2397
|
+
"age": [3, 12],
|
|
2398
|
+
"max": 4,
|
|
2399
|
+
"min": 0,
|
|
2400
|
+
"fulfill": true
|
|
2401
|
+
},
|
|
2402
|
+
{
|
|
2403
|
+
"type": 4,
|
|
2404
|
+
"age": [0, 2],
|
|
2405
|
+
"max": 1,
|
|
2406
|
+
"min": 0,
|
|
2407
|
+
"fulfill": true
|
|
2408
|
+
}
|
|
2409
|
+
]
|
|
2410
|
+
},
|
|
2411
|
+
{
|
|
2412
|
+
"id": 100376306,
|
|
2413
|
+
"occupation": [
|
|
2414
|
+
{
|
|
2415
|
+
"type": 2,
|
|
2416
|
+
"age": [13, 99],
|
|
2417
|
+
"max": 3,
|
|
2418
|
+
"min": 1,
|
|
2419
|
+
"fulfill": false
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
"type": 3,
|
|
2423
|
+
"age": [3, 12],
|
|
2424
|
+
"max": 3,
|
|
2425
|
+
"min": 0,
|
|
2426
|
+
"fulfill": true
|
|
2427
|
+
},
|
|
2428
|
+
{
|
|
2429
|
+
"type": 4,
|
|
2430
|
+
"age": [0, 2],
|
|
2431
|
+
"max": 1,
|
|
2432
|
+
"min": 0,
|
|
2433
|
+
"fulfill": true
|
|
2434
|
+
}
|
|
2435
|
+
]
|
|
2436
|
+
},
|
|
2437
|
+
{
|
|
2438
|
+
"id": 100376307,
|
|
2439
|
+
"occupation": [
|
|
2440
|
+
{
|
|
2441
|
+
"type": 2,
|
|
2442
|
+
"age": [18, 99],
|
|
2443
|
+
"max": 3,
|
|
2444
|
+
"min": 1,
|
|
2445
|
+
"fulfill": false
|
|
2446
|
+
}
|
|
2447
|
+
]
|
|
2448
|
+
},
|
|
2449
|
+
{
|
|
2450
|
+
"id": 100376308,
|
|
2451
|
+
"occupation": [
|
|
2452
|
+
{
|
|
2453
|
+
"type": 2,
|
|
2454
|
+
"age": [13, 99],
|
|
2455
|
+
"max": 3,
|
|
2456
|
+
"min": 1,
|
|
2457
|
+
"fulfill": false
|
|
2458
|
+
},
|
|
2459
|
+
{
|
|
2460
|
+
"type": 3,
|
|
2461
|
+
"age": [3, 12],
|
|
2462
|
+
"max": 4,
|
|
2463
|
+
"min": 0,
|
|
2464
|
+
"fulfill": true
|
|
2465
|
+
},
|
|
2466
|
+
{
|
|
2467
|
+
"type": 4,
|
|
2468
|
+
"age": [0, 2],
|
|
2469
|
+
"max": 1,
|
|
2470
|
+
"min": 0,
|
|
2471
|
+
"fulfill": true
|
|
2472
|
+
}
|
|
2473
|
+
]
|
|
2474
|
+
},
|
|
2475
|
+
{
|
|
2476
|
+
"id": 100376312,
|
|
2477
|
+
"occupation": [
|
|
2478
|
+
{
|
|
2479
|
+
"type": 2,
|
|
2480
|
+
"age": [13, 99],
|
|
2481
|
+
"max": 3,
|
|
2482
|
+
"min": 1,
|
|
2483
|
+
"fulfill": false
|
|
2484
|
+
},
|
|
2485
|
+
{
|
|
2486
|
+
"type": 3,
|
|
2487
|
+
"age": [3, 12],
|
|
2488
|
+
"max": 4,
|
|
2489
|
+
"min": 0,
|
|
2490
|
+
"fulfill": true
|
|
2491
|
+
},
|
|
2492
|
+
{
|
|
2493
|
+
"type": 4,
|
|
2494
|
+
"age": [0, 2],
|
|
2495
|
+
"max": 1,
|
|
2496
|
+
"min": 0,
|
|
2497
|
+
"fulfill": true
|
|
2498
|
+
}
|
|
2499
|
+
]
|
|
2500
|
+
},
|
|
2501
|
+
{
|
|
2502
|
+
"id": 100376313,
|
|
2503
|
+
"occupation": [
|
|
2504
|
+
{
|
|
2505
|
+
"type": 2,
|
|
2506
|
+
"age": [13, 99],
|
|
2507
|
+
"max": 4,
|
|
2508
|
+
"min": 1,
|
|
2509
|
+
"fulfill": false
|
|
2510
|
+
},
|
|
2511
|
+
{
|
|
2512
|
+
"type": 3,
|
|
2513
|
+
"age": [3, 12],
|
|
2514
|
+
"max": 3,
|
|
2515
|
+
"min": 0,
|
|
2516
|
+
"fulfill": true
|
|
2517
|
+
},
|
|
2518
|
+
{
|
|
2519
|
+
"type": 4,
|
|
2520
|
+
"age": [0, 2],
|
|
2521
|
+
"max": 1,
|
|
2522
|
+
"min": 0,
|
|
2523
|
+
"fulfill": true
|
|
2524
|
+
}
|
|
2525
|
+
]
|
|
2526
|
+
},
|
|
2527
|
+
{
|
|
2528
|
+
"id": 100376314,
|
|
2529
|
+
"occupation": [
|
|
2530
|
+
{
|
|
2531
|
+
"type": 2,
|
|
2532
|
+
"age": [18, 99],
|
|
2533
|
+
"max": 4,
|
|
2534
|
+
"min": 1,
|
|
2535
|
+
"fulfill": false
|
|
2536
|
+
}
|
|
2537
|
+
]
|
|
2538
|
+
},
|
|
2539
|
+
{
|
|
2540
|
+
"id": 100376315,
|
|
2541
|
+
"occupation": [
|
|
2542
|
+
{
|
|
2543
|
+
"type": 2,
|
|
2544
|
+
"age": [13, 99],
|
|
2545
|
+
"max": 5,
|
|
2546
|
+
"min": 1,
|
|
2547
|
+
"fulfill": false
|
|
2548
|
+
},
|
|
2549
|
+
{
|
|
2550
|
+
"type": 3,
|
|
2551
|
+
"age": [3, 12],
|
|
2552
|
+
"max": 5,
|
|
2553
|
+
"min": 0,
|
|
2554
|
+
"fulfill": true
|
|
2555
|
+
},
|
|
2556
|
+
{
|
|
2557
|
+
"type": 4,
|
|
2558
|
+
"age": [0, 2],
|
|
2559
|
+
"max": 1,
|
|
2560
|
+
"min": 0,
|
|
2561
|
+
"fulfill": true
|
|
2562
|
+
}
|
|
2563
|
+
]
|
|
2564
|
+
},
|
|
2565
|
+
{
|
|
2566
|
+
"id": 100376316,
|
|
2567
|
+
"occupation": [
|
|
2568
|
+
{
|
|
2569
|
+
"type": 2,
|
|
2570
|
+
"age": [13, 99],
|
|
2571
|
+
"max": 4,
|
|
2572
|
+
"min": 1,
|
|
2573
|
+
"fulfill": false
|
|
2574
|
+
},
|
|
2575
|
+
{
|
|
2576
|
+
"type": 3,
|
|
2577
|
+
"age": [3, 12],
|
|
2578
|
+
"max": 3,
|
|
2579
|
+
"min": 0,
|
|
2580
|
+
"fulfill": true
|
|
2581
|
+
},
|
|
2582
|
+
{
|
|
2583
|
+
"type": 4,
|
|
2584
|
+
"age": [0, 2],
|
|
2585
|
+
"max": 1,
|
|
2586
|
+
"min": 0,
|
|
2587
|
+
"fulfill": true
|
|
2588
|
+
}
|
|
2589
|
+
]
|
|
2590
|
+
},
|
|
2591
|
+
{
|
|
2592
|
+
"id": 100376319,
|
|
2593
|
+
"occupation": [
|
|
2594
|
+
{
|
|
2595
|
+
"type": 2,
|
|
2596
|
+
"age": [12, 99],
|
|
2597
|
+
"max": 4,
|
|
2598
|
+
"min": 1,
|
|
2599
|
+
"fulfill": false
|
|
2600
|
+
},
|
|
2601
|
+
{
|
|
2602
|
+
"type": 3,
|
|
2603
|
+
"age": [2, 11],
|
|
2604
|
+
"max": 4,
|
|
2605
|
+
"min": 0,
|
|
2606
|
+
"fulfill": true
|
|
2607
|
+
},
|
|
2608
|
+
{
|
|
2609
|
+
"type": 4,
|
|
2610
|
+
"age": [0, 1],
|
|
2611
|
+
"max": 1,
|
|
2612
|
+
"min": 0,
|
|
2613
|
+
"fulfill": true
|
|
2614
|
+
}
|
|
2615
|
+
]
|
|
2616
|
+
},
|
|
2617
|
+
{
|
|
2618
|
+
"id": 100376320,
|
|
2619
|
+
"occupation": [
|
|
2620
|
+
{
|
|
2621
|
+
"type": 2,
|
|
2622
|
+
"age": [16, 99],
|
|
2623
|
+
"max": 3,
|
|
2624
|
+
"min": 1,
|
|
2625
|
+
"fulfill": false
|
|
2626
|
+
}
|
|
2627
|
+
]
|
|
2628
|
+
},
|
|
2629
|
+
{
|
|
2630
|
+
"id": 100376519,
|
|
2631
|
+
"occupation": [
|
|
2632
|
+
{
|
|
2633
|
+
"type": 2,
|
|
2634
|
+
"age": [13, 99],
|
|
2635
|
+
"max": 3,
|
|
2636
|
+
"min": 1,
|
|
2637
|
+
"fulfill": false
|
|
2638
|
+
},
|
|
2639
|
+
{
|
|
2640
|
+
"type": 3,
|
|
2641
|
+
"age": [3, 12],
|
|
2642
|
+
"max": 3,
|
|
2643
|
+
"min": 0,
|
|
2644
|
+
"fulfill": true
|
|
2645
|
+
},
|
|
2646
|
+
{
|
|
2647
|
+
"type": 4,
|
|
2648
|
+
"age": [0, 2],
|
|
2649
|
+
"max": 1,
|
|
2650
|
+
"min": 0,
|
|
2651
|
+
"fulfill": true
|
|
2652
|
+
}
|
|
2653
|
+
]
|
|
2654
|
+
},
|
|
2655
|
+
{
|
|
2656
|
+
"id": 100376520,
|
|
2657
|
+
"occupation": [
|
|
2658
|
+
{
|
|
2659
|
+
"type": 2,
|
|
2660
|
+
"age": [13, 99],
|
|
2661
|
+
"max": 3,
|
|
2662
|
+
"min": 1,
|
|
2663
|
+
"fulfill": false
|
|
2664
|
+
},
|
|
2665
|
+
{
|
|
2666
|
+
"type": 3,
|
|
2667
|
+
"age": [3, 12],
|
|
2668
|
+
"max": 4,
|
|
2669
|
+
"min": 0,
|
|
2670
|
+
"fulfill": true
|
|
2671
|
+
},
|
|
2672
|
+
{
|
|
2673
|
+
"type": 4,
|
|
2674
|
+
"age": [0, 2],
|
|
2675
|
+
"max": 1,
|
|
2676
|
+
"min": 0,
|
|
2677
|
+
"fulfill": true
|
|
2678
|
+
}
|
|
2679
|
+
]
|
|
2680
|
+
},
|
|
2681
|
+
{
|
|
2682
|
+
"id": 100376768,
|
|
2683
|
+
"occupation": [
|
|
2684
|
+
{
|
|
2685
|
+
"type": 2,
|
|
2686
|
+
"age": [17, 99],
|
|
2687
|
+
"max": 3,
|
|
2688
|
+
"min": 1,
|
|
2689
|
+
"fulfill": false
|
|
2690
|
+
}
|
|
2691
|
+
]
|
|
2692
|
+
}
|
|
2693
|
+
]
|
|
2694
|
+
}
|
|
2695
|
+
}
|