cannoli-interfaces
Version:
Interfaces de Projetos Cannoli
47 lines (46 loc) • 1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EIFoodEventCodes = void 0;
var EIFoodEventCodes;
(function (EIFoodEventCodes) {
// #region ORDER_STATUS
/**
* PLACED
*/
EIFoodEventCodes["PLC"] = "PLC";
/**
* CONFIRMED
*/
EIFoodEventCodes["CFM"] = "CFM";
/**
* SEPARATION_STARTED
*/
EIFoodEventCodes["SPS"] = "SPS";
/**
* SEPARATION_ENDED
*/
EIFoodEventCodes["SPE"] = "SPE";
/**
* READY_TO_PICKUP
*/
EIFoodEventCodes["RTP"] = "RTP";
/**
* DISPATCHED
*/
EIFoodEventCodes["DSP"] = "DSP";
/**
* CONCLUDED
*/
EIFoodEventCodes["CON"] = "CON";
/**
* CANCELLED
*/
EIFoodEventCodes["CAN"] = "CAN";
// #endregion
// #region DELIVERY
/**
* DELIVERY_DROP_CODE_REQUESTED
*/
EIFoodEventCodes["DDCR"] = "DDCR";
// #endregion
})(EIFoodEventCodes || (exports.EIFoodEventCodes = EIFoodEventCodes = {}));