From 1409f5d65262b9783e690408f5dabd074c709f22 Mon Sep 17 00:00:00 2001 From: Jon Date: Tue, 28 Mar 2023 10:48:09 +0100 Subject: [PATCH] feat(ServiceNow Node): Add support for work notes when updating an incident (#5791) --- .../nodes-base/nodes/ServiceNow/IncidentDescription.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/nodes-base/nodes/ServiceNow/IncidentDescription.ts b/packages/nodes-base/nodes/ServiceNow/IncidentDescription.ts index 60f418673..13ddaa5d1 100644 --- a/packages/nodes-base/nodes/ServiceNow/IncidentDescription.ts +++ b/packages/nodes-base/nodes/ServiceNow/IncidentDescription.ts @@ -663,6 +663,13 @@ export const incidentFields: INodeProperties[] = [ default: 1, description: 'The urgency of the incident', }, + { + displayName: 'Work Notes', + name: 'work_notes', + type: 'string', + default: '', + description: 'Work notes for the incident', + }, ], }, ];