DigitalConsumer.ISS/src/constants/bailoutCode.js
Bill Richardson a80d46a5f6 commit original changes for NextGen YMMS
some random auto formatting
2026-06-29 15:15:12 -04:00

26 lines
741 B
JavaScript

// When adding a new bailout, the Digital Consumer Order Service must also be updated to map the new bailout code to the SV2BailoutCode
const bailoutCode = Object.freeze({
Unknown: 0,
SaveSessionError: 1,
VehicleNotFound: 2,
VehicleVinLookupError: 3,
CoverageStatementInvalidState: 4,
DoNotSeeMyShop: 5,
PricingResponseError: 6,
TPANotEnabled: 7,
RequestCallback: 8,
HeavyTruckVehicle: 9,
NoPartsAvailable: 10,
PartsServiceError: 11,
SafeliteNotTheProvider: 12,
VehicleYMMSLookupError: 13,
ApplicationError: 14,
ApiError: 15,
RouterError: 16,
CoverageCancelledByUser: 17,
FmgPartNotFound: 18,
NeedHelp: 19,
YMMNotFound: 20,
});
export default bailoutCode;