UNPKG

@constructor-io/constructorio-connect-cli

Version:

CLI tool to enable users to interface with the Constructor Connect Ecosystem

14 lines (13 loc) 497 B
"use strict"; /** * Returns true if the connection needs mapping fixture type * @param partner The connection partner * @returns boolean */ Object.defineProperty(exports, "__esModule", { value: true }); exports.partnersThatNeedMapping = void 0; exports.checkIfConnectionNeedsMapping = checkIfConnectionNeedsMapping; exports.partnersThatNeedMapping = ["omni", "omni-bloomreach"]; function checkIfConnectionNeedsMapping(partner) { return exports.partnersThatNeedMapping.includes(partner); }