Skip to content

Commit e775890

Browse files
Implement insert and move dimension actions for Google Sheets component (#18973)
* Implement insert and move dimension actions for Google Sheets component - Added new actions: Insert Dimension and Move Dimension, allowing users to manipulate dimensions within spreadsheets. - Updated the Google Sheets component to version 0.10.0 to reflect these additions. - Refactored imports for better organization and clarity. * Update version numbers for multiple Google Sheets actions and sources - Bumped version numbers for various actions, including: - Add Column (0.1.13 to 0.1.14) - Add Multiple Rows (0.2.16 to 0.2.17) - Add Single Row (2.1.19 to 2.1.20) - Clear Cell (0.1.17 to 0.1.18) - Clear Rows (0.1.15 to 0.1.16) - Copy Worksheet (0.1.13 to 0.1.14) - Create Spreadsheet (0.1.15 to 0.1.16) - Create Worksheet (0.1.13 to 0.1.14) - Delete Rows (0.0.13 to 0.0.14) - Delete Worksheet (0.1.13 to 0.1.14) - Find Row (0.2.16 to 0.2.17) - Get Cell (0.1.15 to 0.1.16) - Get Current User (0.0.1 to 0.0.2) - Get Spreadsheet by ID (0.1.14 to 0.1.15) - Get Values in Range (0.1.15 to 0.1.16) - Insert Anchored Note (0.1.13 to 0.1.14) - Insert Comment (0.1.14 to 0.1.15) - List Worksheets (0.1.13 to 0.1.14) - Update Cell (0.1.15 to 0.1.16) - Update Formatting (0.0.1 to 0.0.2) - Update Multiple Rows (0.1.15 to 0.1.16) - Update Row (0.1.17 to 0.1.18) - Upsert Row (0.1.17 to 0.1.18) - Updated version numbers for sources, including: - New Comment (0.1.2 to 0.1.3) - New Row Added (0.2.2 to 0.2.3) - New Row Added (Polling) (0.1.2 to 0.1.3) - New Updates (0.3.2 to 0.3.3) - New Worksheet (0.2.2 to 0.2.3) * Update components/google_sheets/actions/move-dimension/move-dimension.mjs Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent cacd514 commit e775890

File tree

32 files changed

+225
-34
lines changed

32 files changed

+225
-34
lines changed

components/google_sheets/actions/add-column/add-column.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_sheets-add-column",
55
name: "Create Column",
66
description: "Create a new column in a spreadsheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchUpdate)",
7-
version: "0.1.13",
7+
version: "0.1.14",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

components/google_sheets/actions/add-multiple-rows/add-multiple-rows.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default {
1111
key: "google_sheets-add-multiple-rows",
1212
name: "Add Multiple Rows",
1313
description: "Add multiple rows of data to a Google Sheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append)",
14-
version: "0.2.16",
14+
version: "0.2.17",
1515
annotations: {
1616
destructiveHint: false,
1717
openWorldHint: true,

components/google_sheets/actions/add-single-row/add-single-row.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default {
1010
key: "google_sheets-add-single-row",
1111
name: "Add Single Row",
1212
description: "Add a single row of data to Google Sheets. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append)",
13-
version: "2.1.19",
13+
version: "2.1.20",
1414
annotations: {
1515
destructiveHint: false,
1616
openWorldHint: true,

components/google_sheets/actions/clear-cell/clear-cell.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "google_sheets-clear-cell",
88
name: "Clear Cell",
99
description: "Delete the content of a specific cell in a spreadsheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/clear)",
10-
version: "0.1.17",
10+
version: "0.1.18",
1111
annotations: {
1212
destructiveHint: true,
1313
openWorldHint: true,

components/google_sheets/actions/clear-rows/clear-rows.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "google_sheets-clear-rows",
88
name: "Clear Rows",
99
description: "Delete the content of a row or rows in a spreadsheet. Deleted rows will appear as blank rows. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/clear)",
10-
version: "0.1.15",
10+
version: "0.1.16",
1111
annotations: {
1212
destructiveHint: true,
1313
openWorldHint: true,

components/google_sheets/actions/copy-worksheet/copy-worksheet.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_sheets-copy-worksheet",
55
name: "Copy Worksheet",
66
description: "Copy an existing worksheet to another Google Sheets file. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.sheets/copyTo)",
7-
version: "0.1.13",
7+
version: "0.1.14",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

components/google_sheets/actions/create-spreadsheet/create-spreadsheet.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_sheets-create-spreadsheet",
55
name: "Create Spreadsheet",
66
description: "Create a blank spreadsheet or duplicate an existing spreadsheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/create)",
7-
version: "0.1.15",
7+
version: "0.1.16",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

components/google_sheets/actions/create-worksheet/create-worksheet.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_sheets-create-worksheet",
55
name: "Create Worksheet",
66
description: "Create a blank worksheet with a title. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchUpdate)",
7-
version: "0.1.13",
7+
version: "0.1.14",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

components/google_sheets/actions/delete-rows/delete-rows.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_sheets-delete-rows",
55
name: "Delete Rows",
66
description: "Deletes the specified rows from a spreadsheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#deletedimensionrequest)",
7-
version: "0.0.13",
7+
version: "0.0.14",
88
annotations: {
99
destructiveHint: true,
1010
openWorldHint: true,

components/google_sheets/actions/delete-worksheet/delete-worksheet.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_sheets-delete-worksheet",
55
name: "Delete Worksheet",
66
description: "Delete a specific worksheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchUpdate)",
7-
version: "0.1.13",
7+
version: "0.1.14",
88
annotations: {
99
destructiveHint: true,
1010
openWorldHint: true,

0 commit comments

Comments
 (0)