n8n-nodes-base
Version:
Base nodes of n8n
14 lines • 516 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BATCH_MODE = exports.SINGLE = exports.DATA_MODE = exports.AUTO_MAP = void 0;
exports.AUTO_MAP = 'autoMapInputData';
const MANUAL = 'defineBelow';
exports.DATA_MODE = {
AUTO_MAP: exports.AUTO_MAP,
MANUAL,
};
exports.SINGLE = 'single';
const TRANSACTION = 'transaction';
const INDEPENDENTLY = 'independently';
exports.BATCH_MODE = { SINGLE: exports.SINGLE, TRANSACTION, INDEPENDENTLY };
//# sourceMappingURL=interfaces.js.map