DigitalConsumer.ISS/src/constants/schedule-constants.js
Bill Richardson 77204cd8d5 service location updates.
SSR-364
SSR-369
SSR-633
SSR-645
SSR-647
SSR-655
2023-09-12 20:03:56 -04:00

13 lines
412 B
JavaScript

const AppointmentTypeStrings = {
IN_SHOP: 'Inshop',
MOBILE: 'Mobile',
DROP_OFF: 'Dropoff'
};
const PREMIUM_FEE_PART_TYPE = 'EARLY BIRD';
const PREMIUM_TIME_SLOT_ID_FLAG = '-PREMIUM';
const RouteCodeFlags = {
ALL_DAY_DROP_OFF: 'ALL DAY DROP OFF',
OVERNIGHT_DROP_OFF: 'OVERNIGHT DROP OFF'
};
export { AppointmentTypeStrings, PREMIUM_TIME_SLOT_ID_FLAG, PREMIUM_FEE_PART_TYPE, RouteCodeFlags };