mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
refactor: Use NodeConnectionType consistently across the code base (no-changelog) (#10595)
This commit is contained in:
@@ -11,7 +11,7 @@ import type {
|
||||
ITriggerResponse,
|
||||
IRun,
|
||||
} from 'n8n-workflow';
|
||||
import { createDeferredPromise, NodeOperationError } from 'n8n-workflow';
|
||||
import { createDeferredPromise, NodeConnectionType, NodeOperationError } from 'n8n-workflow';
|
||||
|
||||
export class KafkaTrigger implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
@@ -25,7 +25,7 @@ export class KafkaTrigger implements INodeType {
|
||||
name: 'Kafka Trigger',
|
||||
},
|
||||
inputs: [],
|
||||
outputs: ['main'],
|
||||
outputs: [NodeConnectionType.Main],
|
||||
credentials: [
|
||||
{
|
||||
name: 'kafka',
|
||||
|
||||
Reference in New Issue
Block a user