diff --git a/nodes/FriendGrid/FriendGrid.node.ts b/nodes/FriendGrid/FriendGrid.node.ts index 3159c8e..5959897 100644 --- a/nodes/FriendGrid/FriendGrid.node.ts +++ b/nodes/FriendGrid/FriendGrid.node.ts @@ -15,7 +15,7 @@ import { import { contactFields, contactOperations, -} from './ContactDescription'; +} from './descriptions'; import { friendGridApiRequest, diff --git a/nodes/FriendGrid/ContactDescription.ts b/nodes/FriendGrid/descriptions/ContactDescription.ts similarity index 97% rename from nodes/FriendGrid/ContactDescription.ts rename to nodes/FriendGrid/descriptions/ContactDescription.ts index e19775a..1f07eb7 100644 --- a/nodes/FriendGrid/ContactDescription.ts +++ b/nodes/FriendGrid/descriptions/ContactDescription.ts @@ -22,7 +22,7 @@ export const contactOperations = [ }, ], default: 'create', - description: 'The operation to perform.', + description: 'The operation to perform', }, ] as INodeProperties[]; diff --git a/nodes/FriendGrid/descriptions/index.ts b/nodes/FriendGrid/descriptions/index.ts new file mode 100644 index 0000000..c150f91 --- /dev/null +++ b/nodes/FriendGrid/descriptions/index.ts @@ -0,0 +1 @@ +export * from './ContactDescription'; \ No newline at end of file