diff --git a/components/accuweather/accuweather.app.mjs b/components/accuweather/accuweather.app.mjs index 2973fd82a9570..2813eb56011da 100644 --- a/components/accuweather/accuweather.app.mjs +++ b/components/accuweather/accuweather.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/adtraction/adtraction.app.mjs b/components/adtraction/adtraction.app.mjs index 28241b9fe2269..da711615fa507 100644 --- a/components/adtraction/adtraction.app.mjs +++ b/components/adtraction/adtraction.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/alt_text_generator_ai/alt_text_generator_ai.app.mjs b/components/alt_text_generator_ai/alt_text_generator_ai.app.mjs index 285535f5033f1..83753792b281c 100644 --- a/components/alt_text_generator_ai/alt_text_generator_ai.app.mjs +++ b/components/alt_text_generator_ai/alt_text_generator_ai.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/apify/README.md b/components/apify/README.md index 504e7ad8f26b1..a34f3990bac5f 100644 --- a/components/apify/README.md +++ b/components/apify/README.md @@ -6,7 +6,7 @@ The Apify API unleashes the power to automate web scraping, process data, and or **E-commerce Price Monitoring** -- Set up a Pipedream workflow that triggers an Apify actor to scrape product prices from multiple e-commerce sites daily. Store this data in Pipedream's built-in data store and use the Pipedream Email API to send a daily digest of the best deals to subscribers. +- Set up a Pipedream workflow that triggers an Apify Actor to scrape product prices from multiple e-commerce sites daily. Store this data in Pipedream's built-in data store and use the Pipedream Email API to send a daily digest of the best deals to subscribers. **Social Media Sentiment Analysis** diff --git a/components/apify/actions/get-dataset-items/get-dataset-items.mjs b/components/apify/actions/get-dataset-items/get-dataset-items.mjs index f596171377d99..1143996e19e32 100644 --- a/components/apify/actions/get-dataset-items/get-dataset-items.mjs +++ b/components/apify/actions/get-dataset-items/get-dataset-items.mjs @@ -5,7 +5,7 @@ export default { key: "apify-get-dataset-items", name: "Get Dataset Items", description: "Returns data stored in a dataset. [See the documentation](https://docs.apify.com/api/v2/dataset-items-get)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { apify, diff --git a/components/apify/actions/run-actor/run-actor.mjs b/components/apify/actions/run-actor/run-actor.mjs index c4a7c6089c3ce..84febb9e9b6a8 100644 --- a/components/apify/actions/run-actor/run-actor.mjs +++ b/components/apify/actions/run-actor/run-actor.mjs @@ -6,8 +6,8 @@ import { EVENT_TYPES } from "../../common/constants.mjs"; export default { key: "apify-run-actor", name: "Run Actor", - description: "Performs an execution of a selected actor in Apify. [See the documentation](https://docs.apify.com/api/v2#/reference/actors/run-collection/run-actor)", - version: "0.0.3", + description: "Performs an execution of a selected Actor in Apify. [See the documentation](https://docs.apify.com/api/v2#/reference/actors/run-collection/run-actor)", + version: "0.0.4", type: "action", props: { apify, @@ -30,7 +30,7 @@ export default { runAsynchronously: { type: "boolean", label: "Run Asynchronously", - description: "Set to `true` to run the actor asynchronously", + description: "Set to `true` to run the Actor asynchronously", reloadProps: true, }, timeout: { @@ -162,7 +162,7 @@ export default { props.properties = { type: "object", label: "Properties", - description: "Properties to set for this actor", + description: "Properties to set for this Actor", }; } if (this.runAsynchronously) { @@ -241,8 +241,8 @@ export default { }, }); const summary = this.runAsynchronously - ? `Successfully started actor run with ID: ${response.data.id}` - : `Successfully ran actor with ID: ${this.actorId}`; + ? `Successfully started Actor run with ID: ${response.data.id}` + : `Successfully ran Actor with ID: ${this.actorId}`; $.export("$summary", `${summary}`); return response; }, diff --git a/components/apify/actions/run-task-synchronously/run-task-synchronously.mjs b/components/apify/actions/run-task-synchronously/run-task-synchronously.mjs index b2153c9f219f2..b493fb31b1e51 100644 --- a/components/apify/actions/run-task-synchronously/run-task-synchronously.mjs +++ b/components/apify/actions/run-task-synchronously/run-task-synchronously.mjs @@ -4,7 +4,7 @@ export default { key: "apify-run-task-synchronously", name: "Run Task Synchronously", description: "Run a specific task and return its dataset items. [See the documentation](https://docs.apify.com/api/v2/actor-task-run-sync-get-dataset-items-get)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { apify, diff --git a/components/apify/actions/scrape-single-url/scrape-single-url.mjs b/components/apify/actions/scrape-single-url/scrape-single-url.mjs index 2de46d5b103bc..b4c73f0e540cc 100644 --- a/components/apify/actions/scrape-single-url/scrape-single-url.mjs +++ b/components/apify/actions/scrape-single-url/scrape-single-url.mjs @@ -5,7 +5,7 @@ export default { key: "apify-scrape-single-url", name: "Scrape Single URL", description: "Executes a scraper on a specific website and returns its content as text. This action is perfect for extracting content from a single page.", - version: "0.0.3", + version: "0.0.4", type: "action", props: { apify, diff --git a/components/apify/actions/set-key-value-store-record/set-key-value-store-record.mjs b/components/apify/actions/set-key-value-store-record/set-key-value-store-record.mjs index 4586b75d940a3..ddee823cc47b2 100644 --- a/components/apify/actions/set-key-value-store-record/set-key-value-store-record.mjs +++ b/components/apify/actions/set-key-value-store-record/set-key-value-store-record.mjs @@ -5,7 +5,7 @@ export default { key: "apify-set-key-value-store-record", name: "Set Key-Value Store Record", description: "Create or update a record in the key-value store of Apify. [See the documentation](https://docs.apify.com/api/v2#/reference/key-value-stores/record-collection/put-record)", - version: "0.0.3", + version: "0.0.4", type: "action", props: { apify, diff --git a/components/apify/apify.app.mjs b/components/apify/apify.app.mjs index 1a3e46a0df318..ad0fb25c9773d 100644 --- a/components/apify/apify.app.mjs +++ b/components/apify/apify.app.mjs @@ -49,7 +49,7 @@ export default { userActorId: { type: "string", label: "Actor ID", - description: "The ID of the actor to monitor.", + description: "The ID of the Actor to monitor.", async options({ page }) { const { data: { items } } = await this.listUserActors({ params: { @@ -162,6 +162,7 @@ export default { return { "Content-Type": "application/json", "Authorization": `Bearer ${this.$auth.api_token}`, + "x-apify-integration-platform": "pipedream", }; }, _makeRequest({ diff --git a/components/apify/package.json b/components/apify/package.json index 27476a27bb947..6fa6e927daca3 100644 --- a/components/apify/package.json +++ b/components/apify/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/apify", - "version": "0.2.1", + "version": "0.2.2", "description": "Pipedream Apify Components", "main": "apify.app.mjs", "keywords": [ @@ -13,6 +13,7 @@ "access": "public" }, "dependencies": { + "@apify/consts": "^2.41.0", "@pipedream/platform": "^3.0.3" } } diff --git a/components/apify/sources/common/base.mjs b/components/apify/sources/common/base.mjs index b246221f724d8..7f7c274813f7f 100644 --- a/components/apify/sources/common/base.mjs +++ b/components/apify/sources/common/base.mjs @@ -1,3 +1,4 @@ +import { WEBHOOK_EVENT_TYPES } from "@apify/consts"; import apify from "../../apify.app.mjs"; export default { @@ -15,10 +16,10 @@ export default { data: { requestUrl: this.http.endpoint, eventTypes: [ - "ACTOR.RUN.SUCCEEDED", - "ACTOR.RUN.FAILED", - "ACTOR.RUN.TIMED_OUT", - "ACTOR.RUN.ABORTED", + WEBHOOK_EVENT_TYPES.ACTOR_RUN_SUCCEEDED, + WEBHOOK_EVENT_TYPES.ACTOR_RUN_FAILED, + WEBHOOK_EVENT_TYPES.ACTOR_RUN_TIMED_OUT, + WEBHOOK_EVENT_TYPES.ACTOR_RUN_ABORTED, ], condition: this.getCondition(), }, @@ -36,7 +37,7 @@ export default { }); this.$emit(body, { - summary: body.eventType === "TEST" + summary: body.eventType === WEBHOOK_EVENT_TYPES.TEST ? "Webhook test has successfully triggered!" : this.getSummary(body), id: body.eventData.actorRunId || `${body.userId}-${body.createAt}`, diff --git a/components/apify/sources/new-finished-actor-run-instant/new-finished-actor-run-instant.mjs b/components/apify/sources/new-finished-actor-run-instant/new-finished-actor-run-instant.mjs index 20426d00d1682..0dbf18cabe02e 100644 --- a/components/apify/sources/new-finished-actor-run-instant/new-finished-actor-run-instant.mjs +++ b/components/apify/sources/new-finished-actor-run-instant/new-finished-actor-run-instant.mjs @@ -5,8 +5,8 @@ export default { ...common, key: "apify-new-finished-actor-run-instant", name: "New Finished Actor Run (Instant)", - description: "Emit new event when a selected actor is run and finishes.", - version: "0.0.3", + description: "Emit new event when a selected Actor is run and finishes.", + version: "0.0.4", type: "source", dedupe: "unique", props: { @@ -27,7 +27,7 @@ export default { }; }, getSummary(body) { - return `A new actor run ${body.eventData.actorRunId} has finished`; + return `A new Actor run ${body.eventData.actorRunId} has finished`; }, }, sampleEmit, diff --git a/components/apify/sources/new-finished-task-run-instant/new-finished-task-run-instant.mjs b/components/apify/sources/new-finished-task-run-instant/new-finished-task-run-instant.mjs index 3d7f8370d7532..3b5950a55d83c 100644 --- a/components/apify/sources/new-finished-task-run-instant/new-finished-task-run-instant.mjs +++ b/components/apify/sources/new-finished-task-run-instant/new-finished-task-run-instant.mjs @@ -6,7 +6,7 @@ export default { key: "apify-new-finished-task-run-instant", name: "New Finished Task Run (Instant)", description: "Emit new event when a selected task is run and finishes.", - version: "0.0.3", + version: "0.0.4", type: "source", dedupe: "unique", props: { diff --git a/components/bitget/bitget.app.mjs b/components/bitget/bitget.app.mjs index 9e8459834a2f1..095dd54f7276b 100644 --- a/components/bitget/bitget.app.mjs +++ b/components/bitget/bitget.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/bright_data/bright_data.app.mjs b/components/bright_data/bright_data.app.mjs index 2d98a6ff7d3bc..f0f75c0ae5df8 100644 --- a/components/bright_data/bright_data.app.mjs +++ b/components/bright_data/bright_data.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/capturekit/capturekit.app.mjs b/components/capturekit/capturekit.app.mjs index 779927535d63c..7eb6b968ef23d 100644 --- a/components/capturekit/capturekit.app.mjs +++ b/components/capturekit/capturekit.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/channable/channable.app.mjs b/components/channable/channable.app.mjs index c570231b5cb43..e120bc11e9cff 100644 --- a/components/channable/channable.app.mjs +++ b/components/channable/channable.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/clio_australia/clio_australia.app.mjs b/components/clio_australia/clio_australia.app.mjs index 7c674ff59c078..19b46eb1b4798 100644 --- a/components/clio_australia/clio_australia.app.mjs +++ b/components/clio_australia/clio_australia.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/clio_canada/clio_canada.app.mjs b/components/clio_canada/clio_canada.app.mjs index 2120986c21795..37d919a68c200 100644 --- a/components/clio_canada/clio_canada.app.mjs +++ b/components/clio_canada/clio_canada.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/clio_eu/clio_eu.app.mjs b/components/clio_eu/clio_eu.app.mjs index 77aee08010dfd..0946470e788f3 100644 --- a/components/clio_eu/clio_eu.app.mjs +++ b/components/clio_eu/clio_eu.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/exact_mails/exact_mails.app.mjs b/components/exact_mails/exact_mails.app.mjs index 5e9b01e7d9b86..d62c77a842734 100644 --- a/components/exact_mails/exact_mails.app.mjs +++ b/components/exact_mails/exact_mails.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/greenspark/greenspark.app.mjs b/components/greenspark/greenspark.app.mjs index fa14b4c660bc4..153921f87bd22 100644 --- a/components/greenspark/greenspark.app.mjs +++ b/components/greenspark/greenspark.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/hana/hana.app.mjs b/components/hana/hana.app.mjs index 5f3ba1de0fdc4..fb83108e5ae02 100644 --- a/components/hana/hana.app.mjs +++ b/components/hana/hana.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/harpa_ai/harpa_ai.app.mjs b/components/harpa_ai/harpa_ai.app.mjs index d96f9ee2f2a23..216e965a8924b 100644 --- a/components/harpa_ai/harpa_ai.app.mjs +++ b/components/harpa_ai/harpa_ai.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/indiefunnels/indiefunnels.app.mjs b/components/indiefunnels/indiefunnels.app.mjs index 6dbeb22a485a6..30d2e49de457d 100644 --- a/components/indiefunnels/indiefunnels.app.mjs +++ b/components/indiefunnels/indiefunnels.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/mintlify/mintlify.app.mjs b/components/mintlify/mintlify.app.mjs index bdc036b71c1be..740ac34637ed3 100644 --- a/components/mintlify/mintlify.app.mjs +++ b/components/mintlify/mintlify.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/neetoform/neetoform.app.mjs b/components/neetoform/neetoform.app.mjs index 9525851515966..10d0addbf84cb 100644 --- a/components/neetoform/neetoform.app.mjs +++ b/components/neetoform/neetoform.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/order_sender/order_sender.app.mjs b/components/order_sender/order_sender.app.mjs index b812cb5e4d1b0..b1b5bd9dde63b 100644 --- a/components/order_sender/order_sender.app.mjs +++ b/components/order_sender/order_sender.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/payrexx/payrexx.app.mjs b/components/payrexx/payrexx.app.mjs index afc95ca1e37c1..f7706b077d480 100644 --- a/components/payrexx/payrexx.app.mjs +++ b/components/payrexx/payrexx.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/pinghome/pinghome.app.mjs b/components/pinghome/pinghome.app.mjs index 04819fafe4b06..4ece1bb0825cd 100644 --- a/components/pinghome/pinghome.app.mjs +++ b/components/pinghome/pinghome.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/prepr_graphql/prepr_graphql.app.mjs b/components/prepr_graphql/prepr_graphql.app.mjs index 3a43596fad0db..2d86d22cd9034 100644 --- a/components/prepr_graphql/prepr_graphql.app.mjs +++ b/components/prepr_graphql/prepr_graphql.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/prodatakey/prodatakey.app.mjs b/components/prodatakey/prodatakey.app.mjs index d26f7cf3ec95f..d9fb9257daa1a 100644 --- a/components/prodatakey/prodatakey.app.mjs +++ b/components/prodatakey/prodatakey.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/returnless/returnless.app.mjs b/components/returnless/returnless.app.mjs index 0b1c640130083..0e971fa0e0802 100644 --- a/components/returnless/returnless.app.mjs +++ b/components/returnless/returnless.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/rhombus/rhombus.app.mjs b/components/rhombus/rhombus.app.mjs index 8e9c249498a9d..9e5135d56ab22 100644 --- a/components/rhombus/rhombus.app.mjs +++ b/components/rhombus/rhombus.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/sign_plus/sign_plus.app.mjs b/components/sign_plus/sign_plus.app.mjs index 124038260f41d..e0eed75cc9c2c 100644 --- a/components/sign_plus/sign_plus.app.mjs +++ b/components/sign_plus/sign_plus.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/themarketer/themarketer.app.mjs b/components/themarketer/themarketer.app.mjs index f20f0234bc421..b7463ca4df243 100644 --- a/components/themarketer/themarketer.app.mjs +++ b/components/themarketer/themarketer.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/veriff/veriff.app.mjs b/components/veriff/veriff.app.mjs index d58ed792edb9b..ac645ac80564a 100644 --- a/components/veriff/veriff.app.mjs +++ b/components/veriff/veriff.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/verifi_email/verifi_email.app.mjs b/components/verifi_email/verifi_email.app.mjs index 2fa7bd60ee4b8..55163d00046ec 100644 --- a/components/verifi_email/verifi_email.app.mjs +++ b/components/verifi_email/verifi_email.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/viewdns_info/viewdns_info.app.mjs b/components/viewdns_info/viewdns_info.app.mjs index fec1f8afe89f3..24b2cb770b1e3 100644 --- a/components/viewdns_info/viewdns_info.app.mjs +++ b/components/viewdns_info/viewdns_info.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/vincario/vincario.app.mjs b/components/vincario/vincario.app.mjs index a301b9959b6c2..18cca843765a9 100644 --- a/components/vincario/vincario.app.mjs +++ b/components/vincario/vincario.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/webscrape_ai/webscrape_ai.app.mjs b/components/webscrape_ai/webscrape_ai.app.mjs index 548b7834f801f..b4ac92067596d 100644 --- a/components/webscrape_ai/webscrape_ai.app.mjs +++ b/components/webscrape_ai/webscrape_ai.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/zenedu/zenedu.app.mjs b/components/zenedu/zenedu.app.mjs index e937121b971f0..b5a386f348348 100644 --- a/components/zenedu/zenedu.app.mjs +++ b/components/zenedu/zenedu.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b14b44f060232..830e5b7c6c2b5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -919,6 +919,9 @@ importers: components/apify: dependencies: + '@apify/consts': + specifier: ^2.41.0 + version: 2.43.0 '@pipedream/platform': specifier: ^3.0.3 version: 3.0.3 @@ -16262,6 +16265,9 @@ packages: '@apidevtools/swagger-methods@3.0.2': resolution: {integrity: sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg==} + '@apify/consts@2.43.0': + resolution: {integrity: sha512-6bhzXeftGa+MrO0XwHLLBJyP9Vc2gZXsbk3d8rcDmiEMJwChA+Qw1WD6BWI9zVazPeXb2OrjzOwfe05f59RD4g==} + '@apimatic/schema@0.6.0': resolution: {integrity: sha512-JgG32LQRLphHRWsn64vIt7wD2m+JH46swM6ZrY7g1rdiGiKV5m+A+TBrJKoUUQRmS14azMgePNZY30NauWqzLg==} engines: {node: '>=10.4.0'} @@ -29895,22 +29901,22 @@ packages: superagent@3.8.1: resolution: {integrity: sha512-VMBFLYgFuRdfeNQSMLbxGSLfmXL/xc+OO+BZp41Za/NRDBet/BNbkRJrYzCUu0u4GU0i/ml2dtT8b9qgkw9z6Q==} engines: {node: '>= 4.0'} - deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at . + 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 v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at . + 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 v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at . + 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 downgrade to v7.1.5 if you need IE/ActiveXObject support OR upgrade to v8.0.0 as we no longer support IE and published an incorrect patch version (see https://github.com/visionmedia/superagent/issues/1731) + 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@2.0.0: resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} @@ -31448,6 +31454,8 @@ snapshots: '@apidevtools/swagger-methods@3.0.2': {} + '@apify/consts@2.43.0': {} + '@apimatic/schema@0.6.0': dependencies: tslib: 2.8.1