@gobolt/models
Version:
This is a shared repository that includes models that should be shared across all BoxKnight services. Do not include anything for the controller, service or repository layers of your application in this package.
35 lines • 1.06 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SpeedPricingType = void 0;
var SpeedPricingType;
(function (SpeedPricingType) {
/**
* Next calendar day
*/
SpeedPricingType["NEXTDAY"] = "NEXTDAY";
/**
* Same calendar day
*/
SpeedPricingType["SAMEDAY"] = "SAMEDAY";
/**
* Given a window of delivery
*/
SpeedPricingType["SCHEDULED"] = "SCHEDULED";
/**
* Delivery window is given once order arrives in the warehouse
*/
SpeedPricingType["CUSTOMER_BOOKING"] = "CUSTOMER_BOOKING";
/**
* Delivery window is a range of days set by a third party
*/
SpeedPricingType["FLEX"] = "FLEX";
/**
* NEXTDAY, BUT ONLY CALCULATE WINDOW WHEN PICKUPREADY
*/
SpeedPricingType["STANDARD"] = "STANDARD";
/**
* NEXTDAY, BUT PICKUP SAME DAY AS DELIVERY
*/
SpeedPricingType["NEXTDAYPLUS"] = "NEXTDAYPLUS";
})(SpeedPricingType || (exports.SpeedPricingType = SpeedPricingType = {}));
//# sourceMappingURL=speedPricingType.js.map