From 9b5cf07f377dcb213929940be5000f44e5e07f16 Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Thu, 17 Oct 2024 11:28:07 -0300 Subject: [PATCH 01/11] Initial AI-generated code (partial) --- .../get-youtube-report/get-youtube-report.mjs | 32 +++++++ components/hypeauditor/hypeauditor.app.mjs | 93 ++++++++++++++++++- 2 files changed, 123 insertions(+), 2 deletions(-) create mode 100644 components/hypeauditor/actions/get-youtube-report/get-youtube-report.mjs diff --git a/components/hypeauditor/actions/get-youtube-report/get-youtube-report.mjs b/components/hypeauditor/actions/get-youtube-report/get-youtube-report.mjs new file mode 100644 index 0000000000000..3698206ce24f3 --- /dev/null +++ b/components/hypeauditor/actions/get-youtube-report/get-youtube-report.mjs @@ -0,0 +1,32 @@ +import hypeauditor from "../../hypeauditor.app.mjs"; + +export default { + key: "hypeauditor-get-youtube-report", + name: "Get YouTube Report", + description: "Generates a comprehensive YouTube report for a specified channel. [See the documentation]()", + version: "0.0.{{ts}}", + type: "action", + props: { + hypeauditor, + youtubeChannel: { + propDefinition: [ + hypeauditor, + "youtubeChannel", + ], + }, + youtubeFeatures: { + propDefinition: [ + hypeauditor, + "youtubeFeatures", + ], + }, + }, + async run({ $ }) { + const response = await this.hypeauditor.getYouTubeReport({ + channel: this.youtubeChannel, + features: this.youtubeFeatures, + }); + $.export("$summary", `Successfully generated YouTube report for channel ${this.youtubeChannel}`); + return response; + }, +}; diff --git a/components/hypeauditor/hypeauditor.app.mjs b/components/hypeauditor/hypeauditor.app.mjs index b345205533325..2d10d4ef8e2fb 100644 --- a/components/hypeauditor/hypeauditor.app.mjs +++ b/components/hypeauditor/hypeauditor.app.mjs @@ -1,11 +1,100 @@ +import { axios } from "@pipedream/platform"; + export default { type: "app", app: "hypeauditor", - propDefinitions: {}, + version: "0.0.ts", + propDefinitions: { + youtubeChannel: { + type: "string", + label: "YouTube Channel ID or Username", + description: "The YouTube channel ID or username for which to generate a report.", + }, + youtubeFeatures: { + type: "string", + label: "Features List", + description: "Optional list of features to include in the YouTube report.", + optional: true, + }, + tiktokUser: { + type: "string", + label: "TikTok User Name or ID", + description: "The TikTok username or ID for which to generate a report.", + }, + instagramUser: { + type: "string", + label: "Instagram User Name or ID", + description: "The Instagram username or ID for which to generate a report.", + }, + twitchChannel: { + type: "string", + label: "Twitch Channel Username", + description: "The Twitch channel username for which to generate a report.", + }, + }, methods: { - // this.$auth contains connected account data authKeys() { console.log(Object.keys(this.$auth)); }, + _baseUrl() { + return "https://hypeauditor.com/api/method/auditor"; + }, + async _makeRequest(opts = {}) { + const { + $ = this, method = "GET", path = "/", headers = {}, ...otherOpts + } = opts; + return axios($, { + method, + url: `${this._baseUrl()}${path}`, + headers: { + ...headers, + "X-Auth-Token": this.$auth.token, + "X-Auth-Id": this.$auth.id, + }, + ...otherOpts, + }); + }, + async getYouTubeReport(opts = {}) { + const { + channel, features, + } = opts; + const params = { + channel, + }; + if (features) { + params.features = features; + } + return this._makeRequest({ + path: "/youtube/", + params, + }); + }, + async getTikTokReport(opts = {}) { + const { channel } = opts; + return this._makeRequest({ + path: "/tiktok/", + params: { + channel, + }, + }); + }, + async getInstagramReport(opts = {}) { + const { channel } = opts; + return this._makeRequest({ + path: "/instagram/", + params: { + channel, + }, + }); + }, + async getTwitchReport(opts = {}) { + const { channel } = opts; + return this._makeRequest({ + path: "/twitch/", + params: { + channel, + }, + }); + }, }, }; From 7276b302446d3c7ebe2f6bfe388865c11cef4997 Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Fri, 18 Oct 2024 02:35:17 -0300 Subject: [PATCH 02/11] App and package updates --- components/hypeauditor/hypeauditor.app.mjs | 59 +++++----------------- components/hypeauditor/package.json | 7 ++- 2 files changed, 17 insertions(+), 49 deletions(-) diff --git a/components/hypeauditor/hypeauditor.app.mjs b/components/hypeauditor/hypeauditor.app.mjs index 2d10d4ef8e2fb..d3bde925cc2f0 100644 --- a/components/hypeauditor/hypeauditor.app.mjs +++ b/components/hypeauditor/hypeauditor.app.mjs @@ -3,7 +3,6 @@ import { axios } from "@pipedream/platform"; export default { type: "app", app: "hypeauditor", - version: "0.0.ts", propDefinitions: { youtubeChannel: { type: "string", @@ -21,11 +20,6 @@ export default { label: "TikTok User Name or ID", description: "The TikTok username or ID for which to generate a report.", }, - instagramUser: { - type: "string", - label: "Instagram User Name or ID", - description: "The Instagram username or ID for which to generate a report.", - }, twitchChannel: { type: "string", label: "Twitch Channel Username", @@ -33,67 +27,38 @@ export default { }, }, methods: { - authKeys() { - console.log(Object.keys(this.$auth)); - }, _baseUrl() { - return "https://hypeauditor.com/api/method/auditor"; + return "https://hypeauditor.com/api/method"; }, - async _makeRequest(opts = {}) { - const { - $ = this, method = "GET", path = "/", headers = {}, ...otherOpts - } = opts; + async _makeRequest({ + $ = this, path, headers, ...otherOpts + } = {}) { return axios($, { - method, url: `${this._baseUrl()}${path}`, headers: { ...headers, - "X-Auth-Token": this.$auth.token, - "X-Auth-Id": this.$auth.id, + "x-auth-token": this.$auth.token, + "x-auth-id": this.$auth.id, }, ...otherOpts, }); }, async getYouTubeReport(opts = {}) { - const { - channel, features, - } = opts; - const params = { - channel, - }; - if (features) { - params.features = features; - } return this._makeRequest({ - path: "/youtube/", - params, + path: "/auditor.youtube/", + ...opts, }); }, async getTikTokReport(opts = {}) { - const { channel } = opts; return this._makeRequest({ - path: "/tiktok/", - params: { - channel, - }, - }); - }, - async getInstagramReport(opts = {}) { - const { channel } = opts; - return this._makeRequest({ - path: "/instagram/", - params: { - channel, - }, + path: "/auditor.tiktok/", + ...opts, }); }, async getTwitchReport(opts = {}) { - const { channel } = opts; return this._makeRequest({ - path: "/twitch/", - params: { - channel, - }, + path: "/auditor.twitch/", + ...opts, }); }, }, diff --git a/components/hypeauditor/package.json b/components/hypeauditor/package.json index 3c1285d450771..aaf6b8a4ec645 100644 --- a/components/hypeauditor/package.json +++ b/components/hypeauditor/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/hypeauditor", - "version": "0.0.1", + "version": "0.1.0", "description": "Pipedream HypeAuditor Components", "main": "hypeauditor.app.mjs", "keywords": [ @@ -11,5 +11,8 @@ "author": "Pipedream (https://pipedream.com/)", "publishConfig": { "access": "public" + }, + "dependencies": { + "@pipedream/platform": "^3.0.3" } -} \ No newline at end of file +} From faaa53671eec043e46adfdc9c9096dfae122793e Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Fri, 18 Oct 2024 02:37:08 -0300 Subject: [PATCH 03/11] pnpm --- pnpm-lock.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c13c3e7c34352..0358342737c6a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4714,7 +4714,10 @@ importers: specifiers: {} components/hypeauditor: - specifiers: {} + specifiers: + '@pipedream/platform': ^3.0.3 + dependencies: + '@pipedream/platform': 3.0.3 components/hyperise: specifiers: From 99d41116e133294d36300aa4b4ec968d2f4b04fa Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Fri, 18 Oct 2024 02:40:06 -0300 Subject: [PATCH 04/11] Prop description updates --- components/hypeauditor/hypeauditor.app.mjs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/hypeauditor/hypeauditor.app.mjs b/components/hypeauditor/hypeauditor.app.mjs index d3bde925cc2f0..b20ca0c07687c 100644 --- a/components/hypeauditor/hypeauditor.app.mjs +++ b/components/hypeauditor/hypeauditor.app.mjs @@ -6,19 +6,19 @@ export default { propDefinitions: { youtubeChannel: { type: "string", - label: "YouTube Channel ID or Username", + label: "Channel ID or Username", description: "The YouTube channel ID or username for which to generate a report.", }, youtubeFeatures: { type: "string", label: "Features List", - description: "Optional list of features to include in the YouTube report.", + description: "Optional list of features to include in the YouTube report. [See the documentation](https://hypeauditor.readme.io/reference/get_report_youtube) for more information.", optional: true, }, - tiktokUser: { + tiktokChannel: { type: "string", - label: "TikTok User Name or ID", - description: "The TikTok username or ID for which to generate a report.", + label: "TikTok Channel", + description: "The TikTok account channel username for which to generate a report.", }, twitchChannel: { type: "string", From cfe868de0df4435f7426a7b11a42a5ecf8064889 Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Fri, 18 Oct 2024 02:43:41 -0300 Subject: [PATCH 05/11] YouTube report action --- .../get-youtube-report/get-youtube-report.mjs | 19 +++++++++++-------- components/hypeauditor/hypeauditor.app.mjs | 2 +- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/components/hypeauditor/actions/get-youtube-report/get-youtube-report.mjs b/components/hypeauditor/actions/get-youtube-report/get-youtube-report.mjs index 3698206ce24f3..e6d194a939aba 100644 --- a/components/hypeauditor/actions/get-youtube-report/get-youtube-report.mjs +++ b/components/hypeauditor/actions/get-youtube-report/get-youtube-report.mjs @@ -3,18 +3,18 @@ import hypeauditor from "../../hypeauditor.app.mjs"; export default { key: "hypeauditor-get-youtube-report", name: "Get YouTube Report", - description: "Generates a comprehensive YouTube report for a specified channel. [See the documentation]()", - version: "0.0.{{ts}}", + description: "Generates a comprehensive YouTube report for a specified channel. [See the documentation](https://hypeauditor.readme.io/reference/report_youtube)", + version: "0.0.1", type: "action", props: { hypeauditor, - youtubeChannel: { + channel: { propDefinition: [ hypeauditor, "youtubeChannel", ], }, - youtubeFeatures: { + features: { propDefinition: [ hypeauditor, "youtubeFeatures", @@ -22,11 +22,14 @@ export default { }, }, async run({ $ }) { - const response = await this.hypeauditor.getYouTubeReport({ - channel: this.youtubeChannel, - features: this.youtubeFeatures, + const { + hypeauditor, ...params + } = this; + const response = await hypeauditor.getYouTubeReport({ + $, + params, }); - $.export("$summary", `Successfully generated YouTube report for channel ${this.youtubeChannel}`); + $.export("$summary", `Successfully fetched YouTube report for channel ${this.channel}`); return response; }, }; diff --git a/components/hypeauditor/hypeauditor.app.mjs b/components/hypeauditor/hypeauditor.app.mjs index b20ca0c07687c..5e75b55e2bade 100644 --- a/components/hypeauditor/hypeauditor.app.mjs +++ b/components/hypeauditor/hypeauditor.app.mjs @@ -12,7 +12,7 @@ export default { youtubeFeatures: { type: "string", label: "Features List", - description: "Optional list of features to include in the YouTube report. [See the documentation](https://hypeauditor.readme.io/reference/get_report_youtube) for more information.", + description: "Optional list of features to include in the YouTube report. [See the documentation](https://hypeauditor.readme.io/reference/report_youtube) for more information.", optional: true, }, tiktokChannel: { From f8ceec8ae9550e09e7061b2f0e22abae8eda28a5 Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Fri, 18 Oct 2024 02:48:38 -0300 Subject: [PATCH 06/11] TikTok report action --- .../get-tiktok-report/get-tiktok-report.mjs | 29 +++++++++++++++++++ components/hypeauditor/hypeauditor.app.mjs | 4 +-- 2 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 components/hypeauditor/actions/get-tiktok-report/get-tiktok-report.mjs diff --git a/components/hypeauditor/actions/get-tiktok-report/get-tiktok-report.mjs b/components/hypeauditor/actions/get-tiktok-report/get-tiktok-report.mjs new file mode 100644 index 0000000000000..c37508b395e85 --- /dev/null +++ b/components/hypeauditor/actions/get-tiktok-report/get-tiktok-report.mjs @@ -0,0 +1,29 @@ +import hypeauditor from "../../hypeauditor.app.mjs"; + +export default { + key: "hypeauditor-get-tiktok-report", + name: "Get TikTok Report", + description: "Generates a comprehensive TikTok report for a specified channel. [See the documentation](https://hypeauditor.readme.io/reference/report_tiktok)", + version: "0.0.1", + type: "action", + props: { + hypeauditor, + channel: { + propDefinition: [ + hypeauditor, + "tiktokChannel", + ], + }, + }, + async run({ $ }) { + const { + hypeauditor, ...params + } = this; + const response = await hypeauditor.getTiktokReport({ + $, + params, + }); + $.export("$summary", `Successfully fetched TikTok report for channel ${this.channel}`); + return response; + }, +}; diff --git a/components/hypeauditor/hypeauditor.app.mjs b/components/hypeauditor/hypeauditor.app.mjs index 5e75b55e2bade..a44cf38e69d24 100644 --- a/components/hypeauditor/hypeauditor.app.mjs +++ b/components/hypeauditor/hypeauditor.app.mjs @@ -17,8 +17,8 @@ export default { }, tiktokChannel: { type: "string", - label: "TikTok Channel", - description: "The TikTok account channel username for which to generate a report.", + label: "TikTok Channel Username", + description: "A TikTok username (e.g. `littlebig`) from the TikTok channel URL (in this example, `https://www.tiktok.com/@littlebig`).", }, twitchChannel: { type: "string", From eabacb0c9ee043c4f76e03dc7dc0761a165858f2 Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Fri, 18 Oct 2024 02:51:05 -0300 Subject: [PATCH 07/11] Twitch report action --- .../get-twitch-report/get-twitch-report.mjs | 29 +++++++++++++++++++ components/hypeauditor/hypeauditor.app.mjs | 4 +-- 2 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 components/hypeauditor/actions/get-twitch-report/get-twitch-report.mjs diff --git a/components/hypeauditor/actions/get-twitch-report/get-twitch-report.mjs b/components/hypeauditor/actions/get-twitch-report/get-twitch-report.mjs new file mode 100644 index 0000000000000..4707447ce6820 --- /dev/null +++ b/components/hypeauditor/actions/get-twitch-report/get-twitch-report.mjs @@ -0,0 +1,29 @@ +import hypeauditor from "../../hypeauditor.app.mjs"; + +export default { + key: "hypeauditor-get-twitch-report", + name: "Get Twitch Report", + description: "Generates a Twitch report for a specified channel. [See the documentation](https://hypeauditor.readme.io/reference/report_twitch)", + version: "0.0.1", + type: "action", + props: { + hypeauditor, + channel: { + propDefinition: [ + hypeauditor, + "twitchChannel", + ], + }, + }, + async run({ $ }) { + const { + hypeauditor, ...params + } = this; + const response = await hypeauditor.getTwitchReport({ + $, + params, + }); + $.export("$summary", `Successfully fetched Twitch report for channel ${this.channel}`); + return response; + }, +}; diff --git a/components/hypeauditor/hypeauditor.app.mjs b/components/hypeauditor/hypeauditor.app.mjs index a44cf38e69d24..b26c440a8161a 100644 --- a/components/hypeauditor/hypeauditor.app.mjs +++ b/components/hypeauditor/hypeauditor.app.mjs @@ -18,12 +18,12 @@ export default { tiktokChannel: { type: "string", label: "TikTok Channel Username", - description: "A TikTok username (e.g. `littlebig`) from the TikTok channel URL (in this example, `https://www.tiktok.com/@littlebig`).", + description: "The TikTok username (e.g. `littlebig`) from a TikTok channel URL (in this example, `https://www.tiktok.com/@littlebig`).", }, twitchChannel: { type: "string", label: "Twitch Channel Username", - description: "The Twitch channel username for which to generate a report.", + description: "The Twitch username (e.g. `nasa`) from a Twitch channel URL (in this example, `https://www.twitch.tv/nasa`).", }, }, methods: { From c17f7492aa1a712867f575ad34229af025a14b45 Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Fri, 18 Oct 2024 02:54:22 -0300 Subject: [PATCH 08/11] Adjustment --- .../hypeauditor/actions/get-tiktok-report/get-tiktok-report.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/hypeauditor/actions/get-tiktok-report/get-tiktok-report.mjs b/components/hypeauditor/actions/get-tiktok-report/get-tiktok-report.mjs index c37508b395e85..f4ebb449bda48 100644 --- a/components/hypeauditor/actions/get-tiktok-report/get-tiktok-report.mjs +++ b/components/hypeauditor/actions/get-tiktok-report/get-tiktok-report.mjs @@ -19,7 +19,7 @@ export default { const { hypeauditor, ...params } = this; - const response = await hypeauditor.getTiktokReport({ + const response = await hypeauditor.getTikTokReport({ $, params, }); From 4d27e13270ed663a3d1e0b88d13ed2e4ec9a49f8 Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Wed, 15 Jan 2025 03:57:25 -0300 Subject: [PATCH 09/11] pnpm --- pnpm-lock.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ca391384a140c..bb64aefa04c38 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5002,7 +5002,11 @@ importers: components/hygraph: {} - components/hypeauditor: {} + components/hypeauditor: + dependencies: + '@pipedream/platform': + specifier: ^3.0.3 + version: 3.0.3 components/hyperise: dependencies: @@ -9592,8 +9596,7 @@ importers: components/showpad: {} - components/shutterstock: - specifiers: {} + components/shutterstock: {} components/sidetracker: {} @@ -31013,6 +31016,8 @@ snapshots: '@putout/operator-filesystem': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3)) '@putout/operator-json': 2.2.0 putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3) + transitivePeerDependencies: + - supports-color '@putout/operator-regexp@1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))': dependencies: From 3bee07dd366ca95797dcfdf973839a18ead803ee Mon Sep 17 00:00:00 2001 From: michelle0927 Date: Thu, 23 Jan 2025 15:48:18 -0500 Subject: [PATCH 10/11] pnpm-lock.yaml --- pnpm-lock.yaml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a55bc744e4c8f..33c1996281eff 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -997,8 +997,7 @@ importers: specifier: ^1.5.1 version: 1.6.6 - components/azure_api_for_fhir: - specifiers: {} + components/azure_api_for_fhir: {} components/azure_devops: dependencies: @@ -3416,8 +3415,7 @@ importers: specifier: ^1.5.1 version: 1.6.6 - components/exist: - specifiers: {} + components/exist: {} components/expedy: dependencies: @@ -4746,8 +4744,7 @@ importers: components/hasura: {} - components/have_i_been_pwned: - specifiers: {} + components/have_i_been_pwned: {} components/heartbeat: {} @@ -6612,8 +6609,7 @@ importers: specifier: ^1.5.1 version: 1.6.6 - components/mindbody: - specifiers: {} + components/mindbody: {} components/mindmeister: {} @@ -7668,8 +7664,7 @@ importers: specifier: ^1.5.1 version: 1.6.6 - components/paylocity: - specifiers: {} + components/paylocity: {} components/paymo: dependencies: @@ -12083,8 +12078,7 @@ importers: specifier: ^1.5.1 version: 1.6.6 - components/yext: - specifiers: {} + components/yext: {} components/yoast_seo: {} From 577d222b5aee17681a16574b6d58677879e3a579 Mon Sep 17 00:00:00 2001 From: michelle0927 Date: Thu, 23 Jan 2025 15:52:42 -0500 Subject: [PATCH 11/11] versions --- .../actions/get-instagram-report/get-instagram-report.mjs | 2 +- .../hypeauditor/actions/get-tiktok-report/get-tiktok-report.mjs | 2 +- .../actions/get-youtube-report/get-youtube-report.mjs | 2 +- components/hypeauditor/package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/hypeauditor/actions/get-instagram-report/get-instagram-report.mjs b/components/hypeauditor/actions/get-instagram-report/get-instagram-report.mjs index 4c7ccc391bc0f..d113b14e1f6b8 100644 --- a/components/hypeauditor/actions/get-instagram-report/get-instagram-report.mjs +++ b/components/hypeauditor/actions/get-instagram-report/get-instagram-report.mjs @@ -5,7 +5,7 @@ export default { key: "hypeauditor-get-instagram-report", name: "Get Instagram Report", description: "Returns a report about the specified Instagram user. [See the documentation](https://hypeauditor.readme.io/reference/report_instagram#requests)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { app, diff --git a/components/hypeauditor/actions/get-tiktok-report/get-tiktok-report.mjs b/components/hypeauditor/actions/get-tiktok-report/get-tiktok-report.mjs index 5a67c0b09a357..fe28793af4966 100644 --- a/components/hypeauditor/actions/get-tiktok-report/get-tiktok-report.mjs +++ b/components/hypeauditor/actions/get-tiktok-report/get-tiktok-report.mjs @@ -4,7 +4,7 @@ export default { key: "hypeauditor-get-tiktok-report", name: "Get Tiktok Report", description: "Returns a report about the specified Tiktok channel. [See the documentation](https://hypeauditor.readme.io/reference/get_report_tiktok)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { app, diff --git a/components/hypeauditor/actions/get-youtube-report/get-youtube-report.mjs b/components/hypeauditor/actions/get-youtube-report/get-youtube-report.mjs index 65a52af1d6f12..b972858db0ee8 100644 --- a/components/hypeauditor/actions/get-youtube-report/get-youtube-report.mjs +++ b/components/hypeauditor/actions/get-youtube-report/get-youtube-report.mjs @@ -5,7 +5,7 @@ export default { key: "hypeauditor-get-youtube-report", name: "Get Youtube Report", description: "Returns a report about the specified Youtube channel. [See the documentation](https://hypeauditor.readme.io/reference/report_youtube)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { app, diff --git a/components/hypeauditor/package.json b/components/hypeauditor/package.json index aaf6b8a4ec645..f74084cbdc14b 100644 --- a/components/hypeauditor/package.json +++ b/components/hypeauditor/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/hypeauditor", - "version": "0.1.0", + "version": "0.2.0", "description": "Pipedream HypeAuditor Components", "main": "hypeauditor.app.mjs", "keywords": [