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 { capitalCase, pascalCase } from 'change-case';
|
||||
import moment from 'moment-timezone';
|
||||
@@ -62,8 +63,8 @@ export class Keap implements INodeType {
|
||||
defaults: {
|
||||
name: 'Keap',
|
||||
},
|
||||
inputs: ['main'],
|
||||
outputs: ['main'],
|
||||
inputs: [NodeConnectionType.Main],
|
||||
outputs: [NodeConnectionType.Main],
|
||||
credentials: [
|
||||
{
|
||||
name: 'keapOAuth2Api',
|
||||
|
||||
@@ -8,6 +8,7 @@ import type {
|
||||
INodeTypeDescription,
|
||||
IWebhookResponseData,
|
||||
} from 'n8n-workflow';
|
||||
import { NodeConnectionType } from 'n8n-workflow';
|
||||
|
||||
import { capitalCase } from 'change-case';
|
||||
import { keapApiRequest } from './GenericFunctions';
|
||||
@@ -26,7 +27,7 @@ export class KeapTrigger implements INodeType {
|
||||
name: 'Keap Trigger',
|
||||
},
|
||||
inputs: [],
|
||||
outputs: ['main'],
|
||||
outputs: [NodeConnectionType.Main],
|
||||
credentials: [
|
||||
{
|
||||
name: 'keapOAuth2Api',
|
||||
|
||||
Reference in New Issue
Block a user