n8n-nodes-chatflow 0.2.11 → 0.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +6 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
//
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
// Точка входа: экспортируем классы, а не пути. Относительные пути
|
|
2
|
+
// будут корректно работать как из исходников, так и после сборки в dist.
|
|
3
|
+
const { ChatflowMessage } = require('./nodes/ChatflowMessage.node.js');
|
|
4
|
+
const { ChatflowApi } = require('./credentials/ChatflowApi.credentials.js');
|
|
5
|
+
exports.nodes = [ChatflowMessage];
|
|
6
|
+
exports.credentials = [ChatflowApi];
|
|
4
7
|
module.exports = { nodes: exports.nodes, credentials: exports.credentials };
|
package/package.json
CHANGED