Skip to content

Commit 270509a

Browse files
committed
fix: use NodeConnectionTypes instead of NodeConnectionType
1 parent 2c6bc01 commit 270509a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nodes/BrightData/BrightData.node.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { INodeType, INodeTypeDescription, NodeConnectionType } from 'n8n-workflow';
1+
import { INodeType, INodeTypeDescription, NodeConnectionTypes } from 'n8n-workflow';
22

33
import { webUnlockerOperations, webUnlockerFields } from './WebUnlockerDescription';
44
import {
@@ -22,8 +22,8 @@ export class BrightData implements INodeType {
2222
name: 'BrightData',
2323
},
2424
usableAsTool: true,
25-
inputs: [NodeConnectionType.Main],
26-
outputs: [NodeConnectionType.Main],
25+
inputs: [NodeConnectionTypes.Main],
26+
outputs: [NodeConnectionTypes.Main],
2727
credentials: [
2828
{
2929
name: 'brightdataApi',

0 commit comments

Comments
 (0)