@qite/tide-booking-component 1.4.52 → 1.4.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/build-cjs/index.js
CHANGED
|
@@ -31998,7 +31998,7 @@ var QSMContainer = function () {
|
|
|
31998
31998
|
nationality: selectedNationality,
|
|
31999
31999
|
tripType: tripType
|
|
32000
32000
|
};
|
|
32001
|
-
if (askRooms) {
|
|
32001
|
+
if (askRooms && qsmType !== 'flight') {
|
|
32002
32002
|
payload.rooms = rooms;
|
|
32003
32003
|
} else {
|
|
32004
32004
|
payload.travelers = { adults: adults, kids: kids, babies: babies };
|
package/build/build-esm/index.js
CHANGED
|
@@ -31883,7 +31883,7 @@ var QSMContainer = function () {
|
|
|
31883
31883
|
nationality: selectedNationality,
|
|
31884
31884
|
tripType: tripType
|
|
31885
31885
|
};
|
|
31886
|
-
if (askRooms) {
|
|
31886
|
+
if (askRooms && qsmType !== 'flight') {
|
|
31887
31887
|
payload.rooms = rooms;
|
|
31888
31888
|
} else {
|
|
31889
31889
|
payload.travelers = { adults: adults, kids: kids, babies: babies };
|
package/package.json
CHANGED