@pipedream/phantombuster 0.0.1 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,28 +1,11 @@
1
1
  # Overview
2
2
 
3
- Phantombuster is a powerful API that enables users to build efficient web
4
- automation solutions. It provides a pool of services and tools to help users
5
- quickly, easily and securely interact with multiple websites at once.
3
+ Phantombuster is a tool that lets you automate interactions with web platforms to extract data, manage social media campaigns, and automate web actions. Using its API on Pipedream, you can seamlessly integrate these automation capabilities into complex workflows. Imagine orchestrating a symphony where Phantombuster plays the strings—pulling data from LinkedIn, sending tailored tweets, or automating lead generation—while Pipedream conducts, integrating these actions with other apps and services for a harmonious data-driven performance.
6
4
 
7
- With Phantombuster, users can create custom automated solutions to perform
8
- various tasks such as data extraction, lead generation, marketing automation,
9
- and web scraping. Here are a few of the things users can build using
10
- Phantombuster:
5
+ # Example Use Cases
11
6
 
12
- - Data extraction - Phantombuster's API allows users to quickly and securely
13
- extract data from multiple sites and APIs, allowing users to access large
14
- amounts of data at once and extract only what they need.
15
- - Lead generation - Phantombuster's API connects to multiple social networks
16
- and websites, allowing users to quickly and accurately gather leads or
17
- potential contacts and store them into a database.
18
- - Automated marketing campaigns - Phantombuster's API enables users to create
19
- and launch automated marketing campaigns, automating the entire process and
20
- saving time and money.
21
- - Web scraping - Phantombuster's API allows users to scrape entire webpages or
22
- just parts of it, enabling streamlined data years.
23
- - Robot monitoring - Phantombuster's API enables users to monitor robots,
24
- allowing them to keep an eye on their tasks and ensuring their bots are
25
- running as efficiently as possible.
26
- - Data analytics - Phantombuster's API allows users to easily analyze and
27
- visualize their gathered data, allowing them to quickly make decisions based
28
- on their collected data.
7
+ - **LinkedIn Lead Generation and Outreach**: Trigger a Phantombuster automation to scrape LinkedIn profiles based on specified criteria. Use Pipedream to process this data, filter leads, and send personalized messages through LinkedIn or sync with a CRM like Salesforce to follow up.
8
+
9
+ - **Twitter Engagement Booster**: Set up a workflow where Phantombuster automatically likes, retweets, or follows users based on specific hashtags or keywords. Pipedream can then store these interactions in a Google Sheet for analysis and further engage with these users by scheduling follow-up tweets or direct messages.
10
+
11
+ - **Instagram Content Planner**: Use Phantombuster to pull popular posts and hashtags for given topics on Instagram. With Pipedream, analyze the popularity trends and automatically schedule your posts through Buffer or Hootsuite to maximize engagement, ensuring your content hits the mark every time.
@@ -2,8 +2,14 @@ import app from "../../phantombuster.app.mjs";
2
2
 
3
3
  export default {
4
4
  type: "action",
5
+ ai: "optimized",
5
6
  key: "phantombuster-launch-phantom",
6
- version: "0.0.1",
7
+ version: "0.0.3",
8
+ annotations: {
9
+ destructiveHint: false,
10
+ openWorldHint: true,
11
+ readOnlyHint: false,
12
+ },
7
13
  name: "Launch Phantom",
8
14
  description: "Adds an agent to the launch queue, [See the docs](https://hub.phantombuster.com/reference/post_agents-launch-1)",
9
15
  props: {
@@ -0,0 +1,24 @@
1
+ import phantombuster from "../../phantombuster.app.mjs";
2
+
3
+ export default {
4
+ key: "phantombuster-list-agent-id-options",
5
+ name: "List Agent ID Options",
6
+ description: "Retrieves available options for the Agent ID field.",
7
+ version: "0.0.1",
8
+ type: "action",
9
+ annotations: {
10
+ destructiveHint: false,
11
+ openWorldHint: true,
12
+ readOnlyHint: true,
13
+ },
14
+ props: {
15
+ phantombuster,
16
+ },
17
+ async run({ $ }) {
18
+ const options = await phantombuster.propDefinitions.agentId.options.call(this.phantombuster);
19
+ $.export("$summary", `Successfully retrieved ${options.length} option${options.length === 1
20
+ ? ""
21
+ : "s"}`);
22
+ return options;
23
+ },
24
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/phantombuster",
3
- "version": "0.0.1",
3
+ "version": "0.1.1",
4
4
  "description": "Pipedream Phantombuster Components",
5
5
  "main": "phantombuster.app.mjs",
6
6
  "keywords": [
@@ -10,7 +10,7 @@
10
10
  "homepage": "https://pipedream.com/apps/phantombuster",
11
11
  "author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
12
12
  "dependencies": {
13
- "@pipedream/platform": "^1.3.0"
13
+ "@pipedream/platform": "^1.6.8"
14
14
  },
15
15
  "publishConfig": {
16
16
  "access": "public"