mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Enforce type checking in all node params (#2509)
This commit is contained in:
@@ -6,7 +6,7 @@ import {
|
||||
activeCampaignDefaultGetAllProperties,
|
||||
} from './GenericFunctions';
|
||||
|
||||
export const connectionOperations = [
|
||||
export const connectionOperations: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
@@ -49,9 +49,9 @@ export const connectionOperations = [
|
||||
description: 'The operation to perform.',
|
||||
},
|
||||
|
||||
] as INodeProperties[];
|
||||
];
|
||||
|
||||
export const connectionFields = [
|
||||
export const connectionFields: INodeProperties[] = [
|
||||
// ----------------------------------
|
||||
// connection:create
|
||||
// ----------------------------------
|
||||
@@ -286,4 +286,4 @@ export const connectionFields = [
|
||||
// ----------------------------------
|
||||
...activeCampaignDefaultGetAllProperties('connection', 'getAll'),
|
||||
|
||||
] as INodeProperties[];
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user