refactor(SW-2826): align urls * refactor(SW-2826): align urls Approved-by: Anton Gunnarsson
25 lines
690 B
TypeScript
25 lines
690 B
TypeScript
import {
|
|
bookingTerms,
|
|
customerService,
|
|
privacy,
|
|
scandicFriends,
|
|
} from "@scandic-hotels/common/constants/routes/customerService"
|
|
import { myStay } from "@scandic-hotels/common/constants/routes/myStay"
|
|
|
|
import type { BookingFlowConfig } from "@scandic-hotels/booking-flow/BookingFlowConfig"
|
|
|
|
export const bookingFlowConfig: BookingFlowConfig = {
|
|
bookingCodeEnabled: true,
|
|
redemptionType: "scandic",
|
|
savedCreditCardsEnabled: true,
|
|
enterDetailsMembershipIdInputLocation: "form",
|
|
variant: "scandic",
|
|
routes: {
|
|
myStay,
|
|
customerService,
|
|
bookingTermsAndConditions: bookingTerms,
|
|
membershipTermsAndConditions: scandicFriends,
|
|
privacyPolicy: privacy,
|
|
},
|
|
}
|