diff --git a/packages/nodes-base/nodes/Google/Sheet/v2/actions/sheet/Sheet.resource.ts b/packages/nodes-base/nodes/Google/Sheet/v2/actions/sheet/Sheet.resource.ts index ea56f9c6c3..47c653f289 100644 --- a/packages/nodes-base/nodes/Google/Sheet/v2/actions/sheet/Sheet.resource.ts +++ b/packages/nodes-base/nodes/Google/Sheet/v2/actions/sheet/Sheet.resource.ts @@ -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', diff --git a/packages/nodes-base/nodes/Google/Sheet/v2/actions/spreadsheet/SpreadSheet.resource.ts b/packages/nodes-base/nodes/Google/Sheet/v2/actions/spreadsheet/SpreadSheet.resource.ts index f7243fa9c1..b8c82e4944 100644 --- a/packages/nodes-base/nodes/Google/Sheet/v2/actions/spreadsheet/SpreadSheet.resource.ts +++ b/packages/nodes-base/nodes/Google/Sheet/v2/actions/spreadsheet/SpreadSheet.resource.ts @@ -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',