channelape-sdk
Version:
A client for interacting with ChannelApe's API
16 lines • 709 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InventoryStatus = void 0;
var InventoryStatus;
(function (InventoryStatus) {
InventoryStatus["AVAILABLE_TO_SELL"] = "AVAILABLE_TO_SELL";
InventoryStatus["ON_HOLD"] = "ON_HOLD";
InventoryStatus["ON_HAND"] = "ON_HAND";
InventoryStatus["COMMITTED"] = "COMMITTED";
InventoryStatus["ON_ORDER"] = "ON_ORDER";
InventoryStatus["RESERVE"] = "RESERVE";
InventoryStatus["INCOMING"] = "INCOMING";
InventoryStatus["UNAVAILABLE"] = "UNAVAILABLE";
})(InventoryStatus = exports.InventoryStatus || (exports.InventoryStatus = {}));
exports.default = InventoryStatus;
//# sourceMappingURL=InventoryStatus.js.map