From b28f0f34f3a7f21de0451aa086ca83add999b5b9 Mon Sep 17 00:00:00 2001 From: Valentina Date: Tue, 1 Feb 2022 13:37:22 +0200 Subject: [PATCH] Add descriptions folder --- nodes/FriendGrid/FriendGrid.node.ts | 2 +- nodes/FriendGrid/{ => descriptions}/ContactDescription.ts | 2 +- nodes/FriendGrid/descriptions/index.ts | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) rename nodes/FriendGrid/{ => descriptions}/ContactDescription.ts (97%) create mode 100644 nodes/FriendGrid/descriptions/index.ts 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