mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
refactor: Use NodeConnectionType consistently across the code base (no-changelog) (#10595)
This commit is contained in:
@@ -7,6 +7,7 @@ import type {
|
||||
INodeType,
|
||||
INodeTypeDescription,
|
||||
} from 'n8n-workflow';
|
||||
import { NodeConnectionType } from 'n8n-workflow';
|
||||
|
||||
import type { IField } from './GenericFunctions';
|
||||
import {
|
||||
@@ -32,8 +33,8 @@ export class MicrosoftDynamicsCrm implements INodeType {
|
||||
defaults: {
|
||||
name: 'Microsoft Dynamics CRM',
|
||||
},
|
||||
inputs: ['main'],
|
||||
outputs: ['main'],
|
||||
inputs: [NodeConnectionType.Main],
|
||||
outputs: [NodeConnectionType.Main],
|
||||
credentials: [
|
||||
{
|
||||
name: 'microsoftDynamicsOAuth2Api',
|
||||
|
||||
Reference in New Issue
Block a user