@pipedream/vestaboard 0.1.1 → 0.1.2
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 Vestaboard API allows you to control a networked, mechanical split-flap display, enabling you to automate the content it shows. By integrating with Pipedream, you can develop serverless workflows that respond to various triggers (like incoming webhooks, emails, or scheduled timers) and push updates to your Vestaboard. You can dynamically display information such as meeting reminders, real-time performance metrics, or custom messages based on events from other apps and services.
|
|
4
|
+
|
|
5
|
+
# Example Use Cases
|
|
6
|
+
|
|
7
|
+
- **Dynamic Performance Dashboard**: Use the Vestaboard API on Pipedream to create a live dashboard that displays key business metrics. Connect to apps like Google Sheets or Salesforce, fetch the latest data, and send it to your Vestaboard to keep your team informed and motivated.
|
|
8
|
+
|
|
9
|
+
- **Meeting Room Schedule Display**: Create a workflow that integrates with calendar services like Google Calendar or Office 365. Extract upcoming events and format the data to display meeting schedules on your Vestaboard in real-time, ensuring everyone knows when and where their next meeting is.
|
|
10
|
+
|
|
11
|
+
- **Slack-Powered Announcements**: Set up a Pipedream workflow that listens for specific commands or messages in Slack. When a trigger phrase is detected, capture the message content and automatically update your Vestaboard with the latest announcements or alerts for your team to see.
|
|
@@ -5,8 +5,14 @@ export default {
|
|
|
5
5
|
key: "vestaboard-create-message",
|
|
6
6
|
name: "Create Message",
|
|
7
7
|
description: "Creates a new message for a subscription. [See the docs](https://swagger.vestaboard.com/docs/vestaboard/b3A6MTYwMTA4OTc-post-v2-0-subscriptions-with-id-message)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.4",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
15
|
+
ai: "optimized",
|
|
10
16
|
props: {
|
|
11
17
|
vestaboard,
|
|
12
18
|
subscriptionId: {
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "vestaboard-get-current-message",
|
|
5
5
|
name: "Get Current Message",
|
|
6
6
|
description: "Retrieves the current message. [See the docs](https://docs.vestaboard.com/read-write)",
|
|
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
|
vestaboard,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "vestaboard-get-subscriptions",
|
|
5
5
|
name: "Get Subscriptions",
|
|
6
6
|
description: "Get the list of subscriptions available to the viewer. [See the docs](https://swagger.vestaboard.com/docs/vestaboard/b3A6MTYwMTA4OTQ-get-v2-0-subscriptions)",
|
|
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
|
vestaboard,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/vestaboard",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Pipedream Vestaboard Components",
|
|
5
5
|
"main": "vestaboard.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -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
|
}
|