@pipedream/proofly 0.1.0 → 0.2.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
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Overview
|
|
2
|
+
|
|
3
|
+
The Proofly API enables you to create, manage, and deploy social proof notifications on your website to boost conversions. It provides various endpoints that allow you to automate the process of updating notifications based on specific triggers or events. Using Pipedream, you can create workflows that integrate with the Proofly API to dynamically control these notifications, respond to analytics, and sync with your marketing or sales tools to optimize user engagement.
|
|
4
|
+
|
|
5
|
+
# Example Use Cases
|
|
6
|
+
|
|
7
|
+
- **Automate Notification Updates Based on User Behavior**: Using Pipedream, you can design a workflow that listens for webhooks from your analytics platform, then triggers Proofly API to update notifications when a user performs a specific action like signing up or completing a purchase.
|
|
8
|
+
|
|
9
|
+
- **Sync Proofly Campaigns with Email Marketing**: Craft a workflow that ties Proofly notifications with your email campaigns. When a new email subscriber is added to your Mailchimp list, for instance, trigger a Proofly notification on your site to welcome the new subscriber and incentivize further engagement.
|
|
10
|
+
|
|
11
|
+
- **Aggregate Feedback for A/B Testing**: Assemble a workflow that utilizes Proofly API to switch between different notification designs or messages based on user interaction data piped in from your A/B testing platform. Use this data to determine which notifications are most effective at converting visitors.
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "proofly-get-notification-data",
|
|
5
5
|
name: "Get Notification Data",
|
|
6
6
|
description: "Get data for a notification. [See the documentation here](https://proofly.io/developers)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.2",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import proofly from "../../proofly.app.mjs";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
key: "proofly-list-campaign-id-options",
|
|
5
|
+
name: "List Campaign ID Options",
|
|
6
|
+
description: "Retrieves available options for the Campaign 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
|
+
proofly,
|
|
16
|
+
},
|
|
17
|
+
async run({ $ }) {
|
|
18
|
+
const options = await proofly.propDefinitions.campaignId.options.call(this.proofly, {});
|
|
19
|
+
$.export("$summary", `Successfully retrieved ${options.length} option${
|
|
20
|
+
options.length === 1
|
|
21
|
+
? ""
|
|
22
|
+
: "s"
|
|
23
|
+
}`);
|
|
24
|
+
return options;
|
|
25
|
+
},
|
|
26
|
+
};
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "proofly-toggle-campaign",
|
|
5
5
|
name: "Toggle Campaign Status",
|
|
6
6
|
description: "Switch a campaign's status between active and inactive. [See the documentation](https://proofly.io/developers)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.2",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: true,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/proofly",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Pipedream Proofly Components",
|
|
5
5
|
"main": "proofly.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -13,6 +13,6 @@
|
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@pipedream/platform": "^1.6.
|
|
16
|
+
"@pipedream/platform": "^1.6.8"
|
|
17
17
|
}
|
|
18
18
|
}
|