Skip to content

Commit

Permalink
docs(Google Sheets Node): Operations naming update (no-changelog) (#7211
Browse files Browse the repository at this point in the history
)

Github issue / Community forum post (link here to close automatically):
  • Loading branch information
gandreini authored Sep 20, 2023
1 parent d41546b commit 09a7cf0
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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',
value: 'remove',
description: 'Permanently delete a sheet',
action: 'Delete sheet',
},
{
name: 'Read Rows',
value: 'read',
description: 'Read all rows in a sheet',
action: 'Read all rows',
name: 'Delete Rows or Columns',
value: 'delete',
description: 'Delete columns or rows from a sheet',
action: 'Delete rows or columns from sheet',
},
{
name: 'Remove',
value: 'remove',
description: 'Remove a sheet',
action: 'Remove a sheet',
name: 'Get Many Rows',
value: 'read',
description: 'Retrieves all the rows in a sheet',
action: 'Get many rows in sheet',
},
{
name: 'Update',
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',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 09a7cf0

Please sign in to comment.