vinmonopolet-ts
Version:
Extracts information on products, categories and stores from Vinmonopolet
8 lines (7 loc) • 550 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.VINMONOPOLET_STORE_URL = exports.VINMONOPOLET_PRODUCT_URL = exports.VINMONOPOLET_SEARCH_URL = void 0;
const VINMONOPOLET_BASE_URL = process.env.VINMONOPOLET_BASE_URL ?? "https://www.vinmonopolet.no";
exports.VINMONOPOLET_SEARCH_URL = VINMONOPOLET_BASE_URL + "/vmpws/v2/vmp/products/search";
exports.VINMONOPOLET_PRODUCT_URL = VINMONOPOLET_BASE_URL + "/vmpws/v3/vmp/products/";
exports.VINMONOPOLET_STORE_URL = VINMONOPOLET_BASE_URL + "/vmpws/v2/vmp/stores";