diff --git a/components/google_sheets/actions/add-column/add-column.mjs b/components/google_sheets/actions/add-column/add-column.mjs index 67373f4d44439..7ce5679480cf8 100644 --- a/components/google_sheets/actions/add-column/add-column.mjs +++ b/components/google_sheets/actions/add-column/add-column.mjs @@ -4,7 +4,7 @@ export default { key: "google_sheets-add-column", name: "Create Column", description: "Create a new column in a spreadsheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchUpdate)", - version: "0.1.13", + version: "0.1.14", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/google_sheets/actions/add-multiple-rows/add-multiple-rows.mjs b/components/google_sheets/actions/add-multiple-rows/add-multiple-rows.mjs index 3aec6c8eb9029..3ddd1705e2d1e 100644 --- a/components/google_sheets/actions/add-multiple-rows/add-multiple-rows.mjs +++ b/components/google_sheets/actions/add-multiple-rows/add-multiple-rows.mjs @@ -11,7 +11,7 @@ export default { key: "google_sheets-add-multiple-rows", name: "Add Multiple Rows", 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)", - version: "0.2.16", + version: "0.2.17", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/google_sheets/actions/add-single-row/add-single-row.mjs b/components/google_sheets/actions/add-single-row/add-single-row.mjs index ce9a20be82d6d..a6eb2e8b395a2 100644 --- a/components/google_sheets/actions/add-single-row/add-single-row.mjs +++ b/components/google_sheets/actions/add-single-row/add-single-row.mjs @@ -10,7 +10,7 @@ export default { key: "google_sheets-add-single-row", name: "Add Single Row", 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)", - version: "2.1.19", + version: "2.1.20", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/google_sheets/actions/clear-cell/clear-cell.mjs b/components/google_sheets/actions/clear-cell/clear-cell.mjs index 540a9c75e1e47..46e9e708fd0c7 100644 --- a/components/google_sheets/actions/clear-cell/clear-cell.mjs +++ b/components/google_sheets/actions/clear-cell/clear-cell.mjs @@ -7,7 +7,7 @@ export default { key: "google_sheets-clear-cell", name: "Clear Cell", 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)", - version: "0.1.17", + version: "0.1.18", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/google_sheets/actions/clear-rows/clear-rows.mjs b/components/google_sheets/actions/clear-rows/clear-rows.mjs index 4b03106f26b33..4c66ee23e6f23 100644 --- a/components/google_sheets/actions/clear-rows/clear-rows.mjs +++ b/components/google_sheets/actions/clear-rows/clear-rows.mjs @@ -7,7 +7,7 @@ export default { key: "google_sheets-clear-rows", name: "Clear Rows", 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)", - version: "0.1.15", + version: "0.1.16", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/google_sheets/actions/copy-worksheet/copy-worksheet.mjs b/components/google_sheets/actions/copy-worksheet/copy-worksheet.mjs index bedb3d623229e..14b145231032d 100644 --- a/components/google_sheets/actions/copy-worksheet/copy-worksheet.mjs +++ b/components/google_sheets/actions/copy-worksheet/copy-worksheet.mjs @@ -4,7 +4,7 @@ export default { key: "google_sheets-copy-worksheet", name: "Copy Worksheet", 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)", - version: "0.1.13", + version: "0.1.14", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/google_sheets/actions/create-spreadsheet/create-spreadsheet.mjs b/components/google_sheets/actions/create-spreadsheet/create-spreadsheet.mjs index bfb4c8fd44f9b..c9c29fd1311eb 100644 --- a/components/google_sheets/actions/create-spreadsheet/create-spreadsheet.mjs +++ b/components/google_sheets/actions/create-spreadsheet/create-spreadsheet.mjs @@ -4,7 +4,7 @@ export default { key: "google_sheets-create-spreadsheet", name: "Create Spreadsheet", description: "Create a blank spreadsheet or duplicate an existing spreadsheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/create)", - version: "0.1.15", + version: "0.1.16", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/google_sheets/actions/create-worksheet/create-worksheet.mjs b/components/google_sheets/actions/create-worksheet/create-worksheet.mjs index a969ee91add02..2afc98e6d1826 100644 --- a/components/google_sheets/actions/create-worksheet/create-worksheet.mjs +++ b/components/google_sheets/actions/create-worksheet/create-worksheet.mjs @@ -4,7 +4,7 @@ export default { key: "google_sheets-create-worksheet", name: "Create Worksheet", description: "Create a blank worksheet with a title. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchUpdate)", - version: "0.1.13", + version: "0.1.14", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/google_sheets/actions/delete-rows/delete-rows.mjs b/components/google_sheets/actions/delete-rows/delete-rows.mjs index 06beb77dee072..30bd825175d1f 100644 --- a/components/google_sheets/actions/delete-rows/delete-rows.mjs +++ b/components/google_sheets/actions/delete-rows/delete-rows.mjs @@ -4,7 +4,7 @@ export default { key: "google_sheets-delete-rows", name: "Delete Rows", description: "Deletes the specified rows from a spreadsheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#deletedimensionrequest)", - version: "0.0.13", + version: "0.0.14", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/google_sheets/actions/delete-worksheet/delete-worksheet.mjs b/components/google_sheets/actions/delete-worksheet/delete-worksheet.mjs index 0390b9fbdc604..83bb254353d4f 100644 --- a/components/google_sheets/actions/delete-worksheet/delete-worksheet.mjs +++ b/components/google_sheets/actions/delete-worksheet/delete-worksheet.mjs @@ -4,7 +4,7 @@ export default { key: "google_sheets-delete-worksheet", name: "Delete Worksheet", description: "Delete a specific worksheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchUpdate)", - version: "0.1.13", + version: "0.1.14", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/google_sheets/actions/find-row/find-row.mjs b/components/google_sheets/actions/find-row/find-row.mjs index 059da6e7fccdd..dc8f0206bb3b1 100644 --- a/components/google_sheets/actions/find-row/find-row.mjs +++ b/components/google_sheets/actions/find-row/find-row.mjs @@ -7,7 +7,7 @@ export default { key: "google_sheets-find-row", name: "Find Row", description: "Find one or more rows by a column and value. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/get)", - version: "0.2.16", + version: "0.2.17", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/google_sheets/actions/get-cell/get-cell.mjs b/components/google_sheets/actions/get-cell/get-cell.mjs index aa0333b3029e4..5581869bc38d1 100644 --- a/components/google_sheets/actions/get-cell/get-cell.mjs +++ b/components/google_sheets/actions/get-cell/get-cell.mjs @@ -7,7 +7,7 @@ export default { key: "google_sheets-get-cell", name: "Get Cell", description: "Fetch the contents of a specific cell in a spreadsheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/get)", - version: "0.1.15", + version: "0.1.16", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/google_sheets/actions/get-current-user/get-current-user.mjs b/components/google_sheets/actions/get-current-user/get-current-user.mjs index c9709a98f80ee..2165c1b6f0fdb 100644 --- a/components/google_sheets/actions/get-current-user/get-current-user.mjs +++ b/components/google_sheets/actions/get-current-user/get-current-user.mjs @@ -6,7 +6,7 @@ export default { key: "google_sheets-get-current-user", name: "Get Current User", description: "Retrieve Google Sheets account metadata for the authenticated user by calling Drive's `about.get`, returning the user profile (display name, email, permission ID) and storage quota information. Helpful when you need to verify which Google account is active, tailor sheet operations to available storage, or give an LLM clear context about the user identity before composing read/write actions. [See the Drive API documentation](https://developers.google.com/drive/api/v3/reference/about/get).", - version: "0.0.1", + version: "0.0.2", type: "action", annotations: { destructiveHint: false, diff --git a/components/google_sheets/actions/get-spreadsheet-by-id/get-spreadsheet-by-id.mjs b/components/google_sheets/actions/get-spreadsheet-by-id/get-spreadsheet-by-id.mjs index 9c32fff3dea65..32364917934e7 100644 --- a/components/google_sheets/actions/get-spreadsheet-by-id/get-spreadsheet-by-id.mjs +++ b/components/google_sheets/actions/get-spreadsheet-by-id/get-spreadsheet-by-id.mjs @@ -4,7 +4,7 @@ export default { key: "google_sheets-get-spreadsheet-by-id", name: "Get Spreadsheet by ID", description: "Returns the spreadsheet at the given ID. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/get) for more information", - version: "0.1.14", + version: "0.1.15", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/google_sheets/actions/get-values-in-range/get-values-in-range.mjs b/components/google_sheets/actions/get-values-in-range/get-values-in-range.mjs index 2f458700f6eb9..b99e8f29b2aab 100644 --- a/components/google_sheets/actions/get-values-in-range/get-values-in-range.mjs +++ b/components/google_sheets/actions/get-values-in-range/get-values-in-range.mjs @@ -7,7 +7,7 @@ export default { key: "google_sheets-get-values-in-range", name: "Get Values in Range", description: "Get all values or values from a range of cells using A1 notation. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/get)", - version: "0.1.15", + version: "0.1.16", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/google_sheets/actions/insert-anchored-note/insert-anchored-note.mjs b/components/google_sheets/actions/insert-anchored-note/insert-anchored-note.mjs index 20bc9d9e39164..efe39b132f2b6 100644 --- a/components/google_sheets/actions/insert-anchored-note/insert-anchored-note.mjs +++ b/components/google_sheets/actions/insert-anchored-note/insert-anchored-note.mjs @@ -5,7 +5,7 @@ export default { key: "google_sheets-insert-anchored-note", name: "Insert an Anchored Note", description: "Insert a note on a spreadsheet cell. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/batchUpdate)", - version: "0.1.13", + version: "0.1.14", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/google_sheets/actions/insert-comment/insert-comment.mjs b/components/google_sheets/actions/insert-comment/insert-comment.mjs index cf1af96093d47..250291fb68c6c 100644 --- a/components/google_sheets/actions/insert-comment/insert-comment.mjs +++ b/components/google_sheets/actions/insert-comment/insert-comment.mjs @@ -4,7 +4,7 @@ export default { key: "google_sheets-insert-comment", name: "Insert Comment", description: "Insert a comment into a spreadsheet. [See the documentation](https://developers.google.com/drive/api/v3/reference/comments/create)", - version: "0.1.14", + version: "0.1.15", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/google_sheets/actions/insert-dimension/insert-dimension.mjs b/components/google_sheets/actions/insert-dimension/insert-dimension.mjs new file mode 100644 index 0000000000000..5c663e44ab766 --- /dev/null +++ b/components/google_sheets/actions/insert-dimension/insert-dimension.mjs @@ -0,0 +1,77 @@ +import app from "../../google_sheets.app.mjs"; + +export default { + key: "google_sheets-insert-dimension", + name: "Insert Dimension", + description: "Insert a dimension into a spreadsheet. [See the documentation](https://developers.google.com/workspace/sheets/api/reference/rest/v4/spreadsheets/request#InsertDimensionRequest)", + version: "0.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, + type: "action", + props: { + app, + drive: { + propDefinition: [ + app, + "watchedDrive", + ], + }, + sheetId: { + propDefinition: [ + app, + "sheetID", + (c) => ({ + driveId: app.methods.getDriveId(c.drive), + }), + ], + }, + dimension: { + type: "string", + label: "Dimension", + description: "The dimension to insert", + options: [ + { + label: "Operates on the rows of a sheet", + value: "ROWS", + }, + { + label: "Operates on the columns of a sheet", + value: "COLUMNS", + }, + ], + }, + startIndex: { + type: "integer", + label: "Start Index", + description: "The start (inclusive) of the span, or not set if unbounded", + optional: true, + }, + endIndex: { + type: "integer", + label: "End Index", + description: "The end (exclusive) of the span", + }, + inheritFromBefore: { + type: "boolean", + label: "Inherit From Before", + description: `Whether dimension properties should be extended from the dimensions before or after the newly inserted dimensions. True to inherit from the dimensions before (in which case the start index must be greater than 0), and false to inherit from the dimensions after. +For example, if row index 0 has red background and row index 1 has a green background, then inserting 2 rows at index 1 can inherit either the green or red background. If **inheritFromBefore** is true, the two new rows will be red (because the row before the insertion point was red), whereas if **inheritFromBefore** is false, the two new rows will be green (because the row after the insertion point was green).`, + default: false, + }, + }, + async run({ $ }) { + const response = await this.app.insertDimension( this.sheetId, { + range: { + dimension: this.dimension, + startIndex: this.startIndex, + endIndex: this.endIndex, + }, + inheritFromBefore: this.inheritFromBefore, + }); + $.export("$summary", "Successfully inserted dimension request"); + return response; + }, +}; diff --git a/components/google_sheets/actions/list-worksheets/list-worksheets.mjs b/components/google_sheets/actions/list-worksheets/list-worksheets.mjs index df73828a68a61..e9f7e541ddc29 100644 --- a/components/google_sheets/actions/list-worksheets/list-worksheets.mjs +++ b/components/google_sheets/actions/list-worksheets/list-worksheets.mjs @@ -4,7 +4,7 @@ export default { key: "google_sheets-list-worksheets", name: "List Worksheets", description: "Get a list of all worksheets in a spreadsheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/get)", - version: "0.1.13", + version: "0.1.14", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/google_sheets/actions/move-dimension/move-dimension.mjs b/components/google_sheets/actions/move-dimension/move-dimension.mjs new file mode 100644 index 0000000000000..4ecc341501451 --- /dev/null +++ b/components/google_sheets/actions/move-dimension/move-dimension.mjs @@ -0,0 +1,74 @@ +import app from "../../google_sheets.app.mjs"; + +export default { + key: "google_sheets-move-dimension", + name: "Move Dimension", + description: "Move a dimension in a spreadsheet. [See the documentation](https://developers.google.com/workspace/sheets/api/reference/rest/v4/spreadsheets/request#MoveDimensionRequest)", + version: "0.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, + type: "action", + props: { + app, + drive: { + propDefinition: [ + app, + "watchedDrive", + ], + }, + sheetId: { + propDefinition: [ + app, + "sheetID", + (c) => ({ + driveId: app.methods.getDriveId(c.drive), + }), + ], + }, + dimension: { + type: "string", + label: "Dimension", + description: "The dimension to move", + options: [ + { + label: "Operates on the rows of a sheet", + value: "ROWS", + }, + { + label: "Operates on the columns of a sheet", + value: "COLUMNS", + }, + ], + }, + startIndex: { + type: "integer", + label: "Start Index", + description: "The start (inclusive) of the span", + }, + endIndex: { + type: "integer", + label: "End Index", + description: "The end (exclusive) of the span", + }, + destinationIndex: { + type: "integer", + label: "Destination Index", + description: "The zero-based start index of where to move the source data to, based on the coordinates *before* the source data is removed from the grid. Existing data will be shifted down or right (depending on the dimension) to make room for the moved dimensions. The source dimensions are removed from the grid, so the the data may end up in a different index than specified. For example, given `A1..A5` of `0, 1, 2, 3, 4` and wanting to move `\"1\"` and `\"2\"` to between `\"3\"` and `\"4\"`, the source would be `ROWS [1..3)`,and the destination index would be `\"4\"` (the zero-based index of row 5). The end result would be `A1..A5` of `0, 3, 1, 2, 4`", + }, + }, + async run({ $ }) { + const response = await this.app.moveDimension( this.sheetId, { + source: { + dimension: this.dimension, + startIndex: this.startIndex, + endIndex: this.endIndex, + }, + destinationIndex: this.destinationIndex, + }); + $.export("$summary", "Successfully moved dimension"); + return response; + }, +}; diff --git a/components/google_sheets/actions/update-cell/update-cell.mjs b/components/google_sheets/actions/update-cell/update-cell.mjs index fc56817a5746c..3c5f0662f10bc 100644 --- a/components/google_sheets/actions/update-cell/update-cell.mjs +++ b/components/google_sheets/actions/update-cell/update-cell.mjs @@ -7,7 +7,7 @@ export default { key: "google_sheets-update-cell", name: "Update Cell", description: "Update a cell in a spreadsheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/update)", - version: "0.1.15", + version: "0.1.16", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/google_sheets/actions/update-formatting/update-formatting.mjs b/components/google_sheets/actions/update-formatting/update-formatting.mjs index b870e51cb6dc7..5662ea53b2f4e 100644 --- a/components/google_sheets/actions/update-formatting/update-formatting.mjs +++ b/components/google_sheets/actions/update-formatting/update-formatting.mjs @@ -7,7 +7,7 @@ export default { key: "google_sheets-update-formatting", name: "Update Formatting", description: "Update the formatting of a cell in a spreadsheet. [See the documentation](https://developers.google.com/workspace/sheets/api/samples/formatting)", - version: "0.0.1", + version: "0.0.2", type: "action", annotations: { destructiveHint: true, diff --git a/components/google_sheets/actions/update-multiple-rows/update-multiple-rows.mjs b/components/google_sheets/actions/update-multiple-rows/update-multiple-rows.mjs index 789302b21b868..a39fb143f98df 100644 --- a/components/google_sheets/actions/update-multiple-rows/update-multiple-rows.mjs +++ b/components/google_sheets/actions/update-multiple-rows/update-multiple-rows.mjs @@ -9,7 +9,7 @@ export default { key: "google_sheets-update-multiple-rows", name: "Update Multiple Rows", description: "Update multiple rows in a spreadsheet defined by a range. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/update)", - version: "0.1.15", + version: "0.1.16", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/google_sheets/actions/update-row/update-row.mjs b/components/google_sheets/actions/update-row/update-row.mjs index 71b646d4cfd5e..af5d198fa63b0 100644 --- a/components/google_sheets/actions/update-row/update-row.mjs +++ b/components/google_sheets/actions/update-row/update-row.mjs @@ -10,7 +10,7 @@ export default { key: "google_sheets-update-row", name: "Update Row", description: "Update a row in a spreadsheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/update)", - version: "0.1.17", + version: "0.1.18", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/google_sheets/actions/upsert-row/upsert-row.mjs b/components/google_sheets/actions/upsert-row/upsert-row.mjs index 16a7048452536..54b5e9da21057 100644 --- a/components/google_sheets/actions/upsert-row/upsert-row.mjs +++ b/components/google_sheets/actions/upsert-row/upsert-row.mjs @@ -24,7 +24,7 @@ export default { key: "google_sheets-upsert-row", name: "Upsert Row", description: "Upsert a row of data in a Google Sheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append)", - version: "0.1.17", + version: "0.1.18", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/google_sheets/google_sheets.app.mjs b/components/google_sheets/google_sheets.app.mjs index 97529a2ed542f..3b719b08adb90 100644 --- a/components/google_sheets/google_sheets.app.mjs +++ b/components/google_sheets/google_sheets.app.mjs @@ -1,13 +1,13 @@ -import { axios } from "@pipedream/platform"; import sheets from "@googleapis/sheets"; import googleDrive from "@pipedream/google_drive"; +import { axios } from "@pipedream/platform"; +import get from "lodash/get.js"; +import isArray from "lodash/isArray.js"; +import isEmpty from "lodash/isEmpty.js"; +import isString from "lodash/isString.js"; import { INSERT_DATA_OPTION, VALUE_INPUT_OPTION, } from "./common/constants.mjs"; -import isArray from "lodash/isArray.js"; -import get from "lodash/get.js"; -import isString from "lodash/isString.js"; -import isEmpty from "lodash/isEmpty.js"; export default { ...googleDrive, @@ -419,6 +419,46 @@ export default { const sheets = this.sheets(); return (await sheets.spreadsheets.sheets.copyTo(request)).data; }, + /** + * https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/insertDimension + * + * Inserts a dimension and returns the properties of the newly inserted dimension. + * @returns {object} Contains an instance of DimensionProperties. + * @param {string} spreadsheetId - ID of the spreadsheet in which to insert a dimension. + * @param {object} data - An object containing information about the dimension to insert. + */ + async insertDimension(spreadsheetId, data = {}) { + return (await this.batchUpdate({ + spreadsheetId, + requestBody: { + requests: [ + { + insertDimension: data, + }, + ], + }, + })).replies[0]; + }, + /** + * https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/moveDimension + * + * Moves a dimension and returns the properties of the newly moved dimension. + * @returns {object} Contains an instance of DimensionProperties. + * @param {string} spreadsheetId - ID of the spreadsheet in which to move a dimension. + * @param {object} data - An object containing information about the dimension to move. + */ + async moveDimension(spreadsheetId, data = {}) { + return (await this.batchUpdate({ + spreadsheetId, + requestBody: { + requests: [ + { + moveDimension: data, + }, + ], + }, + })).replies[0]; + }, /** * https://developers.google.com/drive/api/v3/reference/files/copy * diff --git a/components/google_sheets/package.json b/components/google_sheets/package.json index 8b4922ad06052..3eb4fff364cb8 100644 --- a/components/google_sheets/package.json +++ b/components/google_sheets/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/google_sheets", - "version": "0.9.3", + "version": "0.10.0", "description": "Pipedream Google_sheets Components", "main": "google_sheets.app.mjs", "keywords": [ diff --git a/components/google_sheets/sources/new-comment/new-comment.mjs b/components/google_sheets/sources/new-comment/new-comment.mjs index 1b587baaa0f48..96c020965eef3 100644 --- a/components/google_sheets/sources/new-comment/new-comment.mjs +++ b/components/google_sheets/sources/new-comment/new-comment.mjs @@ -6,7 +6,7 @@ export default { key: "google_sheets-new-comment", name: "New Comment (Instant)", description: "Emit new event each time a comment is added to a spreadsheet.", - version: "0.1.2", + version: "0.1.3", dedupe: "unique", type: "source", methods: { diff --git a/components/google_sheets/sources/new-row-added-polling/new-row-added-polling.mjs b/components/google_sheets/sources/new-row-added-polling/new-row-added-polling.mjs index d583f22c6a833..6ee87af9cd025 100644 --- a/components/google_sheets/sources/new-row-added-polling/new-row-added-polling.mjs +++ b/components/google_sheets/sources/new-row-added-polling/new-row-added-polling.mjs @@ -8,7 +8,7 @@ export default { key: "google_sheets-new-row-added-polling", name: "New Row Added", description: "Emit new event each time a row or rows are added to the bottom of a spreadsheet.", - version: "0.1.2", + version: "0.1.3", dedupe: "unique", type: "source", props: { diff --git a/components/google_sheets/sources/new-row-added/new-row-added.mjs b/components/google_sheets/sources/new-row-added/new-row-added.mjs index 8909266273a07..8ded968d86b7b 100644 --- a/components/google_sheets/sources/new-row-added/new-row-added.mjs +++ b/components/google_sheets/sources/new-row-added/new-row-added.mjs @@ -8,7 +8,7 @@ export default { key: "google_sheets-new-row-added", name: "New Row Added (Instant)", description: "Emit new event each time a row or rows are added to the bottom of a spreadsheet.", - version: "0.2.2", + version: "0.2.3", dedupe: "unique", type: "source", props: { diff --git a/components/google_sheets/sources/new-updates/new-updates.mjs b/components/google_sheets/sources/new-updates/new-updates.mjs index 1ac14eb9fa186..99583bda991cb 100644 --- a/components/google_sheets/sources/new-updates/new-updates.mjs +++ b/components/google_sheets/sources/new-updates/new-updates.mjs @@ -9,7 +9,7 @@ export default { type: "source", name: "New Updates (Instant)", description: "Emit new event each time a row or cell is updated in a spreadsheet.", - version: "0.3.2", + version: "0.3.3", dedupe: "unique", props: { ...httpBase.props, diff --git a/components/google_sheets/sources/new-worksheet/new-worksheet.mjs b/components/google_sheets/sources/new-worksheet/new-worksheet.mjs index 0b7b7cc09f3b0..5467e522b2982 100644 --- a/components/google_sheets/sources/new-worksheet/new-worksheet.mjs +++ b/components/google_sheets/sources/new-worksheet/new-worksheet.mjs @@ -9,7 +9,7 @@ export default { type: "source", name: "New Worksheet (Instant)", description: "Emit new event each time a new worksheet is created in a spreadsheet.", - version: "0.2.2", + version: "0.2.3", dedupe: "unique", hooks: { ...httpBase.hooks,