@pipedream/bandwidth 1.0.3 → 1.0.4

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,11 +1,11 @@
1
1
  # Overview
2
2
 
3
- With the Bandwidth API, you can build a variety of applications and tools for
4
- managing your communication needs. Here are a few examples of what you can
5
- build:
6
-
7
- - A tool for monitoring your bandwidth usage
8
- - A tool for managing your contact lists
9
- - A tool for sending and receiving text messages
10
- - A tool for making and receiving phone calls
11
- - A tool for recording and storing call data
3
+ The Bandwidth API opens up a world of possibilities for integrating telecom services into your applications. Bandwidth specializes in voice, messaging, and 911 access, making it possible to programmatically send and receive text messages, orchestrate calls, and implement emergency call routing. Linking the Bandwidth API with Pipedream allows you to automate these telecom features with various triggers and actions from other apps, creating seamless and powerful workflows.
4
+
5
+ # Example Use Cases
6
+
7
+ - **Automated Customer Support System**: Build a system that automatically responds to customer support queries via SMS. When an SMS is received, it triggers a workflow that classifies the query using a machine learning model. Based on the classification, it either responds with a predefined message or escalates the issue to a human agent by creating a ticket in a service like Zendesk.
8
+
9
+ - **Real-time Alerts and Notifications**: Set up a workflow where Bandwidth sends out voice or SMS alerts based on triggers from monitoring tools like Datadog. For instance, if a monitoring tool detects server downtime, a high priority alert is sent to the on-call engineer via Bandwidth, ensuring quick response times to critical incidents.
10
+
11
+ - **Event-Driven Survey Campaigns**: After a customer interaction with your service, use a workflow to send a follow-up survey via SMS. When a customer completes a transaction or interaction, Pipedream triggers Bandwidth to send an SMS with a link to a feedback form. The responses can then be collected and stored in a database like Airtable for analysis and follow-up.
@@ -5,7 +5,12 @@ module.exports = {
5
5
  name: "Send SMS",
6
6
  description: "Send an SMS message using Bandwidth's Messaging API",
7
7
  type: "action",
8
- version: "1.0.0",
8
+ version: "1.0.1",
9
+ annotations: {
10
+ destructiveHint: false,
11
+ openWorldHint: true,
12
+ readOnlyHint: false,
13
+ },
9
14
  props: {
10
15
  bandwidth,
11
16
  messageTo: {
package/bandwidth.app.js CHANGED
@@ -27,7 +27,7 @@ module.exports = {
27
27
  mediaUrl: {
28
28
  type: "string[]",
29
29
  label: "Media URL",
30
- description: "Publicly addressible URL of the media you would like to send with the SMS",
30
+ description: "Publicly addressable URL of the media you would like to send with the SMS",
31
31
  },
32
32
  },
33
33
  methods: {
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@pipedream/bandwidth",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Pipedream Bandwidth Components",
5
- "main": "index.js",
5
+ "main": "bandwidth.app.js",
6
6
  "keywords": [
7
7
  "pipedream",
8
8
  "bandwidth"
@@ -4,7 +4,8 @@ module.exports = {
4
4
  name: "New Incoming SMS",
5
5
  description: "Emits an event each time a `message-received` event is received at the source url",
6
6
  key: "bandwidth-new-incoming-sms",
7
- version: "1.1.0",
7
+ version: "1.1.1",
8
+ type: "source",
8
9
  props: {
9
10
  bandwidth,
10
11
  http: {
@@ -5,7 +5,7 @@ module.exports = {
5
5
  description:
6
6
  "Emits an event each time an outbound message status event is received at the source url",
7
7
  key: "bandwidth-new-outgoing-sms",
8
- version: "1.1.1",
8
+ version: "1.1.2",
9
9
  type: "source",
10
10
  props: {
11
11
  bandwidth,