We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c6bc01 commit 270509aCopy full SHA for 270509a
nodes/BrightData/BrightData.node.ts
@@ -1,4 +1,4 @@
1
-import { INodeType, INodeTypeDescription, NodeConnectionType } from 'n8n-workflow';
+import { INodeType, INodeTypeDescription, NodeConnectionTypes } from 'n8n-workflow';
2
3
import { webUnlockerOperations, webUnlockerFields } from './WebUnlockerDescription';
4
import {
@@ -22,8 +22,8 @@ export class BrightData implements INodeType {
22
name: 'BrightData',
23
},
24
usableAsTool: true,
25
- inputs: [NodeConnectionType.Main],
26
- outputs: [NodeConnectionType.Main],
+ inputs: [NodeConnectionTypes.Main],
+ outputs: [NodeConnectionTypes.Main],
27
credentials: [
28
{
29
name: 'brightdataApi',
0 commit comments