Skip to content

Commit ad537ae

Browse files
committed
Merge branch 'master' into 17406-components-indiefunnels
2 parents 31fa1cb + 50c8bfe commit ad537ae

File tree

156 files changed

+3232
-229
lines changed

Some content is hidden

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

156 files changed

+3232
-229
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+
};
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
type: "app",
3+
app: "alt_text_lab",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/alt_text_lab",
3+
"version": "0.0.1",
4+
"description": "Pipedream Alt Text Lab Components",
5+
"main": "alt_text_lab.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"alt_text_lab"
9+
],
10+
"homepage": "https://pipedream.com/apps/alt_text_lab",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

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,

0 commit comments

Comments
 (0)