From 97e39c39d9f5c69748be124116501db6a7582ed6 Mon Sep 17 00:00:00 2001 From: Jon Date: Mon, 11 Dec 2023 10:10:03 +0000 Subject: [PATCH] docs: Replace references to set node (no-changelog) (#7973) ## Summary This replaces the set node references with edit fields. Ref: https://n8nio.slack.com/archives/C036PA5D42D/p1702040900165709 --- packages/editor-ui/src/plugins/i18n/locales/en.json | 2 +- .../Google/BigQuery/v2/actions/database/insert.operation.ts | 2 +- .../nodes/Google/Sheet/v2/actions/sheet/append.operation.ts | 2 +- .../nodes/MySql/v2/actions/database/insert.operation.ts | 2 +- .../nodes/MySql/v2/actions/database/update.operation.ts | 2 +- .../nodes/MySql/v2/actions/database/upsert.operation.ts | 2 +- packages/nodes-base/nodes/NocoDB/OperationDescription.ts | 2 +- .../nodes/Postgres/v2/actions/database/insert.operation.ts | 2 +- .../nodes/Postgres/v2/actions/database/update.operation.ts | 2 +- .../nodes/Postgres/v2/actions/database/upsert.operation.ts | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/editor-ui/src/plugins/i18n/locales/en.json b/packages/editor-ui/src/plugins/i18n/locales/en.json index 004bf67ac1..8b2687f8de 100644 --- a/packages/editor-ui/src/plugins/i18n/locales/en.json +++ b/packages/editor-ui/src/plugins/i18n/locales/en.json @@ -1271,7 +1271,7 @@ "resourceLocator.openResource": "Open in {appName}", "resourceLocator.search.placeholder": "Search...", "resourceLocator.url.placeholder": "Enter URL...", - "resourceMapper.autoMappingNotice": "In this mode, make sure the incoming data fields are named the same as the {fieldWord} in {serviceName}. (Use a 'set' node before this node to change them if required.)", + "resourceMapper.autoMappingNotice": "In this mode, make sure the incoming data fields are named the same as the {fieldWord} in {serviceName}. (Use an 'Edit Fields' node before this node to change them if required.)", "resourceMapper.mappingMode.label": "Mapping Column Mode", "resourceMapper.mappingMode.defineBelow.name": "Map Each Column Manually", "resourceMapper.mappingMode.defineBelow.description": "Set the value for each {fieldWord}", diff --git a/packages/nodes-base/nodes/Google/BigQuery/v2/actions/database/insert.operation.ts b/packages/nodes-base/nodes/Google/BigQuery/v2/actions/database/insert.operation.ts index 2053e48fb4..8a9abeaa61 100644 --- a/packages/nodes-base/nodes/Google/BigQuery/v2/actions/database/insert.operation.ts +++ b/packages/nodes-base/nodes/Google/BigQuery/v2/actions/database/insert.operation.ts @@ -33,7 +33,7 @@ const properties: INodeProperties[] = [ }, { displayName: - "In this mode, make sure the incoming data fields are named the same as the columns in BigQuery. (Use a 'set' node before this node to change them if required.)", + "In this mode, make sure the incoming data fields are named the same as the columns in BigQuery. (Use an 'Edit Fields' node before this node to change them if required.)", name: 'info', type: 'notice', default: '', diff --git a/packages/nodes-base/nodes/Google/Sheet/v2/actions/sheet/append.operation.ts b/packages/nodes-base/nodes/Google/Sheet/v2/actions/sheet/append.operation.ts index 2029bcc1d4..afb463c225 100644 --- a/packages/nodes-base/nodes/Google/Sheet/v2/actions/sheet/append.operation.ts +++ b/packages/nodes-base/nodes/Google/Sheet/v2/actions/sheet/append.operation.ts @@ -46,7 +46,7 @@ export const description: SheetProperties = [ }, { displayName: - "In this mode, make sure the incoming data is named the same as the columns in your Sheet. (Use a 'set' node before this node to change it if required.)", + "In this mode, make sure the incoming data is named the same as the columns in your Sheet. (Use an 'Edit Fields' node before this node to change it if required.)", name: 'autoMapNotice', type: 'notice', default: '', diff --git a/packages/nodes-base/nodes/MySql/v2/actions/database/insert.operation.ts b/packages/nodes-base/nodes/MySql/v2/actions/database/insert.operation.ts index 537891e17e..23a79d3ab1 100644 --- a/packages/nodes-base/nodes/MySql/v2/actions/database/insert.operation.ts +++ b/packages/nodes-base/nodes/MySql/v2/actions/database/insert.operation.ts @@ -42,7 +42,7 @@ const properties: INodeProperties[] = [ }, { displayName: ` - In this mode, make sure incoming data fields are named the same as the columns in your table. If needed, use a 'Set' node before this node to change the field names. + In this mode, make sure incoming data fields are named the same as the columns in your table. If needed, use an 'Edit Fields' node before this node to change the field names. `, name: 'notice', type: 'notice', diff --git a/packages/nodes-base/nodes/MySql/v2/actions/database/update.operation.ts b/packages/nodes-base/nodes/MySql/v2/actions/database/update.operation.ts index 184e2385b4..a27466680a 100644 --- a/packages/nodes-base/nodes/MySql/v2/actions/database/update.operation.ts +++ b/packages/nodes-base/nodes/MySql/v2/actions/database/update.operation.ts @@ -36,7 +36,7 @@ const properties: INodeProperties[] = [ }, { displayName: ` - In this mode, make sure incoming data fields are named the same as the columns in your table. If needed, use a 'Set' node before this node to change the field names. + In this mode, make sure incoming data fields are named the same as the columns in your table. If needed, use an 'Edit Fields' node before this node to change the field names. `, name: 'notice', type: 'notice', diff --git a/packages/nodes-base/nodes/MySql/v2/actions/database/upsert.operation.ts b/packages/nodes-base/nodes/MySql/v2/actions/database/upsert.operation.ts index d59eb868a8..73ccc0f14d 100644 --- a/packages/nodes-base/nodes/MySql/v2/actions/database/upsert.operation.ts +++ b/packages/nodes-base/nodes/MySql/v2/actions/database/upsert.operation.ts @@ -36,7 +36,7 @@ const properties: INodeProperties[] = [ }, { displayName: ` - In this mode, make sure incoming data fields are named the same as the columns in your table. If needed, use a 'Set' node before this node to change the field names. + In this mode, make sure incoming data fields are named the same as the columns in your table. If needed, use an 'Edit Fields' node before this node to change the field names. `, name: 'notice', type: 'notice', diff --git a/packages/nodes-base/nodes/NocoDB/OperationDescription.ts b/packages/nodes-base/nodes/NocoDB/OperationDescription.ts index aaf43206c8..1c73d3fa6a 100644 --- a/packages/nodes-base/nodes/NocoDB/OperationDescription.ts +++ b/packages/nodes-base/nodes/NocoDB/OperationDescription.ts @@ -430,7 +430,7 @@ export const operationFields: INodeProperties[] = [ }, { displayName: - "In this mode, make sure the incoming data fields are named the same as the columns in NocoDB. (Use a 'set' node before this node to change them if required.)", + "In this mode, make sure the incoming data fields are named the same as the columns in NocoDB. (Use an 'Edit Fields' node before this node to change them if required.)", name: 'info', type: 'notice', default: '', diff --git a/packages/nodes-base/nodes/Postgres/v2/actions/database/insert.operation.ts b/packages/nodes-base/nodes/Postgres/v2/actions/database/insert.operation.ts index de2be0baee..d712222b03 100644 --- a/packages/nodes-base/nodes/Postgres/v2/actions/database/insert.operation.ts +++ b/packages/nodes-base/nodes/Postgres/v2/actions/database/insert.operation.ts @@ -52,7 +52,7 @@ const properties: INodeProperties[] = [ }, { displayName: ` - In this mode, make sure incoming data fields are named the same as the columns in your table. If needed, use a 'Set' node before this node to change the field names. + In this mode, make sure incoming data fields are named the same as the columns in your table. If needed, use an 'Edit Fields' node before this node to change the field names. `, name: 'notice', type: 'notice', diff --git a/packages/nodes-base/nodes/Postgres/v2/actions/database/update.operation.ts b/packages/nodes-base/nodes/Postgres/v2/actions/database/update.operation.ts index fad57215d4..e9f9da6825 100644 --- a/packages/nodes-base/nodes/Postgres/v2/actions/database/update.operation.ts +++ b/packages/nodes-base/nodes/Postgres/v2/actions/database/update.operation.ts @@ -54,7 +54,7 @@ const properties: INodeProperties[] = [ }, { displayName: ` - In this mode, make sure incoming data fields are named the same as the columns in your table. If needed, use a 'Set' node before this node to change the field names. + In this mode, make sure incoming data fields are named the same as the columns in your table. If needed, use an 'Edit Fields' node before this node to change the field names. `, name: 'notice', type: 'notice', diff --git a/packages/nodes-base/nodes/Postgres/v2/actions/database/upsert.operation.ts b/packages/nodes-base/nodes/Postgres/v2/actions/database/upsert.operation.ts index ef817cdd5c..8af21b9c37 100644 --- a/packages/nodes-base/nodes/Postgres/v2/actions/database/upsert.operation.ts +++ b/packages/nodes-base/nodes/Postgres/v2/actions/database/upsert.operation.ts @@ -53,7 +53,7 @@ const properties: INodeProperties[] = [ }, { displayName: ` - In this mode, make sure incoming data fields are named the same as the columns in your table. If needed, use a 'Set' node before this node to change the field names. + In this mode, make sure incoming data fields are named the same as the columns in your table. If needed, use an 'Edit Fields' node before this node to change the field names. `, name: 'notice', type: 'notice',