@pipedream/airmeet 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 Airmeet API enables you to automate and manage virtual events with ease. By integrating with Pipedream, you can create custom workflows that interact with the Airmeet platform, such as attendee management, event scheduling, and real-time updates. Utilize the API to sync event data, send notifications, and connect with other services for a comprehensive event automation solution.
|
|
4
|
+
|
|
5
|
+
# Example Use Cases
|
|
6
|
+
|
|
7
|
+
- **Sync Attendees with CRM**: Automatically add new Airmeet event attendees to your CRM system. When a new attendee joins an Airmeet event, Pipedream can capture this event and create or update a contact in platforms like Salesforce or HubSpot, ensuring your sales and marketing teams have the latest information.
|
|
8
|
+
|
|
9
|
+
- **Automate Event Follow-ups**: Send personalized follow-up emails or messages to participants after an event. Use Pipedream to listen for the conclusion of an Airmeet event, then trigger an email through SendGrid or a message through Slack or Twilio, thanking attendees and providing additional resources or call-to-actions.
|
|
10
|
+
|
|
11
|
+
- **Real-time Analytics Dashboard**: Stream live event data to a dashboard for real-time insights. With Airmeet's API, Pipedream can push attendance numbers, interaction levels, and other key metrics to a Google Sheets or a visualization tool like Grafana, helping you gauge event success instantly.
|
|
@@ -2,7 +2,12 @@ import app from "../../airmeet.app.mjs";
|
|
|
2
2
|
|
|
3
3
|
export default {
|
|
4
4
|
name: "Add Authorized Attendee",
|
|
5
|
-
version: "0.0.
|
|
5
|
+
version: "0.0.3",
|
|
6
|
+
annotations: {
|
|
7
|
+
destructiveHint: false,
|
|
8
|
+
openWorldHint: true,
|
|
9
|
+
readOnlyHint: false,
|
|
10
|
+
},
|
|
6
11
|
key: "airmeet-add-authorized-attendee",
|
|
7
12
|
description: "Add authorized Attendee. [See the documentation](https://help.airmeet.com/support/solutions/articles/82000467794-airmeet-public-apis-v2-0#5.1-Add-Authorized-Attendee)",
|
|
8
13
|
type: "action",
|
|
@@ -17,17 +22,17 @@ export default {
|
|
|
17
22
|
email: {
|
|
18
23
|
type: "string",
|
|
19
24
|
label: "Email",
|
|
20
|
-
description: "Email of the
|
|
25
|
+
description: "Email of the attendee",
|
|
21
26
|
},
|
|
22
27
|
firstName: {
|
|
23
28
|
type: "string",
|
|
24
29
|
label: "First name",
|
|
25
|
-
description: "First name of the
|
|
30
|
+
description: "First name of the attendee",
|
|
26
31
|
},
|
|
27
32
|
lastName: {
|
|
28
33
|
type: "string",
|
|
29
34
|
label: "Last name",
|
|
30
|
-
description: "Last name of the
|
|
35
|
+
description: "Last name of the attendee",
|
|
31
36
|
},
|
|
32
37
|
},
|
|
33
38
|
async run({ $ }) {
|
|
@@ -4,7 +4,12 @@ import constants from "../common/constants.mjs";
|
|
|
4
4
|
|
|
5
5
|
export default {
|
|
6
6
|
name: "Create Airmeet",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.2",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
key: "airmeet-create-airmeet",
|
|
9
14
|
description: "Creates an airmeet. [See the documentation](https://help.airmeet.com/support/solutions/articles/82000467794-airmeet-public-apis-v2-0#6.1-Create-Airmeet)",
|
|
10
15
|
type: "action",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/airmeet",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Pipedream Airmeet Components",
|
|
5
5
|
"main": "airmeet.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@pipedream/platform": "^1.
|
|
16
|
+
"@pipedream/platform": "^1.6.8",
|
|
17
17
|
"dayjs": "^1.11.10"
|
|
18
18
|
}
|
|
19
19
|
}
|