@pipedream/spondyr 0.0.3 → 0.1.0
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,31 +1,11 @@
|
|
|
1
1
|
# Overview
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
It is an API that connects multiple services, databases, and resources in one
|
|
5
|
-
place, enabling developers to quickly build serverless applications with
|
|
6
|
-
enterprise-grade security, scalability, and performance.
|
|
3
|
+
The Spondyr API, known as MailboxValidator, is a tool designed to clean and verify email lists, ensuring that businesses can keep their email marketing databases free of invalid, inactive, or disposable email addresses. By integrating Spondyr with Pipedream, you can automate the process of maintaining a high-quality email list, triggering email validation workflows, and integrating with other services to enhance user management, campaign effectiveness, and overall data hygiene.
|
|
7
4
|
|
|
8
|
-
|
|
9
|
-
applications by providing the tools to connect multiple services, eliminate
|
|
10
|
-
excess code, and rapidly develop user experiences. Here are a few examples of
|
|
11
|
-
the experiences you can create with Spondyr API:
|
|
5
|
+
# Example Use Cases
|
|
12
6
|
|
|
13
|
-
-
|
|
14
|
-
reliable eCommerce applications with integration to multiple payment
|
|
15
|
-
providers.
|
|
16
|
-
- Cloud Storage Systems – Build cloud-based storage systems that are flawless,
|
|
17
|
-
fast, and secure.
|
|
18
|
-
- Enterprise Dashboards – Create interactive dashboards with insights that your
|
|
19
|
-
customers need to make the right decisions.
|
|
20
|
-
- Mobile Applications – Build mobile apps with real-time data updates and
|
|
21
|
-
secure authentication.
|
|
22
|
-
- Chatbots – Create interactive and AI-powered chatbots to provide instant
|
|
23
|
-
customer support.
|
|
24
|
-
- Social Networks – Create powerful and secure social networks with the
|
|
25
|
-
flexibility to add and modify features.
|
|
26
|
-
- Data Visualization – Leverage Spondyr API and create stunning data
|
|
27
|
-
visualization applications.
|
|
7
|
+
- **Email Verification on User Sign-up**: Trigger a workflow in Pipedream when a new user signs up via your app's API. Use the Spondyr API to validate the email address. If it's valid, continue the sign-up process; if not, reject the sign-up and notify the user to provide a valid email.
|
|
28
8
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
9
|
+
- **Scheduled Email List Cleaning**: Set up a Pipedream cron job to periodically trigger a workflow that sends batches of email addresses from your database to the Spondyr API for validation. After cleaning, update your database by removing invalid emails, and use Pipedream's built-in integrations to log the results to a Google Sheets spreadsheet for record-keeping and further analysis.
|
|
10
|
+
|
|
11
|
+
- **Real-time Lead Validation in Marketing Campaigns**: Integrate the Spondyr API with your marketing platform via Pipedream. When a lead is captured through a landing page form, instantly validate their email with Spondyr. Based on the validation result, you could route the lead to different nurturing tracks or notify your sales team about high-quality leads with valid email addresses.
|
|
@@ -3,7 +3,12 @@ import spondyr from "../../spondyr.app.mjs";
|
|
|
3
3
|
export default {
|
|
4
4
|
key: "spondyr-create-spondyr",
|
|
5
5
|
name: "Create Spondyr",
|
|
6
|
-
version: "0.0.
|
|
6
|
+
version: "0.0.3",
|
|
7
|
+
annotations: {
|
|
8
|
+
destructiveHint: false,
|
|
9
|
+
openWorldHint: true,
|
|
10
|
+
readOnlyHint: false,
|
|
11
|
+
},
|
|
7
12
|
description: "Generate and optionally deliver correspondence. [See the docs here](https://client.spondyr.io/#/Public/Public/Documentation?Section=send-api)",
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import spondyr from "../../spondyr.app.mjs";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
key: "spondyr-list-transaction-type-options",
|
|
5
|
+
name: "List Transaction Type Options",
|
|
6
|
+
description: "Retrieves available options for the Transaction Type field.",
|
|
7
|
+
version: "0.0.1",
|
|
8
|
+
type: "action",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: true,
|
|
13
|
+
},
|
|
14
|
+
props: {
|
|
15
|
+
spondyr,
|
|
16
|
+
page: {
|
|
17
|
+
type: "integer",
|
|
18
|
+
label: "Page",
|
|
19
|
+
description: "The page of results to retrieve.",
|
|
20
|
+
min: 0,
|
|
21
|
+
default: 0,
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
async run({ $ }) {
|
|
25
|
+
const options = await spondyr.propDefinitions.transactionType.options.call(this.spondyr, {
|
|
26
|
+
page: this.page,
|
|
27
|
+
});
|
|
28
|
+
$.export("$summary", `Successfully retrieved ${options.length} option${options.length === 1
|
|
29
|
+
? ""
|
|
30
|
+
: "s"}`);
|
|
31
|
+
return options;
|
|
32
|
+
},
|
|
33
|
+
};
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/spondyr",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Pipedream Spondyr Components",
|
|
5
|
-
"main": "spondyr.app.
|
|
5
|
+
"main": "spondyr.app.mjs",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"pipedream",
|
|
8
8
|
"spondyr"
|
|
@@ -13,6 +13,6 @@
|
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@pipedream/platform": "^1.
|
|
16
|
+
"@pipedream/platform": "^1.6.8"
|
|
17
17
|
}
|
|
18
18
|
}
|