diff --git a/.github/workflows/scheduled-package-validation.yaml b/.github/workflows/scheduled-package-validation.yaml index 8a8d848aec767..e56d2cc624b78 100644 --- a/.github/workflows/scheduled-package-validation.yaml +++ b/.github/workflows/scheduled-package-validation.yaml @@ -2,8 +2,8 @@ name: Scheduled Package Validation Report on: schedule: - # Run every three days at midnight UTC - - cron: '0 0 */3 * *' + # Run weekly on Mondays at 2:00 PM UTC + - cron: '0 14 * * 1' workflow_dispatch: # Allow manual triggering for testing jobs: diff --git a/components/amazon_ses/actions/create-email-template/create-email-template.mjs b/components/amazon_ses/actions/create-email-template/create-email-template.mjs index 8793daef611bd..f2b9d401c4de0 100644 --- a/components/amazon_ses/actions/create-email-template/create-email-template.mjs +++ b/components/amazon_ses/actions/create-email-template/create-email-template.mjs @@ -5,7 +5,7 @@ export default { key: "amazon_ses-create-email-template", name: "Create Email Template", description: "Create a HTML or a plain text email template. [See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-sesv2/classes/createemailtemplatecommand.html)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { ...base.props, diff --git a/components/amazon_ses/actions/get-email-template/get-email-template.mjs b/components/amazon_ses/actions/get-email-template/get-email-template.mjs index 9f0758fd102b8..a03ffec50a5d3 100644 --- a/components/amazon_ses/actions/get-email-template/get-email-template.mjs +++ b/components/amazon_ses/actions/get-email-template/get-email-template.mjs @@ -4,7 +4,7 @@ export default { key: "amazon_ses-get-email-template", name: "Get Email Template", description: "Get an email template. [See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-sesv2/classes/getemailtemplatecommand.html)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { ...base.props, diff --git a/components/amazon_ses/actions/send-email/send-email.mjs b/components/amazon_ses/actions/send-email/send-email.mjs index 70c4717bf7474..d9e57a1fefe7c 100644 --- a/components/amazon_ses/actions/send-email/send-email.mjs +++ b/components/amazon_ses/actions/send-email/send-email.mjs @@ -5,7 +5,7 @@ export default { key: "amazon_ses-send-email", name: "Send Email", description: "Send an email using Amazon SES. Supports simple email messaging. [See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-sesv2/classes/sendemailcommand.html)", - version: "0.9.0", + version: "0.9.1", type: "action", props: { ...base.props, diff --git a/components/amazon_ses/actions/send-templated-email/send-templated-email.mjs b/components/amazon_ses/actions/send-templated-email/send-templated-email.mjs index 3f3b8befc5bcf..3edd09826c222 100644 --- a/components/amazon_ses/actions/send-templated-email/send-templated-email.mjs +++ b/components/amazon_ses/actions/send-templated-email/send-templated-email.mjs @@ -4,7 +4,7 @@ export default { key: "amazon_ses-send-templated-email", name: "Send Templated Email", description: "Send an email replacing the template tags with values using Amazon SES. [See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ses/classes/sendtemplatedemailcommand.html)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { ...base.props, diff --git a/components/amazon_ses/actions/update-email-template/update-email-template.mjs b/components/amazon_ses/actions/update-email-template/update-email-template.mjs index e3ce31cec699f..5c8e7d1d379ac 100644 --- a/components/amazon_ses/actions/update-email-template/update-email-template.mjs +++ b/components/amazon_ses/actions/update-email-template/update-email-template.mjs @@ -4,7 +4,7 @@ export default { key: "amazon_ses-update-email-template", name: "Update Email Template", description: "Update an email template. [See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-sesv2/classes/updateemailtemplatecommand.html)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { ...base.props, diff --git a/components/amazon_ses/amazon_ses.app.mjs b/components/amazon_ses/amazon_ses.app.mjs index 69cafe6df9e32..098073a9d0d06 100644 --- a/components/amazon_ses/amazon_ses.app.mjs +++ b/components/amazon_ses/amazon_ses.app.mjs @@ -1,4 +1,4 @@ -import aws from "../aws/aws.app.mjs"; +import aws from "@pipedream/aws"; import { SESClient, SendTemplatedEmailCommand, diff --git a/components/amazon_ses/package.json b/components/amazon_ses/package.json index a8a01f007ea62..9c9479a33ec99 100644 --- a/components/amazon_ses/package.json +++ b/components/amazon_ses/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/amazon_ses", - "version": "0.3.7", + "version": "0.3.8", "description": "Pipedream Amazon SES Components", "main": "amazon_ses.app.mjs", "keywords": [ @@ -13,7 +13,8 @@ "@aws-sdk/client-ec2": "^3.89.0", "@aws-sdk/client-ses": "^3.95.0", "@aws-sdk/client-sesv2": "^3.87.0", - "@pipedream/platform": "^0.10.0" + "@pipedream/platform": "^0.10.0", + "@pipedream/aws": "^1.1.0" }, "gitHead": "e12480b94cc03bed4808ebc6b13e7fdb3a1ba535", "publishConfig": { diff --git a/components/gitlab_developer_app/actions/create-branch/create-branch.mjs b/components/gitlab_developer_app/actions/create-branch/create-branch.mjs index b2226dce7f8af..fe78073eec7e0 100644 --- a/components/gitlab_developer_app/actions/create-branch/create-branch.mjs +++ b/components/gitlab_developer_app/actions/create-branch/create-branch.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/actions/create-branch/create-branch.mjs"; +import common from "@pipedream/gitlab/actions/create-branch/create-branch.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; @@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-create-branch", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/actions/create-epic/create-epic.mjs b/components/gitlab_developer_app/actions/create-epic/create-epic.mjs index b56c7ad7452b4..2366094e21dbb 100644 --- a/components/gitlab_developer_app/actions/create-epic/create-epic.mjs +++ b/components/gitlab_developer_app/actions/create-epic/create-epic.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/actions/create-epic/create-epic.mjs"; +import common from "@pipedream/gitlab/actions/create-epic/create-epic.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; const { @@ -10,7 +10,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-create-epic", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/actions/create-issue/create-issue.mjs b/components/gitlab_developer_app/actions/create-issue/create-issue.mjs index 6d69fab7737f8..087e8cc592ee6 100644 --- a/components/gitlab_developer_app/actions/create-issue/create-issue.mjs +++ b/components/gitlab_developer_app/actions/create-issue/create-issue.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/actions/create-issue/create-issue.mjs"; +import common from "@pipedream/gitlab/actions/create-issue/create-issue.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; @@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-create-issue", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/actions/get-issue/get-issue.mjs b/components/gitlab_developer_app/actions/get-issue/get-issue.mjs index ecdae4575d656..d64a0a9caea46 100644 --- a/components/gitlab_developer_app/actions/get-issue/get-issue.mjs +++ b/components/gitlab_developer_app/actions/get-issue/get-issue.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/actions/get-issue/get-issue.mjs"; +import common from "@pipedream/gitlab/actions/get-issue/get-issue.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; @@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-get-issue", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/actions/get-repo-branch/get-repo-branch.mjs b/components/gitlab_developer_app/actions/get-repo-branch/get-repo-branch.mjs index 18135cd745cf2..e9a297545cb3f 100644 --- a/components/gitlab_developer_app/actions/get-repo-branch/get-repo-branch.mjs +++ b/components/gitlab_developer_app/actions/get-repo-branch/get-repo-branch.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/actions/get-repo-branch/get-repo-branch.mjs"; +import common from "@pipedream/gitlab/actions/get-repo-branch/get-repo-branch.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; @@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-get-repo-branch", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/actions/list-commits/list-commits.mjs b/components/gitlab_developer_app/actions/list-commits/list-commits.mjs index 8e9d749b59a9a..ab05610c93b26 100644 --- a/components/gitlab_developer_app/actions/list-commits/list-commits.mjs +++ b/components/gitlab_developer_app/actions/list-commits/list-commits.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/actions/list-commits/list-commits.mjs"; +import common from "@pipedream/gitlab/actions/list-commits/list-commits.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; @@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-list-commits", - version: "0.0.2", + version: "0.0.3", name, description, type, diff --git a/components/gitlab_developer_app/actions/list-repo-branches/list-repo-branches.mjs b/components/gitlab_developer_app/actions/list-repo-branches/list-repo-branches.mjs index 4a2ad20cae132..7ba05e730e904 100644 --- a/components/gitlab_developer_app/actions/list-repo-branches/list-repo-branches.mjs +++ b/components/gitlab_developer_app/actions/list-repo-branches/list-repo-branches.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/actions/list-repo-branches/list-repo-branches.mjs"; +import common from "@pipedream/gitlab/actions/list-repo-branches/list-repo-branches.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; @@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-list-repo-branches", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/actions/search-issues/search-issues.mjs b/components/gitlab_developer_app/actions/search-issues/search-issues.mjs index 8c5033594c30f..125aa60a77025 100644 --- a/components/gitlab_developer_app/actions/search-issues/search-issues.mjs +++ b/components/gitlab_developer_app/actions/search-issues/search-issues.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/actions/search-issues/search-issues.mjs"; +import common from "@pipedream/gitlab/actions/search-issues/search-issues.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; @@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-search-issues", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/actions/update-epic/update-epic.mjs b/components/gitlab_developer_app/actions/update-epic/update-epic.mjs index 2ea00e29e0669..9b867828b9a79 100644 --- a/components/gitlab_developer_app/actions/update-epic/update-epic.mjs +++ b/components/gitlab_developer_app/actions/update-epic/update-epic.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/actions/update-epic/update-epic.mjs"; +import common from "@pipedream/gitlab/actions/update-epic/update-epic.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; @@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-update-epic", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/actions/update-issue/update-issue.mjs b/components/gitlab_developer_app/actions/update-issue/update-issue.mjs index c920fa14d3294..819bc5b548301 100644 --- a/components/gitlab_developer_app/actions/update-issue/update-issue.mjs +++ b/components/gitlab_developer_app/actions/update-issue/update-issue.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/actions/update-issue/update-issue.mjs"; +import common from "@pipedream/gitlab/actions/update-issue/update-issue.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; @@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-update-issue", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/gitlab_developer_app.app.mjs b/components/gitlab_developer_app/gitlab_developer_app.app.mjs index f0acf0cef2a71..ba24c7b97795e 100644 --- a/components/gitlab_developer_app/gitlab_developer_app.app.mjs +++ b/components/gitlab_developer_app/gitlab_developer_app.app.mjs @@ -1,4 +1,4 @@ -import common from "../gitlab/gitlab.app.mjs"; +import common from "@pipedream/gitlab"; export default { ...common, diff --git a/components/gitlab_developer_app/package.json b/components/gitlab_developer_app/package.json index 2b2f4b4e0b262..33edf69a3b7ed 100644 --- a/components/gitlab_developer_app/package.json +++ b/components/gitlab_developer_app/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/gitlab_developer_app", - "version": "0.1.1", + "version": "0.1.2", "description": "Pipedream GitLab (Developer App) Components", "main": "gitlab_developer_app.app.mjs", "keywords": [ @@ -12,7 +12,8 @@ "dependencies": { "@pipedream/platform": "^1.6.4", "lodash": "^4.17.21", - "uuid": "^8.3.2" + "uuid": "^8.3.2", + "@pipedream/gitlab": "^0.5.6" }, "publishConfig": { "access": "public" diff --git a/components/gitlab_developer_app/sources/new-audit-event/new-audit-event.mjs b/components/gitlab_developer_app/sources/new-audit-event/new-audit-event.mjs index 22342654d28a9..e19afd0533df9 100644 --- a/components/gitlab_developer_app/sources/new-audit-event/new-audit-event.mjs +++ b/components/gitlab_developer_app/sources/new-audit-event/new-audit-event.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/sources/new-audit-event/new-audit-event.mjs"; +import common from "@pipedream/gitlab/sources/new-audit-event/new-audit-event.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; const { @@ -10,7 +10,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-new-audit-event", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/sources/new-branch/new-branch.mjs b/components/gitlab_developer_app/sources/new-branch/new-branch.mjs index 7b33d38ed0199..1d3effc3d6ecd 100644 --- a/components/gitlab_developer_app/sources/new-branch/new-branch.mjs +++ b/components/gitlab_developer_app/sources/new-branch/new-branch.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/sources/new-branch/new-branch.mjs"; +import common from "@pipedream/gitlab/sources/new-branch/new-branch.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; const { @@ -10,7 +10,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-new-branch", - version: "0.0.2", + version: "0.0.3", name, description, type, diff --git a/components/gitlab_developer_app/sources/new-commit-comment/new-commit-comment.mjs b/components/gitlab_developer_app/sources/new-commit-comment/new-commit-comment.mjs index e150550caa4de..68a745e91ae0a 100644 --- a/components/gitlab_developer_app/sources/new-commit-comment/new-commit-comment.mjs +++ b/components/gitlab_developer_app/sources/new-commit-comment/new-commit-comment.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/sources/new-commit-comment/new-commit-comment.mjs"; +import common from "@pipedream/gitlab/sources/new-commit-comment/new-commit-comment.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; const { @@ -10,7 +10,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-new-commit-comment", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/sources/new-commit/new-commit.mjs b/components/gitlab_developer_app/sources/new-commit/new-commit.mjs index 0829809b1c2f0..6f82415f9b1c9 100644 --- a/components/gitlab_developer_app/sources/new-commit/new-commit.mjs +++ b/components/gitlab_developer_app/sources/new-commit/new-commit.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/sources/new-commit/new-commit.mjs"; +import common from "@pipedream/gitlab/sources/new-commit/new-commit.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; const { @@ -10,7 +10,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-new-commit", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/sources/new-issue/new-issue.mjs b/components/gitlab_developer_app/sources/new-issue/new-issue.mjs index d9addfda12927..d093548631946 100644 --- a/components/gitlab_developer_app/sources/new-issue/new-issue.mjs +++ b/components/gitlab_developer_app/sources/new-issue/new-issue.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/sources/new-issue/new-issue.mjs"; +import common from "@pipedream/gitlab/sources/new-issue/new-issue.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; const { @@ -10,7 +10,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-new-issue", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/sources/new-mention/new-mention.mjs b/components/gitlab_developer_app/sources/new-mention/new-mention.mjs index 5b6cb41365d29..bb1191cb3db50 100644 --- a/components/gitlab_developer_app/sources/new-mention/new-mention.mjs +++ b/components/gitlab_developer_app/sources/new-mention/new-mention.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/sources/new-mention/new-mention.mjs"; +import common from "@pipedream/gitlab/sources/new-mention/new-mention.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; const { @@ -10,7 +10,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-new-mention", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/sources/new-merge-request/new-merge-request.mjs b/components/gitlab_developer_app/sources/new-merge-request/new-merge-request.mjs index d473a02d5af05..1521a48bf370f 100644 --- a/components/gitlab_developer_app/sources/new-merge-request/new-merge-request.mjs +++ b/components/gitlab_developer_app/sources/new-merge-request/new-merge-request.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/sources/new-merge-request/new-merge-request.mjs"; +import common from "@pipedream/gitlab/sources/new-merge-request/new-merge-request.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; const { @@ -10,7 +10,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-new-merge-request", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/sources/new-milestone/new-milestone.mjs b/components/gitlab_developer_app/sources/new-milestone/new-milestone.mjs index 2c291c5406aeb..dfbcba687c72b 100644 --- a/components/gitlab_developer_app/sources/new-milestone/new-milestone.mjs +++ b/components/gitlab_developer_app/sources/new-milestone/new-milestone.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/sources/new-milestone/new-milestone.mjs"; +import common from "@pipedream/gitlab/sources/new-milestone/new-milestone.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; const { @@ -10,7 +10,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-new-milestone", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/sources/new-project/new-project.mjs b/components/gitlab_developer_app/sources/new-project/new-project.mjs index 65ff7e274316f..863f835c1ec65 100644 --- a/components/gitlab_developer_app/sources/new-project/new-project.mjs +++ b/components/gitlab_developer_app/sources/new-project/new-project.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/sources/new-project/new-project.mjs"; +import common from "@pipedream/gitlab/sources/new-project/new-project.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; const { @@ -10,7 +10,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-new-project", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/gitlab_developer_app/sources/new-review-request/new-review-request.mjs b/components/gitlab_developer_app/sources/new-review-request/new-review-request.mjs index 5993904c01646..89bbe9b21d3b3 100644 --- a/components/gitlab_developer_app/sources/new-review-request/new-review-request.mjs +++ b/components/gitlab_developer_app/sources/new-review-request/new-review-request.mjs @@ -1,5 +1,5 @@ import app from "../../gitlab_developer_app.app.mjs"; -import common from "../../../gitlab/sources/new-review-request/new-review-request.mjs"; +import common from "@pipedream/gitlab/sources/new-review-request/new-review-request.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; const { @@ -10,7 +10,7 @@ const props = adjustPropDefinitions(others.props, app); export default { ...others, key: "gitlab_developer_app-new-review-request", - version: "0.0.1", + version: "0.0.2", name, description, type, diff --git a/components/notiff/actions/create-notification/create-notification.mjs b/components/notiff/actions/create-notification/create-notification.mjs index 3622a6cd5da4e..89ba849c5d6d2 100644 --- a/components/notiff/actions/create-notification/create-notification.mjs +++ b/components/notiff/actions/create-notification/create-notification.mjs @@ -1,4 +1,4 @@ -import common from "../../../notiff_io/actions/create-notification/create-notification.mjs"; +import common from "@pipedream/notiff_io/actions/create-notification/create-notification.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; import app from "../../notiff.app.mjs"; @@ -9,7 +9,7 @@ export default { key: "notiff-create-notification", name: "Create Notification", description: "Send a new notification to a user or system via notiff.io. [See the documentation](https://notiff.io/articles/welcome-to-notiff-getting-started-with-your-notification-center)", - version: "0.0.1", + version: "0.0.3", type: "action", methods: { getNotificationSourceId() { diff --git a/components/notiff/notiff.app.mjs b/components/notiff/notiff.app.mjs index 05595f8f2dbaf..bbf0c2e5f0c29 100644 --- a/components/notiff/notiff.app.mjs +++ b/components/notiff/notiff.app.mjs @@ -1,4 +1,4 @@ -import notiffIo from "../notiff_io/notiff_io.app.mjs"; +import notiffIo from "@pipedream/notiff_io"; export default { ...notiffIo, diff --git a/components/notiff/package.json b/components/notiff/package.json index 514cf9d005b4e..7c7fdd71e65f1 100644 --- a/components/notiff/package.json +++ b/components/notiff/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/notiff", - "version": "0.1.0", + "version": "0.1.1", "description": "Pipedream Notiff Components", "main": "notiff.app.mjs", "keywords": [ @@ -13,6 +13,7 @@ "access": "public" }, "dependencies": { - "@pipedream/platform": "^3.0.3" + "@pipedream/platform": "^3.0.3", + "@pipedream/notiff_io": "^0.1.0" } } diff --git a/components/pikaso/package.json b/components/pikaso/package.json index a292a9e4881a0..fa73755b741ed 100644 --- a/components/pikaso/package.json +++ b/components/pikaso/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/pikaso", - "version": "0.0.4", + "version": "0.0.5", "description": "Pipedream Pikaso Components", "main": "dist/app/pikaso.app.mjs", "keywords": [ @@ -17,5 +17,8 @@ }, "dependencies": { "@pipedream/platform": "^1.1.1" + }, + "devDependencies": { + "@pipedream/types": "^0.3.2" } } diff --git a/components/procore_sandbox/actions/create-incident/create-incident.mjs b/components/procore_sandbox/actions/create-incident/create-incident.mjs index 15f61d1bdc50b..316e65cf42fa6 100644 --- a/components/procore_sandbox/actions/create-incident/create-incident.mjs +++ b/components/procore_sandbox/actions/create-incident/create-incident.mjs @@ -1,4 +1,4 @@ -import component from "../../../procore/actions/create-incident/create-incident.mjs"; +import component from "@pipedream/procore/actions/create-incident/create-incident.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -9,5 +9,5 @@ export default { ...utils.getAppProps(component), key: "procore_sandbox-create-incident", description: "Create a new incident. [See the documentation](https://developers.procore.com/reference/rest/incidents?version=latest#create-incident).", - version: "0.0.1", + version: "0.0.2", }; diff --git a/components/procore_sandbox/actions/create-manpower-log/create-manpower-log.mjs b/components/procore_sandbox/actions/create-manpower-log/create-manpower-log.mjs index 92e030c054ba8..7579ed77b67ec 100644 --- a/components/procore_sandbox/actions/create-manpower-log/create-manpower-log.mjs +++ b/components/procore_sandbox/actions/create-manpower-log/create-manpower-log.mjs @@ -1,4 +1,4 @@ -import component from "../../../procore/actions/create-manpower-log/create-manpower-log.mjs"; +import component from "@pipedream/procore/actions/create-manpower-log/create-manpower-log.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -9,5 +9,5 @@ export default { ...utils.getAppProps(component), key: "procore_sandbox-create-manpower-log", description: "Create a new manpower log. [See the documentation](https://developers.procore.com/reference/rest/manpower-logs?version=latest#create-manpower-log).", - version: "0.0.1", + version: "0.0.2", }; diff --git a/components/procore_sandbox/actions/create-rfi/create-rfi.mjs b/components/procore_sandbox/actions/create-rfi/create-rfi.mjs index 7ff6e7c087bba..806ffcc332bee 100644 --- a/components/procore_sandbox/actions/create-rfi/create-rfi.mjs +++ b/components/procore_sandbox/actions/create-rfi/create-rfi.mjs @@ -1,4 +1,4 @@ -import component from "../../../procore/actions/create-rfi/create-rfi.mjs"; +import component from "@pipedream/procore/actions/create-rfi/create-rfi.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -9,5 +9,5 @@ export default { ...utils.getAppProps(component), key: "procore_sandbox-create-rfi", description: "Create a new RFI. [See the documentation](https://developers.procore.com/reference/rest/rfis?version=latest#create-rfi).", - version: "0.0.1", + version: "0.0.2", }; diff --git a/components/procore_sandbox/actions/create-submittal/create-submittal.mjs b/components/procore_sandbox/actions/create-submittal/create-submittal.mjs index b062fae4fe080..926c854fd241d 100644 --- a/components/procore_sandbox/actions/create-submittal/create-submittal.mjs +++ b/components/procore_sandbox/actions/create-submittal/create-submittal.mjs @@ -1,4 +1,4 @@ -import component from "../../../procore/actions/create-submittal/create-submittal.mjs"; +import component from "@pipedream/procore/actions/create-submittal/create-submittal.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -9,5 +9,5 @@ export default { ...utils.getAppProps(component), key: "procore_sandbox-create-submittal", description: "Create a new submittal. [See the documentation](https://developers.procore.com/reference/rest/submittals?version=latest#create-submittal).", - version: "0.0.1", + version: "0.0.2", }; diff --git a/components/procore_sandbox/actions/create-timesheet/create-timesheet.mjs b/components/procore_sandbox/actions/create-timesheet/create-timesheet.mjs index 9d6ff5912a8df..7f5e2bb74bc9e 100644 --- a/components/procore_sandbox/actions/create-timesheet/create-timesheet.mjs +++ b/components/procore_sandbox/actions/create-timesheet/create-timesheet.mjs @@ -1,4 +1,4 @@ -import component from "../../../procore/actions/create-timesheet/create-timesheet.mjs"; +import component from "@pipedream/procore/actions/create-timesheet/create-timesheet.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -9,5 +9,5 @@ export default { ...utils.getAppProps(component), key: "procore_sandbox-create-timesheet", description: "Create a new timesheet. [See the documentation](https://developers.procore.com/reference/rest/timesheets?version=latest#create-timesheet).", - version: "0.0.1", + version: "0.0.2", }; diff --git a/components/procore_sandbox/package.json b/components/procore_sandbox/package.json index d50ff001797d3..b594be8065d3c 100644 --- a/components/procore_sandbox/package.json +++ b/components/procore_sandbox/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/procore_sandbox", - "version": "0.1.0", + "version": "0.1.1", "description": "Pipedream Procore Sandbox Components", "main": "procore_sandbox.app.mjs", "keywords": [ @@ -11,5 +11,8 @@ "author": "Pipedream (https://pipedream.com/)", "publishConfig": { "access": "public" + }, + "dependencies": { + "@pipedream/procore": "^0.1.0" } } diff --git a/components/procore_sandbox/procore_sandbox.app.mjs b/components/procore_sandbox/procore_sandbox.app.mjs index 45a18b7aee753..cdc42d18b9a29 100644 --- a/components/procore_sandbox/procore_sandbox.app.mjs +++ b/components/procore_sandbox/procore_sandbox.app.mjs @@ -1,5 +1,5 @@ -import procore from "../procore/procore.app.mjs"; -import constants from "../procore/common/constants.mjs"; +import procore from "@pipedream/procore"; +import constants from "@pipedream/procore/common/constants.mjs"; export default { ...procore, diff --git a/components/procore_sandbox/sources/new-budget-snapshot-event-instant/new-budget-snapshot-event-instant.mjs b/components/procore_sandbox/sources/new-budget-snapshot-event-instant/new-budget-snapshot-event-instant.mjs index 9f891b2ab4de8..3b7adf78e52cb 100644 --- a/components/procore_sandbox/sources/new-budget-snapshot-event-instant/new-budget-snapshot-event-instant.mjs +++ b/components/procore_sandbox/sources/new-budget-snapshot-event-instant/new-budget-snapshot-event-instant.mjs @@ -1,4 +1,4 @@ -import component from "../../../procore/sources/new-budget-snapshot-event-instant/new-budget-snapshot-event-instant.mjs"; +import component from "@pipedream/procore/sources/new-budget-snapshot-event-instant/new-budget-snapshot-event-instant.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -9,6 +9,6 @@ export default { ...utils.getAppProps(component), key: "procore_sandbox-new-budget-snapshot-event-instant", description: "Emit new event when a new budget snapshot event is created. [See the documentation](https://developers.procore.com/reference/rest/hooks?version=latest).", - version: "0.0.1", + version: "0.0.2", }; diff --git a/components/procore_sandbox/sources/new-change-order-package-event-instant/new-change-order-package-event-instant.mjs b/components/procore_sandbox/sources/new-change-order-package-event-instant/new-change-order-package-event-instant.mjs index 7098876618b8a..6c1f1c256af64 100644 --- a/components/procore_sandbox/sources/new-change-order-package-event-instant/new-change-order-package-event-instant.mjs +++ b/components/procore_sandbox/sources/new-change-order-package-event-instant/new-change-order-package-event-instant.mjs @@ -1,4 +1,4 @@ -import component from "../../../procore/sources/new-change-order-package-event-instant/new-change-order-package-event-instant.mjs"; +import component from "@pipedream/procore/sources/new-change-order-package-event-instant/new-change-order-package-event-instant.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -9,5 +9,5 @@ export default { ...utils.getAppProps(component), key: "procore_sandbox-new-change-order-package-event-instant", description: "Emit new event when a new change order package event is created. [See the documentation](https://developers.procore.com/reference/rest/hooks?version=latest).", - version: "0.0.1", + version: "0.0.2", }; diff --git a/components/procore_sandbox/sources/new-commitment-change-order-event-instant/new-commitment-change-order-event-instant.mjs b/components/procore_sandbox/sources/new-commitment-change-order-event-instant/new-commitment-change-order-event-instant.mjs index 5a25fd65c80ad..b66f7833c4395 100644 --- a/components/procore_sandbox/sources/new-commitment-change-order-event-instant/new-commitment-change-order-event-instant.mjs +++ b/components/procore_sandbox/sources/new-commitment-change-order-event-instant/new-commitment-change-order-event-instant.mjs @@ -1,4 +1,4 @@ -import component from "../../../procore/sources/new-commitment-change-order-event-instant/new-commitment-change-order-event-instant.mjs"; +import component from "@pipedream/procore/sources/new-commitment-change-order-event-instant/new-commitment-change-order-event-instant.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -9,5 +9,5 @@ export default { ...utils.getAppProps(component), key: "procore_sandbox-new-commitment-change-order-event-instant", description: "Emit new event when a new commitment change order event is created. [See the documentation](https://developers.procore.com/reference/rest/hooks?version=latest).", - version: "0.0.1", + version: "0.0.2", }; diff --git a/components/procore_sandbox/sources/new-event-instant/new-event-instant.mjs b/components/procore_sandbox/sources/new-event-instant/new-event-instant.mjs index a0827a58ae035..f7ed5451da129 100644 --- a/components/procore_sandbox/sources/new-event-instant/new-event-instant.mjs +++ b/components/procore_sandbox/sources/new-event-instant/new-event-instant.mjs @@ -1,4 +1,4 @@ -import component from "../../../procore/sources/new-event-instant/new-event-instant.mjs"; +import component from "@pipedream/procore/sources/new-event-instant/new-event-instant.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -9,5 +9,5 @@ export default { ...utils.getAppProps(component), key: "procore_sandbox-new-event-instant", description: "Emit new event depending on the resource name selected. [See the documentation](https://developers.procore.com/reference/rest/hooks?version=latest).", - version: "0.0.1", + version: "0.0.2", }; diff --git a/components/procore_sandbox/sources/new-prime-contract-event-instant/new-prime-contract-event-instant.mjs b/components/procore_sandbox/sources/new-prime-contract-event-instant/new-prime-contract-event-instant.mjs index e9e5c06e54066..a661af0dce584 100644 --- a/components/procore_sandbox/sources/new-prime-contract-event-instant/new-prime-contract-event-instant.mjs +++ b/components/procore_sandbox/sources/new-prime-contract-event-instant/new-prime-contract-event-instant.mjs @@ -1,4 +1,4 @@ -import component from "../../../procore/sources/new-prime-contract-event-instant/new-prime-contract-event-instant.mjs"; +import component from "@pipedream/procore/sources/new-prime-contract-event-instant/new-prime-contract-event-instant.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -9,5 +9,5 @@ export default { ...utils.getAppProps(component), key: "procore_sandbox-new-prime-contract-event-instant", description: "Emit new event when a new prime contract event is created. [See the documentation](https://developers.procore.com/reference/rest/hooks?version=latest).", - version: "0.0.1", + version: "0.0.2", }; diff --git a/components/procore_sandbox/sources/new-purchase-order-event-instant/new-purchase-order-event-instant.mjs b/components/procore_sandbox/sources/new-purchase-order-event-instant/new-purchase-order-event-instant.mjs index ff59388f0a539..4e5f51ccc7140 100644 --- a/components/procore_sandbox/sources/new-purchase-order-event-instant/new-purchase-order-event-instant.mjs +++ b/components/procore_sandbox/sources/new-purchase-order-event-instant/new-purchase-order-event-instant.mjs @@ -1,4 +1,4 @@ -import component from "../../../procore/sources/new-purchase-order-event-instant/new-purchase-order-event-instant.mjs"; +import component from "@pipedream/procore/sources/new-purchase-order-event-instant/new-purchase-order-event-instant.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -9,5 +9,5 @@ export default { ...utils.getAppProps(component), key: "procore_sandbox-new-purchase-order-event-instant", description: "Emit new event when a new purchase order event is created. [See the documentation](https://developers.procore.com/reference/rest/hooks?version=latest).", - version: "0.0.1", + version: "0.0.2", }; diff --git a/components/procore_sandbox/sources/new-rfi-event-instant/new-rfi-event-instant.mjs b/components/procore_sandbox/sources/new-rfi-event-instant/new-rfi-event-instant.mjs index 331a39ce644a5..feef150e268cc 100644 --- a/components/procore_sandbox/sources/new-rfi-event-instant/new-rfi-event-instant.mjs +++ b/components/procore_sandbox/sources/new-rfi-event-instant/new-rfi-event-instant.mjs @@ -1,4 +1,4 @@ -import component from "../../../procore/sources/new-rfi-event-instant/new-rfi-event-instant.mjs"; +import component from "@pipedream/procore/sources/new-rfi-event-instant/new-rfi-event-instant.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -9,5 +9,5 @@ export default { ...utils.getAppProps(component), key: "procore_sandbox-new-rfi-event-instant", description: "Emit new event when a new RFI event is created. [See the documentation](https://developers.procore.com/reference/rest/hooks?version=latest).", - version: "0.0.1", + version: "0.0.2", }; diff --git a/components/procore_sandbox/sources/new-submittal-event-instant/new-submittal-event-instant.mjs b/components/procore_sandbox/sources/new-submittal-event-instant/new-submittal-event-instant.mjs index 58c49db357525..f2f921e406f53 100644 --- a/components/procore_sandbox/sources/new-submittal-event-instant/new-submittal-event-instant.mjs +++ b/components/procore_sandbox/sources/new-submittal-event-instant/new-submittal-event-instant.mjs @@ -1,4 +1,4 @@ -import component from "../../../procore/sources/new-submittal-event-instant/new-submittal-event-instant.mjs"; +import component from "@pipedream/procore/sources/new-submittal-event-instant/new-submittal-event-instant.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -9,5 +9,5 @@ export default { ...utils.getAppProps(component), key: "procore_sandbox-new-submittal-event-instant", description: "Emit new event when a new submittal event is created. [See the documentation](https://developers.procore.com/reference/rest/hooks?version=latest).", - version: "0.0.1", + version: "0.0.2", }; diff --git a/components/procore_sandbox/sources/new-timecard-entry-event-instant/new-timecard-entry-event-instant.mjs b/components/procore_sandbox/sources/new-timecard-entry-event-instant/new-timecard-entry-event-instant.mjs index 457afd3ea3ed1..dae13b67fd867 100644 --- a/components/procore_sandbox/sources/new-timecard-entry-event-instant/new-timecard-entry-event-instant.mjs +++ b/components/procore_sandbox/sources/new-timecard-entry-event-instant/new-timecard-entry-event-instant.mjs @@ -1,4 +1,4 @@ -import component from "../../../procore/sources/new-timecard-entry-event-instant/new-timecard-entry-event-instant.mjs"; +import component from "@pipedream/procore/sources/new-timecard-entry-event-instant/new-timecard-entry-event-instant.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -9,6 +9,6 @@ export default { ...utils.getAppProps(component), key: "procore_sandbox-new-timecard-entry-event-instant", description: "Emit new event when a new timecard entry is created. [See the documentation](https://developers.procore.com/reference/rest/hooks?version=latest).", - version: "0.0.1", + version: "0.0.2", }; diff --git a/components/salesmate/package.json b/components/salesmate/package.json index f6bc3ac3b13b2..2404014ea57d2 100644 --- a/components/salesmate/package.json +++ b/components/salesmate/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/salesmate", - "version": "0.0.3", + "version": "0.0.4", "description": "Pipedream Salesmate Components", "main": "dist/app/salesmate.app.mjs", "keywords": [ @@ -15,5 +15,8 @@ }, "dependencies": { "@pipedream/platform": "^1.2.1" + }, + "devDependencies": { + "@pipedream/types": "^0.3.2" } } diff --git a/components/slack_bot/actions/add-emoji-reaction/add-emoji-reaction.mjs b/components/slack_bot/actions/add-emoji-reaction/add-emoji-reaction.mjs index b2cbd842ef5d8..006e4be92fbeb 100644 --- a/components/slack_bot/actions/add-emoji-reaction/add-emoji-reaction.mjs +++ b/components/slack_bot/actions/add-emoji-reaction/add-emoji-reaction.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/add-emoji-reaction/add-emoji-reaction.mjs"; +import component from "@pipedream/slack/actions/add-emoji-reaction/add-emoji-reaction.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -11,5 +11,5 @@ export default { }), key: "slack_bot-add-emoji-reaction", description: "Add an emoji reaction to a message. [See the documentation](https://api.slack.com/methods/reactions.add)", - version: "0.0.2", + version: "0.0.3", }; diff --git a/components/slack_bot/actions/archive-channel/archive-channel.mjs b/components/slack_bot/actions/archive-channel/archive-channel.mjs index ff30f5dc3f953..15669ad6f07d4 100644 --- a/components/slack_bot/actions/archive-channel/archive-channel.mjs +++ b/components/slack_bot/actions/archive-channel/archive-channel.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/archive-channel/archive-channel.mjs"; +import component from "@pipedream/slack/actions/archive-channel/archive-channel.mjs"; import constants from "../../common/constants.mjs"; import utils from "../../common/utils.mjs"; @@ -27,5 +27,5 @@ export default { }), key: "slack_bot-archive-channel", description: "Archive a channel (Bot). [See the documentation](https://api.slack.com/methods/conversations.archive)", - version: "0.0.4", + version: "0.0.5", }; diff --git a/components/slack_bot/actions/create-channel/create-channel.mjs b/components/slack_bot/actions/create-channel/create-channel.mjs index 38e483a573076..7e7d7e1fc7e62 100644 --- a/components/slack_bot/actions/create-channel/create-channel.mjs +++ b/components/slack_bot/actions/create-channel/create-channel.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/create-channel/create-channel.mjs"; +import component from "@pipedream/slack/actions/create-channel/create-channel.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -11,5 +11,5 @@ export default { }), key: "slack_bot-create-channel", description: "Create a new channel (Bot). [See the documentation](https://api.slack.com/methods/conversations.create)", - version: "0.0.4", + version: "0.0.5", }; diff --git a/components/slack_bot/actions/delete-file/delete-file.mjs b/components/slack_bot/actions/delete-file/delete-file.mjs index f78a6c22c670f..90cd46266690b 100644 --- a/components/slack_bot/actions/delete-file/delete-file.mjs +++ b/components/slack_bot/actions/delete-file/delete-file.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/delete-file/delete-file.mjs"; +import component from "@pipedream/slack/actions/delete-file/delete-file.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -11,5 +11,5 @@ export default { }), key: "slack_bot-delete-file", description: "Delete a file (Bot). [See the documentation](https://api.slack.com/methods/files.delete)", - version: "0.0.4", + version: "0.0.5", }; diff --git a/components/slack_bot/actions/delete-message/delete-message.mjs b/components/slack_bot/actions/delete-message/delete-message.mjs index 024b0c0bd4bdc..3162aa24678e7 100644 --- a/components/slack_bot/actions/delete-message/delete-message.mjs +++ b/components/slack_bot/actions/delete-message/delete-message.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/delete-message/delete-message.mjs"; +import component from "@pipedream/slack/actions/delete-message/delete-message.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -14,5 +14,5 @@ export default { }), key: "slack_bot-delete-message", description: "Delete a message (Bot). [See the documentation](https://api.slack.com/methods/chat.delete)", - version: "0.0.4", + version: "0.0.5", }; diff --git a/components/slack_bot/actions/find-user-by-email/find-user-by-email.mjs b/components/slack_bot/actions/find-user-by-email/find-user-by-email.mjs index 7b5ad6006b82b..d3d580d551073 100644 --- a/components/slack_bot/actions/find-user-by-email/find-user-by-email.mjs +++ b/components/slack_bot/actions/find-user-by-email/find-user-by-email.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/find-user-by-email/find-user-by-email.mjs"; +import component from "@pipedream/slack/actions/find-user-by-email/find-user-by-email.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -11,5 +11,5 @@ export default { }), key: "slack_bot-find-user-by-email", description: "Find a user by matching against their email (Bot). [See the documentation](https://api.slack.com/methods/users.lookupByEmail)", - version: "0.0.4", + version: "0.0.5", }; diff --git a/components/slack_bot/actions/get-file/get-file.mjs b/components/slack_bot/actions/get-file/get-file.mjs index 979416d402537..a2b65d4160050 100644 --- a/components/slack_bot/actions/get-file/get-file.mjs +++ b/components/slack_bot/actions/get-file/get-file.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/get-file/get-file.mjs"; +import component from "@pipedream/slack/actions/get-file/get-file.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -11,5 +11,5 @@ export default { }), key: "slack_bot-get-file", description: "Return information about a file (Bot). [See the documentation](https://api.slack.com/methods/files.info)", - version: "0.0.4", + version: "0.0.5", }; diff --git a/components/slack_bot/actions/invite-user-to-channel/invite-user-to-channel.mjs b/components/slack_bot/actions/invite-user-to-channel/invite-user-to-channel.mjs index 05dde4f7b9c55..16e30950ad239 100644 --- a/components/slack_bot/actions/invite-user-to-channel/invite-user-to-channel.mjs +++ b/components/slack_bot/actions/invite-user-to-channel/invite-user-to-channel.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/invite-user-to-channel/invite-user-to-channel.mjs"; +import component from "@pipedream/slack/actions/invite-user-to-channel/invite-user-to-channel.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -11,5 +11,5 @@ export default { }), key: "slack_bot-invite-user-to-channel", description: "Invite a user to an existing channel (Bot). [See the documentation](https://api.slack.com/methods/conversations.invite)", - version: "0.0.4", + version: "0.0.5", }; diff --git a/components/slack_bot/actions/list-channels/list-channels.mjs b/components/slack_bot/actions/list-channels/list-channels.mjs index adf71170d26cb..3ebade623ea6d 100644 --- a/components/slack_bot/actions/list-channels/list-channels.mjs +++ b/components/slack_bot/actions/list-channels/list-channels.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/list-channels/list-channels.mjs"; +import component from "@pipedream/slack/actions/list-channels/list-channels.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -11,5 +11,5 @@ export default { }), key: "slack_bot-list-channels", description: "Return a list of all channels in a workspace (Bot). [See the documentation](https://api.slack.com/methods/conversations.list)", - version: "0.0.4", + version: "0.0.5", }; diff --git a/components/slack_bot/actions/list-files/list-files.mjs b/components/slack_bot/actions/list-files/list-files.mjs index d016f72012dd6..fbf30b57d0c6e 100644 --- a/components/slack_bot/actions/list-files/list-files.mjs +++ b/components/slack_bot/actions/list-files/list-files.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/list-files/list-files.mjs"; +import component from "@pipedream/slack/actions/list-files/list-files.mjs"; import constants from "../../common/constants.mjs"; import utils from "../../common/utils.mjs"; @@ -30,5 +30,5 @@ export default { }), key: "slack_bot-list-files", description: "Return a list of files within a team (Bot). [See the documentation](https://api.slack.com/methods/files.list)", - version: "0.0.4", + version: "0.0.5", }; diff --git a/components/slack_bot/actions/list-group-members/list-group-members.mjs b/components/slack_bot/actions/list-group-members/list-group-members.mjs index cf461541c4dd7..dad7e7e1d4383 100644 --- a/components/slack_bot/actions/list-group-members/list-group-members.mjs +++ b/components/slack_bot/actions/list-group-members/list-group-members.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/list-group-members/list-group-members.mjs"; +import component from "@pipedream/slack/actions/list-group-members/list-group-members.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -11,5 +11,5 @@ export default { }), key: "slack_bot-list-group-members", description: "List all users in a User Group (Bot). [See the documentation](https://api.slack.com/methods/usergroups.users.list)", - version: "0.0.2", + version: "0.0.3", }; diff --git a/components/slack_bot/actions/list-members-in-channel/list-members-in-channel.mjs b/components/slack_bot/actions/list-members-in-channel/list-members-in-channel.mjs index 1e0785b59b0ae..0ad1aa8cad669 100644 --- a/components/slack_bot/actions/list-members-in-channel/list-members-in-channel.mjs +++ b/components/slack_bot/actions/list-members-in-channel/list-members-in-channel.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/list-members-in-channel/list-members-in-channel.mjs"; +import component from "@pipedream/slack/actions/list-members-in-channel/list-members-in-channel.mjs"; import constants from "../../common/constants.mjs"; import utils from "../../common/utils.mjs"; @@ -30,5 +30,5 @@ export default { }), key: "slack_bot-list-members-in-channel", description: "Retrieve members of a channel (Bot). [See the documentation](https://api.slack.com/methods/conversations.members)", - version: "0.0.4", + version: "0.0.5", }; diff --git a/components/slack_bot/actions/list-replies/list-replies.mjs b/components/slack_bot/actions/list-replies/list-replies.mjs index 410be522a946c..30cd72626ccc8 100644 --- a/components/slack_bot/actions/list-replies/list-replies.mjs +++ b/components/slack_bot/actions/list-replies/list-replies.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/list-replies/list-replies.mjs"; +import component from "@pipedream/slack/actions/list-replies/list-replies.mjs"; import constants from "../../common/constants.mjs"; import utils from "../../common/utils.mjs"; @@ -39,5 +39,5 @@ export default { }), key: "slack_bot-list-replies", description: "Retrieve a thread of messages posted to a conversation (Bot). [See the documentation](https://api.slack.com/methods/conversations.replies)", - version: "0.0.5", + version: "0.0.6", }; diff --git a/components/slack_bot/actions/list-users/list-users.mjs b/components/slack_bot/actions/list-users/list-users.mjs index 71d7d375a161b..460bf3fe0153a 100644 --- a/components/slack_bot/actions/list-users/list-users.mjs +++ b/components/slack_bot/actions/list-users/list-users.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/list-users/list-users.mjs"; +import component from "@pipedream/slack/actions/list-users/list-users.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -11,5 +11,5 @@ export default { }), key: "slack_bot-list-users", description: "Return a list of all users in a workspace (Bot). [See the documentation](https://api.slack.com/methods/users.list)", - version: "0.0.4", + version: "0.0.5", }; diff --git a/components/slack_bot/actions/reply-to-a-message/reply-to-a-message.mjs b/components/slack_bot/actions/reply-to-a-message/reply-to-a-message.mjs index bd66ae9aa8362..a3f24997442f3 100644 --- a/components/slack_bot/actions/reply-to-a-message/reply-to-a-message.mjs +++ b/components/slack_bot/actions/reply-to-a-message/reply-to-a-message.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/reply-to-a-message/reply-to-a-message.mjs"; +import component from "@pipedream/slack/actions/reply-to-a-message/reply-to-a-message.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -14,5 +14,5 @@ export default { }), key: "slack_bot-reply-to-a-message", description: "Send a message as a threaded reply (Bot). See [postMessage](https://api.slack.com/methods/chat.postMessage) or [scheduleMessage](https://api.slack.com/methods/chat.scheduleMessage) docs here", - version: "0.0.5", + version: "0.0.6", }; diff --git a/components/slack_bot/actions/send-large-message/send-large-message.mjs b/components/slack_bot/actions/send-large-message/send-large-message.mjs index 4465741376ce6..74ca706cfbc46 100644 --- a/components/slack_bot/actions/send-large-message/send-large-message.mjs +++ b/components/slack_bot/actions/send-large-message/send-large-message.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/send-large-message/send-large-message.mjs"; +import component from "@pipedream/slack/actions/send-large-message/send-large-message.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -14,5 +14,5 @@ export default { }), key: "slack_bot-send-large-message", description: "Send a large message (more than 3000 characters) to a channel, group or user (Bot). See [postMessage](https://api.slack.com/methods/chat.postMessage) or [scheduleMessage](https://api.slack.com/methods/chat.scheduleMessage) docs here", - version: "0.0.5", + version: "0.0.6", }; diff --git a/components/slack_bot/actions/send-message-advanced/send-message-advanced.mjs b/components/slack_bot/actions/send-message-advanced/send-message-advanced.mjs index b58e3cbc9ea85..92b30f259afab 100644 --- a/components/slack_bot/actions/send-message-advanced/send-message-advanced.mjs +++ b/components/slack_bot/actions/send-message-advanced/send-message-advanced.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/send-message-advanced/send-message-advanced.mjs"; +import component from "@pipedream/slack/actions/send-message-advanced/send-message-advanced.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -14,5 +14,5 @@ export default { }), key: "slack_bot-send-message-advanced", description: "Customize advanced setttings and send a message to a channel, group or user (Bot). See [postMessage](https://api.slack.com/methods/chat.postMessage) or [scheduleMessage](https://api.slack.com/methods/chat.scheduleMessage) docs here", - version: "0.0.5", + version: "0.0.6", }; diff --git a/components/slack_bot/actions/send-message/send-message.mjs b/components/slack_bot/actions/send-message/send-message.mjs index 8002ecce52d61..b928f75ab1122 100644 --- a/components/slack_bot/actions/send-message/send-message.mjs +++ b/components/slack_bot/actions/send-message/send-message.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/send-message/send-message.mjs"; +import component from "@pipedream/slack/actions/send-message/send-message.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -14,5 +14,5 @@ export default { }), key: "slack_bot-send-message", description: "Send a message to a user, group, private channel or public channel (Bot). See [postMessage](https://api.slack.com/methods/chat.postMessage) or [scheduleMessage](https://api.slack.com/methods/chat.scheduleMessage) docs here", - version: "0.0.4", + version: "0.0.5", }; diff --git a/components/slack_bot/actions/set-channel-description/set-channel-description.mjs b/components/slack_bot/actions/set-channel-description/set-channel-description.mjs index ed8f440429ad0..88819d37d9aaf 100644 --- a/components/slack_bot/actions/set-channel-description/set-channel-description.mjs +++ b/components/slack_bot/actions/set-channel-description/set-channel-description.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/set-channel-description/set-channel-description.mjs"; +import component from "@pipedream/slack/actions/set-channel-description/set-channel-description.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -11,5 +11,5 @@ export default { }), key: "slack_bot-set-channel-description", description: "Change the description or purpose of a channel (Bot). [See the documentation](https://api.slack.com/methods/conversations.setPurpose)", - version: "0.0.2", + version: "0.0.3", }; diff --git a/components/slack_bot/actions/set-channel-topic/set-channel-topic.mjs b/components/slack_bot/actions/set-channel-topic/set-channel-topic.mjs index b845b906580c8..83ba223a1c76f 100644 --- a/components/slack_bot/actions/set-channel-topic/set-channel-topic.mjs +++ b/components/slack_bot/actions/set-channel-topic/set-channel-topic.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/set-channel-topic/set-channel-topic.mjs"; +import component from "@pipedream/slack/actions/set-channel-topic/set-channel-topic.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -11,5 +11,5 @@ export default { }), key: "slack_bot-set-channel-topic", description: "Set the topic on a selected channel (Bot). [See the documentation](https://api.slack.com/methods/conversations.setTopic)", - version: "0.0.4", + version: "0.0.5", }; diff --git a/components/slack_bot/actions/update-group-members/update-group-members.mjs b/components/slack_bot/actions/update-group-members/update-group-members.mjs index d9aedd2658964..d88aebfa22ae7 100644 --- a/components/slack_bot/actions/update-group-members/update-group-members.mjs +++ b/components/slack_bot/actions/update-group-members/update-group-members.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/update-group-members/update-group-members.mjs"; +import component from "@pipedream/slack/actions/update-group-members/update-group-members.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -11,5 +11,5 @@ export default { }), key: "slack_bot-update-group-members", description: "Update the list of users for a User Group (Bot). [See docs here](https://api.slack.com/methods/usergroups.users.update)", - version: "0.0.2", + version: "0.0.3", }; diff --git a/components/slack_bot/actions/update-message/update-message.mjs b/components/slack_bot/actions/update-message/update-message.mjs index 376d9402ee5a7..ae5a8a28574fa 100644 --- a/components/slack_bot/actions/update-message/update-message.mjs +++ b/components/slack_bot/actions/update-message/update-message.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/update-message/update-message.mjs"; +import component from "@pipedream/slack/actions/update-message/update-message.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -14,5 +14,5 @@ export default { }), key: "slack_bot-update-message", description: "Update a message (Bot). [See the documentation](https://api.slack.com/methods/chat.update)", - version: "0.0.4", + version: "0.0.5", }; diff --git a/components/slack_bot/actions/upload-file/upload-file.mjs b/components/slack_bot/actions/upload-file/upload-file.mjs index 940b8f29e47e8..1b1e95660dda6 100644 --- a/components/slack_bot/actions/upload-file/upload-file.mjs +++ b/components/slack_bot/actions/upload-file/upload-file.mjs @@ -1,4 +1,4 @@ -import component from "../../../slack/actions/upload-file/upload-file.mjs"; +import component from "@pipedream/slack/actions/upload-file/upload-file.mjs"; import utils from "../../common/utils.mjs"; /* eslint-disable pipedream/required-properties-type */ @@ -11,5 +11,5 @@ export default { }), key: "slack_bot-upload-file", description: "Upload a file (Bot). [See the documentation](https://api.slack.com/methods/files.upload)", - version: "0.0.5", + version: "0.0.6", }; diff --git a/components/slack_bot/common/constants.mjs b/components/slack_bot/common/constants.mjs index a63f4b71837cc..2e40ebe0a5f2c 100644 --- a/components/slack_bot/common/constants.mjs +++ b/components/slack_bot/common/constants.mjs @@ -1,4 +1,4 @@ -import constants from "../../slack/common/constants.mjs"; +import constants from "@pipedream/slack/common/constants.mjs"; const LAST_TIMESTAMP = "lastTimestamp"; diff --git a/components/slack_bot/package.json b/components/slack_bot/package.json index 3d69251679617..543fb4d1e65e5 100644 --- a/components/slack_bot/package.json +++ b/components/slack_bot/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/slack_bot", - "version": "0.5.5", + "version": "0.5.6", "description": "Pipedream Slack_bot Components", "main": "slack_bot.app.mjs", "keywords": [ @@ -15,6 +15,7 @@ }, "dependencies": { "@pipedream/platform": "^3.0.0", - "@slack/web-api": "^5.15.0" + "@slack/web-api": "^5.15.0", + "@pipedream/slack": "^0.10.2" } } diff --git a/components/slack_bot/slack_bot.app.mjs b/components/slack_bot/slack_bot.app.mjs index 1555d867ef4d2..4eaaa7effddce 100644 --- a/components/slack_bot/slack_bot.app.mjs +++ b/components/slack_bot/slack_bot.app.mjs @@ -1,4 +1,4 @@ -import slack from "../slack/slack.app.mjs"; +import slack from "@pipedream/slack"; export default { ...slack, diff --git a/components/slack_bot/sources/new-direct-message/new-direct-message.mjs b/components/slack_bot/sources/new-direct-message/new-direct-message.mjs index 866dacb30d375..67e28fd7c7c9b 100644 --- a/components/slack_bot/sources/new-direct-message/new-direct-message.mjs +++ b/components/slack_bot/sources/new-direct-message/new-direct-message.mjs @@ -6,7 +6,7 @@ export default { ...common, key: "slack_bot-new-direct-message", name: "New Direct Message", - version: "0.0.4", + version: "0.0.5", description: "Emit new event when a message is posted in a direct message channel (Bot). To open a conversation, use the Pipedream Action \"Send a Direct Message\" to send a message from the Bot, or enable direct messages to the Bot in your App Settings (Settings->App Home->Show Tabs->Messages Tab), and send a direct message to the Bot.", type: "source", dedupe: "unique", diff --git a/components/slack_bot/sources/new-message-in-channel/new-message-in-channel.mjs b/components/slack_bot/sources/new-message-in-channel/new-message-in-channel.mjs index c08ae2aa5c953..31280aa10dac3 100644 --- a/components/slack_bot/sources/new-message-in-channel/new-message-in-channel.mjs +++ b/components/slack_bot/sources/new-message-in-channel/new-message-in-channel.mjs @@ -6,7 +6,7 @@ export default { ...common, key: "slack_bot-new-message-in-channel", name: "New Message In Channel", - version: "0.0.4", + version: "0.0.5", description: "Emit new event when a new message is posted to a public, private or group channel (Bot)", type: "source", dedupe: "unique", diff --git a/components/trustpilot/package.json b/components/trustpilot/package.json index eac454d0d144d..7e03ac2b66435 100644 --- a/components/trustpilot/package.json +++ b/components/trustpilot/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/trustpilot", - "version": "0.1.2", + "version": "0.1.3", "description": "Pipedream Trustpilot Components", "main": "trustpilot.app.mjs", "keywords": [ diff --git a/components/trustpilot/trustpilot.app.mjs b/components/trustpilot/trustpilot.app.mjs index b777ae3a68851..2f6be2e4e5e3b 100644 --- a/components/trustpilot/trustpilot.app.mjs +++ b/components/trustpilot/trustpilot.app.mjs @@ -1,5 +1,4 @@ import { axios } from "@pipedream/platform"; -import { defineApp } from "@pipedream/types"; import * as crypto from "crypto"; import { BASE_URL, @@ -23,7 +22,7 @@ import { validateReviewId, } from "./common/utils.mjs"; -export default defineApp({ +export default { type: "app", app: "trustpilot", propDefinitions: { @@ -578,4 +577,4 @@ export default defineApp({ }, }, -}); +}; diff --git a/components/wildberries/package.json b/components/wildberries/package.json index 02471b552b6d0..5e7af8cb39809 100644 --- a/components/wildberries/package.json +++ b/components/wildberries/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/wildberries", - "version": "0.0.3", + "version": "0.0.4", "description": "Pipedream Wildberries Components", "main": "dist/app/wildberries.app.mjs", "keywords": [ @@ -17,5 +17,8 @@ }, "dependencies": { "@pipedream/platform": "^1.1.1" + }, + "devDependencies": { + "@pipedream/types": "^0.3.2" } } diff --git a/components/youtube_data_api_custom_app/actions/add-playlist-items/add-playlist-items.mjs b/components/youtube_data_api_custom_app/actions/add-playlist-items/add-playlist-items.mjs index 320009dfb8627..47f7b3f676137 100644 --- a/components/youtube_data_api_custom_app/actions/add-playlist-items/add-playlist-items.mjs +++ b/components/youtube_data_api_custom_app/actions/add-playlist-items/add-playlist-items.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/add-playlist-items/common.mjs"; +import common from "@pipedream/youtube_data_api/actions/add-playlist-items/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-add-playlist-items", name: "Add Playlist Items", description: "Adds resources to a playlist. [See the docs](https://developers.google.com/youtube/v3/docs/playlistItems/insert) for more information", - version: "0.0.1", + version: "0.0.2", type: "action", props: { youtubeDataApi, diff --git a/components/youtube_data_api_custom_app/actions/channel-statistics/channel-statistics.mjs b/components/youtube_data_api_custom_app/actions/channel-statistics/channel-statistics.mjs index cd666ffcc522d..536d7a7d3cd30 100644 --- a/components/youtube_data_api_custom_app/actions/channel-statistics/channel-statistics.mjs +++ b/components/youtube_data_api_custom_app/actions/channel-statistics/channel-statistics.mjs @@ -1,13 +1,13 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/channel-statistics/common.mjs"; -import consts from "../../../youtube_data_api/common/consts.mjs"; +import common from "@pipedream/youtube_data_api/actions/channel-statistics/common.mjs"; +import consts from "@pipedream/youtube_data_api/common/consts.mjs"; export default { ...common, key: "youtube_data_api_custom_app-channel-statistics", name: "Channel Statistics", description: "Returns statistics from my YouTube Channel or by id. [See the docs](https://developers.google.com/youtube/v3/docs/channels/list) for more information", - version: "0.0.2", + version: "0.0.3", type: "action", dedupe: "unique", props: { diff --git a/components/youtube_data_api_custom_app/actions/create-comment-thread/create-comment-thread.mjs b/components/youtube_data_api_custom_app/actions/create-comment-thread/create-comment-thread.mjs index 351531e1a79d5..4a211319f1e4a 100644 --- a/components/youtube_data_api_custom_app/actions/create-comment-thread/create-comment-thread.mjs +++ b/components/youtube_data_api_custom_app/actions/create-comment-thread/create-comment-thread.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/create-comment-thread/common.mjs"; +import common from "@pipedream/youtube_data_api/actions/create-comment-thread/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-create-comment-thread", name: "Create Comment Thread", description: "Creates a new top-level comment in a video. [See the docs](https://developers.google.com/youtube/v3/docs/commentThreads/insert) for more information", - version: "0.0.1", + version: "0.0.2", type: "action", props: { youtubeDataApi, diff --git a/components/youtube_data_api_custom_app/actions/create-playlist/create-playlist.mjs b/components/youtube_data_api_custom_app/actions/create-playlist/create-playlist.mjs index 9820291a944cb..89ff2c830b994 100644 --- a/components/youtube_data_api_custom_app/actions/create-playlist/create-playlist.mjs +++ b/components/youtube_data_api_custom_app/actions/create-playlist/create-playlist.mjs @@ -1,13 +1,13 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/create-playlist/common.mjs"; -import consts from "../../../youtube_data_api/common/consts.mjs"; +import common from "@pipedream/youtube_data_api/actions/create-playlist/common.mjs"; +import consts from "@pipedream/youtube_data_api/common/consts.mjs"; export default { ...common, key: "youtube_data_api_custom_app-create-playlist", name: "Create Playlist", description: "Creates a playlist. [See the docs](https://developers.google.com/youtube/v3/docs/playlists/insert) for more information", - version: "0.0.1", + version: "0.0.2", type: "action", props: { youtubeDataApi, diff --git a/components/youtube_data_api_custom_app/actions/delete-playlist-items/delete-playlist-items.mjs b/components/youtube_data_api_custom_app/actions/delete-playlist-items/delete-playlist-items.mjs index fc3f12374a279..97dbc372f477f 100644 --- a/components/youtube_data_api_custom_app/actions/delete-playlist-items/delete-playlist-items.mjs +++ b/components/youtube_data_api_custom_app/actions/delete-playlist-items/delete-playlist-items.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/delete-playlist-items/common.mjs"; +import common from "@pipedream/youtube_data_api/actions/delete-playlist-items/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-delete-playlist-items", name: "Delete Playlist Items", description: "Deletes a playlist item. [See the docs](https://developers.google.com/youtube/v3/docs/playlistItems/delete) for more information", - version: "0.0.1", + version: "0.0.2", type: "action", props: { youtubeDataApi, diff --git a/components/youtube_data_api_custom_app/actions/delete-playlist/delete-playlist.mjs b/components/youtube_data_api_custom_app/actions/delete-playlist/delete-playlist.mjs index c5aabbeb9f5a9..ed6fe8c32f4c0 100644 --- a/components/youtube_data_api_custom_app/actions/delete-playlist/delete-playlist.mjs +++ b/components/youtube_data_api_custom_app/actions/delete-playlist/delete-playlist.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/delete-playlist/common.mjs"; +import common from "@pipedream/youtube_data_api/actions/delete-playlist/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-delete-playlist", name: "Delete Playlist", description: "Deletes a playlist. [See the docs](https://developers.google.com/youtube/v3/docs/playlists/delete) for more information", - version: "0.0.1", + version: "0.0.2", type: "action", props: { youtubeDataApi, diff --git a/components/youtube_data_api_custom_app/actions/list-activities/list-activities.mjs b/components/youtube_data_api_custom_app/actions/list-activities/list-activities.mjs index f32e8698f290f..c956a4ea1aed1 100644 --- a/components/youtube_data_api_custom_app/actions/list-activities/list-activities.mjs +++ b/components/youtube_data_api_custom_app/actions/list-activities/list-activities.mjs @@ -1,13 +1,13 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/list-activities/common.mjs"; -import consts from "../../../youtube_data_api/common/consts.mjs"; +import common from "@pipedream/youtube_data_api/actions/list-activities/common.mjs"; +import consts from "@pipedream/youtube_data_api/common/consts.mjs"; export default { ...common, key: "youtube_data_api_custom_app-list-activities", name: "List Activities", description: "Returns a list of channel activity events that match the request criteria. [See the docs](https://developers.google.com/youtube/v3/docs/channels/list) for more information", - version: "0.0.2", + version: "0.0.3", type: "action", dedupe: "unique", props: { diff --git a/components/youtube_data_api_custom_app/actions/list-playlists/list-playlists.mjs b/components/youtube_data_api_custom_app/actions/list-playlists/list-playlists.mjs index dcfeb4999427f..3876008c0ab1b 100644 --- a/components/youtube_data_api_custom_app/actions/list-playlists/list-playlists.mjs +++ b/components/youtube_data_api_custom_app/actions/list-playlists/list-playlists.mjs @@ -1,13 +1,13 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/list-playlists/common.mjs"; -import consts from "../../../youtube_data_api/common/consts.mjs"; +import common from "@pipedream/youtube_data_api/actions/list-playlists/common.mjs"; +import consts from "@pipedream/youtube_data_api/common/consts.mjs"; export default { ...common, key: "youtube_data_api_custom_app-list-playlists", name: "List Playlists", description: "Returns a collection of playlists that match the API request parameters. [See the docs](https://developers.google.com/youtube/v3/docs/playlists/list) for more information", - version: "0.0.2", + version: "0.0.3", type: "action", dedupe: "unique", props: { diff --git a/components/youtube_data_api_custom_app/actions/list-videos/list-videos.mjs b/components/youtube_data_api_custom_app/actions/list-videos/list-videos.mjs index 08093d5f202bd..01558c40f6cbb 100644 --- a/components/youtube_data_api_custom_app/actions/list-videos/list-videos.mjs +++ b/components/youtube_data_api_custom_app/actions/list-videos/list-videos.mjs @@ -1,13 +1,13 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/list-videos/common.mjs"; -import consts from "../../../youtube_data_api/common/consts.mjs"; +import common from "@pipedream/youtube_data_api/actions/list-videos/common.mjs"; +import consts from "@pipedream/youtube_data_api/common/consts.mjs"; export default { ...common, key: "youtube_data_api_custom_app-list-videos", name: "List Videos", description: "Returns a list of videos that match the API request parameters. [See the docs](https://developers.google.com/youtube/v3/docs/videos/list) for more information", - version: "0.0.2", + version: "0.0.3", type: "action", dedupe: "unique", props: { diff --git a/components/youtube_data_api_custom_app/actions/reply-to-comment/reply-to-comment.mjs b/components/youtube_data_api_custom_app/actions/reply-to-comment/reply-to-comment.mjs index 804ee5dc9a37d..e6f91db9fc973 100644 --- a/components/youtube_data_api_custom_app/actions/reply-to-comment/reply-to-comment.mjs +++ b/components/youtube_data_api_custom_app/actions/reply-to-comment/reply-to-comment.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/reply-to-comment/common.mjs"; +import common from "@pipedream/youtube_data_api/actions/reply-to-comment/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-reply-to-comment", name: "Reply To Comment", description: "Creates a reply to an existing comment. [See the docs](https://developers.google.com/youtube/v3/docs/comments/insert) for more information", - version: "0.0.1", + version: "0.0.2", type: "action", props: { youtubeDataApi, diff --git a/components/youtube_data_api_custom_app/actions/update-channel/update-channel.mjs b/components/youtube_data_api_custom_app/actions/update-channel/update-channel.mjs index e8b679d71302d..a3134926f7fd7 100644 --- a/components/youtube_data_api_custom_app/actions/update-channel/update-channel.mjs +++ b/components/youtube_data_api_custom_app/actions/update-channel/update-channel.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/update-channel/common.mjs"; +import common from "@pipedream/youtube_data_api/actions/update-channel/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-update-channel", name: "Update Channel", description: "Updates a channel's metadata. [See the docs](https://developers.google.com/youtube/v3/docs/channels/update) for more information", - version: "0.0.1", + version: "0.0.2", type: "action", props: { youtubeDataApi, diff --git a/components/youtube_data_api_custom_app/actions/update-playlist/update-playlist.mjs b/components/youtube_data_api_custom_app/actions/update-playlist/update-playlist.mjs index 7d097875dd119..daeca6b3b3c1b 100644 --- a/components/youtube_data_api_custom_app/actions/update-playlist/update-playlist.mjs +++ b/components/youtube_data_api_custom_app/actions/update-playlist/update-playlist.mjs @@ -1,13 +1,13 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/update-playlist/common.mjs"; -import consts from "../../../youtube_data_api/common/consts.mjs"; +import common from "@pipedream/youtube_data_api/actions/update-playlist/common.mjs"; +import consts from "@pipedream/youtube_data_api/common/consts.mjs"; export default { ...common, key: "youtube_data_api_custom_app-update-playlist", name: "Update Playlist", description: "Modifies a playlist. For example, you could change a playlist's title, description, or privacy status. **If you are submitting an update request, and your request does not specify a value for a property that already has a value, the property's existing value will be deleted.** [See the docs](https://developers.google.com/youtube/v3/docs/playlists/update) for more information", - version: "0.0.2", + version: "0.0.3", type: "action", dedupe: "unique", props: { diff --git a/components/youtube_data_api_custom_app/actions/update-video-details/update-video-details.mjs b/components/youtube_data_api_custom_app/actions/update-video-details/update-video-details.mjs index bd75072f46223..f0b3cf2fb6caf 100644 --- a/components/youtube_data_api_custom_app/actions/update-video-details/update-video-details.mjs +++ b/components/youtube_data_api_custom_app/actions/update-video-details/update-video-details.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/update-video-details/common.mjs"; +import common from "@pipedream/youtube_data_api/actions/update-video-details/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-update-video-details", name: "Update Video Details", description: "Updates a video's metadata. [See the docs](https://developers.google.com/youtube/v3/docs/videos/update) for more information", - version: "0.0.1", + version: "0.0.2", type: "action", props: { youtubeDataApi, diff --git a/components/youtube_data_api_custom_app/actions/upload-channel-banner/upload-channel-banner.mjs b/components/youtube_data_api_custom_app/actions/upload-channel-banner/upload-channel-banner.mjs index eb6ce6da361ef..5fd1e481ab0a8 100644 --- a/components/youtube_data_api_custom_app/actions/upload-channel-banner/upload-channel-banner.mjs +++ b/components/youtube_data_api_custom_app/actions/upload-channel-banner/upload-channel-banner.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/upload-channel-banner/common.mjs"; +import common from "@pipedream/youtube_data_api/actions/upload-channel-banner/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-upload-channel-banner", name: "Upload Channel Banner", description: "Uploads a channel banner image to YouTube. [See the docs](https://developers.google.com/youtube/v3/docs/channelBanners/insert) for more information", - version: "0.0.3", + version: "0.0.4", type: "action", props: { youtubeDataApi, diff --git a/components/youtube_data_api_custom_app/actions/upload-thumbnail/upload-thumbnail.mjs b/components/youtube_data_api_custom_app/actions/upload-thumbnail/upload-thumbnail.mjs index 106d14ee6e003..df6ef9ca4aa5d 100644 --- a/components/youtube_data_api_custom_app/actions/upload-thumbnail/upload-thumbnail.mjs +++ b/components/youtube_data_api_custom_app/actions/upload-thumbnail/upload-thumbnail.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/upload-thumbnail/common.mjs"; +import common from "@pipedream/youtube_data_api/actions/upload-thumbnail/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-upload-thumbnail", name: "Upload Thumbnail", description: "Uploads a custom video thumbnail to YouTube and sets it for a video. [See the docs](https://developers.google.com/youtube/v3/docs/thumbnails/set) for more information", - version: "0.0.2", + version: "0.0.3", type: "action", props: { youtubeDataApi, diff --git a/components/youtube_data_api_custom_app/actions/upload-video/upload-video.mjs b/components/youtube_data_api_custom_app/actions/upload-video/upload-video.mjs index f028f3e632a15..e185686e488b5 100644 --- a/components/youtube_data_api_custom_app/actions/upload-video/upload-video.mjs +++ b/components/youtube_data_api_custom_app/actions/upload-video/upload-video.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/actions/upload-video/common.mjs"; +import common from "@pipedream/youtube_data_api/actions/upload-video/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-upload-video", name: "Upload Video", description: "Post a video to your channel. [See the docs](https://developers.google.com/youtube/v3/docs/videos/insert) for more information", - version: "0.0.3", + version: "0.0.4", type: "action", dedupe: "unique", props: { diff --git a/components/youtube_data_api_custom_app/package.json b/components/youtube_data_api_custom_app/package.json index 02741f13144b9..9756ef0908d8a 100644 --- a/components/youtube_data_api_custom_app/package.json +++ b/components/youtube_data_api_custom_app/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/youtube_data_api_custom_app", - "version": "0.0.8", + "version": "0.0.9", "description": "Pipedream Youtube Custom App Components", "main": "youtube_data_api_custom_app.app.mjs", "keywords": [ @@ -14,6 +14,7 @@ }, "dependencies": { "@googleapis/youtube": "^6.0.0", - "got": "^12.5.1" + "got": "^12.5.1", + "@pipedream/youtube_data_api": "^1.0.1" } } diff --git a/components/youtube_data_api_custom_app/sources/new-comment-posted/new-comment-posted.mjs b/components/youtube_data_api_custom_app/sources/new-comment-posted/new-comment-posted.mjs index 578ae5607daf8..d9fd08989614d 100644 --- a/components/youtube_data_api_custom_app/sources/new-comment-posted/new-comment-posted.mjs +++ b/components/youtube_data_api_custom_app/sources/new-comment-posted/new-comment-posted.mjs @@ -1,5 +1,5 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/sources/new-comment-posted/common.mjs"; +import common from "@pipedream/youtube_data_api/sources/new-comment-posted/common.mjs"; export default { ...common, @@ -7,7 +7,7 @@ export default { key: "youtube_data_api_custom_app-new-comment-posted", name: "New Comment Posted", description: "Emit new event for each new comment or reply posted to a Youtube video.", - version: "0.0.1", + version: "0.0.2", dedupe: "unique", props: { youtubeDataApi, diff --git a/components/youtube_data_api_custom_app/sources/new-liked-videos/new-liked-videos.mjs b/components/youtube_data_api_custom_app/sources/new-liked-videos/new-liked-videos.mjs index 69d2758586779..3a9305299587f 100644 --- a/components/youtube_data_api_custom_app/sources/new-liked-videos/new-liked-videos.mjs +++ b/components/youtube_data_api_custom_app/sources/new-liked-videos/new-liked-videos.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/sources/new-liked-videos/common.mjs"; +import common from "@pipedream/youtube_data_api/sources/new-liked-videos/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-new-liked-videos", name: "New Liked Videos", description: "Emit new event for each new Youtube video liked by the authenticated user", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", props: { diff --git a/components/youtube_data_api_custom_app/sources/new-subscriber/new-subscriber.mjs b/components/youtube_data_api_custom_app/sources/new-subscriber/new-subscriber.mjs index 1ad4ed1f3625e..4eee191bc4705 100644 --- a/components/youtube_data_api_custom_app/sources/new-subscriber/new-subscriber.mjs +++ b/components/youtube_data_api_custom_app/sources/new-subscriber/new-subscriber.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/sources/new-subscriber/common.mjs"; +import common from "@pipedream/youtube_data_api/sources/new-subscriber/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-new-subscriber", name: "New Subscriber", description: "Emit new event for each new Youtube subscriber to user Channel.", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", props: { diff --git a/components/youtube_data_api_custom_app/sources/new-subscription/new-subscription.mjs b/components/youtube_data_api_custom_app/sources/new-subscription/new-subscription.mjs index 216e77eb4020f..257844aefde35 100644 --- a/components/youtube_data_api_custom_app/sources/new-subscription/new-subscription.mjs +++ b/components/youtube_data_api_custom_app/sources/new-subscription/new-subscription.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/sources/new-subscription/common.mjs"; +import common from "@pipedream/youtube_data_api/sources/new-subscription/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-new-subscription", name: "New Subscription", description: "Emit new event for each new subscription from authenticated user.", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", props: { diff --git a/components/youtube_data_api_custom_app/sources/new-videos-by-handle/new-videos-by-handle.mjs b/components/youtube_data_api_custom_app/sources/new-videos-by-handle/new-videos-by-handle.mjs index a20e02ebab3be..c430d1ca0c75e 100644 --- a/components/youtube_data_api_custom_app/sources/new-videos-by-handle/new-videos-by-handle.mjs +++ b/components/youtube_data_api_custom_app/sources/new-videos-by-handle/new-videos-by-handle.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/sources/new-videos-by-handle/common.mjs"; +import common from "@pipedream/youtube_data_api/sources/new-videos-by-handle/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-new-videos-by-handle", name: "New Videos by Handle", description: "Emit new event for each new Youtube video tied to a handle.", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", props: { diff --git a/components/youtube_data_api_custom_app/sources/new-videos-by-location/new-videos-by-location.mjs b/components/youtube_data_api_custom_app/sources/new-videos-by-location/new-videos-by-location.mjs deleted file mode 100644 index cd23f717d9a0a..0000000000000 --- a/components/youtube_data_api_custom_app/sources/new-videos-by-location/new-videos-by-location.mjs +++ /dev/null @@ -1,16 +0,0 @@ -import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/sources/new-videos-by-location/common.mjs"; - -export default { - ...common, - key: "youtube_data_api_custom_app-new-videos-by-location", - name: "New Videos by Location", - description: "Emit new event for each new YouTube video tied to a location.", - version: "0.0.2", - type: "source", - dedupe: "unique", - props: { - youtubeDataApi, - ...common.props, - }, -}; diff --git a/components/youtube_data_api_custom_app/sources/new-videos-by-search/new-videos-by-search.mjs b/components/youtube_data_api_custom_app/sources/new-videos-by-search/new-videos-by-search.mjs index 815bed592dd7b..8a414c6647350 100644 --- a/components/youtube_data_api_custom_app/sources/new-videos-by-search/new-videos-by-search.mjs +++ b/components/youtube_data_api_custom_app/sources/new-videos-by-search/new-videos-by-search.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/sources/new-videos-by-search/common.mjs"; +import common from "@pipedream/youtube_data_api/sources/new-videos-by-search/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-new-videos-by-search", name: "New Videos by Search", description: "Emit new event for each new YouTube video matching a search query.", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", props: { diff --git a/components/youtube_data_api_custom_app/sources/new-videos-in-channel/new-videos-in-channel.mjs b/components/youtube_data_api_custom_app/sources/new-videos-in-channel/new-videos-in-channel.mjs deleted file mode 100644 index 0bdbe02ecfad7..0000000000000 --- a/components/youtube_data_api_custom_app/sources/new-videos-in-channel/new-videos-in-channel.mjs +++ /dev/null @@ -1,16 +0,0 @@ -import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/sources/new-videos-in-channel/common.mjs"; - -export default { - ...common, - key: "youtube_data_api_custom_app-new-videos-in-channel", - name: "New Videos in Channel", - description: "Emit new event for each new Youtube video posted to a Channel.", - version: "0.0.2", - type: "source", - dedupe: "unique", - props: { - youtubeDataApi, - ...common.props, - }, -}; diff --git a/components/youtube_data_api_custom_app/sources/new-videos-in-playlist/new-videos-in-playlist.mjs b/components/youtube_data_api_custom_app/sources/new-videos-in-playlist/new-videos-in-playlist.mjs index 542b78bc38afe..3f568471d270c 100644 --- a/components/youtube_data_api_custom_app/sources/new-videos-in-playlist/new-videos-in-playlist.mjs +++ b/components/youtube_data_api_custom_app/sources/new-videos-in-playlist/new-videos-in-playlist.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/sources/new-videos-in-playlist/common.mjs"; +import common from "@pipedream/youtube_data_api/sources/new-videos-in-playlist/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-new-videos-in-playlist", name: "New Videos in Playlist", description: "Emit new event for each new Youtube video added to a Playlist.", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", props: { diff --git a/components/youtube_data_api_custom_app/sources/new-videos-in-subscribed-channels/new-videos-in-subscribed-channels.mjs b/components/youtube_data_api_custom_app/sources/new-videos-in-subscribed-channels/new-videos-in-subscribed-channels.mjs index 2d071bdda8ff8..92b81028284f2 100644 --- a/components/youtube_data_api_custom_app/sources/new-videos-in-subscribed-channels/new-videos-in-subscribed-channels.mjs +++ b/components/youtube_data_api_custom_app/sources/new-videos-in-subscribed-channels/new-videos-in-subscribed-channels.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/sources/new-videos-in-subscribed-channels/common.mjs"; +import common from "@pipedream/youtube_data_api/sources/new-videos-in-subscribed-channels/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-new-videos-in-subscribed-channels", name: "New Videos in Subscribed Channels", description: "Emit new event for each new YouTube video posted to a subscribed channel.", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", props: { diff --git a/components/youtube_data_api_custom_app/sources/new-videos/new-videos.mjs b/components/youtube_data_api_custom_app/sources/new-videos/new-videos.mjs index fc81772609157..22849e1ada9a0 100644 --- a/components/youtube_data_api_custom_app/sources/new-videos/new-videos.mjs +++ b/components/youtube_data_api_custom_app/sources/new-videos/new-videos.mjs @@ -1,12 +1,12 @@ import youtubeDataApi from "../../youtube_data_api_custom_app.app.mjs"; -import common from "../../../youtube_data_api/sources/new-videos/common.mjs"; +import common from "@pipedream/youtube_data_api/sources/new-videos/common.mjs"; export default { ...common, key: "youtube_data_api_custom_app-new-videos", name: "New Videos", description: "Emit new event for each new Youtube video the user posts.", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", props: { diff --git a/components/youtube_data_api_custom_app/youtube_data_api_custom_app.app.mjs b/components/youtube_data_api_custom_app/youtube_data_api_custom_app.app.mjs index 1f6e29ca7da11..9fc65df80a9f6 100644 --- a/components/youtube_data_api_custom_app/youtube_data_api_custom_app.app.mjs +++ b/components/youtube_data_api_custom_app/youtube_data_api_custom_app.app.mjs @@ -1,4 +1,4 @@ -import commonApp from "../youtube_data_api/common-app.mjs"; +import commonApp from "@pipedream/youtube_data_api/common-app.mjs"; export default { ...commonApp, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 090d37d94f88d..19b7319e34ab8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -818,6 +818,9 @@ importers: '@aws-sdk/client-sesv2': specifier: ^3.87.0 version: 3.696.0(aws-crt@1.25.0) + '@pipedream/aws': + specifier: ^1.1.0 + version: 1.1.0(aws-crt@1.25.0)(babel-plugin-macros@3.1.0) '@pipedream/platform': specifier: ^0.10.0 version: 0.10.0 @@ -5531,6 +5534,9 @@ importers: components/gitlab_developer_app: dependencies: + '@pipedream/gitlab': + specifier: ^0.5.6 + version: 0.5.6 '@pipedream/platform': specifier: ^1.6.4 version: 1.6.6 @@ -9455,6 +9461,9 @@ importers: components/notiff: dependencies: + '@pipedream/notiff_io': + specifier: ^0.1.0 + version: 0.1.0 '@pipedream/platform': specifier: ^3.0.3 version: 3.0.3 @@ -10511,6 +10520,10 @@ importers: '@pipedream/platform': specifier: ^1.1.1 version: 1.6.6 + devDependencies: + '@pipedream/types': + specifier: ^0.3.2 + version: 0.3.2 components/piloterr: dependencies: @@ -11081,7 +11094,11 @@ importers: specifier: ^11.1.0 version: 11.1.0 - components/procore_sandbox: {} + components/procore_sandbox: + dependencies: + '@pipedream/procore': + specifier: ^0.1.0 + version: 0.1.0 components/prodatakey: {} @@ -12211,6 +12228,10 @@ importers: '@pipedream/platform': specifier: ^1.2.1 version: 1.6.6 + devDependencies: + '@pipedream/types': + specifier: ^0.3.2 + version: 0.3.2 components/salesmsg: dependencies: @@ -13105,6 +13126,9 @@ importers: '@pipedream/platform': specifier: ^3.0.0 version: 3.0.3 + '@pipedream/slack': + specifier: ^0.10.2 + version: 0.10.2 '@slack/web-api': specifier: ^5.15.0 version: 5.15.0 @@ -15602,6 +15626,10 @@ importers: '@pipedream/platform': specifier: ^1.1.1 version: 1.6.6 + devDependencies: + '@pipedream/types': + specifier: ^0.3.2 + version: 0.3.2 components/winston_ai: dependencies: @@ -16018,6 +16046,9 @@ importers: '@googleapis/youtube': specifier: ^6.0.0 version: 6.0.0 + '@pipedream/youtube_data_api': + specifier: ^1.0.1 + version: 1.0.1 got: specifier: ^12.5.1 version: 12.6.1 @@ -16585,14 +16616,6 @@ importers: specifier: ^6.0.0 version: 6.2.0 - modelcontextprotocol/node_modules2/@modelcontextprotocol/sdk/dist/cjs: {} - - modelcontextprotocol/node_modules2/@modelcontextprotocol/sdk/dist/esm: {} - - modelcontextprotocol/node_modules2/zod-to-json-schema/dist/cjs: {} - - modelcontextprotocol/node_modules2/zod-to-json-schema/dist/esm: {} - packages/ai: dependencies: '@pipedream/sdk': @@ -20439,6 +20462,9 @@ packages: resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==} engines: {node: '>= 10.0.0'} + '@pipedream/aws@1.1.0': + resolution: {integrity: sha512-1v/AcyW72RgAd6ZSQ6odj6VN9dy0w1JQZPc97s2+JuIEkfgxrH/o/djkdyMAPSwGx+8uU9EMKIXMQdNDyLdlSA==} + '@pipedream/brex@0.1.0': resolution: {integrity: sha512-Cq/A6fwVEb9kAGiAtcPlNpL1JJhBevMxOnMhQzUkUxzQTBNedsmvMzW963cNxqG45V4fyOBuHEPoXl3meH4ATg==} @@ -20460,6 +20486,9 @@ packages: '@pipedream/eslint-plugin-pipedream@0.2.5': resolution: {integrity: sha512-99e88TuaQM9VGc64JlJueuk+3dCyuNuxOqTPCVg+QLbfzqovHnDHZ5cHqkzPjDLtFsFrAucIANIcgKcb0YAoxg==} + '@pipedream/gitlab@0.5.6': + resolution: {integrity: sha512-HoGZjfI5z5cUU4KPo9f0QJ4pLS+jMaK5132OQwlnzJ3FbqH+MSBxqQoRNoOcBfjGfEYfRRbs1wId592uC6nVmg==} + '@pipedream/google_drive@0.8.8': resolution: {integrity: sha512-cwRCfFv86+GW0G3huAzhXCPvZ+BWaQ+KAeOlGUJBCK1sPsHzNWY1sOAOvDKDVPh1xiSyCzO29+e9UynCfcCSrw==} @@ -20487,6 +20516,9 @@ packages: '@pipedream/monday@0.7.0': resolution: {integrity: sha512-ovVtLhKMJpOTSoc7JcVLrbVrJxW4BT96eW79TiiPc+DgMSM7ouRmCk5lHL2xCAtrqDForXSrXXGjHOAzhJsytA==} + '@pipedream/notiff_io@0.1.0': + resolution: {integrity: sha512-jgt5JJGxI9SM6chDeQpxbaS/NSuUUxhe/PeAXRdZKx28Gp0QCxW7egIImC3pqQ9aMSubaeygRyR0ELhKhmbtPg==} + '@pipedream/notion@0.6.2': resolution: {integrity: sha512-xA2oh2eVwUrQ/pvAAtlLjWaWJsYaDhNQ00W3xkv5RcAMYKA0EbUQzSjL6ljSWlWiye3CftoFxK/L56Mld38iOQ==} @@ -20529,6 +20561,9 @@ packages: '@pipedream/postgresql@2.2.3': resolution: {integrity: sha512-Co9r4UKvvimEPo9T4v+EfVn/Sqqw8+X7PtvsAF7tydq7CHpkmOT9eYAiD0Kuybg5WbuWuqDaXHHmhVtsAxgpBw==} + '@pipedream/procore@0.1.0': + resolution: {integrity: sha512-9AD+MfV/PrgvZN5BJkTiDXZh8ymcjBLd1coTIVFOAfRFvU8Iz1dHfIn40OpgdylEo8bsqJLJHN0V8d4pAk1Byg==} + '@pipedream/quickbooks@0.7.1': resolution: {integrity: sha512-N1+aZZRPSFiUSSrXWAQ+5zROhKwwkkXZ4S88cH4XZYqXehTpDPIOsHwMMhxnLmsQtzslb2DisShLZRQuWSxRww==} @@ -20553,6 +20588,9 @@ packages: '@pipedream/shopify@0.7.0': resolution: {integrity: sha512-bZoTDxcwBIepWhT8LVXzOxAO3S9NM8U1NEfS5106aDHFizr6L7lg/78+GaPdishK12oce0B/fCFY0ssd5AQxWA==} + '@pipedream/slack@0.10.2': + resolution: {integrity: sha512-hzOsyiwM+QqdVdgmc/aZhUmNKHGv7gPbo5JbFVkIQxb2C0WsK4V1in6JYbylkA9TR4/QLFpOlXyuKm14d6L0ZQ==} + '@pipedream/snowflake-sdk@1.0.8': resolution: {integrity: sha512-/nLCQNjlSCz71MUnOUZqWmnjZTbEX7mie91mstPspb8uDG/GvaDk/RynLGhhYfgEP5d1KWj+OPaI71hmPSxReg==} @@ -20568,6 +20606,9 @@ packages: '@pipedream/types@0.3.2': resolution: {integrity: sha512-sX4UUdEbgCs7JkvyWPLqdtiJkGJ8ishKfo/V4CjH7AhTRuI0oStspphUJI+rj8jqp8nCviw+ba0mRGWlCk+iZQ==} + '@pipedream/youtube_data_api@1.0.1': + resolution: {integrity: sha512-yEh7+PJgzuOY+L8rWjxgb6vIQf+6wL7QyfQLEQ3KTn6dnDdhTTO8+93og7W83FhgmOd1lhUG2jfrmfuSFqHKpg==} + '@pipedreamhq/platform@0.8.1': resolution: {integrity: sha512-VMSEi4i5gUXfcbmmXkntTXNCu8uq02lmENh5KHW+PLUHDjX259w5BahdGdD7KWanQSJsyf2BaWXjnEMf9YVEaA==} @@ -32093,22 +32134,22 @@ packages: superagent@3.8.1: resolution: {integrity: sha512-VMBFLYgFuRdfeNQSMLbxGSLfmXL/xc+OO+BZp41Za/NRDBet/BNbkRJrYzCUu0u4GU0i/ml2dtT8b9qgkw9z6Q==} engines: {node: '>= 4.0'} - deprecated: Please upgrade to superagent v10.2.2+, see release notes at https://github.com/forwardemail/superagent/releases/tag/v10.2.2 - maintenance is supported by Forward Email @ https://forwardemail.net + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superagent@4.1.0: resolution: {integrity: sha512-FT3QLMasz0YyCd4uIi5HNe+3t/onxMyEho7C3PSqmti3Twgy2rXT4fmkTz6wRL6bTF4uzPcfkUCa8u4JWHw8Ag==} engines: {node: '>= 6.0'} - deprecated: Please upgrade to superagent v10.2.2+, see release notes at https://github.com/forwardemail/superagent/releases/tag/v10.2.2 - maintenance is supported by Forward Email @ https://forwardemail.net + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superagent@5.3.1: resolution: {integrity: sha512-wjJ/MoTid2/RuGCOFtlacyGNxN9QLMgcpYLDQlWFIhhdJ93kNscFonGvrpAHSCVjRVj++DGCglocF7Aej1KHvQ==} engines: {node: '>= 7.0.0'} - deprecated: Please upgrade to superagent v10.2.2+, see release notes at https://github.com/forwardemail/superagent/releases/tag/v10.2.2 - maintenance is supported by Forward Email @ https://forwardemail.net + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superagent@7.1.6: resolution: {integrity: sha512-gZkVCQR1gy/oUXr+kxJMLDjla434KmSOKbx5iGD30Ql+AkJQ/YlPKECJy2nhqOsHLjGHzoDTXNSjhnvWhzKk7g==} engines: {node: '>=6.4.0 <13 || >=14'} - deprecated: Please upgrade to superagent v10.2.2+, see release notes at https://github.com/forwardemail/superagent/releases/tag/v10.2.2 - maintenance is supported by Forward Email @ https://forwardemail.net + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net supports-color@10.0.0: resolution: {integrity: sha512-HRVVSbCCMbj7/kdWF9Q+bbckjBHLtHMEoJWlkmYzzdwhYMkjkOwubLM6t7NbWKjgKamGDrWL1++KrjUO1t9oAQ==} @@ -39708,6 +39749,44 @@ snapshots: '@parcel/watcher-win32-ia32': 2.5.1 '@parcel/watcher-win32-x64': 2.5.1 + '@pipedream/aws@1.1.0(aws-crt@1.25.0)(babel-plugin-macros@3.1.0)': + dependencies: + '@aws-sdk/client-cloudwatch-logs': 3.698.0(aws-crt@1.25.0) + '@aws-sdk/client-dynamodb': 3.696.0(aws-crt@1.25.0) + '@aws-sdk/client-dynamodb-streams': 3.696.0(aws-crt@1.25.0) + '@aws-sdk/client-ec2': 3.698.0(aws-crt@1.25.0) + '@aws-sdk/client-eventbridge': 3.696.0(aws-crt@1.25.0) + '@aws-sdk/client-iam': 3.696.0(aws-crt@1.25.0) + '@aws-sdk/client-lambda': 3.698.0(aws-crt@1.25.0) + '@aws-sdk/client-rds': 3.697.0(aws-crt@1.25.0) + '@aws-sdk/client-redshift-data': 3.840.0(aws-crt@1.25.0) + '@aws-sdk/client-redshift-serverless': 3.840.0(aws-crt@1.25.0) + '@aws-sdk/client-s3': 3.698.0(aws-crt@1.25.0) + '@aws-sdk/client-ses': 3.696.0(aws-crt@1.25.0) + '@aws-sdk/client-sfn': 3.696.0(aws-crt@1.25.0) + '@aws-sdk/client-sns': 3.696.0(aws-crt@1.25.0) + '@aws-sdk/client-sqs': 3.696.0(aws-crt@1.25.0) + '@aws-sdk/client-ssm': 3.698.0(aws-crt@1.25.0) + '@aws-sdk/client-sts': 3.696.0(aws-crt@1.25.0) + '@aws-sdk/lib-storage': 3.734.0(@aws-sdk/client-s3@3.698.0(aws-crt@1.25.0)) + '@aws-sdk/s3-request-presigner': 3.698.0 + '@aws-sdk/signature-v4-crt': 3.731.0 + '@pipedream/helper_functions': 0.3.13 + '@pipedream/platform': 3.1.0 + adm-zip: 0.5.16 + dedent: 1.5.3(babel-plugin-macros@3.1.0) + mailparser: 3.7.1 + mailparser-mit: 1.0.0 + nanoid: 5.0.8 + uuid: 9.0.1 + transitivePeerDependencies: + - aws-crt + - babel-plugin-macros + - bufferutil + - debug + - supports-color + - utf-8-validate + '@pipedream/brex@0.1.0': dependencies: '@pipedream/platform': 1.6.6 @@ -39749,6 +39828,14 @@ snapshots: '@pipedream/eslint-plugin-pipedream@0.2.5': {} + '@pipedream/gitlab@0.5.6': + dependencies: + '@pipedream/platform': 1.6.6 + lodash: 4.17.21 + uuid: 8.3.2 + transitivePeerDependencies: + - debug + '@pipedream/google_drive@0.8.8': dependencies: '@googleapis/drive': 2.4.0 @@ -39842,6 +39929,12 @@ snapshots: - debug - encoding + '@pipedream/notiff_io@0.1.0': + dependencies: + '@pipedream/platform': 3.1.0 + transitivePeerDependencies: + - debug + '@pipedream/notion@0.6.2': dependencies: '@notionhq/client': 2.3.0 @@ -39971,6 +40064,13 @@ snapshots: - debug - pg-native + '@pipedream/procore@0.1.0': + dependencies: + '@pipedream/platform': 3.1.0 + uuid: 11.1.0 + transitivePeerDependencies: + - debug + '@pipedream/quickbooks@0.7.1': dependencies: '@pipedream/platform': 3.1.0 @@ -40033,6 +40133,15 @@ snapshots: transitivePeerDependencies: - debug + '@pipedream/slack@0.10.2': + dependencies: + '@pipedream/platform': 3.1.0 + '@slack/web-api': 7.9.1 + async-retry: 1.3.3 + lodash: 4.17.21 + transitivePeerDependencies: + - debug + '@pipedream/snowflake-sdk@1.0.8(asn1.js@5.4.1)': dependencies: snowflake-sdk: 1.9.0(asn1.js@5.4.1) @@ -40058,6 +40167,17 @@ snapshots: dependencies: typescript: 5.6.3 + '@pipedream/youtube_data_api@1.0.1': + dependencies: + '@googleapis/youtube': 6.0.0 + '@pipedream/platform': 3.1.0 + got: 14.4.6 + util: 0.12.5 + transitivePeerDependencies: + - debug + - encoding + - supports-color + '@pipedreamhq/platform@0.8.1': dependencies: axios: 0.19.2