From c43aef1a266cc6ccf8f778c290f8cb8ba2ee28cf Mon Sep 17 00:00:00 2001 From: Jon Date: Tue, 17 Sep 2024 16:28:48 +0100 Subject: [PATCH] fix(Contentful Node): Add missing additional fields to entry > get (#10830) --- .../nodes/Contentful/EntryDescription.ts | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/packages/nodes-base/nodes/Contentful/EntryDescription.ts b/packages/nodes-base/nodes/Contentful/EntryDescription.ts index b5820b98cb..2d76804183 100644 --- a/packages/nodes-base/nodes/Contentful/EntryDescription.ts +++ b/packages/nodes-base/nodes/Contentful/EntryDescription.ts @@ -189,4 +189,26 @@ export const fields: INodeProperties[] = [ }, }, }, + { + displayName: 'Additional Fields', + name: 'additionalFields', + type: 'collection', + placeholder: 'Add Field', + default: {}, + displayOptions: { + show: { + resource: [resource.value], + operation: ['get'], + }, + }, + options: [ + { + displayName: 'RAW Data', + name: 'rawData', + type: 'boolean', + default: false, + description: 'Whether the data should be returned RAW instead of parsed', + }, + ], + }, ];