mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08: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:
parent
d41546b899
commit
09a7cf0980
|
@ -24,52 +24,52 @@ export const descriptions: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
name: 'Append',
|
||||
value: 'append',
|
||||
description: 'Append data to a sheet',
|
||||
action: 'Append data to a sheet',
|
||||
name: 'Append or Update Row',
|
||||
value: 'appendOrUpdate',
|
||||
description: 'Append a new row or update an existing one (upsert)',
|
||||
action: 'Append or update row in sheet',
|
||||
},
|
||||
{
|
||||
name: 'Append or Update',
|
||||
value: 'appendOrUpdate',
|
||||
description: 'Append a new row or update the current one if it already exists (upsert)',
|
||||
action: 'Append or update a sheet',
|
||||
name: 'Append Row',
|
||||
value: 'append',
|
||||
description: 'Create a new row in a sheet',
|
||||
action: 'Append row in sheet',
|
||||
},
|
||||
{
|
||||
name: 'Clear',
|
||||
value: 'clear',
|
||||
description: 'Clear data from a sheet',
|
||||
action: 'Clear a sheet',
|
||||
description: 'Delete all the contents or a part of a sheet',
|
||||
action: 'Clear sheet',
|
||||
},
|
||||
{
|
||||
name: 'Create',
|
||||
value: 'create',
|
||||
description: 'Create a new sheet',
|
||||
action: 'Create a sheet',
|
||||
action: 'Create sheet',
|
||||
},
|
||||
{
|
||||
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',
|
||||
description: 'Remove a sheet',
|
||||
action: 'Remove a sheet',
|
||||
description: 'Permanently delete 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',
|
||||
description: 'Update rows in a sheet',
|
||||
action: 'Update a sheet',
|
||||
description: 'Update an existing row in a sheet',
|
||||
action: 'Update row in sheet',
|
||||
},
|
||||
],
|
||||
default: 'read',
|
||||
|
|
|
@ -20,13 +20,13 @@ export const descriptions: INodeProperties[] = [
|
|||
name: 'Create',
|
||||
value: 'create',
|
||||
description: 'Create a spreadsheet',
|
||||
action: 'Create a spreadsheet',
|
||||
action: 'Create spreadsheet',
|
||||
},
|
||||
{
|
||||
name: 'Delete',
|
||||
value: 'deleteSpreadsheet',
|
||||
description: 'Delete a spreadsheet',
|
||||
action: 'Delete a spreadsheet',
|
||||
action: 'Delete spreadsheet',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
|
Loading…
Reference in a new issue