feat(SW-3514): Add variant of join friends card with membership id input * Move membershipId input in enter details to join card Add booking flow feature flag to move membershipId into join card and hide login button. Currently only applies to first room. * Add sas join card to multiroom Approved-by: Hrishikesh Vaipurkar
19 lines
781 B
TypeScript
19 lines
781 B
TypeScript
import { bookingTermsAndConditionsRoutes } from "@scandic-hotels/common/constants/routes/bookingTermsAndConditionsRoutes"
|
|
import { customerService } from "@scandic-hotels/common/constants/routes/customerService"
|
|
import { myStay } from "@scandic-hotels/common/constants/routes/myStay"
|
|
import { privacyPolicyRoutes } from "@scandic-hotels/common/constants/routes/privacyPolicyRoutes"
|
|
|
|
import type { BookingFlowConfig } from "@scandic-hotels/booking-flow/BookingFlowConfig"
|
|
|
|
export const bookingFlowConfig: BookingFlowConfig = {
|
|
bookingCodeEnabled: true,
|
|
enterDetailsMembershipIdInputLocation: "form",
|
|
variant: "scandic",
|
|
routes: {
|
|
myStay,
|
|
customerService,
|
|
bookingTermsAndConditions: bookingTermsAndConditionsRoutes,
|
|
privacyPolicy: privacyPolicyRoutes,
|
|
},
|
|
}
|