Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Component republishes #11898

Merged
merged 4 commits into from
May 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, app);
export default {
...others,
key: "gitlab_developer_app-list-commits",
version: "0.0.1",
version: "0.0.2",
name,
description,
type,
Expand Down
2 changes: 1 addition & 1 deletion components/gitlab_developer_app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/gitlab_developer_app",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream GitLab (Developer App) Components",
"main": "gitlab_developer_app.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const props = adjustPropDefinitions(others.props, app);
export default {
...others,
key: "gitlab_developer_app-new-branch",
version: "0.0.1",
version: "0.0.2",
name,
description,
type,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default {
key: "google_drive-get-folder-id-for-path",
name: "Get Folder ID for a Path",
description: "Retrieve a folderId for a path. [See the documentation](https://developers.google.com/drive/api/v3/search-files) for more information",
version: "0.1.5",
version: "0.1.6",
type: "action",
props: {
googleDrive,
Expand Down
2 changes: 1 addition & 1 deletion components/google_drive/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/google_drive",
"version": "0.7.1",
"version": "0.7.2",
"description": "Pipedream Google_drive Components",
"main": "google_drive.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "google_sheets-add-multiple-rows",
name: "Add Multiple Rows",
description: "Add multiple rows of data to a Google Sheet",
version: "0.2.3",
version: "0.2.4",
type: "action",
props: {
googleSheets,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "google_sheets-add-single-row",
name: "Add Single Row",
description: "Add a single row of data to Google Sheets",
version: "2.1.4",
version: "2.1.5",
type: "action",
props: {
googleSheets,
Expand Down
2 changes: 1 addition & 1 deletion components/google_sheets/actions/clear-cell/clear-cell.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "google_sheets-clear-cell",
name: "Clear Cell",
description: "Delete the content of a specific cell in a spreadsheet",
version: "0.1.4",
version: "0.1.5",
type: "action",
props: {
googleSheets,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 docs](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/get) for more information",
version: "0.1.3",
version: "0.1.4",
type: "action",
props: {
googleSheets,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "google_sheets-insert-comment",
name: "Insert Comment",
description: "Insert a comment into a spreadsheet. [See the docs here](https://developers.google.com/drive/api/v3/reference/comments/create)",
version: "0.1.3",
version: "0.1.4",
type: "action",
props: {
app,
Expand Down
2 changes: 1 addition & 1 deletion components/google_sheets/actions/upsert-row/upsert-row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
key: "google_sheets-upsert-row",
name: "Upsert Row",
description: "Upsert a row of data in a Google Sheet",
version: "0.1.4",
version: "0.1.5",
type: "action",
props: {
googleSheets,
Expand Down
2 changes: 1 addition & 1 deletion components/google_sheets/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/google_sheets",
"version": "0.7.1",
"version": "0.7.2",
"description": "Pipedream Google_sheets Components",
"main": "google_sheets.app.mjs",
"keywords": [
Expand Down
5 changes: 3 additions & 2 deletions components/google_sheets/sources/common/http-based/base.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@

import { v4 as uuid } from "uuid";

import { WEBHOOK_SUBSCRIPTION_RENEWAL_SECONDS } from "../../../../google_drive/constants.mjs";
import {
MY_DRIVE_VALUE, WEBHOOK_SUBSCRIPTION_RENEWAL_SECONDS,
} from "../../../../google_drive/common/constants.mjs";
import googleSheets from "../../../google_sheets.app.mjs";
import { MY_DRIVE_VALUE } from "../../../../google_drive/constants.mjs";

/**
* The number of events that will be automatically sent whenever the event
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {
key: "google_sheets-new-row-added-shared-drive",
name: "New Row Added (Shared Drive, Instant)",
description: "Emit new events each time a row or rows are added to the bottom of a spreadsheet in a shared drive",
version: "0.1.4",
version: "0.1.6",
dedupe: "unique",
type: "source",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
key: "google_sheets-new-row-added",
name: "New Row Added (Instant)",
description: "Emit new events each time a row or rows are added to the bottom of a spreadsheet. To use this source with a spreadsheet in a [Shared Drive](https://support.google.com/a/users/answer/9310351), use the **New Row Added (Shared Drive, Instant)** source instead.",
version: "0.1.3",
version: "0.1.4",
dedupe: "unique",
type: "source",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default {
type: "source",
name: "New Updates (Shared Drive, Instant)",
description: "Emit new event each time a row or cell is updated in a spreadsheet in a shared drive",
version: "0.2.1",
version: "0.2.3",
dedupe: "unique",
props: {
...httpBase.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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. To use this source with a spreadsheet in a [Shared Drive](https://support.google.com/a/users/answer/9310351), use the **New Updates (Shared Drive, Instant)** source instead.",
version: "0.2.1",
version: "0.2.2",
dedupe: "unique",
props: {
...httpBase.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {
type: "source",
name: "New Worksheet (Shared Drive, Instant)",
description: "Emit new event each time a new worksheet is created in a spreadsheet in a shared drive",
version: "0.1.3",
version: "0.1.5",
dedupe: "unique",
hooks: {
...httpBase.hooks,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {
type: "source",
name: "New Worksheet (Instant)",
description: "Emit new event each time a new worksheet is created in a spreadsheet. To use this source with a spreadsheet in a [Shared Drive](https://support.google.com/a/users/answer/9310351), use the **New Worksheet (Shared Drive, Instant)** source instead.",
version: "0.1.3",
version: "0.1.4",
dedupe: "unique",
hooks: {
...httpBase.hooks,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
name: "Add webinar panelist",
description: "Register a panelist for a webinar. [See the docs here](https://marketplace.zoom.us/docs/api-reference/zoom-api/webinars/webinarpanelistcreate)",
key: "zoom_admin-add-webinar-panelist",
version: "0.1.5",
version: "0.1.6",
type: "action",
props: {
zoomAdmin,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
name: "List webinar registrants",
description: "List all users that have registered for a webinar. [See the docs here](https://marketplace.zoom.us/docs/api-reference/zoom-api/webinars/webinarregistrants)",
key: "zoom_admin-list-webinar-registrants",
version: "0.2.2",
version: "0.2.3",
type: "action",
props: {
zoomAdmin,
Expand Down
2 changes: 1 addition & 1 deletion components/zoom_admin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/zoom_admin",
"version": "0.7.1",
"version": "0.7.2",
"description": "Pipedream Zoom_admin Components",
"main": "zoom_admin.app.js",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
type: "source",
name: "Recording Completed",
description: "Emits an event each time a recording is ready for viewing in your Zoom account",
version: "0.1.5",
version: "0.1.6",
dedupe: "unique", // Dedupe events based on the ID of the recording file
props: {
zoomAdmin,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
type: "source",
name: "Webinar Started",
description: "Emits an event each time a webinar starts in your Zoom account",
version: "0.1.5",
version: "0.1.7",
dedupe: "unique", // Dedupe based on webinar ID
props: {
zoomAdmin,
Expand Down
Loading