@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.
Files changed (721) hide show
  1. package/.vs/ProjectSettings.json +3 -3
  2. package/.vs/VSWorkspaceState.json +5 -7
  3. package/README.md +8 -8
  4. package/build/build-cjs/booking-wizard/components/icon.d.ts +7 -7
  5. package/build/build-cjs/booking-wizard/components/labeled-input.d.ts +18 -18
  6. package/build/build-cjs/booking-wizard/components/labeled-select.d.ts +21 -21
  7. package/build/build-cjs/booking-wizard/components/message.d.ts +9 -9
  8. package/build/build-cjs/booking-wizard/components/product-card.d.ts +8 -8
  9. package/build/build-cjs/booking-wizard/components/rating.d.ts +6 -6
  10. package/build/build-cjs/booking-wizard/components/step-indicator.d.ts +6 -6
  11. package/build/build-cjs/booking-wizard/components/step-route.d.ts +9 -9
  12. package/build/build-cjs/booking-wizard/features/booking/api.d.ts +16 -7
  13. package/build/build-cjs/booking-wizard/features/booking/booking-slice.d.ts +138 -27
  14. package/build/build-cjs/booking-wizard/features/booking/booking.d.ts +8 -8
  15. package/build/build-cjs/booking-wizard/features/booking/selectors.d.ts +221 -95
  16. package/build/build-cjs/booking-wizard/features/confirmation/confirmation.d.ts +4 -5
  17. package/build/build-cjs/booking-wizard/features/error/error.d.ts +4 -5
  18. package/build/build-cjs/booking-wizard/features/price-details/price-details-api.d.ts +13 -5
  19. package/build/build-cjs/booking-wizard/features/price-details/price-details-slice.d.ts +116 -66
  20. package/build/build-cjs/booking-wizard/features/price-details/util.d.ts +5 -2
  21. package/build/build-cjs/booking-wizard/features/product-options/no-options.d.ts +3 -2
  22. package/build/build-cjs/booking-wizard/features/product-options/none-option.d.ts +17 -9
  23. package/build/build-cjs/booking-wizard/features/product-options/option-booking-group.d.ts +18 -12
  24. package/build/build-cjs/booking-wizard/features/product-options/option-item.d.ts +11 -11
  25. package/build/build-cjs/booking-wizard/features/product-options/option-pax-card.d.ts +13 -10
  26. package/build/build-cjs/booking-wizard/features/product-options/option-pax-group.d.ts +20 -13
  27. package/build/build-cjs/booking-wizard/features/product-options/option-room.d.ts +18 -10
  28. package/build/build-cjs/booking-wizard/features/product-options/option-unit-group.d.ts +20 -13
  29. package/build/build-cjs/booking-wizard/features/product-options/option-units-card.d.ts +9 -9
  30. package/build/build-cjs/booking-wizard/features/product-options/options-form.d.ts +4 -5
  31. package/build/build-cjs/booking-wizard/features/product-options/validate-form.d.ts +2 -2
  32. package/build/build-cjs/booking-wizard/features/sidebar/index.d.ts +7 -7
  33. package/build/build-cjs/booking-wizard/features/sidebar/sidebar-flight.d.ts +8 -8
  34. package/build/build-cjs/booking-wizard/features/sidebar/sidebar-util.d.ts +30 -9
  35. package/build/build-cjs/booking-wizard/features/sidebar/sidebar.d.ts +29 -25
  36. package/build/build-cjs/booking-wizard/features/summary/summary-booking-option-pax.d.ts +7 -7
  37. package/build/build-cjs/booking-wizard/features/summary/summary-booking-option-unit.d.ts +7 -7
  38. package/build/build-cjs/booking-wizard/features/summary/summary-flight.d.ts +8 -8
  39. package/build/build-cjs/booking-wizard/features/summary/summary-per-booking-option-group.d.ts +10 -7
  40. package/build/build-cjs/booking-wizard/features/summary/summary-per-pax-option-group.d.ts +10 -7
  41. package/build/build-cjs/booking-wizard/features/summary/summary-per-unit-option-group.d.ts +10 -7
  42. package/build/build-cjs/booking-wizard/features/summary/summary-slice.d.ts +14 -8
  43. package/build/build-cjs/booking-wizard/features/summary/summary.d.ts +4 -5
  44. package/build/build-cjs/booking-wizard/features/travelers-form/travelers-form-slice.d.ts +72 -60
  45. package/build/build-cjs/booking-wizard/features/travelers-form/travelers-form.d.ts +4 -5
  46. package/build/build-cjs/booking-wizard/features/travelers-form/type-ahead-input.d.ts +16 -16
  47. package/build/build-cjs/booking-wizard/features/travelers-form/validate-form.d.ts +9 -4
  48. package/build/build-cjs/booking-wizard/index.d.ts +12 -12
  49. package/build/build-cjs/booking-wizard/settings-context.d.ts +5 -6
  50. package/build/build-cjs/booking-wizard/store.d.ts +41 -21
  51. package/build/build-cjs/booking-wizard/types.d.ts +127 -124
  52. package/build/build-cjs/booking-wizard/utils/class-util.d.ts +1 -1
  53. package/build/build-cjs/booking-wizard/utils/localization-util.d.ts +158 -140
  54. package/build/build-cjs/booking-wizard/utils/query-string-util.d.ts +25 -7
  55. package/build/build-cjs/booking-wizard/utils/tide-api-utils.d.ts +2 -2
  56. package/build/build-cjs/index.d.ts +2 -2
  57. package/build/build-cjs/index.js +13283 -8286
  58. package/build/build-esm/booking-wizard/components/icon.d.ts +7 -7
  59. package/build/build-esm/booking-wizard/components/labeled-input.d.ts +18 -18
  60. package/build/build-esm/booking-wizard/components/labeled-select.d.ts +21 -21
  61. package/build/build-esm/booking-wizard/components/message.d.ts +9 -9
  62. package/build/build-esm/booking-wizard/components/product-card.d.ts +8 -8
  63. package/build/build-esm/booking-wizard/components/rating.d.ts +6 -6
  64. package/build/build-esm/booking-wizard/components/step-indicator.d.ts +6 -6
  65. package/build/build-esm/booking-wizard/components/step-route.d.ts +9 -9
  66. package/build/build-esm/booking-wizard/features/booking/api.d.ts +16 -7
  67. package/build/build-esm/booking-wizard/features/booking/booking-slice.d.ts +138 -27
  68. package/build/build-esm/booking-wizard/features/booking/booking.d.ts +8 -8
  69. package/build/build-esm/booking-wizard/features/booking/selectors.d.ts +221 -95
  70. package/build/build-esm/booking-wizard/features/confirmation/confirmation.d.ts +4 -5
  71. package/build/build-esm/booking-wizard/features/error/error.d.ts +4 -5
  72. package/build/build-esm/booking-wizard/features/price-details/price-details-api.d.ts +13 -5
  73. package/build/build-esm/booking-wizard/features/price-details/price-details-slice.d.ts +116 -66
  74. package/build/build-esm/booking-wizard/features/price-details/util.d.ts +5 -2
  75. package/build/build-esm/booking-wizard/features/product-options/no-options.d.ts +3 -2
  76. package/build/build-esm/booking-wizard/features/product-options/none-option.d.ts +17 -9
  77. package/build/build-esm/booking-wizard/features/product-options/option-booking-group.d.ts +18 -12
  78. package/build/build-esm/booking-wizard/features/product-options/option-item.d.ts +11 -11
  79. package/build/build-esm/booking-wizard/features/product-options/option-pax-card.d.ts +13 -10
  80. package/build/build-esm/booking-wizard/features/product-options/option-pax-group.d.ts +20 -13
  81. package/build/build-esm/booking-wizard/features/product-options/option-room.d.ts +18 -10
  82. package/build/build-esm/booking-wizard/features/product-options/option-unit-group.d.ts +20 -13
  83. package/build/build-esm/booking-wizard/features/product-options/option-units-card.d.ts +9 -9
  84. package/build/build-esm/booking-wizard/features/product-options/options-form.d.ts +4 -5
  85. package/build/build-esm/booking-wizard/features/product-options/validate-form.d.ts +2 -2
  86. package/build/build-esm/booking-wizard/features/sidebar/index.d.ts +7 -7
  87. package/build/build-esm/booking-wizard/features/sidebar/sidebar-flight.d.ts +8 -8
  88. package/build/build-esm/booking-wizard/features/sidebar/sidebar-util.d.ts +30 -9
  89. package/build/build-esm/booking-wizard/features/sidebar/sidebar.d.ts +29 -25
  90. package/build/build-esm/booking-wizard/features/summary/summary-booking-option-pax.d.ts +7 -7
  91. package/build/build-esm/booking-wizard/features/summary/summary-booking-option-unit.d.ts +7 -7
  92. package/build/build-esm/booking-wizard/features/summary/summary-flight.d.ts +8 -8
  93. package/build/build-esm/booking-wizard/features/summary/summary-per-booking-option-group.d.ts +10 -7
  94. package/build/build-esm/booking-wizard/features/summary/summary-per-pax-option-group.d.ts +10 -7
  95. package/build/build-esm/booking-wizard/features/summary/summary-per-unit-option-group.d.ts +10 -7
  96. package/build/build-esm/booking-wizard/features/summary/summary-slice.d.ts +14 -8
  97. package/build/build-esm/booking-wizard/features/summary/summary.d.ts +4 -5
  98. package/build/build-esm/booking-wizard/features/travelers-form/travelers-form-slice.d.ts +72 -60
  99. package/build/build-esm/booking-wizard/features/travelers-form/travelers-form.d.ts +4 -5
  100. package/build/build-esm/booking-wizard/features/travelers-form/type-ahead-input.d.ts +16 -16
  101. package/build/build-esm/booking-wizard/features/travelers-form/validate-form.d.ts +9 -4
  102. package/build/build-esm/booking-wizard/index.d.ts +12 -12
  103. package/build/build-esm/booking-wizard/settings-context.d.ts +5 -6
  104. package/build/build-esm/booking-wizard/store.d.ts +41 -21
  105. package/build/build-esm/booking-wizard/types.d.ts +127 -124
  106. package/build/build-esm/booking-wizard/utils/class-util.d.ts +1 -1
  107. package/build/build-esm/booking-wizard/utils/localization-util.d.ts +158 -140
  108. package/build/build-esm/booking-wizard/utils/query-string-util.d.ts +25 -7
  109. package/build/build-esm/booking-wizard/utils/tide-api-utils.d.ts +2 -2
  110. package/build/build-esm/index.d.ts +2 -2
  111. package/build/build-esm/index.js +13121 -8277
  112. package/package.json +71 -71
  113. package/rollup.config.js +23 -23
  114. package/src/booking-wizard/components/icon.tsx +29 -29
  115. package/src/booking-wizard/components/labeled-input.tsx +64 -64
  116. package/src/booking-wizard/components/labeled-select.tsx +69 -69
  117. package/src/booking-wizard/components/message.tsx +34 -34
  118. package/src/booking-wizard/components/product-card.tsx +37 -37
  119. package/src/booking-wizard/components/rating.tsx +21 -21
  120. package/src/booking-wizard/components/step-indicator.tsx +42 -42
  121. package/src/booking-wizard/components/step-route.tsx +27 -27
  122. package/src/booking-wizard/features/booking/api.ts +31 -45
  123. package/src/booking-wizard/features/booking/booking-slice.ts +407 -407
  124. package/src/booking-wizard/features/booking/booking.tsx +306 -306
  125. package/src/booking-wizard/features/booking/selectors.ts +348 -342
  126. package/src/booking-wizard/features/confirmation/confirmation.tsx +84 -84
  127. package/src/booking-wizard/features/error/error.tsx +73 -73
  128. package/src/booking-wizard/features/price-details/price-details-api.ts +22 -22
  129. package/src/booking-wizard/features/price-details/price-details-slice.ts +151 -149
  130. package/src/booking-wizard/features/price-details/util.ts +155 -150
  131. package/src/booking-wizard/features/product-options/no-options.tsx +21 -21
  132. package/src/booking-wizard/features/product-options/none-option.tsx +120 -120
  133. package/src/booking-wizard/features/product-options/option-booking-group.tsx +210 -210
  134. package/src/booking-wizard/features/product-options/option-item.tsx +321 -321
  135. package/src/booking-wizard/features/product-options/option-pax-card.tsx +120 -120
  136. package/src/booking-wizard/features/product-options/option-pax-group.tsx +169 -169
  137. package/src/booking-wizard/features/product-options/option-room.tsx +316 -316
  138. package/src/booking-wizard/features/product-options/option-unit-group.tsx +192 -192
  139. package/src/booking-wizard/features/product-options/option-units-card.tsx +103 -103
  140. package/src/booking-wizard/features/product-options/options-form.tsx +350 -350
  141. package/src/booking-wizard/features/product-options/validate-form.ts +9 -9
  142. package/src/booking-wizard/features/sidebar/index.tsx +76 -80
  143. package/src/booking-wizard/features/sidebar/sidebar-flight.tsx +69 -69
  144. package/src/booking-wizard/features/sidebar/sidebar-util.ts +175 -175
  145. package/src/booking-wizard/features/sidebar/sidebar.tsx +346 -345
  146. package/src/booking-wizard/features/summary/summary-booking-option-pax.tsx +25 -25
  147. package/src/booking-wizard/features/summary/summary-booking-option-unit.tsx +25 -25
  148. package/src/booking-wizard/features/summary/summary-flight.tsx +39 -39
  149. package/src/booking-wizard/features/summary/summary-per-booking-option-group.tsx +57 -57
  150. package/src/booking-wizard/features/summary/summary-per-pax-option-group.tsx +51 -51
  151. package/src/booking-wizard/features/summary/summary-per-unit-option-group.tsx +54 -54
  152. package/src/booking-wizard/features/summary/summary-slice.ts +28 -28
  153. package/src/booking-wizard/features/summary/summary.tsx +613 -603
  154. package/src/booking-wizard/features/travelers-form/travelers-form-slice.ts +164 -139
  155. package/src/booking-wizard/features/travelers-form/travelers-form.tsx +767 -731
  156. package/src/booking-wizard/features/travelers-form/type-ahead-input.tsx +101 -101
  157. package/src/booking-wizard/features/travelers-form/validate-form.ts +252 -175
  158. package/src/booking-wizard/index.tsx +36 -36
  159. package/src/booking-wizard/settings-context.ts +54 -54
  160. package/src/booking-wizard/store.ts +29 -29
  161. package/src/booking-wizard/translations/fr-BE.json +157 -155
  162. package/src/booking-wizard/translations/nl-BE.json +6 -4
  163. package/src/booking-wizard/types.ts +138 -134
  164. package/src/booking-wizard/utils/class-util.ts +9 -9
  165. package/src/booking-wizard/utils/localization-util.ts +20 -20
  166. package/src/booking-wizard/utils/query-string-util.ts +94 -94
  167. package/src/booking-wizard/utils/tide-api-utils.ts +33 -20
  168. package/src/index.ts +3 -3
  169. package/tsconfig.json +24 -24
  170. package/build/build-cjs/types/aapi/accommodation-occupancy.d.ts +0 -9
  171. package/build/build-cjs/types/aapi/accommodation-with-available-places.d.ts +0 -14
  172. package/build/build-cjs/types/aapi/accommodation.d.ts +0 -7
  173. package/build/build-cjs/types/aapi/additional-services.d.ts +0 -6
  174. package/build/build-cjs/types/aapi/alternative-flight-data.d.ts +0 -10
  175. package/build/build-cjs/types/aapi/alternative-flight-leg.d.ts +0 -18
  176. package/build/build-cjs/types/aapi/alternative-flight.d.ts +0 -12
  177. package/build/build-cjs/types/aapi/availability-request.d.ts +0 -12
  178. package/build/build-cjs/types/aapi/availability.d.ts +0 -5
  179. package/build/build-cjs/types/aapi/available-products-request.d.ts +0 -32
  180. package/build/build-cjs/types/aapi/duration.d.ts +0 -4
  181. package/build/build-cjs/types/aapi/flight-leg.d.ts +0 -18
  182. package/build/build-cjs/types/aapi/flight.d.ts +0 -23
  183. package/build/build-cjs/types/aapi/hotel.d.ts +0 -35
  184. package/build/build-cjs/types/aapi/index.d.ts +0 -22
  185. package/build/build-cjs/types/aapi/mollie-payment-request.d.ts +0 -6
  186. package/build/build-cjs/types/aapi/mollie-payment.d.ts +0 -3
  187. package/build/build-cjs/types/aapi/option-pax.d.ts +0 -4
  188. package/build/build-cjs/types/aapi/option.d.ts +0 -21
  189. package/build/build-cjs/types/aapi/pax.d.ts +0 -4
  190. package/build/build-cjs/types/aapi/price-detail.d.ts +0 -8
  191. package/build/build-cjs/types/aapi/regime.d.ts +0 -5
  192. package/build/build-cjs/types/aapi/traveler-grouping.d.ts +0 -5
  193. package/build/build-cjs/types/company/agent-print-action-request.d.ts +0 -11
  194. package/build/build-cjs/types/company/agent-print-action.d.ts +0 -6
  195. package/build/build-cjs/types/company/index.d.ts +0 -2
  196. package/build/build-cjs/types/enums/allotment-type.d.ts +0 -5
  197. package/build/build-cjs/types/enums/availability-search-type.d.ts +0 -4
  198. package/build/build-cjs/types/enums/dossier-type.d.ts +0 -6
  199. package/build/build-cjs/types/enums/entry-line-flag.d.ts +0 -6
  200. package/build/build-cjs/types/enums/entry-line-status.d.ts +0 -19
  201. package/build/build-cjs/types/enums/entry-status.d.ts +0 -8
  202. package/build/build-cjs/types/enums/export-status.d.ts +0 -5
  203. package/build/build-cjs/types/enums/gender.d.ts +0 -5
  204. package/build/build-cjs/types/enums/index.d.ts +0 -16
  205. package/build/build-cjs/types/enums/meta-data-type.d.ts +0 -10
  206. package/build/build-cjs/types/enums/payment-type.d.ts +0 -6
  207. package/build/build-cjs/types/enums/price-chart-type.d.ts +0 -4
  208. package/build/build-cjs/types/enums/print-action-group.d.ts +0 -10
  209. package/build/build-cjs/types/enums/requirement-type.d.ts +0 -5
  210. package/build/build-cjs/types/enums/room-type.d.ts +0 -8
  211. package/build/build-cjs/types/enums/sale-type.d.ts +0 -4
  212. package/build/build-cjs/types/enums/service-type.d.ts +0 -28
  213. package/build/build-cjs/types/index.d.ts +0 -5
  214. package/build/build-cjs/types/offer/additional-services.d.ts +0 -6
  215. package/build/build-cjs/types/offer/address.d.ts +0 -11
  216. package/build/build-cjs/types/offer/affiliate.d.ts +0 -5
  217. package/build/build-cjs/types/offer/alternative-flight-data.d.ts +0 -10
  218. package/build/build-cjs/types/offer/alternative-flight-leg.d.ts +0 -18
  219. package/build/build-cjs/types/offer/alternative-flight.d.ts +0 -14
  220. package/build/build-cjs/types/offer/available-package-accommodation.d.ts +0 -7
  221. package/build/build-cjs/types/offer/available-package-flight.d.ts +0 -9
  222. package/build/build-cjs/types/offer/available-package-option.d.ts +0 -12
  223. package/build/build-cjs/types/offer/available-package-pax-price.d.ts +0 -6
  224. package/build/build-cjs/types/offer/available-package-regime.d.ts +0 -4
  225. package/build/build-cjs/types/offer/available-package.d.ts +0 -7
  226. package/build/build-cjs/types/offer/base-price.d.ts +0 -6
  227. package/build/build-cjs/types/offer/base-prices-from-date-request.d.ts +0 -12
  228. package/build/build-cjs/types/offer/base-prices-request.d.ts +0 -12
  229. package/build/build-cjs/types/offer/book-request.d.ts +0 -36
  230. package/build/build-cjs/types/offer/booking-response.d.ts +0 -4
  231. package/build/build-cjs/types/offer/booking-v2/index.d.ts +0 -3
  232. package/build/build-cjs/types/offer/booking-v2/request/bookable-dates-request.d.ts +0 -4
  233. package/build/build-cjs/types/offer/booking-v2/request/booking-package-address.d.ts +0 -14
  234. package/build/build-cjs/types/offer/booking-v2/request/booking-package-book-request.d.ts +0 -20
  235. package/build/build-cjs/types/offer/booking-v2/request/booking-package-destination.d.ts +0 -9
  236. package/build/build-cjs/types/offer/booking-v2/request/booking-package-details-request.d.ts +0 -21
  237. package/build/build-cjs/types/offer/booking-v2/request/booking-package-flight-pool-request.d.ts +0 -12
  238. package/build/build-cjs/types/offer/booking-v2/request/booking-package-request.d.ts +0 -5
  239. package/build/build-cjs/types/offer/booking-v2/request/booking-package-search-request.d.ts +0 -26
  240. package/build/build-cjs/types/offer/booking-v2/request/booking-package-update-request.d.ts +0 -4
  241. package/build/build-cjs/types/offer/booking-v2/request/booking-package-voucher-request.d.ts +0 -4
  242. package/build/build-cjs/types/offer/booking-v2/request/index.d.ts +0 -13
  243. package/build/build-cjs/types/offer/booking-v2/request/selected-flight.d.ts +0 -6
  244. package/build/build-cjs/types/offer/booking-v2/request/selected-hotel.d.ts +0 -5
  245. package/build/build-cjs/types/offer/booking-v2/request/tour-codes.request.d.ts +0 -3
  246. package/build/build-cjs/types/offer/booking-v2/response/bookable-dates.d.ts +0 -4
  247. package/build/build-cjs/types/offer/booking-v2/response/booking-package-allotment-info.d.ts +0 -17
  248. package/build/build-cjs/types/offer/booking-v2/response/booking-package-dossier.d.ts +0 -6
  249. package/build/build-cjs/types/offer/booking-v2/response/booking-package-flight-pool.d.ts +0 -5
  250. package/build/build-cjs/types/offer/booking-v2/response/booking-package-hotel-pool.d.ts +0 -4
  251. package/build/build-cjs/types/offer/booking-v2/response/booking-package-item.d.ts +0 -39
  252. package/build/build-cjs/types/offer/booking-v2/response/booking-price-detail.d.ts +0 -16
  253. package/build/build-cjs/types/offer/booking-v2/response/booking-price-details.d.ts +0 -9
  254. package/build/build-cjs/types/offer/booking-v2/response/booking-price-per-pax.d.ts +0 -4
  255. package/build/build-cjs/types/offer/booking-v2/response/booking-product-notification.d.ts +0 -7
  256. package/build/build-cjs/types/offer/booking-v2/response/booking-travel-agent.d.ts +0 -7
  257. package/build/build-cjs/types/offer/booking-v2/response/booking-voucher-result.d.ts +0 -3
  258. package/build/build-cjs/types/offer/booking-v2/response/changed-line.d.ts +0 -4
  259. package/build/build-cjs/types/offer/booking-v2/response/index.d.ts +0 -15
  260. package/build/build-cjs/types/offer/booking-v2/response/tide-response.d.ts +0 -8
  261. package/build/build-cjs/types/offer/booking-v2/response/tour-codes-response.d.ts +0 -3
  262. package/build/build-cjs/types/offer/booking-v2/shared/booking-option-group.d.ts +0 -5
  263. package/build/build-cjs/types/offer/booking-v2/shared/booking-option-pax.d.ts +0 -7
  264. package/build/build-cjs/types/offer/booking-v2/shared/booking-option-unit.d.ts +0 -6
  265. package/build/build-cjs/types/offer/booking-v2/shared/booking-package-availability.d.ts +0 -7
  266. package/build/build-cjs/types/offer/booking-v2/shared/booking-package-flight-meta-data-line.d.ts +0 -17
  267. package/build/build-cjs/types/offer/booking-v2/shared/booking-package-flight-meta-data.d.ts +0 -10
  268. package/build/build-cjs/types/offer/booking-v2/shared/booking-package-flight.d.ts +0 -14
  269. package/build/build-cjs/types/offer/booking-v2/shared/booking-package-hotel-option.d.ts +0 -10
  270. package/build/build-cjs/types/offer/booking-v2/shared/booking-package-hotel-room.d.ts +0 -5
  271. package/build/build-cjs/types/offer/booking-v2/shared/booking-package-hotel.d.ts +0 -20
  272. package/build/build-cjs/types/offer/booking-v2/shared/booking-package-line.d.ts +0 -12
  273. package/build/build-cjs/types/offer/booking-v2/shared/booking-package-option.d.ts +0 -40
  274. package/build/build-cjs/types/offer/booking-v2/shared/booking-package-pax.d.ts +0 -17
  275. package/build/build-cjs/types/offer/booking-v2/shared/booking-package-request-room.d.ts +0 -5
  276. package/build/build-cjs/types/offer/booking-v2/shared/booking-package-room-option.d.ts +0 -17
  277. package/build/build-cjs/types/offer/booking-v2/shared/booking-package-room.d.ts +0 -5
  278. package/build/build-cjs/types/offer/booking-v2/shared/booking-package-tag.d.ts +0 -5
  279. package/build/build-cjs/types/offer/booking-v2/shared/booking-package.d.ts +0 -11
  280. package/build/build-cjs/types/offer/booking-v2/shared/index.d.ts +0 -19
  281. package/build/build-cjs/types/offer/booking-v2/shared/per-booking-package-option.d.ts +0 -9
  282. package/build/build-cjs/types/offer/booking-v2/shared/per-package-option.d.ts +0 -9
  283. package/build/build-cjs/types/offer/booking-v2/shared/per-pax-package-option.d.ts +0 -5
  284. package/build/build-cjs/types/offer/booking-v2/shared/per-unit-package-option.d.ts +0 -7
  285. package/build/build-cjs/types/offer/cached-package-search-result.d.ts +0 -5
  286. package/build/build-cjs/types/offer/confirmed-dossier-check.d.ts +0 -6
  287. package/build/build-cjs/types/offer/country-item.d.ts +0 -4
  288. package/build/build-cjs/types/offer/crm-contact-request.d.ts +0 -28
  289. package/build/build-cjs/types/offer/customer-request.d.ts +0 -5
  290. package/build/build-cjs/types/offer/dossier-default-product.d.ts +0 -14
  291. package/build/build-cjs/types/offer/entry-check-response.d.ts +0 -8
  292. package/build/build-cjs/types/offer/entry-line-meta-data.d.ts +0 -5
  293. package/build/build-cjs/types/offer/entry-line-pax.d.ts +0 -8
  294. package/build/build-cjs/types/offer/entry-line.d.ts +0 -67
  295. package/build/build-cjs/types/offer/entry-price-line.d.ts +0 -40
  296. package/build/build-cjs/types/offer/entry-room2.d.ts +0 -5
  297. package/build/build-cjs/types/offer/entry.d.ts +0 -49
  298. package/build/build-cjs/types/offer/flight-meta-data-line.d.ts +0 -16
  299. package/build/build-cjs/types/offer/flight-meta-data.d.ts +0 -14
  300. package/build/build-cjs/types/offer/flight-pool.d.ts +0 -5
  301. package/build/build-cjs/types/offer/index.d.ts +0 -72
  302. package/build/build-cjs/types/offer/language.d.ts +0 -5
  303. package/build/build-cjs/types/offer/member-confirmation-request.d.ts +0 -5
  304. package/build/build-cjs/types/offer/member-forgot-password-request.d.ts +0 -4
  305. package/build/build-cjs/types/offer/member-info.d.ts +0 -10
  306. package/build/build-cjs/types/offer/member-login-request.d.ts +0 -4
  307. package/build/build-cjs/types/offer/member-reset-password-request.d.ts +0 -4
  308. package/build/build-cjs/types/offer/multiroom-book-request.d.ts +0 -10
  309. package/build/build-cjs/types/offer/note.d.ts +0 -16
  310. package/build/build-cjs/types/offer/other-product.d.ts +0 -13
  311. package/build/build-cjs/types/offer/package-book-request-room.d.ts +0 -5
  312. package/build/build-cjs/types/offer/package-book-request.d.ts +0 -12
  313. package/build/build-cjs/types/offer/package-flight.d.ts +0 -13
  314. package/build/build-cjs/types/offer/package-flights.d.ts +0 -5
  315. package/build/build-cjs/types/offer/package-option.d.ts +0 -22
  316. package/build/build-cjs/types/offer/package-price-details-request-room.d.ts +0 -4
  317. package/build/build-cjs/types/offer/package-price-details-request.d.ts +0 -8
  318. package/build/build-cjs/types/offer/package-room-option.d.ts +0 -10
  319. package/build/build-cjs/types/offer/package-room.d.ts +0 -7
  320. package/build/build-cjs/types/offer/package-search-destination.d.ts +0 -9
  321. package/build/build-cjs/types/offer/package-search-request-date.d.ts +0 -4
  322. package/build/build-cjs/types/offer/package-search-request-room.d.ts +0 -5
  323. package/build/build-cjs/types/offer/package-search-request.d.ts +0 -18
  324. package/build/build-cjs/types/offer/package-search-result.d.ts +0 -12
  325. package/build/build-cjs/types/offer/package-sub-option.d.ts +0 -6
  326. package/build/build-cjs/types/offer/page-result.d.ts +0 -5
  327. package/build/build-cjs/types/offer/pax.d.ts +0 -29
  328. package/build/build-cjs/types/offer/payment.d.ts +0 -20
  329. package/build/build-cjs/types/offer/person-country-preference.d.ts +0 -7
  330. package/build/build-cjs/types/offer/person-location-preference.d.ts +0 -7
  331. package/build/build-cjs/types/offer/person-oord-preference.d.ts +0 -7
  332. package/build/build-cjs/types/offer/person-period-date-range-preference.d.ts +0 -6
  333. package/build/build-cjs/types/offer/person-period-preference.d.ts +0 -7
  334. package/build/build-cjs/types/offer/person-region-preference.d.ts +0 -7
  335. package/build/build-cjs/types/offer/person-tour-group-preference.d.ts +0 -7
  336. package/build/build-cjs/types/offer/price-detail.d.ts +0 -18
  337. package/build/build-cjs/types/offer/price-per-pax.d.ts +0 -6
  338. package/build/build-cjs/types/offer/product-notification-result.d.ts +0 -9
  339. package/build/build-cjs/types/offer/web-contact-form-request.d.ts +0 -13
  340. package/build/build-cjs/types/offer/web-contact-has-tag-request.d.ts +0 -4
  341. package/build/build-cjs/types/tide-client-config.d.ts +0 -4
  342. package/build/build-cjs/utils/api.d.ts +0 -2
  343. package/build/build-cjs/utils/booking-client.d.ts +0 -114
  344. package/build/build-cjs/utils/booking-v2-client.d.ts +0 -16
  345. package/build/build-cjs/utils/common-client.d.ts +0 -2
  346. package/build/build-cjs/utils/json.d.ts +0 -2
  347. package/build/build-cjs/utils/member-client.d.ts +0 -6
  348. package/build/build-cjs/utils/mollie-client.d.ts +0 -7
  349. package/build/build-cjs/utils/search-client.d.ts +0 -9
  350. package/build/build-cjs/utils/web-agent-client.d.ts +0 -17
  351. package/build/build-cjs/utils/web-client.d.ts +0 -19
  352. package/build/build-cjs/utils/web-contact-client.d.ts +0 -11
  353. package/build/build-cjs/utils/web-file.d.ts +0 -10
  354. package/build/build-esm/types/aapi/accommodation-occupancy.d.ts +0 -9
  355. package/build/build-esm/types/aapi/accommodation-with-available-places.d.ts +0 -14
  356. package/build/build-esm/types/aapi/accommodation.d.ts +0 -7
  357. package/build/build-esm/types/aapi/additional-services.d.ts +0 -6
  358. package/build/build-esm/types/aapi/alternative-flight-data.d.ts +0 -10
  359. package/build/build-esm/types/aapi/alternative-flight-leg.d.ts +0 -18
  360. package/build/build-esm/types/aapi/alternative-flight.d.ts +0 -12
  361. package/build/build-esm/types/aapi/availability-request.d.ts +0 -12
  362. package/build/build-esm/types/aapi/availability.d.ts +0 -5
  363. package/build/build-esm/types/aapi/available-products-request.d.ts +0 -32
  364. package/build/build-esm/types/aapi/duration.d.ts +0 -4
  365. package/build/build-esm/types/aapi/flight-leg.d.ts +0 -18
  366. package/build/build-esm/types/aapi/flight.d.ts +0 -23
  367. package/build/build-esm/types/aapi/hotel.d.ts +0 -35
  368. package/build/build-esm/types/aapi/index.d.ts +0 -22
  369. package/build/build-esm/types/aapi/mollie-payment-request.d.ts +0 -6
  370. package/build/build-esm/types/aapi/mollie-payment.d.ts +0 -3
  371. package/build/build-esm/types/aapi/option-pax.d.ts +0 -4
  372. package/build/build-esm/types/aapi/option.d.ts +0 -21
  373. package/build/build-esm/types/aapi/pax.d.ts +0 -4
  374. package/build/build-esm/types/aapi/price-detail.d.ts +0 -8
  375. package/build/build-esm/types/aapi/regime.d.ts +0 -5
  376. package/build/build-esm/types/aapi/traveler-grouping.d.ts +0 -5
  377. package/build/build-esm/types/company/agent-print-action-request.d.ts +0 -11
  378. package/build/build-esm/types/company/agent-print-action.d.ts +0 -6
  379. package/build/build-esm/types/company/index.d.ts +0 -2
  380. package/build/build-esm/types/enums/allotment-type.d.ts +0 -5
  381. package/build/build-esm/types/enums/availability-search-type.d.ts +0 -4
  382. package/build/build-esm/types/enums/dossier-type.d.ts +0 -6
  383. package/build/build-esm/types/enums/entry-line-flag.d.ts +0 -6
  384. package/build/build-esm/types/enums/entry-line-status.d.ts +0 -19
  385. package/build/build-esm/types/enums/entry-status.d.ts +0 -8
  386. package/build/build-esm/types/enums/export-status.d.ts +0 -5
  387. package/build/build-esm/types/enums/gender.d.ts +0 -5
  388. package/build/build-esm/types/enums/index.d.ts +0 -16
  389. package/build/build-esm/types/enums/meta-data-type.d.ts +0 -10
  390. package/build/build-esm/types/enums/payment-type.d.ts +0 -6
  391. package/build/build-esm/types/enums/price-chart-type.d.ts +0 -4
  392. package/build/build-esm/types/enums/print-action-group.d.ts +0 -10
  393. package/build/build-esm/types/enums/requirement-type.d.ts +0 -5
  394. package/build/build-esm/types/enums/room-type.d.ts +0 -8
  395. package/build/build-esm/types/enums/sale-type.d.ts +0 -4
  396. package/build/build-esm/types/enums/service-type.d.ts +0 -28
  397. package/build/build-esm/types/index.d.ts +0 -5
  398. package/build/build-esm/types/offer/additional-services.d.ts +0 -6
  399. package/build/build-esm/types/offer/address.d.ts +0 -11
  400. package/build/build-esm/types/offer/affiliate.d.ts +0 -5
  401. package/build/build-esm/types/offer/alternative-flight-data.d.ts +0 -10
  402. package/build/build-esm/types/offer/alternative-flight-leg.d.ts +0 -18
  403. package/build/build-esm/types/offer/alternative-flight.d.ts +0 -14
  404. package/build/build-esm/types/offer/available-package-accommodation.d.ts +0 -7
  405. package/build/build-esm/types/offer/available-package-flight.d.ts +0 -9
  406. package/build/build-esm/types/offer/available-package-option.d.ts +0 -12
  407. package/build/build-esm/types/offer/available-package-pax-price.d.ts +0 -6
  408. package/build/build-esm/types/offer/available-package-regime.d.ts +0 -4
  409. package/build/build-esm/types/offer/available-package.d.ts +0 -7
  410. package/build/build-esm/types/offer/base-price.d.ts +0 -6
  411. package/build/build-esm/types/offer/base-prices-from-date-request.d.ts +0 -12
  412. package/build/build-esm/types/offer/base-prices-request.d.ts +0 -12
  413. package/build/build-esm/types/offer/book-request.d.ts +0 -36
  414. package/build/build-esm/types/offer/booking-response.d.ts +0 -4
  415. package/build/build-esm/types/offer/booking-v2/index.d.ts +0 -3
  416. package/build/build-esm/types/offer/booking-v2/request/bookable-dates-request.d.ts +0 -4
  417. package/build/build-esm/types/offer/booking-v2/request/booking-package-address.d.ts +0 -14
  418. package/build/build-esm/types/offer/booking-v2/request/booking-package-book-request.d.ts +0 -20
  419. package/build/build-esm/types/offer/booking-v2/request/booking-package-destination.d.ts +0 -9
  420. package/build/build-esm/types/offer/booking-v2/request/booking-package-details-request.d.ts +0 -21
  421. package/build/build-esm/types/offer/booking-v2/request/booking-package-flight-pool-request.d.ts +0 -12
  422. package/build/build-esm/types/offer/booking-v2/request/booking-package-request.d.ts +0 -5
  423. package/build/build-esm/types/offer/booking-v2/request/booking-package-search-request.d.ts +0 -26
  424. package/build/build-esm/types/offer/booking-v2/request/booking-package-update-request.d.ts +0 -4
  425. package/build/build-esm/types/offer/booking-v2/request/booking-package-voucher-request.d.ts +0 -4
  426. package/build/build-esm/types/offer/booking-v2/request/index.d.ts +0 -13
  427. package/build/build-esm/types/offer/booking-v2/request/selected-flight.d.ts +0 -6
  428. package/build/build-esm/types/offer/booking-v2/request/selected-hotel.d.ts +0 -5
  429. package/build/build-esm/types/offer/booking-v2/request/tour-codes.request.d.ts +0 -3
  430. package/build/build-esm/types/offer/booking-v2/response/bookable-dates.d.ts +0 -4
  431. package/build/build-esm/types/offer/booking-v2/response/booking-package-allotment-info.d.ts +0 -17
  432. package/build/build-esm/types/offer/booking-v2/response/booking-package-dossier.d.ts +0 -6
  433. package/build/build-esm/types/offer/booking-v2/response/booking-package-flight-pool.d.ts +0 -5
  434. package/build/build-esm/types/offer/booking-v2/response/booking-package-hotel-pool.d.ts +0 -4
  435. package/build/build-esm/types/offer/booking-v2/response/booking-package-item.d.ts +0 -39
  436. package/build/build-esm/types/offer/booking-v2/response/booking-price-detail.d.ts +0 -16
  437. package/build/build-esm/types/offer/booking-v2/response/booking-price-details.d.ts +0 -9
  438. package/build/build-esm/types/offer/booking-v2/response/booking-price-per-pax.d.ts +0 -4
  439. package/build/build-esm/types/offer/booking-v2/response/booking-product-notification.d.ts +0 -7
  440. package/build/build-esm/types/offer/booking-v2/response/booking-travel-agent.d.ts +0 -7
  441. package/build/build-esm/types/offer/booking-v2/response/booking-voucher-result.d.ts +0 -3
  442. package/build/build-esm/types/offer/booking-v2/response/changed-line.d.ts +0 -4
  443. package/build/build-esm/types/offer/booking-v2/response/index.d.ts +0 -15
  444. package/build/build-esm/types/offer/booking-v2/response/tide-response.d.ts +0 -8
  445. package/build/build-esm/types/offer/booking-v2/response/tour-codes-response.d.ts +0 -3
  446. package/build/build-esm/types/offer/booking-v2/shared/booking-option-group.d.ts +0 -5
  447. package/build/build-esm/types/offer/booking-v2/shared/booking-option-pax.d.ts +0 -7
  448. package/build/build-esm/types/offer/booking-v2/shared/booking-option-unit.d.ts +0 -6
  449. package/build/build-esm/types/offer/booking-v2/shared/booking-package-availability.d.ts +0 -7
  450. package/build/build-esm/types/offer/booking-v2/shared/booking-package-flight-meta-data-line.d.ts +0 -17
  451. package/build/build-esm/types/offer/booking-v2/shared/booking-package-flight-meta-data.d.ts +0 -10
  452. package/build/build-esm/types/offer/booking-v2/shared/booking-package-flight.d.ts +0 -14
  453. package/build/build-esm/types/offer/booking-v2/shared/booking-package-hotel-option.d.ts +0 -10
  454. package/build/build-esm/types/offer/booking-v2/shared/booking-package-hotel-room.d.ts +0 -5
  455. package/build/build-esm/types/offer/booking-v2/shared/booking-package-hotel.d.ts +0 -20
  456. package/build/build-esm/types/offer/booking-v2/shared/booking-package-line.d.ts +0 -12
  457. package/build/build-esm/types/offer/booking-v2/shared/booking-package-option.d.ts +0 -40
  458. package/build/build-esm/types/offer/booking-v2/shared/booking-package-pax.d.ts +0 -17
  459. package/build/build-esm/types/offer/booking-v2/shared/booking-package-request-room.d.ts +0 -5
  460. package/build/build-esm/types/offer/booking-v2/shared/booking-package-room-option.d.ts +0 -17
  461. package/build/build-esm/types/offer/booking-v2/shared/booking-package-room.d.ts +0 -5
  462. package/build/build-esm/types/offer/booking-v2/shared/booking-package-tag.d.ts +0 -5
  463. package/build/build-esm/types/offer/booking-v2/shared/booking-package.d.ts +0 -11
  464. package/build/build-esm/types/offer/booking-v2/shared/index.d.ts +0 -19
  465. package/build/build-esm/types/offer/booking-v2/shared/per-booking-package-option.d.ts +0 -9
  466. package/build/build-esm/types/offer/booking-v2/shared/per-package-option.d.ts +0 -9
  467. package/build/build-esm/types/offer/booking-v2/shared/per-pax-package-option.d.ts +0 -5
  468. package/build/build-esm/types/offer/booking-v2/shared/per-unit-package-option.d.ts +0 -7
  469. package/build/build-esm/types/offer/cached-package-search-result.d.ts +0 -5
  470. package/build/build-esm/types/offer/confirmed-dossier-check.d.ts +0 -6
  471. package/build/build-esm/types/offer/country-item.d.ts +0 -4
  472. package/build/build-esm/types/offer/crm-contact-request.d.ts +0 -28
  473. package/build/build-esm/types/offer/customer-request.d.ts +0 -5
  474. package/build/build-esm/types/offer/dossier-default-product.d.ts +0 -14
  475. package/build/build-esm/types/offer/entry-check-response.d.ts +0 -8
  476. package/build/build-esm/types/offer/entry-line-meta-data.d.ts +0 -5
  477. package/build/build-esm/types/offer/entry-line-pax.d.ts +0 -8
  478. package/build/build-esm/types/offer/entry-line.d.ts +0 -67
  479. package/build/build-esm/types/offer/entry-price-line.d.ts +0 -40
  480. package/build/build-esm/types/offer/entry-room2.d.ts +0 -5
  481. package/build/build-esm/types/offer/entry.d.ts +0 -49
  482. package/build/build-esm/types/offer/flight-meta-data-line.d.ts +0 -16
  483. package/build/build-esm/types/offer/flight-meta-data.d.ts +0 -14
  484. package/build/build-esm/types/offer/flight-pool.d.ts +0 -5
  485. package/build/build-esm/types/offer/index.d.ts +0 -72
  486. package/build/build-esm/types/offer/language.d.ts +0 -5
  487. package/build/build-esm/types/offer/member-confirmation-request.d.ts +0 -5
  488. package/build/build-esm/types/offer/member-forgot-password-request.d.ts +0 -4
  489. package/build/build-esm/types/offer/member-info.d.ts +0 -10
  490. package/build/build-esm/types/offer/member-login-request.d.ts +0 -4
  491. package/build/build-esm/types/offer/member-reset-password-request.d.ts +0 -4
  492. package/build/build-esm/types/offer/multiroom-book-request.d.ts +0 -10
  493. package/build/build-esm/types/offer/note.d.ts +0 -16
  494. package/build/build-esm/types/offer/other-product.d.ts +0 -13
  495. package/build/build-esm/types/offer/package-book-request-room.d.ts +0 -5
  496. package/build/build-esm/types/offer/package-book-request.d.ts +0 -12
  497. package/build/build-esm/types/offer/package-flight.d.ts +0 -13
  498. package/build/build-esm/types/offer/package-flights.d.ts +0 -5
  499. package/build/build-esm/types/offer/package-option.d.ts +0 -22
  500. package/build/build-esm/types/offer/package-price-details-request-room.d.ts +0 -4
  501. package/build/build-esm/types/offer/package-price-details-request.d.ts +0 -8
  502. package/build/build-esm/types/offer/package-room-option.d.ts +0 -10
  503. package/build/build-esm/types/offer/package-room.d.ts +0 -7
  504. package/build/build-esm/types/offer/package-search-destination.d.ts +0 -9
  505. package/build/build-esm/types/offer/package-search-request-date.d.ts +0 -4
  506. package/build/build-esm/types/offer/package-search-request-room.d.ts +0 -5
  507. package/build/build-esm/types/offer/package-search-request.d.ts +0 -18
  508. package/build/build-esm/types/offer/package-search-result.d.ts +0 -12
  509. package/build/build-esm/types/offer/package-sub-option.d.ts +0 -6
  510. package/build/build-esm/types/offer/page-result.d.ts +0 -5
  511. package/build/build-esm/types/offer/pax.d.ts +0 -29
  512. package/build/build-esm/types/offer/payment.d.ts +0 -20
  513. package/build/build-esm/types/offer/person-country-preference.d.ts +0 -7
  514. package/build/build-esm/types/offer/person-location-preference.d.ts +0 -7
  515. package/build/build-esm/types/offer/person-oord-preference.d.ts +0 -7
  516. package/build/build-esm/types/offer/person-period-date-range-preference.d.ts +0 -6
  517. package/build/build-esm/types/offer/person-period-preference.d.ts +0 -7
  518. package/build/build-esm/types/offer/person-region-preference.d.ts +0 -7
  519. package/build/build-esm/types/offer/person-tour-group-preference.d.ts +0 -7
  520. package/build/build-esm/types/offer/price-detail.d.ts +0 -18
  521. package/build/build-esm/types/offer/price-per-pax.d.ts +0 -6
  522. package/build/build-esm/types/offer/product-notification-result.d.ts +0 -9
  523. package/build/build-esm/types/offer/web-contact-form-request.d.ts +0 -13
  524. package/build/build-esm/types/offer/web-contact-has-tag-request.d.ts +0 -4
  525. package/build/build-esm/types/tide-client-config.d.ts +0 -4
  526. package/build/build-esm/utils/api.d.ts +0 -2
  527. package/build/build-esm/utils/booking-client.d.ts +0 -114
  528. package/build/build-esm/utils/booking-v2-client.d.ts +0 -16
  529. package/build/build-esm/utils/common-client.d.ts +0 -2
  530. package/build/build-esm/utils/json.d.ts +0 -2
  531. package/build/build-esm/utils/member-client.d.ts +0 -6
  532. package/build/build-esm/utils/mollie-client.d.ts +0 -7
  533. package/build/build-esm/utils/search-client.d.ts +0 -9
  534. package/build/build-esm/utils/web-agent-client.d.ts +0 -17
  535. package/build/build-esm/utils/web-client.d.ts +0 -19
  536. package/build/build-esm/utils/web-contact-client.d.ts +0 -11
  537. package/build/build-esm/utils/web-file.d.ts +0 -10
  538. package/src/types/aapi/accommodation-occupancy.ts +0 -9
  539. package/src/types/aapi/accommodation-with-available-places.ts +0 -15
  540. package/src/types/aapi/accommodation.ts +0 -8
  541. package/src/types/aapi/additional-services.ts +0 -6
  542. package/src/types/aapi/alternative-flight-data.ts +0 -11
  543. package/src/types/aapi/alternative-flight-leg.ts +0 -18
  544. package/src/types/aapi/alternative-flight.ts +0 -13
  545. package/src/types/aapi/availability-request.ts +0 -12
  546. package/src/types/aapi/availability.ts +0 -6
  547. package/src/types/aapi/available-products-request.ts +0 -33
  548. package/src/types/aapi/duration.ts +0 -4
  549. package/src/types/aapi/flight-leg.ts +0 -18
  550. package/src/types/aapi/flight.ts +0 -24
  551. package/src/types/aapi/hotel.ts +0 -36
  552. package/src/types/aapi/index.ts +0 -22
  553. package/src/types/aapi/mollie-payment-request.ts +0 -6
  554. package/src/types/aapi/mollie-payment.ts +0 -3
  555. package/src/types/aapi/option-pax.ts +0 -4
  556. package/src/types/aapi/option.ts +0 -29
  557. package/src/types/aapi/pax.ts +0 -4
  558. package/src/types/aapi/price-detail.ts +0 -8
  559. package/src/types/aapi/regime.ts +0 -5
  560. package/src/types/aapi/traveler-grouping.ts +0 -5
  561. package/src/types/company/agent-print-action-request.ts +0 -11
  562. package/src/types/company/agent-print-action.ts +0 -7
  563. package/src/types/company/index.ts +0 -2
  564. package/src/types/enums/allotment-type.ts +0 -5
  565. package/src/types/enums/availability-search-type.ts +0 -4
  566. package/src/types/enums/dossier-type.ts +0 -6
  567. package/src/types/enums/entry-line-flag.ts +0 -6
  568. package/src/types/enums/entry-line-status.ts +0 -19
  569. package/src/types/enums/entry-status.ts +0 -8
  570. package/src/types/enums/export-status.ts +0 -5
  571. package/src/types/enums/gender.ts +0 -5
  572. package/src/types/enums/index.ts +0 -16
  573. package/src/types/enums/meta-data-type.ts +0 -10
  574. package/src/types/enums/payment-type.ts +0 -6
  575. package/src/types/enums/price-chart-type.ts +0 -4
  576. package/src/types/enums/print-action-group.ts +0 -10
  577. package/src/types/enums/requirement-type.ts +0 -5
  578. package/src/types/enums/room-type.ts +0 -8
  579. package/src/types/enums/sale-type.ts +0 -4
  580. package/src/types/enums/service-type.ts +0 -28
  581. package/src/types/index.ts +0 -27
  582. package/src/types/offer/additional-services.ts +0 -6
  583. package/src/types/offer/address.ts +0 -11
  584. package/src/types/offer/affiliate.ts +0 -5
  585. package/src/types/offer/alternative-flight-data.ts +0 -11
  586. package/src/types/offer/alternative-flight-leg.ts +0 -18
  587. package/src/types/offer/alternative-flight.ts +0 -15
  588. package/src/types/offer/available-package-accommodation.ts +0 -8
  589. package/src/types/offer/available-package-flight.ts +0 -10
  590. package/src/types/offer/available-package-option.ts +0 -18
  591. package/src/types/offer/available-package-pax-price.ts +0 -6
  592. package/src/types/offer/available-package-regime.ts +0 -4
  593. package/src/types/offer/available-package.ts +0 -8
  594. package/src/types/offer/base-price.ts +0 -6
  595. package/src/types/offer/base-prices-from-date-request.ts +0 -12
  596. package/src/types/offer/base-prices-request.ts +0 -12
  597. package/src/types/offer/book-request.ts +0 -38
  598. package/src/types/offer/booking-response.ts +0 -4
  599. package/src/types/offer/booking-v2/index.ts +0 -3
  600. package/src/types/offer/booking-v2/request/bookable-dates-request.ts +0 -4
  601. package/src/types/offer/booking-v2/request/booking-package-address.ts +0 -14
  602. package/src/types/offer/booking-v2/request/booking-package-book-request.ts +0 -22
  603. package/src/types/offer/booking-v2/request/booking-package-destination.ts +0 -9
  604. package/src/types/offer/booking-v2/request/booking-package-details-request.ts +0 -24
  605. package/src/types/offer/booking-v2/request/booking-package-flight-pool-request.ts +0 -13
  606. package/src/types/offer/booking-v2/request/booking-package-request.ts +0 -5
  607. package/src/types/offer/booking-v2/request/booking-package-search-request.ts +0 -29
  608. package/src/types/offer/booking-v2/request/booking-package-update-request.ts +0 -5
  609. package/src/types/offer/booking-v2/request/booking-package-voucher-request.ts +0 -4
  610. package/src/types/offer/booking-v2/request/index.ts +0 -13
  611. package/src/types/offer/booking-v2/request/selected-flight.ts +0 -6
  612. package/src/types/offer/booking-v2/request/selected-hotel.ts +0 -5
  613. package/src/types/offer/booking-v2/request/tour-codes.request.ts +0 -3
  614. package/src/types/offer/booking-v2/response/bookable-dates.ts +0 -4
  615. package/src/types/offer/booking-v2/response/booking-package-allotment-info.ts +0 -17
  616. package/src/types/offer/booking-v2/response/booking-package-dossier.ts +0 -6
  617. package/src/types/offer/booking-v2/response/booking-package-flight-pool.ts +0 -6
  618. package/src/types/offer/booking-v2/response/booking-package-hotel-pool.ts +0 -5
  619. package/src/types/offer/booking-v2/response/booking-package-item.ts +0 -40
  620. package/src/types/offer/booking-v2/response/booking-price-detail.ts +0 -19
  621. package/src/types/offer/booking-v2/response/booking-price-details.ts +0 -10
  622. package/src/types/offer/booking-v2/response/booking-price-per-pax.ts +0 -4
  623. package/src/types/offer/booking-v2/response/booking-product-notification.ts +0 -7
  624. package/src/types/offer/booking-v2/response/booking-travel-agent.ts +0 -7
  625. package/src/types/offer/booking-v2/response/booking-voucher-result.ts +0 -3
  626. package/src/types/offer/booking-v2/response/changed-line.ts +0 -4
  627. package/src/types/offer/booking-v2/response/index.ts +0 -15
  628. package/src/types/offer/booking-v2/response/tide-response.ts +0 -6
  629. package/src/types/offer/booking-v2/response/tour-codes-response.ts +0 -3
  630. package/src/types/offer/booking-v2/shared/booking-option-group.ts +0 -5
  631. package/src/types/offer/booking-v2/shared/booking-option-pax.ts +0 -8
  632. package/src/types/offer/booking-v2/shared/booking-option-unit.ts +0 -7
  633. package/src/types/offer/booking-v2/shared/booking-package-availability.ts +0 -7
  634. package/src/types/offer/booking-v2/shared/booking-package-flight-meta-data-line.ts +0 -17
  635. package/src/types/offer/booking-v2/shared/booking-package-flight-meta-data.ts +0 -11
  636. package/src/types/offer/booking-v2/shared/booking-package-flight.ts +0 -15
  637. package/src/types/offer/booking-v2/shared/booking-package-hotel-option.ts +0 -10
  638. package/src/types/offer/booking-v2/shared/booking-package-hotel-room.ts +0 -6
  639. package/src/types/offer/booking-v2/shared/booking-package-hotel.ts +0 -25
  640. package/src/types/offer/booking-v2/shared/booking-package-line.ts +0 -12
  641. package/src/types/offer/booking-v2/shared/booking-package-option.ts +0 -48
  642. package/src/types/offer/booking-v2/shared/booking-package-pax.ts +0 -19
  643. package/src/types/offer/booking-v2/shared/booking-package-request-room.ts +0 -6
  644. package/src/types/offer/booking-v2/shared/booking-package-room-option.ts +0 -17
  645. package/src/types/offer/booking-v2/shared/booking-package-room.ts +0 -6
  646. package/src/types/offer/booking-v2/shared/booking-package-tag.ts +0 -5
  647. package/src/types/offer/booking-v2/shared/booking-package.ts +0 -13
  648. package/src/types/offer/booking-v2/shared/index.ts +0 -19
  649. package/src/types/offer/booking-v2/shared/per-booking-package-option.ts +0 -10
  650. package/src/types/offer/booking-v2/shared/per-package-option.ts +0 -10
  651. package/src/types/offer/booking-v2/shared/per-pax-package-option.ts +0 -6
  652. package/src/types/offer/booking-v2/shared/per-unit-package-option.ts +0 -8
  653. package/src/types/offer/cached-package-search-result.ts +0 -6
  654. package/src/types/offer/confirmed-dossier-check.ts +0 -6
  655. package/src/types/offer/country-item.ts +0 -4
  656. package/src/types/offer/crm-contact-request.ts +0 -37
  657. package/src/types/offer/customer-request.ts +0 -5
  658. package/src/types/offer/dossier-default-product.ts +0 -14
  659. package/src/types/offer/entry-check-response.ts +0 -5
  660. package/src/types/offer/entry-line-meta-data.ts +0 -5
  661. package/src/types/offer/entry-line-pax.ts +0 -9
  662. package/src/types/offer/entry-line.ts +0 -74
  663. package/src/types/offer/entry-price-line.ts +0 -40
  664. package/src/types/offer/entry-room2.ts +0 -5
  665. package/src/types/offer/entry.ts +0 -60
  666. package/src/types/offer/flight-meta-data-line.ts +0 -16
  667. package/src/types/offer/flight-meta-data.ts +0 -15
  668. package/src/types/offer/flight-pool.ts +0 -6
  669. package/src/types/offer/index.ts +0 -72
  670. package/src/types/offer/language.ts +0 -5
  671. package/src/types/offer/member-confirmation-request.ts +0 -5
  672. package/src/types/offer/member-forgot-password-request.ts +0 -4
  673. package/src/types/offer/member-info.ts +0 -10
  674. package/src/types/offer/member-login-request.ts +0 -4
  675. package/src/types/offer/member-reset-password-request.ts +0 -4
  676. package/src/types/offer/multiroom-book-request.ts +0 -11
  677. package/src/types/offer/note.ts +0 -16
  678. package/src/types/offer/other-product.ts +0 -14
  679. package/src/types/offer/package-book-request-room.ts +0 -6
  680. package/src/types/offer/package-book-request.ts +0 -13
  681. package/src/types/offer/package-flight.ts +0 -14
  682. package/src/types/offer/package-flights.ts +0 -6
  683. package/src/types/offer/package-option.ts +0 -23
  684. package/src/types/offer/package-price-details-request-room.ts +0 -4
  685. package/src/types/offer/package-price-details-request.ts +0 -9
  686. package/src/types/offer/package-room-option.ts +0 -10
  687. package/src/types/offer/package-room.ts +0 -8
  688. package/src/types/offer/package-search-destination.ts +0 -9
  689. package/src/types/offer/package-search-request-date.ts +0 -4
  690. package/src/types/offer/package-search-request-room.ts +0 -5
  691. package/src/types/offer/package-search-request.ts +0 -23
  692. package/src/types/offer/package-search-result.ts +0 -13
  693. package/src/types/offer/package-sub-option.ts +0 -6
  694. package/src/types/offer/page-result.ts +0 -5
  695. package/src/types/offer/pax.ts +0 -30
  696. package/src/types/offer/payment.ts +0 -20
  697. package/src/types/offer/person-country-preference.ts +0 -7
  698. package/src/types/offer/person-location-preference.ts +0 -7
  699. package/src/types/offer/person-oord-preference.ts +0 -7
  700. package/src/types/offer/person-period-date-range-preference.ts +0 -6
  701. package/src/types/offer/person-period-preference.ts +0 -7
  702. package/src/types/offer/person-region-preference.ts +0 -7
  703. package/src/types/offer/person-tour-group-preference.ts +0 -7
  704. package/src/types/offer/price-detail.ts +0 -19
  705. package/src/types/offer/price-per-pax.ts +0 -6
  706. package/src/types/offer/product-notification-result.ts +0 -9
  707. package/src/types/offer/web-contact-form-request.ts +0 -13
  708. package/src/types/offer/web-contact-has-tag-request.ts +0 -4
  709. package/src/types/tide-client-config.ts +0 -4
  710. package/src/utils/api.ts +0 -47
  711. package/src/utils/booking-client.ts +0 -310
  712. package/src/utils/booking-v2-client.ts +0 -210
  713. package/src/utils/common-client.ts +0 -34
  714. package/src/utils/json.ts +0 -26
  715. package/src/utils/member-client.ts +0 -76
  716. package/src/utils/mollie-client.ts +0 -27
  717. package/src/utils/search-client.ts +0 -22
  718. package/src/utils/web-agent-client.ts +0 -49
  719. package/src/utils/web-client.ts +0 -46
  720. package/src/utils/web-contact-client.ts +0 -43
  721. package/src/utils/web-file.ts +0 -24
@@ -1,3 +1,3 @@
1
- {
2
- "CurrentProjectSetting": null
3
- }
1
+ {
2
+ "CurrentProjectSetting": null
3
+ }
@@ -1,7 +1,5 @@
1
- {
2
- "ExpandedNodes": [
3
- ""
4
- ],
5
- "SelectedNode": "\\D:\\2.0. Qite\\Tide-Booking-Component\\tide-booking-component",
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
- name: string;
4
- className?: string;
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
- 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
+ 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
- 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
+ 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
- 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
+ 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
- productName: string;
4
- thumbnailUrl?: string;
5
- handleToggleClick: () => void;
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
- rating: number;
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
- currentStep: number;
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
- 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
+ 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 { BookingPackageRequest, BookingPackageDetailsRequest, BookingPackage, BookingPackageBookRequest, BookingPriceDetails, BookingTravelAgent, TideResponse } from "@qite/tide-client/build/types";
2
- declare const packageApi: {
3
- fetchDetails: (request: BookingPackageRequest<BookingPackageDetailsRequest>, signal: AbortSignal, languageCode?: string) => Promise<TideResponse<BookingPackage>>;
4
- fetchPriceDetails: (request: BookingPackageRequest<BookingPackageBookRequest>, signal: AbortSignal) => Promise<BookingPriceDetails>;
5
- fetchAgents: (signal: AbortSignal) => Promise<BookingTravelAgent[]>;
6
- };
7
- export default packageApi;
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 { BookingAttributes, BookingOptions, ProductAttributes } from "../../types";
2
- import { BookingOptionGroup, BookingOptionPax, BookingOptionUnit, BookingPackage, BookingPackageRoom, BookingTravelAgent, PerBookingPackageOption } from "@qite/tide-client/build/types";
3
- export interface BookingState {
4
- officeId: number;
5
- languageCode: string;
6
- productAttributes?: ProductAttributes;
7
- bookingAttributes?: BookingAttributes;
8
- calculateDeposit: boolean;
9
- bookingNumber?: string;
10
- isRetry: boolean;
11
- package?: BookingPackage;
12
- agents?: BookingTravelAgent[];
13
- isBusy: boolean;
14
- skipPaymentWithAgent: boolean;
15
- generatePaymentUrl: boolean;
16
- isUnavailable?: boolean;
17
- tagIds?: number[];
18
- agentAdressId?: number;
19
- remarks?: string;
20
- voucherCodes?: string[];
21
- bookingOptions: BookingOptions;
22
- bookingType: string;
23
- }
24
- export declare const fetchPackage: import("@reduxjs/toolkit").AsyncThunk<void, void, {}>;
25
- export declare const setOfficeId: import("@reduxjs/toolkit").ActionCreatorWithPayload<number, string>, setLanguageCode: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, setBookingOptions: import("@reduxjs/toolkit").ActionCreatorWithPayload<BookingOptions, string>, setBookingType: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, setProductAttributes: import("@reduxjs/toolkit").ActionCreatorWithPayload<ProductAttributes, string>, setBookingAttributes: import("@reduxjs/toolkit").ActionCreatorWithPayload<BookingAttributes, string>, setCalculateDeposit: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, setBookingNumber: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, setIsRetry: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, setFetchingPackage: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, setPackage: import("@reduxjs/toolkit").ActionCreatorWithPayload<BookingPackage, string>, setPackageRooms: import("@reduxjs/toolkit").ActionCreatorWithPayload<BookingPackageRoom[], string>, setPackageOptionPax: import("@reduxjs/toolkit").ActionCreatorWithPayload<BookingOptionPax[], string>, setPackageOptionUnits: import("@reduxjs/toolkit").ActionCreatorWithPayload<BookingOptionUnit[], string>, setPackageGroups: import("@reduxjs/toolkit").ActionCreatorWithPayload<BookingOptionGroup<PerBookingPackageOption>[], string>, setSkipPayment: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, setGeneratePaymentUrl: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, setTagIds: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number[] | undefined, string>, setAgentAdressId: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number | undefined, string>, setBookingRemarks: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, setVoucherCodes: import("@reduxjs/toolkit").ActionCreatorWithPayload<string[], string>;
26
- declare const _default: import("redux").Reducer<BookingState, import("redux").AnyAction>;
27
- export default _default;
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
- productCode: string;
4
- productName: string;
5
- thumbnailUrl?: string;
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;