Skip to content

Commit ab27536

Browse files
committed
Merge remote-tracking branch 'origin/master' into issue-17463
2 parents cb6b9ff + 59b859c commit ab27536

File tree

55 files changed

+386
-117
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+386
-117
lines changed

components/accuweather/accuweather.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ export default {
88
console.log(Object.keys(this.$auth));
99
},
1010
},
11-
};
11+
};

components/adtraction/adtraction.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ export default {
88
console.log(Object.keys(this.$auth));
99
},
1010
},
11-
};
11+
};

components/alt_text_generator_ai/alt_text_generator_ai.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ export default {
88
console.log(Object.keys(this.$auth));
99
},
1010
},
11-
};
11+
};

components/apify/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The Apify API unleashes the power to automate web scraping, process data, and or
66

77
**E-commerce Price Monitoring**
88

9-
- 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.
9+
- 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.
1010

1111
**Social Media Sentiment Analysis**
1212

components/apify/actions/get-dataset-items/get-dataset-items.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "apify-get-dataset-items",
66
name: "Get Dataset Items",
77
description: "Returns data stored in a dataset. [See the documentation](https://docs.apify.com/api/v2/dataset-items-get)",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
type: "action",
1010
props: {
1111
apify,

components/apify/actions/run-actor/run-actor.mjs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { EVENT_TYPES } from "../../common/constants.mjs";
66
export default {
77
key: "apify-run-actor",
88
name: "Run Actor",
9-
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)",
10-
version: "0.0.3",
9+
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)",
10+
version: "0.0.4",
1111
type: "action",
1212
props: {
1313
apify,
@@ -30,7 +30,7 @@ export default {
3030
runAsynchronously: {
3131
type: "boolean",
3232
label: "Run Asynchronously",
33-
description: "Set to `true` to run the actor asynchronously",
33+
description: "Set to `true` to run the Actor asynchronously",
3434
reloadProps: true,
3535
},
3636
timeout: {
@@ -162,7 +162,7 @@ export default {
162162
props.properties = {
163163
type: "object",
164164
label: "Properties",
165-
description: "Properties to set for this actor",
165+
description: "Properties to set for this Actor",
166166
};
167167
}
168168
if (this.runAsynchronously) {
@@ -241,8 +241,8 @@ export default {
241241
},
242242
});
243243
const summary = this.runAsynchronously
244-
? `Successfully started actor run with ID: ${response.data.id}`
245-
: `Successfully ran actor with ID: ${this.actorId}`;
244+
? `Successfully started Actor run with ID: ${response.data.id}`
245+
: `Successfully ran Actor with ID: ${this.actorId}`;
246246
$.export("$summary", `${summary}`);
247247
return response;
248248
},

components/apify/actions/run-task-synchronously/run-task-synchronously.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "apify-run-task-synchronously",
55
name: "Run Task Synchronously",
66
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)",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
type: "action",
99
props: {
1010
apify,

components/apify/actions/scrape-single-url/scrape-single-url.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "apify-scrape-single-url",
66
name: "Scrape Single URL",
77
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.",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
type: "action",
1010
props: {
1111
apify,

components/apify/actions/set-key-value-store-record/set-key-value-store-record.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "apify-set-key-value-store-record",
66
name: "Set Key-Value Store Record",
77
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)",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
type: "action",
1010
props: {
1111
apify,

components/apify/apify.app.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default {
4949
userActorId: {
5050
type: "string",
5151
label: "Actor ID",
52-
description: "The ID of the actor to monitor.",
52+
description: "The ID of the Actor to monitor.",
5353
async options({ page }) {
5454
const { data: { items } } = await this.listUserActors({
5555
params: {
@@ -162,6 +162,7 @@ export default {
162162
return {
163163
"Content-Type": "application/json",
164164
"Authorization": `Bearer ${this.$auth.api_token}`,
165+
"x-apify-integration-platform": "pipedream",
165166
};
166167
},
167168
_makeRequest({

0 commit comments

Comments
 (0)