bungie-net-core
Version:
An easy way to interact with the Bungie.net API
24 lines (23 loc) • 502 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.VendorItemStatus = void 0;
const VendorItemStatus = {
Success: 0,
NoInventorySpace: 1,
NoFunds: 2,
NoProgression: 4,
NoUnlock: 8,
NoQuantity: 16,
OutsidePurchaseWindow: 32,
NotAvailable: 64,
UniquenessViolation: 128,
UnknownError: 256,
AlreadySelling: 512,
Unsellable: 1024,
SellingInhibited: 2048,
AlreadyOwned: 4096,
DisplayOnly: 8192
};
exports.VendorItemStatus = VendorItemStatus;