diff --git a/components/alibaba_cloud/alibaba_cloud.app.mjs b/components/alibaba_cloud/alibaba_cloud.app.mjs index 68acd78e802a0..b07abc8dd12fc 100644 --- a/components/alibaba_cloud/alibaba_cloud.app.mjs +++ b/components/alibaba_cloud/alibaba_cloud.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/egestor/egestor.app.mjs b/components/egestor/egestor.app.mjs index e173cb69d7a6e..b6997bda7895a 100644 --- a/components/egestor/egestor.app.mjs +++ b/components/egestor/egestor.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/google_sheets/actions/add-column/add-column.mjs b/components/google_sheets/actions/add-column/add-column.mjs index 881a1ee3fd0f5..19e9ac96f56ce 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.7", + version: "0.1.8", type: "action", props: { googleSheets, @@ -32,8 +32,6 @@ export default { sheetId: c.sheetId, }), ], - type: "string", - label: "Worksheet", }, column: { propDefinition: [ 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 3b746478915b0..3e2fa1fd0f2a0 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.10", + version: "0.2.11", type: "action", props: { googleSheets, @@ -38,8 +38,6 @@ export default { sheetId: c.sheetId, }), ], - type: "string", - label: "Worksheet Id", reloadProps: true, }, headersDisplay: { 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 779834cb319d4..5893f848af3f5 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.12", + version: "2.1.13", type: "action", props: { googleSheets, diff --git a/components/google_sheets/actions/clear-cell/clear-cell.mjs b/components/google_sheets/actions/clear-cell/clear-cell.mjs index d61877701cede..7671a21ba8837 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.11", + version: "0.1.12", type: "action", props: { googleSheets, @@ -35,8 +35,6 @@ export default { sheetId: c.sheetId, }), ], - type: "string", - label: "Worksheet Id", }, cell: { type: "string", diff --git a/components/google_sheets/actions/clear-rows/clear-rows.mjs b/components/google_sheets/actions/clear-rows/clear-rows.mjs index 628e824d6b518..d2bbbc2486b0a 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.9", + version: "0.1.10", type: "action", props: { googleSheets, @@ -35,8 +35,6 @@ export default { sheetId: c.sheetId, }), ], - type: "string", - label: "Worksheet Id", }, startIndex: { type: "integer", diff --git a/components/google_sheets/actions/copy-worksheet/copy-worksheet.mjs b/components/google_sheets/actions/copy-worksheet/copy-worksheet.mjs index 135af86446e50..0d344b99eac34 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.7", + version: "0.1.8", type: "action", props: { googleSheets, @@ -23,7 +23,6 @@ export default { driveId: googleSheets.methods.getDriveId(c.drive), }), ], - description: "The spreadsheet containing the worksheet to copy", }, worksheetId: { propDefinition: [ @@ -33,9 +32,6 @@ export default { sheetId: c.sheetId, }), ], - type: "string", - label: "Worksheet", - description: "The worksheet to copy", }, destinationSheetId: { propDefinition: [ diff --git a/components/google_sheets/actions/create-spreadsheet/create-spreadsheet.mjs b/components/google_sheets/actions/create-spreadsheet/create-spreadsheet.mjs index d61457391a5d6..a91ea89972b39 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.8", + version: "0.1.9", type: "action", props: { googleSheets, diff --git a/components/google_sheets/actions/create-worksheet/create-worksheet.mjs b/components/google_sheets/actions/create-worksheet/create-worksheet.mjs index 58c9987ca6c83..1cb69c7a3b774 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.7", + version: "0.1.8", type: "action", props: { googleSheets, diff --git a/components/google_sheets/actions/delete-rows/delete-rows.mjs b/components/google_sheets/actions/delete-rows/delete-rows.mjs index 555b187d510ee..1260dbf796e0d 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.7", + version: "0.0.8", type: "action", props: { googleSheets, @@ -32,8 +32,6 @@ export default { sheetId: c.sheetId, }), ], - type: "string", - label: "Worksheet", }, startIndex: { type: "integer", diff --git a/components/google_sheets/actions/delete-worksheet/delete-worksheet.mjs b/components/google_sheets/actions/delete-worksheet/delete-worksheet.mjs index 55477e9ad0b71..c2a2f7cfa2e9c 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.7", + version: "0.1.8", type: "action", props: { googleSheets, @@ -32,8 +32,6 @@ export default { sheetId: c.sheetId, }), ], - type: "string", - label: "Worksheet", }, }, async run() { diff --git a/components/google_sheets/actions/find-row/find-row.mjs b/components/google_sheets/actions/find-row/find-row.mjs index 8d6db60fe5cd5..28c8dd50cb61b 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.10", + version: "0.2.11", type: "action", props: { googleSheets, @@ -34,8 +34,6 @@ export default { sheetId: c.sheetId, }), ], - type: "string", - label: "Worksheet Id", }, column: { propDefinition: [ diff --git a/components/google_sheets/actions/get-cell/get-cell.mjs b/components/google_sheets/actions/get-cell/get-cell.mjs index d285fe1ea5192..a49f9c36d5ddb 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.9", + version: "0.1.10", type: "action", props: { googleSheets, @@ -34,8 +34,6 @@ export default { sheetId: c.sheetId, }), ], - type: "string", - label: "Worksheet Id", }, cell: { propDefinition: [ 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 2c3e31010ae18..2e5c0336566d7 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.8", + version: "0.1.9", type: "action", props: { googleSheets, 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 8a8d2241d6e8e..7ea2c50f87af2 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.9", + version: "0.1.10", type: "action", props: { googleSheets, @@ -34,8 +34,6 @@ export default { sheetId: c.sheetId, }), ], - type: "string", - label: "Worksheet Id", }, range: { propDefinition: [ 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 e2c96006cfcae..60829f846929d 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.7", + version: "0.1.8", type: "action", props: { app, @@ -43,7 +43,6 @@ export default { sheetId: c.sheetId, }), ], - type: "string", optional: true, }, }, diff --git a/components/google_sheets/actions/insert-comment/insert-comment.mjs b/components/google_sheets/actions/insert-comment/insert-comment.mjs index f30169b81f6ef..ea67800f756a2 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.8", + version: "0.1.9", type: "action", props: { app, diff --git a/components/google_sheets/actions/list-worksheets/list-worksheets.mjs b/components/google_sheets/actions/list-worksheets/list-worksheets.mjs index 81ecb50903832..814adc7d8884c 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.7", + version: "0.1.8", type: "action", props: { googleSheets, diff --git a/components/google_sheets/actions/update-cell/update-cell.mjs b/components/google_sheets/actions/update-cell/update-cell.mjs index 4dd29a023705b..a230b88e2bcd9 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.9", + version: "0.1.10", type: "action", props: { googleSheets, @@ -36,8 +36,6 @@ export default { sheetId: c.sheetId, }), ], - type: "string", - label: "Worksheet Id", }, cell: { propDefinition: [ 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 e29bc2f551676..5048644feea6e 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.9", + version: "0.1.10", type: "action", props: { googleSheets, @@ -39,8 +39,6 @@ export default { sheetId: c.sheetId, }), ], - type: "string", - label: "Worksheet Id", reloadProps: true, }, headersDisplay: { diff --git a/components/google_sheets/actions/update-row/update-row.mjs b/components/google_sheets/actions/update-row/update-row.mjs index e03d24825f7fd..5c166d53fa392 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.10", + version: "0.1.11", type: "action", props: { googleSheets, diff --git a/components/google_sheets/actions/upsert-row/upsert-row.mjs b/components/google_sheets/actions/upsert-row/upsert-row.mjs index 575fec689d294..73fa15d5462e3 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.11", + version: "0.1.12", type: "action", props: { googleSheets, @@ -51,8 +51,6 @@ export default { sheetId: c.sheetId, }), ], - type: "string", - label: "Worksheet Id", }, insert: { propDefinition: [ diff --git a/components/google_sheets/google_sheets.app.mjs b/components/google_sheets/google_sheets.app.mjs index 6aaab67d4e882..4a3e8d86d02fd 100644 --- a/components/google_sheets/google_sheets.app.mjs +++ b/components/google_sheets/google_sheets.app.mjs @@ -57,8 +57,8 @@ export default { }, sheetID: { type: "string", - label: "Spreadsheet", - description: "The Spreadsheet ID", + label: "Spreadsheet ID", + description: "Select a spreadsheet or provide a spreadsheet ID", useQuery: true, options({ query, @@ -70,9 +70,9 @@ export default { }, }, worksheetIDs: { - type: "string[]", - label: "Worksheet(s)", - description: "The Worksheet ID", + type: "string", + label: "Worksheet ID", + description: "Select a worksheet or provide a worksheet ID", async options({ sheetId }) { const { sheets } = await this.getSpreadsheet(sheetId); diff --git a/components/google_sheets/package.json b/components/google_sheets/package.json index 5064d9d83bad9..1d29ad4e0e4b7 100644 --- a/components/google_sheets/package.json +++ b/components/google_sheets/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/google_sheets", - "version": "0.8.0", + "version": "0.8.1", "description": "Pipedream Google_sheets Components", "main": "google_sheets.app.mjs", "keywords": [ diff --git a/components/google_sheets/sources/common/new-row-added.mjs b/components/google_sheets/sources/common/new-row-added.mjs index 0923500c6ee88..9700b81da7d63 100644 --- a/components/google_sheets/sources/common/new-row-added.mjs +++ b/components/google_sheets/sources/common/new-row-added.mjs @@ -16,6 +16,9 @@ export default { sheetId: c.sheetID, }), ], + type: "string[]", + label: "Worksheet ID(s)", + description: "Select one or more worksheet(s), or provide an array of worksheet IDs.", }, }, methods: { diff --git a/components/google_sheets/sources/common/new-updates.mjs b/components/google_sheets/sources/common/new-updates.mjs index d36aa070f61dc..b8543d225644e 100644 --- a/components/google_sheets/sources/common/new-updates.mjs +++ b/components/google_sheets/sources/common/new-updates.mjs @@ -16,6 +16,9 @@ export default { sheetId: c.sheetID, }), ], + type: "string[]", + label: "Worksheet ID(s)", + description: "Select one or more worksheet(s), or provide an array of worksheet IDs.", }, }, methods: { diff --git a/components/google_sheets/sources/new-comment/new-comment.mjs b/components/google_sheets/sources/new-comment/new-comment.mjs index 12c9cf56250fa..3e8080a9ac5be 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.0.5", + version: "0.0.6", 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 02c4ba05c557a..798d745095109 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.0.1", + version: "0.0.2", 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 3c7bdeceb0c40..8b63262b0c039 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.1.9", + version: "0.1.10", 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 16b57f1f35376..a08d52eaf714a 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.2.7", + version: "0.2.8", 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 0e6f1af5cf8d5..6bc1fec803459 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.1.10", + version: "0.1.11", dedupe: "unique", hooks: { ...httpBase.hooks, diff --git a/components/microsoft_graph_api_daemon_app/microsoft_graph_api_daemon_app.app.mjs b/components/microsoft_graph_api_daemon_app/microsoft_graph_api_daemon_app.app.mjs index d9d7cb8fe9a41..1d22b9adab0b0 100644 --- a/components/microsoft_graph_api_daemon_app/microsoft_graph_api_daemon_app.app.mjs +++ b/components/microsoft_graph_api_daemon_app/microsoft_graph_api_daemon_app.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/microsoft_viva_goals/microsoft_viva_goals.app.mjs b/components/microsoft_viva_goals/microsoft_viva_goals.app.mjs index 7fc65400fbd3a..251ea2a862bba 100644 --- a/components/microsoft_viva_goals/microsoft_viva_goals.app.mjs +++ b/components/microsoft_viva_goals/microsoft_viva_goals.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b3dfaf218e793..fcd96322a5c6e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -647,8 +647,7 @@ importers: specifier: ^3.0.0 version: 3.0.3 - components/alibaba_cloud: - specifiers: {} + components/alibaba_cloud: {} components/all_images_ai: dependencies: @@ -3899,8 +3898,7 @@ importers: components/efinder: {} - components/egestor: - specifiers: {} + components/egestor: {} components/egnyte: dependencies: @@ -7802,8 +7800,7 @@ importers: specifier: ^3.0.0 version: 3.0.3 - components/microsoft_graph_api_daemon_app: - specifiers: {} + components/microsoft_graph_api_daemon_app: {} components/microsoft_onedrive: dependencies: @@ -7887,8 +7884,7 @@ importers: components/microsoft_text_translate: {} - components/microsoft_viva_goals: - specifiers: {} + components/microsoft_viva_goals: {} components/microsofttodo: dependencies: @@ -34066,6 +34062,8 @@ snapshots: '@putout/operator-filesystem': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3)) '@putout/operator-json': 2.2.0 putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3) + transitivePeerDependencies: + - supports-color '@putout/operator-regexp@1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))': dependencies: