mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
docs(Google Sheets Node): Operations naming update (no-changelog) (#7211)
Github issue / Community forum post (link here to close automatically):
This commit is contained in:
@@ -24,52 +24,52 @@ export const descriptions: INodeProperties[] = [
|
|||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Append',
|
name: 'Append or Update Row',
|
||||||
value: 'append',
|
value: 'appendOrUpdate',
|
||||||
description: 'Append data to a sheet',
|
description: 'Append a new row or update an existing one (upsert)',
|
||||||
action: 'Append data to a sheet',
|
action: 'Append or update row in sheet',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Append or Update',
|
name: 'Append Row',
|
||||||
value: 'appendOrUpdate',
|
value: 'append',
|
||||||
description: 'Append a new row or update the current one if it already exists (upsert)',
|
description: 'Create a new row in a sheet',
|
||||||
action: 'Append or update a sheet',
|
action: 'Append row in sheet',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Clear',
|
name: 'Clear',
|
||||||
value: 'clear',
|
value: 'clear',
|
||||||
description: 'Clear data from a sheet',
|
description: 'Delete all the contents or a part of a sheet',
|
||||||
action: 'Clear a sheet',
|
action: 'Clear sheet',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Create',
|
name: 'Create',
|
||||||
value: 'create',
|
value: 'create',
|
||||||
description: 'Create a new sheet',
|
description: 'Create a new sheet',
|
||||||
action: 'Create a sheet',
|
action: 'Create sheet',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Delete',
|
name: 'Delete',
|
||||||
value: 'delete',
|
|
||||||
description: 'Delete columns and rows from a sheet',
|
|
||||||
action: 'Delete a sheet',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Read Rows',
|
|
||||||
value: 'read',
|
|
||||||
description: 'Read all rows in a sheet',
|
|
||||||
action: 'Read all rows',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Remove',
|
|
||||||
value: 'remove',
|
value: 'remove',
|
||||||
description: 'Remove a sheet',
|
description: 'Permanently delete a sheet',
|
||||||
action: 'Remove a sheet',
|
action: 'Delete sheet',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Update',
|
name: 'Delete Rows or Columns',
|
||||||
|
value: 'delete',
|
||||||
|
description: 'Delete columns or rows from a sheet',
|
||||||
|
action: 'Delete rows or columns from sheet',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Get Many Rows',
|
||||||
|
value: 'read',
|
||||||
|
description: 'Retrieves all the rows in a sheet',
|
||||||
|
action: 'Get many rows in sheet',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Update Row',
|
||||||
value: 'update',
|
value: 'update',
|
||||||
description: 'Update rows in a sheet',
|
description: 'Update an existing row in a sheet',
|
||||||
action: 'Update a sheet',
|
action: 'Update row in sheet',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'read',
|
default: 'read',
|
||||||
|
|||||||
@@ -20,13 +20,13 @@ export const descriptions: INodeProperties[] = [
|
|||||||
name: 'Create',
|
name: 'Create',
|
||||||
value: 'create',
|
value: 'create',
|
||||||
description: 'Create a spreadsheet',
|
description: 'Create a spreadsheet',
|
||||||
action: 'Create a spreadsheet',
|
action: 'Create spreadsheet',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Delete',
|
name: 'Delete',
|
||||||
value: 'deleteSpreadsheet',
|
value: 'deleteSpreadsheet',
|
||||||
description: 'Delete a spreadsheet',
|
description: 'Delete a spreadsheet',
|
||||||
action: 'Delete a spreadsheet',
|
action: 'Delete spreadsheet',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'create',
|
default: 'create',
|
||||||
|
|||||||
Reference in New Issue
Block a user