@pipedream/octopush_sms 0.1.0 → 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
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Overview
|
|
2
|
+
|
|
3
|
+
The Octopush SMS API lets you programmatically send text messages, providing a powerful way to reach out to customers directly on their phones. With Pipedream, you can create workflows that trigger SMS sending via Octopush based on various events, streamlining communication processes. You could use this API to send alerts, reminders, verification codes, or marketing messages, and integrate with other apps to respond to emails, form submissions, or updates in a CRM.
|
|
4
|
+
|
|
5
|
+
# Example Use Cases
|
|
6
|
+
|
|
7
|
+
- **SMS Alerts for Critical System Outages**: When a monitoring system like Datadog detects an outage or critical system issue, it can trigger a Pipedream workflow to send an immediate alert via Octopush SMS to your on-call engineers, reducing response times.
|
|
8
|
+
|
|
9
|
+
- **Appointment Reminders from Google Calendar**: Set up a workflow where upcoming Google Calendar events trigger SMS reminders through Octopush. This keeps clients or patients informed about their appointments, potentially cutting down on no-shows.
|
|
10
|
+
|
|
11
|
+
- **E-commerce Order Confirmations**: Whenever a new order is placed in an e-commerce platform like Shopify, a Pipedream workflow can automatically send an order confirmation and updates via SMS through Octopush, enhancing customer experience.
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "octopush_sms-add-contact",
|
|
5
5
|
name: "Add Contact",
|
|
6
6
|
description: "Adds a new contact to a list in the Octopush SMS Gateway. [See the documentation](https://dev.octopush.com/en/sms-gateway-api-documentation/add-a-contact/)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.2",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
octopush,
|
|
@@ -4,8 +4,14 @@ export default {
|
|
|
4
4
|
key: "octopush_sms-send-new-sms",
|
|
5
5
|
name: "Send New SMS",
|
|
6
6
|
description: "Sends a new SMS using Octopush SMS. [See the documentation](https://dev.octopush.com/en/sms-gateway-api-documentation/send-sms/)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.3",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
14
|
+
ai: "optimized",
|
|
9
15
|
props: {
|
|
10
16
|
octopush,
|
|
11
17
|
text: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/octopush_sms",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Pipedream Octopush SMS Components",
|
|
5
5
|
"main": "octopush_sms.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
|
}
|