@qite/tide-booking-component 1.0.30 → 1.0.32
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/.vs/ProjectSettings.json +3 -3
- package/.vs/VSWorkspaceState.json +5 -7
- package/README.md +8 -8
- package/build/build-cjs/booking-wizard/components/icon.d.ts +7 -7
- package/build/build-cjs/booking-wizard/components/labeled-input.d.ts +18 -18
- package/build/build-cjs/booking-wizard/components/labeled-select.d.ts +21 -21
- package/build/build-cjs/booking-wizard/components/message.d.ts +9 -9
- package/build/build-cjs/booking-wizard/components/product-card.d.ts +8 -8
- package/build/build-cjs/booking-wizard/components/rating.d.ts +6 -6
- package/build/build-cjs/booking-wizard/components/step-indicator.d.ts +6 -6
- package/build/build-cjs/booking-wizard/components/step-route.d.ts +9 -9
- package/build/build-cjs/booking-wizard/features/booking/api.d.ts +16 -7
- package/build/build-cjs/booking-wizard/features/booking/booking-slice.d.ts +138 -27
- package/build/build-cjs/booking-wizard/features/booking/booking.d.ts +8 -8
- package/build/build-cjs/booking-wizard/features/booking/selectors.d.ts +221 -95
- package/build/build-cjs/booking-wizard/features/confirmation/confirmation.d.ts +4 -5
- package/build/build-cjs/booking-wizard/features/error/error.d.ts +4 -5
- package/build/build-cjs/booking-wizard/features/price-details/price-details-api.d.ts +13 -5
- package/build/build-cjs/booking-wizard/features/price-details/price-details-slice.d.ts +116 -66
- package/build/build-cjs/booking-wizard/features/price-details/util.d.ts +5 -2
- package/build/build-cjs/booking-wizard/features/product-options/no-options.d.ts +3 -2
- package/build/build-cjs/booking-wizard/features/product-options/none-option.d.ts +17 -9
- package/build/build-cjs/booking-wizard/features/product-options/option-booking-group.d.ts +18 -12
- package/build/build-cjs/booking-wizard/features/product-options/option-item.d.ts +11 -11
- package/build/build-cjs/booking-wizard/features/product-options/option-pax-card.d.ts +13 -10
- package/build/build-cjs/booking-wizard/features/product-options/option-pax-group.d.ts +20 -13
- package/build/build-cjs/booking-wizard/features/product-options/option-room.d.ts +18 -10
- package/build/build-cjs/booking-wizard/features/product-options/option-unit-group.d.ts +20 -13
- package/build/build-cjs/booking-wizard/features/product-options/option-units-card.d.ts +9 -9
- package/build/build-cjs/booking-wizard/features/product-options/options-form.d.ts +4 -5
- package/build/build-cjs/booking-wizard/features/product-options/validate-form.d.ts +2 -2
- package/build/build-cjs/booking-wizard/features/sidebar/index.d.ts +7 -7
- package/build/build-cjs/booking-wizard/features/sidebar/sidebar-flight.d.ts +8 -8
- package/build/build-cjs/booking-wizard/features/sidebar/sidebar-util.d.ts +30 -9
- package/build/build-cjs/booking-wizard/features/sidebar/sidebar.d.ts +29 -25
- package/build/build-cjs/booking-wizard/features/summary/summary-booking-option-pax.d.ts +7 -7
- package/build/build-cjs/booking-wizard/features/summary/summary-booking-option-unit.d.ts +7 -7
- package/build/build-cjs/booking-wizard/features/summary/summary-flight.d.ts +8 -8
- package/build/build-cjs/booking-wizard/features/summary/summary-per-booking-option-group.d.ts +10 -7
- package/build/build-cjs/booking-wizard/features/summary/summary-per-pax-option-group.d.ts +10 -7
- package/build/build-cjs/booking-wizard/features/summary/summary-per-unit-option-group.d.ts +10 -7
- package/build/build-cjs/booking-wizard/features/summary/summary-slice.d.ts +14 -8
- package/build/build-cjs/booking-wizard/features/summary/summary.d.ts +4 -5
- package/build/build-cjs/booking-wizard/features/travelers-form/travelers-form-slice.d.ts +72 -60
- package/build/build-cjs/booking-wizard/features/travelers-form/travelers-form.d.ts +4 -5
- package/build/build-cjs/booking-wizard/features/travelers-form/type-ahead-input.d.ts +16 -16
- package/build/build-cjs/booking-wizard/features/travelers-form/validate-form.d.ts +9 -4
- package/build/build-cjs/booking-wizard/index.d.ts +12 -12
- package/build/build-cjs/booking-wizard/settings-context.d.ts +5 -6
- package/build/build-cjs/booking-wizard/store.d.ts +41 -21
- package/build/build-cjs/booking-wizard/types.d.ts +127 -124
- package/build/build-cjs/booking-wizard/utils/class-util.d.ts +1 -1
- package/build/build-cjs/booking-wizard/utils/localization-util.d.ts +158 -140
- package/build/build-cjs/booking-wizard/utils/query-string-util.d.ts +25 -7
- package/build/build-cjs/booking-wizard/utils/tide-api-utils.d.ts +2 -2
- package/build/build-cjs/index.d.ts +2 -2
- package/build/build-cjs/index.js +13283 -8286
- package/build/build-esm/booking-wizard/components/icon.d.ts +7 -7
- package/build/build-esm/booking-wizard/components/labeled-input.d.ts +18 -18
- package/build/build-esm/booking-wizard/components/labeled-select.d.ts +21 -21
- package/build/build-esm/booking-wizard/components/message.d.ts +9 -9
- package/build/build-esm/booking-wizard/components/product-card.d.ts +8 -8
- package/build/build-esm/booking-wizard/components/rating.d.ts +6 -6
- package/build/build-esm/booking-wizard/components/step-indicator.d.ts +6 -6
- package/build/build-esm/booking-wizard/components/step-route.d.ts +9 -9
- package/build/build-esm/booking-wizard/features/booking/api.d.ts +16 -7
- package/build/build-esm/booking-wizard/features/booking/booking-slice.d.ts +138 -27
- package/build/build-esm/booking-wizard/features/booking/booking.d.ts +8 -8
- package/build/build-esm/booking-wizard/features/booking/selectors.d.ts +221 -95
- package/build/build-esm/booking-wizard/features/confirmation/confirmation.d.ts +4 -5
- package/build/build-esm/booking-wizard/features/error/error.d.ts +4 -5
- package/build/build-esm/booking-wizard/features/price-details/price-details-api.d.ts +13 -5
- package/build/build-esm/booking-wizard/features/price-details/price-details-slice.d.ts +116 -66
- package/build/build-esm/booking-wizard/features/price-details/util.d.ts +5 -2
- package/build/build-esm/booking-wizard/features/product-options/no-options.d.ts +3 -2
- package/build/build-esm/booking-wizard/features/product-options/none-option.d.ts +17 -9
- package/build/build-esm/booking-wizard/features/product-options/option-booking-group.d.ts +18 -12
- package/build/build-esm/booking-wizard/features/product-options/option-item.d.ts +11 -11
- package/build/build-esm/booking-wizard/features/product-options/option-pax-card.d.ts +13 -10
- package/build/build-esm/booking-wizard/features/product-options/option-pax-group.d.ts +20 -13
- package/build/build-esm/booking-wizard/features/product-options/option-room.d.ts +18 -10
- package/build/build-esm/booking-wizard/features/product-options/option-unit-group.d.ts +20 -13
- package/build/build-esm/booking-wizard/features/product-options/option-units-card.d.ts +9 -9
- package/build/build-esm/booking-wizard/features/product-options/options-form.d.ts +4 -5
- package/build/build-esm/booking-wizard/features/product-options/validate-form.d.ts +2 -2
- package/build/build-esm/booking-wizard/features/sidebar/index.d.ts +7 -7
- package/build/build-esm/booking-wizard/features/sidebar/sidebar-flight.d.ts +8 -8
- package/build/build-esm/booking-wizard/features/sidebar/sidebar-util.d.ts +30 -9
- package/build/build-esm/booking-wizard/features/sidebar/sidebar.d.ts +29 -25
- package/build/build-esm/booking-wizard/features/summary/summary-booking-option-pax.d.ts +7 -7
- package/build/build-esm/booking-wizard/features/summary/summary-booking-option-unit.d.ts +7 -7
- package/build/build-esm/booking-wizard/features/summary/summary-flight.d.ts +8 -8
- package/build/build-esm/booking-wizard/features/summary/summary-per-booking-option-group.d.ts +10 -7
- package/build/build-esm/booking-wizard/features/summary/summary-per-pax-option-group.d.ts +10 -7
- package/build/build-esm/booking-wizard/features/summary/summary-per-unit-option-group.d.ts +10 -7
- package/build/build-esm/booking-wizard/features/summary/summary-slice.d.ts +14 -8
- package/build/build-esm/booking-wizard/features/summary/summary.d.ts +4 -5
- package/build/build-esm/booking-wizard/features/travelers-form/travelers-form-slice.d.ts +72 -60
- package/build/build-esm/booking-wizard/features/travelers-form/travelers-form.d.ts +4 -5
- package/build/build-esm/booking-wizard/features/travelers-form/type-ahead-input.d.ts +16 -16
- package/build/build-esm/booking-wizard/features/travelers-form/validate-form.d.ts +9 -4
- package/build/build-esm/booking-wizard/index.d.ts +12 -12
- package/build/build-esm/booking-wizard/settings-context.d.ts +5 -6
- package/build/build-esm/booking-wizard/store.d.ts +41 -21
- package/build/build-esm/booking-wizard/types.d.ts +127 -124
- package/build/build-esm/booking-wizard/utils/class-util.d.ts +1 -1
- package/build/build-esm/booking-wizard/utils/localization-util.d.ts +158 -140
- package/build/build-esm/booking-wizard/utils/query-string-util.d.ts +25 -7
- package/build/build-esm/booking-wizard/utils/tide-api-utils.d.ts +2 -2
- package/build/build-esm/index.d.ts +2 -2
- package/build/build-esm/index.js +13121 -8277
- package/package.json +71 -71
- package/rollup.config.js +23 -23
- package/src/booking-wizard/components/icon.tsx +29 -29
- package/src/booking-wizard/components/labeled-input.tsx +64 -64
- package/src/booking-wizard/components/labeled-select.tsx +69 -69
- package/src/booking-wizard/components/message.tsx +34 -34
- package/src/booking-wizard/components/product-card.tsx +37 -37
- package/src/booking-wizard/components/rating.tsx +21 -21
- package/src/booking-wizard/components/step-indicator.tsx +42 -42
- package/src/booking-wizard/components/step-route.tsx +27 -27
- package/src/booking-wizard/features/booking/api.ts +31 -45
- package/src/booking-wizard/features/booking/booking-slice.ts +407 -407
- package/src/booking-wizard/features/booking/booking.tsx +306 -306
- package/src/booking-wizard/features/booking/selectors.ts +348 -342
- package/src/booking-wizard/features/confirmation/confirmation.tsx +84 -84
- package/src/booking-wizard/features/error/error.tsx +73 -73
- package/src/booking-wizard/features/price-details/price-details-api.ts +22 -22
- package/src/booking-wizard/features/price-details/price-details-slice.ts +151 -149
- package/src/booking-wizard/features/price-details/util.ts +155 -150
- package/src/booking-wizard/features/product-options/no-options.tsx +21 -21
- package/src/booking-wizard/features/product-options/none-option.tsx +120 -120
- package/src/booking-wizard/features/product-options/option-booking-group.tsx +210 -210
- package/src/booking-wizard/features/product-options/option-item.tsx +321 -321
- package/src/booking-wizard/features/product-options/option-pax-card.tsx +120 -120
- package/src/booking-wizard/features/product-options/option-pax-group.tsx +169 -169
- package/src/booking-wizard/features/product-options/option-room.tsx +316 -316
- package/src/booking-wizard/features/product-options/option-unit-group.tsx +192 -192
- package/src/booking-wizard/features/product-options/option-units-card.tsx +103 -103
- package/src/booking-wizard/features/product-options/options-form.tsx +350 -350
- package/src/booking-wizard/features/product-options/validate-form.ts +9 -9
- package/src/booking-wizard/features/sidebar/index.tsx +76 -80
- package/src/booking-wizard/features/sidebar/sidebar-flight.tsx +69 -69
- package/src/booking-wizard/features/sidebar/sidebar-util.ts +175 -175
- package/src/booking-wizard/features/sidebar/sidebar.tsx +346 -345
- package/src/booking-wizard/features/summary/summary-booking-option-pax.tsx +25 -25
- package/src/booking-wizard/features/summary/summary-booking-option-unit.tsx +25 -25
- package/src/booking-wizard/features/summary/summary-flight.tsx +39 -39
- package/src/booking-wizard/features/summary/summary-per-booking-option-group.tsx +57 -57
- package/src/booking-wizard/features/summary/summary-per-pax-option-group.tsx +51 -51
- package/src/booking-wizard/features/summary/summary-per-unit-option-group.tsx +54 -54
- package/src/booking-wizard/features/summary/summary-slice.ts +28 -28
- package/src/booking-wizard/features/summary/summary.tsx +613 -603
- package/src/booking-wizard/features/travelers-form/travelers-form-slice.ts +164 -139
- package/src/booking-wizard/features/travelers-form/travelers-form.tsx +767 -731
- package/src/booking-wizard/features/travelers-form/type-ahead-input.tsx +101 -101
- package/src/booking-wizard/features/travelers-form/validate-form.ts +252 -175
- package/src/booking-wizard/index.tsx +36 -36
- package/src/booking-wizard/settings-context.ts +54 -54
- package/src/booking-wizard/store.ts +29 -29
- package/src/booking-wizard/translations/fr-BE.json +157 -155
- package/src/booking-wizard/translations/nl-BE.json +6 -4
- package/src/booking-wizard/types.ts +138 -134
- package/src/booking-wizard/utils/class-util.ts +9 -9
- package/src/booking-wizard/utils/localization-util.ts +20 -20
- package/src/booking-wizard/utils/query-string-util.ts +94 -94
- package/src/booking-wizard/utils/tide-api-utils.ts +33 -20
- package/src/index.ts +3 -3
- package/tsconfig.json +24 -24
- package/build/build-cjs/types/aapi/accommodation-occupancy.d.ts +0 -9
- package/build/build-cjs/types/aapi/accommodation-with-available-places.d.ts +0 -14
- package/build/build-cjs/types/aapi/accommodation.d.ts +0 -7
- package/build/build-cjs/types/aapi/additional-services.d.ts +0 -6
- package/build/build-cjs/types/aapi/alternative-flight-data.d.ts +0 -10
- package/build/build-cjs/types/aapi/alternative-flight-leg.d.ts +0 -18
- package/build/build-cjs/types/aapi/alternative-flight.d.ts +0 -12
- package/build/build-cjs/types/aapi/availability-request.d.ts +0 -12
- package/build/build-cjs/types/aapi/availability.d.ts +0 -5
- package/build/build-cjs/types/aapi/available-products-request.d.ts +0 -32
- package/build/build-cjs/types/aapi/duration.d.ts +0 -4
- package/build/build-cjs/types/aapi/flight-leg.d.ts +0 -18
- package/build/build-cjs/types/aapi/flight.d.ts +0 -23
- package/build/build-cjs/types/aapi/hotel.d.ts +0 -35
- package/build/build-cjs/types/aapi/index.d.ts +0 -22
- package/build/build-cjs/types/aapi/mollie-payment-request.d.ts +0 -6
- package/build/build-cjs/types/aapi/mollie-payment.d.ts +0 -3
- package/build/build-cjs/types/aapi/option-pax.d.ts +0 -4
- package/build/build-cjs/types/aapi/option.d.ts +0 -21
- package/build/build-cjs/types/aapi/pax.d.ts +0 -4
- package/build/build-cjs/types/aapi/price-detail.d.ts +0 -8
- package/build/build-cjs/types/aapi/regime.d.ts +0 -5
- package/build/build-cjs/types/aapi/traveler-grouping.d.ts +0 -5
- package/build/build-cjs/types/company/agent-print-action-request.d.ts +0 -11
- package/build/build-cjs/types/company/agent-print-action.d.ts +0 -6
- package/build/build-cjs/types/company/index.d.ts +0 -2
- package/build/build-cjs/types/enums/allotment-type.d.ts +0 -5
- package/build/build-cjs/types/enums/availability-search-type.d.ts +0 -4
- package/build/build-cjs/types/enums/dossier-type.d.ts +0 -6
- package/build/build-cjs/types/enums/entry-line-flag.d.ts +0 -6
- package/build/build-cjs/types/enums/entry-line-status.d.ts +0 -19
- package/build/build-cjs/types/enums/entry-status.d.ts +0 -8
- package/build/build-cjs/types/enums/export-status.d.ts +0 -5
- package/build/build-cjs/types/enums/gender.d.ts +0 -5
- package/build/build-cjs/types/enums/index.d.ts +0 -16
- package/build/build-cjs/types/enums/meta-data-type.d.ts +0 -10
- package/build/build-cjs/types/enums/payment-type.d.ts +0 -6
- package/build/build-cjs/types/enums/price-chart-type.d.ts +0 -4
- package/build/build-cjs/types/enums/print-action-group.d.ts +0 -10
- package/build/build-cjs/types/enums/requirement-type.d.ts +0 -5
- package/build/build-cjs/types/enums/room-type.d.ts +0 -8
- package/build/build-cjs/types/enums/sale-type.d.ts +0 -4
- package/build/build-cjs/types/enums/service-type.d.ts +0 -28
- package/build/build-cjs/types/index.d.ts +0 -5
- package/build/build-cjs/types/offer/additional-services.d.ts +0 -6
- package/build/build-cjs/types/offer/address.d.ts +0 -11
- package/build/build-cjs/types/offer/affiliate.d.ts +0 -5
- package/build/build-cjs/types/offer/alternative-flight-data.d.ts +0 -10
- package/build/build-cjs/types/offer/alternative-flight-leg.d.ts +0 -18
- package/build/build-cjs/types/offer/alternative-flight.d.ts +0 -14
- package/build/build-cjs/types/offer/available-package-accommodation.d.ts +0 -7
- package/build/build-cjs/types/offer/available-package-flight.d.ts +0 -9
- package/build/build-cjs/types/offer/available-package-option.d.ts +0 -12
- package/build/build-cjs/types/offer/available-package-pax-price.d.ts +0 -6
- package/build/build-cjs/types/offer/available-package-regime.d.ts +0 -4
- package/build/build-cjs/types/offer/available-package.d.ts +0 -7
- package/build/build-cjs/types/offer/base-price.d.ts +0 -6
- package/build/build-cjs/types/offer/base-prices-from-date-request.d.ts +0 -12
- package/build/build-cjs/types/offer/base-prices-request.d.ts +0 -12
- package/build/build-cjs/types/offer/book-request.d.ts +0 -36
- package/build/build-cjs/types/offer/booking-response.d.ts +0 -4
- package/build/build-cjs/types/offer/booking-v2/index.d.ts +0 -3
- package/build/build-cjs/types/offer/booking-v2/request/bookable-dates-request.d.ts +0 -4
- package/build/build-cjs/types/offer/booking-v2/request/booking-package-address.d.ts +0 -14
- package/build/build-cjs/types/offer/booking-v2/request/booking-package-book-request.d.ts +0 -20
- package/build/build-cjs/types/offer/booking-v2/request/booking-package-destination.d.ts +0 -9
- package/build/build-cjs/types/offer/booking-v2/request/booking-package-details-request.d.ts +0 -21
- package/build/build-cjs/types/offer/booking-v2/request/booking-package-flight-pool-request.d.ts +0 -12
- package/build/build-cjs/types/offer/booking-v2/request/booking-package-request.d.ts +0 -5
- package/build/build-cjs/types/offer/booking-v2/request/booking-package-search-request.d.ts +0 -26
- package/build/build-cjs/types/offer/booking-v2/request/booking-package-update-request.d.ts +0 -4
- package/build/build-cjs/types/offer/booking-v2/request/booking-package-voucher-request.d.ts +0 -4
- package/build/build-cjs/types/offer/booking-v2/request/index.d.ts +0 -13
- package/build/build-cjs/types/offer/booking-v2/request/selected-flight.d.ts +0 -6
- package/build/build-cjs/types/offer/booking-v2/request/selected-hotel.d.ts +0 -5
- package/build/build-cjs/types/offer/booking-v2/request/tour-codes.request.d.ts +0 -3
- package/build/build-cjs/types/offer/booking-v2/response/bookable-dates.d.ts +0 -4
- package/build/build-cjs/types/offer/booking-v2/response/booking-package-allotment-info.d.ts +0 -17
- package/build/build-cjs/types/offer/booking-v2/response/booking-package-dossier.d.ts +0 -6
- package/build/build-cjs/types/offer/booking-v2/response/booking-package-flight-pool.d.ts +0 -5
- package/build/build-cjs/types/offer/booking-v2/response/booking-package-hotel-pool.d.ts +0 -4
- package/build/build-cjs/types/offer/booking-v2/response/booking-package-item.d.ts +0 -39
- package/build/build-cjs/types/offer/booking-v2/response/booking-price-detail.d.ts +0 -16
- package/build/build-cjs/types/offer/booking-v2/response/booking-price-details.d.ts +0 -9
- package/build/build-cjs/types/offer/booking-v2/response/booking-price-per-pax.d.ts +0 -4
- package/build/build-cjs/types/offer/booking-v2/response/booking-product-notification.d.ts +0 -7
- package/build/build-cjs/types/offer/booking-v2/response/booking-travel-agent.d.ts +0 -7
- package/build/build-cjs/types/offer/booking-v2/response/booking-voucher-result.d.ts +0 -3
- package/build/build-cjs/types/offer/booking-v2/response/changed-line.d.ts +0 -4
- package/build/build-cjs/types/offer/booking-v2/response/index.d.ts +0 -15
- package/build/build-cjs/types/offer/booking-v2/response/tide-response.d.ts +0 -8
- package/build/build-cjs/types/offer/booking-v2/response/tour-codes-response.d.ts +0 -3
- package/build/build-cjs/types/offer/booking-v2/shared/booking-option-group.d.ts +0 -5
- package/build/build-cjs/types/offer/booking-v2/shared/booking-option-pax.d.ts +0 -7
- package/build/build-cjs/types/offer/booking-v2/shared/booking-option-unit.d.ts +0 -6
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package-availability.d.ts +0 -7
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package-flight-meta-data-line.d.ts +0 -17
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package-flight-meta-data.d.ts +0 -10
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package-flight.d.ts +0 -14
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package-hotel-option.d.ts +0 -10
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package-hotel-room.d.ts +0 -5
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package-hotel.d.ts +0 -20
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package-line.d.ts +0 -12
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package-option.d.ts +0 -40
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package-pax.d.ts +0 -17
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package-request-room.d.ts +0 -5
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package-room-option.d.ts +0 -17
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package-room.d.ts +0 -5
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package-tag.d.ts +0 -5
- package/build/build-cjs/types/offer/booking-v2/shared/booking-package.d.ts +0 -11
- package/build/build-cjs/types/offer/booking-v2/shared/index.d.ts +0 -19
- package/build/build-cjs/types/offer/booking-v2/shared/per-booking-package-option.d.ts +0 -9
- package/build/build-cjs/types/offer/booking-v2/shared/per-package-option.d.ts +0 -9
- package/build/build-cjs/types/offer/booking-v2/shared/per-pax-package-option.d.ts +0 -5
- package/build/build-cjs/types/offer/booking-v2/shared/per-unit-package-option.d.ts +0 -7
- package/build/build-cjs/types/offer/cached-package-search-result.d.ts +0 -5
- package/build/build-cjs/types/offer/confirmed-dossier-check.d.ts +0 -6
- package/build/build-cjs/types/offer/country-item.d.ts +0 -4
- package/build/build-cjs/types/offer/crm-contact-request.d.ts +0 -28
- package/build/build-cjs/types/offer/customer-request.d.ts +0 -5
- package/build/build-cjs/types/offer/dossier-default-product.d.ts +0 -14
- package/build/build-cjs/types/offer/entry-check-response.d.ts +0 -8
- package/build/build-cjs/types/offer/entry-line-meta-data.d.ts +0 -5
- package/build/build-cjs/types/offer/entry-line-pax.d.ts +0 -8
- package/build/build-cjs/types/offer/entry-line.d.ts +0 -67
- package/build/build-cjs/types/offer/entry-price-line.d.ts +0 -40
- package/build/build-cjs/types/offer/entry-room2.d.ts +0 -5
- package/build/build-cjs/types/offer/entry.d.ts +0 -49
- package/build/build-cjs/types/offer/flight-meta-data-line.d.ts +0 -16
- package/build/build-cjs/types/offer/flight-meta-data.d.ts +0 -14
- package/build/build-cjs/types/offer/flight-pool.d.ts +0 -5
- package/build/build-cjs/types/offer/index.d.ts +0 -72
- package/build/build-cjs/types/offer/language.d.ts +0 -5
- package/build/build-cjs/types/offer/member-confirmation-request.d.ts +0 -5
- package/build/build-cjs/types/offer/member-forgot-password-request.d.ts +0 -4
- package/build/build-cjs/types/offer/member-info.d.ts +0 -10
- package/build/build-cjs/types/offer/member-login-request.d.ts +0 -4
- package/build/build-cjs/types/offer/member-reset-password-request.d.ts +0 -4
- package/build/build-cjs/types/offer/multiroom-book-request.d.ts +0 -10
- package/build/build-cjs/types/offer/note.d.ts +0 -16
- package/build/build-cjs/types/offer/other-product.d.ts +0 -13
- package/build/build-cjs/types/offer/package-book-request-room.d.ts +0 -5
- package/build/build-cjs/types/offer/package-book-request.d.ts +0 -12
- package/build/build-cjs/types/offer/package-flight.d.ts +0 -13
- package/build/build-cjs/types/offer/package-flights.d.ts +0 -5
- package/build/build-cjs/types/offer/package-option.d.ts +0 -22
- package/build/build-cjs/types/offer/package-price-details-request-room.d.ts +0 -4
- package/build/build-cjs/types/offer/package-price-details-request.d.ts +0 -8
- package/build/build-cjs/types/offer/package-room-option.d.ts +0 -10
- package/build/build-cjs/types/offer/package-room.d.ts +0 -7
- package/build/build-cjs/types/offer/package-search-destination.d.ts +0 -9
- package/build/build-cjs/types/offer/package-search-request-date.d.ts +0 -4
- package/build/build-cjs/types/offer/package-search-request-room.d.ts +0 -5
- package/build/build-cjs/types/offer/package-search-request.d.ts +0 -18
- package/build/build-cjs/types/offer/package-search-result.d.ts +0 -12
- package/build/build-cjs/types/offer/package-sub-option.d.ts +0 -6
- package/build/build-cjs/types/offer/page-result.d.ts +0 -5
- package/build/build-cjs/types/offer/pax.d.ts +0 -29
- package/build/build-cjs/types/offer/payment.d.ts +0 -20
- package/build/build-cjs/types/offer/person-country-preference.d.ts +0 -7
- package/build/build-cjs/types/offer/person-location-preference.d.ts +0 -7
- package/build/build-cjs/types/offer/person-oord-preference.d.ts +0 -7
- package/build/build-cjs/types/offer/person-period-date-range-preference.d.ts +0 -6
- package/build/build-cjs/types/offer/person-period-preference.d.ts +0 -7
- package/build/build-cjs/types/offer/person-region-preference.d.ts +0 -7
- package/build/build-cjs/types/offer/person-tour-group-preference.d.ts +0 -7
- package/build/build-cjs/types/offer/price-detail.d.ts +0 -18
- package/build/build-cjs/types/offer/price-per-pax.d.ts +0 -6
- package/build/build-cjs/types/offer/product-notification-result.d.ts +0 -9
- package/build/build-cjs/types/offer/web-contact-form-request.d.ts +0 -13
- package/build/build-cjs/types/offer/web-contact-has-tag-request.d.ts +0 -4
- package/build/build-cjs/types/tide-client-config.d.ts +0 -4
- package/build/build-cjs/utils/api.d.ts +0 -2
- package/build/build-cjs/utils/booking-client.d.ts +0 -114
- package/build/build-cjs/utils/booking-v2-client.d.ts +0 -16
- package/build/build-cjs/utils/common-client.d.ts +0 -2
- package/build/build-cjs/utils/json.d.ts +0 -2
- package/build/build-cjs/utils/member-client.d.ts +0 -6
- package/build/build-cjs/utils/mollie-client.d.ts +0 -7
- package/build/build-cjs/utils/search-client.d.ts +0 -9
- package/build/build-cjs/utils/web-agent-client.d.ts +0 -17
- package/build/build-cjs/utils/web-client.d.ts +0 -19
- package/build/build-cjs/utils/web-contact-client.d.ts +0 -11
- package/build/build-cjs/utils/web-file.d.ts +0 -10
- package/build/build-esm/types/aapi/accommodation-occupancy.d.ts +0 -9
- package/build/build-esm/types/aapi/accommodation-with-available-places.d.ts +0 -14
- package/build/build-esm/types/aapi/accommodation.d.ts +0 -7
- package/build/build-esm/types/aapi/additional-services.d.ts +0 -6
- package/build/build-esm/types/aapi/alternative-flight-data.d.ts +0 -10
- package/build/build-esm/types/aapi/alternative-flight-leg.d.ts +0 -18
- package/build/build-esm/types/aapi/alternative-flight.d.ts +0 -12
- package/build/build-esm/types/aapi/availability-request.d.ts +0 -12
- package/build/build-esm/types/aapi/availability.d.ts +0 -5
- package/build/build-esm/types/aapi/available-products-request.d.ts +0 -32
- package/build/build-esm/types/aapi/duration.d.ts +0 -4
- package/build/build-esm/types/aapi/flight-leg.d.ts +0 -18
- package/build/build-esm/types/aapi/flight.d.ts +0 -23
- package/build/build-esm/types/aapi/hotel.d.ts +0 -35
- package/build/build-esm/types/aapi/index.d.ts +0 -22
- package/build/build-esm/types/aapi/mollie-payment-request.d.ts +0 -6
- package/build/build-esm/types/aapi/mollie-payment.d.ts +0 -3
- package/build/build-esm/types/aapi/option-pax.d.ts +0 -4
- package/build/build-esm/types/aapi/option.d.ts +0 -21
- package/build/build-esm/types/aapi/pax.d.ts +0 -4
- package/build/build-esm/types/aapi/price-detail.d.ts +0 -8
- package/build/build-esm/types/aapi/regime.d.ts +0 -5
- package/build/build-esm/types/aapi/traveler-grouping.d.ts +0 -5
- package/build/build-esm/types/company/agent-print-action-request.d.ts +0 -11
- package/build/build-esm/types/company/agent-print-action.d.ts +0 -6
- package/build/build-esm/types/company/index.d.ts +0 -2
- package/build/build-esm/types/enums/allotment-type.d.ts +0 -5
- package/build/build-esm/types/enums/availability-search-type.d.ts +0 -4
- package/build/build-esm/types/enums/dossier-type.d.ts +0 -6
- package/build/build-esm/types/enums/entry-line-flag.d.ts +0 -6
- package/build/build-esm/types/enums/entry-line-status.d.ts +0 -19
- package/build/build-esm/types/enums/entry-status.d.ts +0 -8
- package/build/build-esm/types/enums/export-status.d.ts +0 -5
- package/build/build-esm/types/enums/gender.d.ts +0 -5
- package/build/build-esm/types/enums/index.d.ts +0 -16
- package/build/build-esm/types/enums/meta-data-type.d.ts +0 -10
- package/build/build-esm/types/enums/payment-type.d.ts +0 -6
- package/build/build-esm/types/enums/price-chart-type.d.ts +0 -4
- package/build/build-esm/types/enums/print-action-group.d.ts +0 -10
- package/build/build-esm/types/enums/requirement-type.d.ts +0 -5
- package/build/build-esm/types/enums/room-type.d.ts +0 -8
- package/build/build-esm/types/enums/sale-type.d.ts +0 -4
- package/build/build-esm/types/enums/service-type.d.ts +0 -28
- package/build/build-esm/types/index.d.ts +0 -5
- package/build/build-esm/types/offer/additional-services.d.ts +0 -6
- package/build/build-esm/types/offer/address.d.ts +0 -11
- package/build/build-esm/types/offer/affiliate.d.ts +0 -5
- package/build/build-esm/types/offer/alternative-flight-data.d.ts +0 -10
- package/build/build-esm/types/offer/alternative-flight-leg.d.ts +0 -18
- package/build/build-esm/types/offer/alternative-flight.d.ts +0 -14
- package/build/build-esm/types/offer/available-package-accommodation.d.ts +0 -7
- package/build/build-esm/types/offer/available-package-flight.d.ts +0 -9
- package/build/build-esm/types/offer/available-package-option.d.ts +0 -12
- package/build/build-esm/types/offer/available-package-pax-price.d.ts +0 -6
- package/build/build-esm/types/offer/available-package-regime.d.ts +0 -4
- package/build/build-esm/types/offer/available-package.d.ts +0 -7
- package/build/build-esm/types/offer/base-price.d.ts +0 -6
- package/build/build-esm/types/offer/base-prices-from-date-request.d.ts +0 -12
- package/build/build-esm/types/offer/base-prices-request.d.ts +0 -12
- package/build/build-esm/types/offer/book-request.d.ts +0 -36
- package/build/build-esm/types/offer/booking-response.d.ts +0 -4
- package/build/build-esm/types/offer/booking-v2/index.d.ts +0 -3
- package/build/build-esm/types/offer/booking-v2/request/bookable-dates-request.d.ts +0 -4
- package/build/build-esm/types/offer/booking-v2/request/booking-package-address.d.ts +0 -14
- package/build/build-esm/types/offer/booking-v2/request/booking-package-book-request.d.ts +0 -20
- package/build/build-esm/types/offer/booking-v2/request/booking-package-destination.d.ts +0 -9
- package/build/build-esm/types/offer/booking-v2/request/booking-package-details-request.d.ts +0 -21
- package/build/build-esm/types/offer/booking-v2/request/booking-package-flight-pool-request.d.ts +0 -12
- package/build/build-esm/types/offer/booking-v2/request/booking-package-request.d.ts +0 -5
- package/build/build-esm/types/offer/booking-v2/request/booking-package-search-request.d.ts +0 -26
- package/build/build-esm/types/offer/booking-v2/request/booking-package-update-request.d.ts +0 -4
- package/build/build-esm/types/offer/booking-v2/request/booking-package-voucher-request.d.ts +0 -4
- package/build/build-esm/types/offer/booking-v2/request/index.d.ts +0 -13
- package/build/build-esm/types/offer/booking-v2/request/selected-flight.d.ts +0 -6
- package/build/build-esm/types/offer/booking-v2/request/selected-hotel.d.ts +0 -5
- package/build/build-esm/types/offer/booking-v2/request/tour-codes.request.d.ts +0 -3
- package/build/build-esm/types/offer/booking-v2/response/bookable-dates.d.ts +0 -4
- package/build/build-esm/types/offer/booking-v2/response/booking-package-allotment-info.d.ts +0 -17
- package/build/build-esm/types/offer/booking-v2/response/booking-package-dossier.d.ts +0 -6
- package/build/build-esm/types/offer/booking-v2/response/booking-package-flight-pool.d.ts +0 -5
- package/build/build-esm/types/offer/booking-v2/response/booking-package-hotel-pool.d.ts +0 -4
- package/build/build-esm/types/offer/booking-v2/response/booking-package-item.d.ts +0 -39
- package/build/build-esm/types/offer/booking-v2/response/booking-price-detail.d.ts +0 -16
- package/build/build-esm/types/offer/booking-v2/response/booking-price-details.d.ts +0 -9
- package/build/build-esm/types/offer/booking-v2/response/booking-price-per-pax.d.ts +0 -4
- package/build/build-esm/types/offer/booking-v2/response/booking-product-notification.d.ts +0 -7
- package/build/build-esm/types/offer/booking-v2/response/booking-travel-agent.d.ts +0 -7
- package/build/build-esm/types/offer/booking-v2/response/booking-voucher-result.d.ts +0 -3
- package/build/build-esm/types/offer/booking-v2/response/changed-line.d.ts +0 -4
- package/build/build-esm/types/offer/booking-v2/response/index.d.ts +0 -15
- package/build/build-esm/types/offer/booking-v2/response/tide-response.d.ts +0 -8
- package/build/build-esm/types/offer/booking-v2/response/tour-codes-response.d.ts +0 -3
- package/build/build-esm/types/offer/booking-v2/shared/booking-option-group.d.ts +0 -5
- package/build/build-esm/types/offer/booking-v2/shared/booking-option-pax.d.ts +0 -7
- package/build/build-esm/types/offer/booking-v2/shared/booking-option-unit.d.ts +0 -6
- package/build/build-esm/types/offer/booking-v2/shared/booking-package-availability.d.ts +0 -7
- package/build/build-esm/types/offer/booking-v2/shared/booking-package-flight-meta-data-line.d.ts +0 -17
- package/build/build-esm/types/offer/booking-v2/shared/booking-package-flight-meta-data.d.ts +0 -10
- package/build/build-esm/types/offer/booking-v2/shared/booking-package-flight.d.ts +0 -14
- package/build/build-esm/types/offer/booking-v2/shared/booking-package-hotel-option.d.ts +0 -10
- package/build/build-esm/types/offer/booking-v2/shared/booking-package-hotel-room.d.ts +0 -5
- package/build/build-esm/types/offer/booking-v2/shared/booking-package-hotel.d.ts +0 -20
- package/build/build-esm/types/offer/booking-v2/shared/booking-package-line.d.ts +0 -12
- package/build/build-esm/types/offer/booking-v2/shared/booking-package-option.d.ts +0 -40
- package/build/build-esm/types/offer/booking-v2/shared/booking-package-pax.d.ts +0 -17
- package/build/build-esm/types/offer/booking-v2/shared/booking-package-request-room.d.ts +0 -5
- package/build/build-esm/types/offer/booking-v2/shared/booking-package-room-option.d.ts +0 -17
- package/build/build-esm/types/offer/booking-v2/shared/booking-package-room.d.ts +0 -5
- package/build/build-esm/types/offer/booking-v2/shared/booking-package-tag.d.ts +0 -5
- package/build/build-esm/types/offer/booking-v2/shared/booking-package.d.ts +0 -11
- package/build/build-esm/types/offer/booking-v2/shared/index.d.ts +0 -19
- package/build/build-esm/types/offer/booking-v2/shared/per-booking-package-option.d.ts +0 -9
- package/build/build-esm/types/offer/booking-v2/shared/per-package-option.d.ts +0 -9
- package/build/build-esm/types/offer/booking-v2/shared/per-pax-package-option.d.ts +0 -5
- package/build/build-esm/types/offer/booking-v2/shared/per-unit-package-option.d.ts +0 -7
- package/build/build-esm/types/offer/cached-package-search-result.d.ts +0 -5
- package/build/build-esm/types/offer/confirmed-dossier-check.d.ts +0 -6
- package/build/build-esm/types/offer/country-item.d.ts +0 -4
- package/build/build-esm/types/offer/crm-contact-request.d.ts +0 -28
- package/build/build-esm/types/offer/customer-request.d.ts +0 -5
- package/build/build-esm/types/offer/dossier-default-product.d.ts +0 -14
- package/build/build-esm/types/offer/entry-check-response.d.ts +0 -8
- package/build/build-esm/types/offer/entry-line-meta-data.d.ts +0 -5
- package/build/build-esm/types/offer/entry-line-pax.d.ts +0 -8
- package/build/build-esm/types/offer/entry-line.d.ts +0 -67
- package/build/build-esm/types/offer/entry-price-line.d.ts +0 -40
- package/build/build-esm/types/offer/entry-room2.d.ts +0 -5
- package/build/build-esm/types/offer/entry.d.ts +0 -49
- package/build/build-esm/types/offer/flight-meta-data-line.d.ts +0 -16
- package/build/build-esm/types/offer/flight-meta-data.d.ts +0 -14
- package/build/build-esm/types/offer/flight-pool.d.ts +0 -5
- package/build/build-esm/types/offer/index.d.ts +0 -72
- package/build/build-esm/types/offer/language.d.ts +0 -5
- package/build/build-esm/types/offer/member-confirmation-request.d.ts +0 -5
- package/build/build-esm/types/offer/member-forgot-password-request.d.ts +0 -4
- package/build/build-esm/types/offer/member-info.d.ts +0 -10
- package/build/build-esm/types/offer/member-login-request.d.ts +0 -4
- package/build/build-esm/types/offer/member-reset-password-request.d.ts +0 -4
- package/build/build-esm/types/offer/multiroom-book-request.d.ts +0 -10
- package/build/build-esm/types/offer/note.d.ts +0 -16
- package/build/build-esm/types/offer/other-product.d.ts +0 -13
- package/build/build-esm/types/offer/package-book-request-room.d.ts +0 -5
- package/build/build-esm/types/offer/package-book-request.d.ts +0 -12
- package/build/build-esm/types/offer/package-flight.d.ts +0 -13
- package/build/build-esm/types/offer/package-flights.d.ts +0 -5
- package/build/build-esm/types/offer/package-option.d.ts +0 -22
- package/build/build-esm/types/offer/package-price-details-request-room.d.ts +0 -4
- package/build/build-esm/types/offer/package-price-details-request.d.ts +0 -8
- package/build/build-esm/types/offer/package-room-option.d.ts +0 -10
- package/build/build-esm/types/offer/package-room.d.ts +0 -7
- package/build/build-esm/types/offer/package-search-destination.d.ts +0 -9
- package/build/build-esm/types/offer/package-search-request-date.d.ts +0 -4
- package/build/build-esm/types/offer/package-search-request-room.d.ts +0 -5
- package/build/build-esm/types/offer/package-search-request.d.ts +0 -18
- package/build/build-esm/types/offer/package-search-result.d.ts +0 -12
- package/build/build-esm/types/offer/package-sub-option.d.ts +0 -6
- package/build/build-esm/types/offer/page-result.d.ts +0 -5
- package/build/build-esm/types/offer/pax.d.ts +0 -29
- package/build/build-esm/types/offer/payment.d.ts +0 -20
- package/build/build-esm/types/offer/person-country-preference.d.ts +0 -7
- package/build/build-esm/types/offer/person-location-preference.d.ts +0 -7
- package/build/build-esm/types/offer/person-oord-preference.d.ts +0 -7
- package/build/build-esm/types/offer/person-period-date-range-preference.d.ts +0 -6
- package/build/build-esm/types/offer/person-period-preference.d.ts +0 -7
- package/build/build-esm/types/offer/person-region-preference.d.ts +0 -7
- package/build/build-esm/types/offer/person-tour-group-preference.d.ts +0 -7
- package/build/build-esm/types/offer/price-detail.d.ts +0 -18
- package/build/build-esm/types/offer/price-per-pax.d.ts +0 -6
- package/build/build-esm/types/offer/product-notification-result.d.ts +0 -9
- package/build/build-esm/types/offer/web-contact-form-request.d.ts +0 -13
- package/build/build-esm/types/offer/web-contact-has-tag-request.d.ts +0 -4
- package/build/build-esm/types/tide-client-config.d.ts +0 -4
- package/build/build-esm/utils/api.d.ts +0 -2
- package/build/build-esm/utils/booking-client.d.ts +0 -114
- package/build/build-esm/utils/booking-v2-client.d.ts +0 -16
- package/build/build-esm/utils/common-client.d.ts +0 -2
- package/build/build-esm/utils/json.d.ts +0 -2
- package/build/build-esm/utils/member-client.d.ts +0 -6
- package/build/build-esm/utils/mollie-client.d.ts +0 -7
- package/build/build-esm/utils/search-client.d.ts +0 -9
- package/build/build-esm/utils/web-agent-client.d.ts +0 -17
- package/build/build-esm/utils/web-client.d.ts +0 -19
- package/build/build-esm/utils/web-contact-client.d.ts +0 -11
- package/build/build-esm/utils/web-file.d.ts +0 -10
- package/src/types/aapi/accommodation-occupancy.ts +0 -9
- package/src/types/aapi/accommodation-with-available-places.ts +0 -15
- package/src/types/aapi/accommodation.ts +0 -8
- package/src/types/aapi/additional-services.ts +0 -6
- package/src/types/aapi/alternative-flight-data.ts +0 -11
- package/src/types/aapi/alternative-flight-leg.ts +0 -18
- package/src/types/aapi/alternative-flight.ts +0 -13
- package/src/types/aapi/availability-request.ts +0 -12
- package/src/types/aapi/availability.ts +0 -6
- package/src/types/aapi/available-products-request.ts +0 -33
- package/src/types/aapi/duration.ts +0 -4
- package/src/types/aapi/flight-leg.ts +0 -18
- package/src/types/aapi/flight.ts +0 -24
- package/src/types/aapi/hotel.ts +0 -36
- package/src/types/aapi/index.ts +0 -22
- package/src/types/aapi/mollie-payment-request.ts +0 -6
- package/src/types/aapi/mollie-payment.ts +0 -3
- package/src/types/aapi/option-pax.ts +0 -4
- package/src/types/aapi/option.ts +0 -29
- package/src/types/aapi/pax.ts +0 -4
- package/src/types/aapi/price-detail.ts +0 -8
- package/src/types/aapi/regime.ts +0 -5
- package/src/types/aapi/traveler-grouping.ts +0 -5
- package/src/types/company/agent-print-action-request.ts +0 -11
- package/src/types/company/agent-print-action.ts +0 -7
- package/src/types/company/index.ts +0 -2
- package/src/types/enums/allotment-type.ts +0 -5
- package/src/types/enums/availability-search-type.ts +0 -4
- package/src/types/enums/dossier-type.ts +0 -6
- package/src/types/enums/entry-line-flag.ts +0 -6
- package/src/types/enums/entry-line-status.ts +0 -19
- package/src/types/enums/entry-status.ts +0 -8
- package/src/types/enums/export-status.ts +0 -5
- package/src/types/enums/gender.ts +0 -5
- package/src/types/enums/index.ts +0 -16
- package/src/types/enums/meta-data-type.ts +0 -10
- package/src/types/enums/payment-type.ts +0 -6
- package/src/types/enums/price-chart-type.ts +0 -4
- package/src/types/enums/print-action-group.ts +0 -10
- package/src/types/enums/requirement-type.ts +0 -5
- package/src/types/enums/room-type.ts +0 -8
- package/src/types/enums/sale-type.ts +0 -4
- package/src/types/enums/service-type.ts +0 -28
- package/src/types/index.ts +0 -27
- package/src/types/offer/additional-services.ts +0 -6
- package/src/types/offer/address.ts +0 -11
- package/src/types/offer/affiliate.ts +0 -5
- package/src/types/offer/alternative-flight-data.ts +0 -11
- package/src/types/offer/alternative-flight-leg.ts +0 -18
- package/src/types/offer/alternative-flight.ts +0 -15
- package/src/types/offer/available-package-accommodation.ts +0 -8
- package/src/types/offer/available-package-flight.ts +0 -10
- package/src/types/offer/available-package-option.ts +0 -18
- package/src/types/offer/available-package-pax-price.ts +0 -6
- package/src/types/offer/available-package-regime.ts +0 -4
- package/src/types/offer/available-package.ts +0 -8
- package/src/types/offer/base-price.ts +0 -6
- package/src/types/offer/base-prices-from-date-request.ts +0 -12
- package/src/types/offer/base-prices-request.ts +0 -12
- package/src/types/offer/book-request.ts +0 -38
- package/src/types/offer/booking-response.ts +0 -4
- package/src/types/offer/booking-v2/index.ts +0 -3
- package/src/types/offer/booking-v2/request/bookable-dates-request.ts +0 -4
- package/src/types/offer/booking-v2/request/booking-package-address.ts +0 -14
- package/src/types/offer/booking-v2/request/booking-package-book-request.ts +0 -22
- package/src/types/offer/booking-v2/request/booking-package-destination.ts +0 -9
- package/src/types/offer/booking-v2/request/booking-package-details-request.ts +0 -24
- package/src/types/offer/booking-v2/request/booking-package-flight-pool-request.ts +0 -13
- package/src/types/offer/booking-v2/request/booking-package-request.ts +0 -5
- package/src/types/offer/booking-v2/request/booking-package-search-request.ts +0 -29
- package/src/types/offer/booking-v2/request/booking-package-update-request.ts +0 -5
- package/src/types/offer/booking-v2/request/booking-package-voucher-request.ts +0 -4
- package/src/types/offer/booking-v2/request/index.ts +0 -13
- package/src/types/offer/booking-v2/request/selected-flight.ts +0 -6
- package/src/types/offer/booking-v2/request/selected-hotel.ts +0 -5
- package/src/types/offer/booking-v2/request/tour-codes.request.ts +0 -3
- package/src/types/offer/booking-v2/response/bookable-dates.ts +0 -4
- package/src/types/offer/booking-v2/response/booking-package-allotment-info.ts +0 -17
- package/src/types/offer/booking-v2/response/booking-package-dossier.ts +0 -6
- package/src/types/offer/booking-v2/response/booking-package-flight-pool.ts +0 -6
- package/src/types/offer/booking-v2/response/booking-package-hotel-pool.ts +0 -5
- package/src/types/offer/booking-v2/response/booking-package-item.ts +0 -40
- package/src/types/offer/booking-v2/response/booking-price-detail.ts +0 -19
- package/src/types/offer/booking-v2/response/booking-price-details.ts +0 -10
- package/src/types/offer/booking-v2/response/booking-price-per-pax.ts +0 -4
- package/src/types/offer/booking-v2/response/booking-product-notification.ts +0 -7
- package/src/types/offer/booking-v2/response/booking-travel-agent.ts +0 -7
- package/src/types/offer/booking-v2/response/booking-voucher-result.ts +0 -3
- package/src/types/offer/booking-v2/response/changed-line.ts +0 -4
- package/src/types/offer/booking-v2/response/index.ts +0 -15
- package/src/types/offer/booking-v2/response/tide-response.ts +0 -6
- package/src/types/offer/booking-v2/response/tour-codes-response.ts +0 -3
- package/src/types/offer/booking-v2/shared/booking-option-group.ts +0 -5
- package/src/types/offer/booking-v2/shared/booking-option-pax.ts +0 -8
- package/src/types/offer/booking-v2/shared/booking-option-unit.ts +0 -7
- package/src/types/offer/booking-v2/shared/booking-package-availability.ts +0 -7
- package/src/types/offer/booking-v2/shared/booking-package-flight-meta-data-line.ts +0 -17
- package/src/types/offer/booking-v2/shared/booking-package-flight-meta-data.ts +0 -11
- package/src/types/offer/booking-v2/shared/booking-package-flight.ts +0 -15
- package/src/types/offer/booking-v2/shared/booking-package-hotel-option.ts +0 -10
- package/src/types/offer/booking-v2/shared/booking-package-hotel-room.ts +0 -6
- package/src/types/offer/booking-v2/shared/booking-package-hotel.ts +0 -25
- package/src/types/offer/booking-v2/shared/booking-package-line.ts +0 -12
- package/src/types/offer/booking-v2/shared/booking-package-option.ts +0 -48
- package/src/types/offer/booking-v2/shared/booking-package-pax.ts +0 -19
- package/src/types/offer/booking-v2/shared/booking-package-request-room.ts +0 -6
- package/src/types/offer/booking-v2/shared/booking-package-room-option.ts +0 -17
- package/src/types/offer/booking-v2/shared/booking-package-room.ts +0 -6
- package/src/types/offer/booking-v2/shared/booking-package-tag.ts +0 -5
- package/src/types/offer/booking-v2/shared/booking-package.ts +0 -13
- package/src/types/offer/booking-v2/shared/index.ts +0 -19
- package/src/types/offer/booking-v2/shared/per-booking-package-option.ts +0 -10
- package/src/types/offer/booking-v2/shared/per-package-option.ts +0 -10
- package/src/types/offer/booking-v2/shared/per-pax-package-option.ts +0 -6
- package/src/types/offer/booking-v2/shared/per-unit-package-option.ts +0 -8
- package/src/types/offer/cached-package-search-result.ts +0 -6
- package/src/types/offer/confirmed-dossier-check.ts +0 -6
- package/src/types/offer/country-item.ts +0 -4
- package/src/types/offer/crm-contact-request.ts +0 -37
- package/src/types/offer/customer-request.ts +0 -5
- package/src/types/offer/dossier-default-product.ts +0 -14
- package/src/types/offer/entry-check-response.ts +0 -5
- package/src/types/offer/entry-line-meta-data.ts +0 -5
- package/src/types/offer/entry-line-pax.ts +0 -9
- package/src/types/offer/entry-line.ts +0 -74
- package/src/types/offer/entry-price-line.ts +0 -40
- package/src/types/offer/entry-room2.ts +0 -5
- package/src/types/offer/entry.ts +0 -60
- package/src/types/offer/flight-meta-data-line.ts +0 -16
- package/src/types/offer/flight-meta-data.ts +0 -15
- package/src/types/offer/flight-pool.ts +0 -6
- package/src/types/offer/index.ts +0 -72
- package/src/types/offer/language.ts +0 -5
- package/src/types/offer/member-confirmation-request.ts +0 -5
- package/src/types/offer/member-forgot-password-request.ts +0 -4
- package/src/types/offer/member-info.ts +0 -10
- package/src/types/offer/member-login-request.ts +0 -4
- package/src/types/offer/member-reset-password-request.ts +0 -4
- package/src/types/offer/multiroom-book-request.ts +0 -11
- package/src/types/offer/note.ts +0 -16
- package/src/types/offer/other-product.ts +0 -14
- package/src/types/offer/package-book-request-room.ts +0 -6
- package/src/types/offer/package-book-request.ts +0 -13
- package/src/types/offer/package-flight.ts +0 -14
- package/src/types/offer/package-flights.ts +0 -6
- package/src/types/offer/package-option.ts +0 -23
- package/src/types/offer/package-price-details-request-room.ts +0 -4
- package/src/types/offer/package-price-details-request.ts +0 -9
- package/src/types/offer/package-room-option.ts +0 -10
- package/src/types/offer/package-room.ts +0 -8
- package/src/types/offer/package-search-destination.ts +0 -9
- package/src/types/offer/package-search-request-date.ts +0 -4
- package/src/types/offer/package-search-request-room.ts +0 -5
- package/src/types/offer/package-search-request.ts +0 -23
- package/src/types/offer/package-search-result.ts +0 -13
- package/src/types/offer/package-sub-option.ts +0 -6
- package/src/types/offer/page-result.ts +0 -5
- package/src/types/offer/pax.ts +0 -30
- package/src/types/offer/payment.ts +0 -20
- package/src/types/offer/person-country-preference.ts +0 -7
- package/src/types/offer/person-location-preference.ts +0 -7
- package/src/types/offer/person-oord-preference.ts +0 -7
- package/src/types/offer/person-period-date-range-preference.ts +0 -6
- package/src/types/offer/person-period-preference.ts +0 -7
- package/src/types/offer/person-region-preference.ts +0 -7
- package/src/types/offer/person-tour-group-preference.ts +0 -7
- package/src/types/offer/price-detail.ts +0 -19
- package/src/types/offer/price-per-pax.ts +0 -6
- package/src/types/offer/product-notification-result.ts +0 -9
- package/src/types/offer/web-contact-form-request.ts +0 -13
- package/src/types/offer/web-contact-has-tag-request.ts +0 -4
- package/src/types/tide-client-config.ts +0 -4
- package/src/utils/api.ts +0 -47
- package/src/utils/booking-client.ts +0 -310
- package/src/utils/booking-v2-client.ts +0 -210
- package/src/utils/common-client.ts +0 -34
- package/src/utils/json.ts +0 -26
- package/src/utils/member-client.ts +0 -76
- package/src/utils/mollie-client.ts +0 -27
- package/src/utils/search-client.ts +0 -22
- package/src/utils/web-agent-client.ts +0 -49
- package/src/utils/web-client.ts +0 -46
- package/src/utils/web-contact-client.ts +0 -43
- package/src/utils/web-file.ts +0 -24
package/.vs/ProjectSettings.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
{
|
|
2
|
-
"CurrentProjectSetting": null
|
|
3
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"CurrentProjectSetting": null
|
|
3
|
+
}
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
{
|
|
2
|
-
"ExpandedNodes": [
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
"PreviewInSolutionExplorer": false
|
|
7
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"ExpandedNodes": [""],
|
|
3
|
+
"SelectedNode": "\\D:\\2.0. Qite\\Tide-Booking-Component\\tide-booking-component",
|
|
4
|
+
"PreviewInSolutionExplorer": false
|
|
5
|
+
}
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# README
|
|
2
|
-
|
|
3
|
-
This is the unified Tide Booking Component.
|
|
4
|
-
|
|
5
|
-
## Remarks
|
|
6
|
-
|
|
7
|
-
Do not forget to sync React versions when you're doing local changes and when you try to test them in a local React project (check https://reactjs.org/warnings/invalid-hook-call-warning.html#duplicate-react).
|
|
8
|
-
If using the playground, after installing it's node modules execute the following command in the root folder `npm link ./playground/node_modules/react`
|
|
1
|
+
# README
|
|
2
|
+
|
|
3
|
+
This is the unified Tide Booking Component.
|
|
4
|
+
|
|
5
|
+
## Remarks
|
|
6
|
+
|
|
7
|
+
Do not forget to sync React versions when you're doing local changes and when you try to test them in a local React project (check https://reactjs.org/warnings/invalid-hook-call-warning.html#duplicate-react).
|
|
8
|
+
If using the playground, after installing it's node modules execute the following command in the root folder `npm link ./playground/node_modules/react`
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
interface IconProps {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
}
|
|
6
|
-
declare const Icon: React.FC<IconProps>;
|
|
7
|
-
export default Icon;
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface IconProps {
|
|
3
|
+
name: string;
|
|
4
|
+
className?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const Icon: React.FC<IconProps>;
|
|
7
|
+
export default Icon;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
interface LabeledInputProps {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
declare const LabeledInput: React.FC<LabeledInputProps>;
|
|
18
|
-
export default LabeledInput;
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface LabeledInputProps {
|
|
3
|
+
name: string;
|
|
4
|
+
type?: string;
|
|
5
|
+
required?: boolean;
|
|
6
|
+
value?: string | number;
|
|
7
|
+
defaultValue?: string | number;
|
|
8
|
+
min?: string | number;
|
|
9
|
+
max?: string | number;
|
|
10
|
+
label?: string;
|
|
11
|
+
placeholder?: string;
|
|
12
|
+
hasError?: boolean;
|
|
13
|
+
extraClassName?: string;
|
|
14
|
+
onChange?: React.ChangeEventHandler<HTMLInputElement>;
|
|
15
|
+
onBlur?: React.FocusEventHandler<HTMLInputElement>;
|
|
16
|
+
}
|
|
17
|
+
declare const LabeledInput: React.FC<LabeledInputProps>;
|
|
18
|
+
export default LabeledInput;
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
interface LabeledSelectProps {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
declare const LabeledSelect: React.FC<LabeledSelectProps>;
|
|
21
|
-
export default LabeledSelect;
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface LabeledSelectProps {
|
|
3
|
+
name: string;
|
|
4
|
+
id?: string;
|
|
5
|
+
required?: boolean;
|
|
6
|
+
value?: string | number;
|
|
7
|
+
defaultValue?: string | number;
|
|
8
|
+
label?: string;
|
|
9
|
+
hasError?: boolean;
|
|
10
|
+
extraClassName?: string;
|
|
11
|
+
extraDropdownClassName?: string;
|
|
12
|
+
options?: {
|
|
13
|
+
key: string;
|
|
14
|
+
value: string | number | undefined;
|
|
15
|
+
label: string;
|
|
16
|
+
}[];
|
|
17
|
+
onChange?: React.ChangeEventHandler<HTMLSelectElement>;
|
|
18
|
+
onBlur?: React.FocusEventHandler<HTMLSelectElement>;
|
|
19
|
+
}
|
|
20
|
+
declare const LabeledSelect: React.FC<LabeledSelectProps>;
|
|
21
|
+
export default LabeledSelect;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
interface MessageProps {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
8
|
-
declare const Message: React.FC<MessageProps>;
|
|
9
|
-
export default Message;
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface MessageProps {
|
|
3
|
+
type: "error" | "success";
|
|
4
|
+
title: string;
|
|
5
|
+
actionComponent?: JSX.Element;
|
|
6
|
+
children?: JSX.Element | JSX.Element[];
|
|
7
|
+
}
|
|
8
|
+
declare const Message: React.FC<MessageProps>;
|
|
9
|
+
export default Message;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
interface ProductCardProps {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
declare const ProductCard: React.FC<ProductCardProps>;
|
|
8
|
-
export default ProductCard;
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface ProductCardProps {
|
|
3
|
+
productName: string;
|
|
4
|
+
thumbnailUrl?: string;
|
|
5
|
+
handleToggleClick: () => void;
|
|
6
|
+
}
|
|
7
|
+
declare const ProductCard: React.FC<ProductCardProps>;
|
|
8
|
+
export default ProductCard;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
interface RatingProps {
|
|
3
|
-
|
|
4
|
-
}
|
|
5
|
-
declare const Rating: React.FC<RatingProps>;
|
|
6
|
-
export default Rating;
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface RatingProps {
|
|
3
|
+
rating: number;
|
|
4
|
+
}
|
|
5
|
+
declare const Rating: React.FC<RatingProps>;
|
|
6
|
+
export default Rating;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
interface StepIndicatorsProps {
|
|
3
|
-
|
|
4
|
-
}
|
|
5
|
-
declare const StepIndicators: React.FC<StepIndicatorsProps>;
|
|
6
|
-
export default StepIndicators;
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface StepIndicatorsProps {
|
|
3
|
+
currentStep: number;
|
|
4
|
+
}
|
|
5
|
+
declare const StepIndicators: React.FC<StepIndicatorsProps>;
|
|
6
|
+
export default StepIndicators;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
interface StepRoute {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
8
|
-
declare const StepRoute: React.FC<StepRoute>;
|
|
9
|
-
export default StepRoute;
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface StepRoute {
|
|
3
|
+
path: string;
|
|
4
|
+
number: number;
|
|
5
|
+
title: string;
|
|
6
|
+
component: JSX.Element;
|
|
7
|
+
}
|
|
8
|
+
declare const StepRoute: React.FC<StepRoute>;
|
|
9
|
+
export default StepRoute;
|
|
@@ -1,7 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import {
|
|
2
|
+
BookingPackageRequest,
|
|
3
|
+
BookingPackageDetailsRequest,
|
|
4
|
+
BookingPackage,
|
|
5
|
+
BookingTravelAgent,
|
|
6
|
+
TideResponse,
|
|
7
|
+
} from "@qite/tide-client/build/types";
|
|
8
|
+
declare const packageApi: {
|
|
9
|
+
fetchDetails: (
|
|
10
|
+
request: BookingPackageRequest<BookingPackageDetailsRequest>,
|
|
11
|
+
signal: AbortSignal,
|
|
12
|
+
languageCode?: string
|
|
13
|
+
) => Promise<TideResponse<BookingPackage>>;
|
|
14
|
+
fetchAgents: (signal: AbortSignal) => Promise<BookingTravelAgent[]>;
|
|
15
|
+
};
|
|
16
|
+
export default packageApi;
|
|
@@ -1,27 +1,138 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
1
|
+
import {
|
|
2
|
+
BookingAttributes,
|
|
3
|
+
BookingOptions,
|
|
4
|
+
ProductAttributes,
|
|
5
|
+
} from "../../types";
|
|
6
|
+
import {
|
|
7
|
+
BookingOptionGroup,
|
|
8
|
+
BookingOptionPax,
|
|
9
|
+
BookingOptionUnit,
|
|
10
|
+
BookingPackage,
|
|
11
|
+
BookingPackageRoom,
|
|
12
|
+
BookingTravelAgent,
|
|
13
|
+
PerBookingPackageOption,
|
|
14
|
+
} from "@qite/tide-client/build/types";
|
|
15
|
+
export interface BookingState {
|
|
16
|
+
officeId: number;
|
|
17
|
+
languageCode: string;
|
|
18
|
+
productAttributes?: ProductAttributes;
|
|
19
|
+
bookingAttributes?: BookingAttributes;
|
|
20
|
+
calculateDeposit: boolean;
|
|
21
|
+
bookingNumber?: string;
|
|
22
|
+
isRetry: boolean;
|
|
23
|
+
package?: BookingPackage;
|
|
24
|
+
agents?: BookingTravelAgent[];
|
|
25
|
+
isBusy: boolean;
|
|
26
|
+
skipPaymentWithAgent: boolean;
|
|
27
|
+
generatePaymentUrl: boolean;
|
|
28
|
+
isUnavailable?: boolean;
|
|
29
|
+
tagIds?: number[];
|
|
30
|
+
agentAdressId?: number;
|
|
31
|
+
remarks?: string;
|
|
32
|
+
voucherCodes?: string[];
|
|
33
|
+
bookingOptions: BookingOptions;
|
|
34
|
+
bookingType: string;
|
|
35
|
+
}
|
|
36
|
+
export declare const fetchPackage: import("@reduxjs/toolkit").AsyncThunk<
|
|
37
|
+
void,
|
|
38
|
+
void,
|
|
39
|
+
{
|
|
40
|
+
state?: unknown;
|
|
41
|
+
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|
|
42
|
+
extra?: unknown;
|
|
43
|
+
rejectValue?: unknown;
|
|
44
|
+
serializedErrorType?: unknown;
|
|
45
|
+
pendingMeta?: unknown;
|
|
46
|
+
fulfilledMeta?: unknown;
|
|
47
|
+
rejectedMeta?: unknown;
|
|
48
|
+
}
|
|
49
|
+
>;
|
|
50
|
+
export declare const setOfficeId: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
51
|
+
number,
|
|
52
|
+
"booking/setOfficeId"
|
|
53
|
+
>,
|
|
54
|
+
setLanguageCode: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
55
|
+
string,
|
|
56
|
+
"booking/setLanguageCode"
|
|
57
|
+
>,
|
|
58
|
+
setBookingOptions: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
59
|
+
BookingOptions,
|
|
60
|
+
"booking/setBookingOptions"
|
|
61
|
+
>,
|
|
62
|
+
setBookingType: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
63
|
+
string,
|
|
64
|
+
"booking/setBookingType"
|
|
65
|
+
>,
|
|
66
|
+
setProductAttributes: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
67
|
+
ProductAttributes,
|
|
68
|
+
"booking/setProductAttributes"
|
|
69
|
+
>,
|
|
70
|
+
setBookingAttributes: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
71
|
+
BookingAttributes,
|
|
72
|
+
"booking/setBookingAttributes"
|
|
73
|
+
>,
|
|
74
|
+
setCalculateDeposit: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
75
|
+
boolean,
|
|
76
|
+
"booking/setCalculateDeposit"
|
|
77
|
+
>,
|
|
78
|
+
setBookingNumber: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
79
|
+
string,
|
|
80
|
+
"booking/setBookingNumber"
|
|
81
|
+
>,
|
|
82
|
+
setIsRetry: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
83
|
+
boolean,
|
|
84
|
+
"booking/setIsRetry"
|
|
85
|
+
>,
|
|
86
|
+
setFetchingPackage: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
87
|
+
boolean,
|
|
88
|
+
"booking/setFetchingPackage"
|
|
89
|
+
>,
|
|
90
|
+
setPackage: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
91
|
+
BookingPackage,
|
|
92
|
+
"booking/setPackage"
|
|
93
|
+
>,
|
|
94
|
+
setPackageRooms: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
95
|
+
BookingPackageRoom[],
|
|
96
|
+
"booking/setPackageRooms"
|
|
97
|
+
>,
|
|
98
|
+
setPackageOptionPax: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
99
|
+
BookingOptionPax[],
|
|
100
|
+
"booking/setPackageOptionPax"
|
|
101
|
+
>,
|
|
102
|
+
setPackageOptionUnits: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
103
|
+
BookingOptionUnit[],
|
|
104
|
+
"booking/setPackageOptionUnits"
|
|
105
|
+
>,
|
|
106
|
+
setPackageGroups: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
107
|
+
BookingOptionGroup<PerBookingPackageOption>[],
|
|
108
|
+
"booking/setPackageGroups"
|
|
109
|
+
>,
|
|
110
|
+
setSkipPayment: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
111
|
+
boolean,
|
|
112
|
+
"booking/setSkipPayment"
|
|
113
|
+
>,
|
|
114
|
+
setGeneratePaymentUrl: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
115
|
+
boolean,
|
|
116
|
+
"booking/setGeneratePaymentUrl"
|
|
117
|
+
>,
|
|
118
|
+
setTagIds: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<
|
|
119
|
+
number[] | undefined,
|
|
120
|
+
"booking/setTagIds"
|
|
121
|
+
>,
|
|
122
|
+
setAgentAdressId: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<
|
|
123
|
+
number | undefined,
|
|
124
|
+
"booking/setAgentAdressId"
|
|
125
|
+
>,
|
|
126
|
+
setBookingRemarks: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
127
|
+
string,
|
|
128
|
+
"booking/setBookingRemarks"
|
|
129
|
+
>,
|
|
130
|
+
setVoucherCodes: import("@reduxjs/toolkit").ActionCreatorWithPayload<
|
|
131
|
+
string[],
|
|
132
|
+
"booking/setVoucherCodes"
|
|
133
|
+
>;
|
|
134
|
+
declare const _default: import("redux").Reducer<
|
|
135
|
+
BookingState,
|
|
136
|
+
import("redux").AnyAction
|
|
137
|
+
>;
|
|
138
|
+
export default _default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
interface BookingProps {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
declare const Booking: React.FC<BookingProps>;
|
|
8
|
-
export default Booking;
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface BookingProps {
|
|
3
|
+
productCode: string;
|
|
4
|
+
productName: string;
|
|
5
|
+
thumbnailUrl?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const Booking: React.FC<BookingProps>;
|
|
8
|
+
export default Booking;
|