mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
feat: Add Required path name mapping to multiple nodes (#5369)
* ✨ Add requiresDataPath to Set * Add Data path mapping to rename keys * Add required path name to airtable * Add required data path * Add required data path to airtable trigger * Fix multiple keyword for required path * ⚡️use multiple for Airtable ignore fields --------- Co-authored-by: Marcus <marcus@n8n.io>
This commit is contained in:
@@ -52,6 +52,7 @@ export class Set implements INodeType {
|
||||
displayName: 'Name',
|
||||
name: 'name',
|
||||
type: 'string',
|
||||
requiresDataPath: 'single',
|
||||
default: 'propertyName',
|
||||
description:
|
||||
'Name of the property to write data to. Supports dot-notation. Example: "data.person[0].name"',
|
||||
@@ -75,6 +76,7 @@ export class Set implements INodeType {
|
||||
name: 'name',
|
||||
type: 'string',
|
||||
default: 'propertyName',
|
||||
requiresDataPath: 'single',
|
||||
description:
|
||||
'Name of the property to write data to. Supports dot-notation. Example: "data.person[0].name"',
|
||||
},
|
||||
@@ -96,6 +98,7 @@ export class Set implements INodeType {
|
||||
name: 'name',
|
||||
type: 'string',
|
||||
default: 'propertyName',
|
||||
requiresDataPath: 'single',
|
||||
description:
|
||||
'Name of the property to write data to. Supports dot-notation. Example: "data.person[0].name"',
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user