Files
web/apps/scandic-web/constants/bookingFlowConfig.ts
Anton Gunnarsson 1eb70766b4 Merged in feat/sw-3580-redemption-feature-flag (pull request #3045)
feat(SW-3580): Add feature toggle enableRedemption to BookingFlowConfig

* Add feature toggle enableRedemption to BookingFlowConfig

* Update error message


Approved-by: Joakim Jäderberg
2025-11-03 07:57:39 +00:00

22 lines
958 B
TypeScript

import { bookingTermsAndConditionsRoutes } from "@scandic-hotels/common/constants/routes/bookingTermsAndConditionsRoutes"
import { customerService } from "@scandic-hotels/common/constants/routes/customerService"
import { membershipTermsAndConditions } from "@scandic-hotels/common/constants/routes/membershipTermsAndConditions"
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,
redemptionEnabled: true,
enterDetailsMembershipIdInputLocation: "form",
variant: "scandic",
routes: {
myStay,
customerService,
bookingTermsAndConditions: bookingTermsAndConditionsRoutes,
membershipTermsAndConditions,
privacyPolicy: privacyPolicyRoutes,
},
}