diff --git a/packages/nodes-base/nodes/Xml.node.ts b/packages/nodes-base/nodes/Xml.node.ts index affa194562..f684228d57 100644 --- a/packages/nodes-base/nodes/Xml.node.ts +++ b/packages/nodes-base/nodes/Xml.node.ts @@ -90,6 +90,13 @@ export class Xml implements INodeType { default: '$', description: 'Prefix that is used to access the attributes.', }, + { + displayName: 'cdata', + name: 'cdata', + type: 'boolean', + default: false, + description: ' wrap text nodes in instead of escaping when necessary. Does not add if it is not required.', + }, { displayName: 'Character Key', name: 'charkey', @@ -104,6 +111,13 @@ export class Xml implements INodeType { default: false, description: 'Omit the XML header.', }, + { + displayName: 'Root Name', + name: 'rootName', + type: 'string', + default: 'root', + description: 'Root element name to be used.', + }, ], },