SW-3396 move my saved cards to design system * Move PaymentOption, PaymentOptionsGroup, PaymentIcons and MySavedCards (renamed SelectPaymentMethod) to design-system * Remove unused svg payment icons * cleanu * cleanup * trackUpdatePaymentMethod: remove hotelId argument that was never passed Approved-by: Anton Gunnarsson
16 lines
362 B
TypeScript
16 lines
362 B
TypeScript
export const SEARCHTYPE = "searchtype"
|
|
|
|
export const MEMBERSHIP_FAILED_ERROR = "MembershipFailedError"
|
|
|
|
export enum CancellationRuleEnum {
|
|
CancellableBefore6PM = "CancellableBefore6PM",
|
|
NonCancellable = "NonCancellable",
|
|
Changeable = "Changeable",
|
|
}
|
|
|
|
export enum PaymentCallbackStatusEnum {
|
|
Success = "success",
|
|
Error = "error",
|
|
Cancel = "cancel",
|
|
}
|