n8n-nodes-everest-tms
Version:
Everest TMS n8n integration
13 lines (12 loc) • 356 B
JavaScript
// This file is the entry point for the package
// It exports all the nodes and credentials
module.exports = {
// Export nodes
nodeTypes: {
Everest: require('./dist/nodes/Everest/Everest.node.js').Everest,
},
// Export credentials
credentialTypes: {
EverestApi: require('./dist/credentials/EverestApi.credentials.js').EverestApi,
},
};