@pipedream/talkspirit 0.0.2 → 0.0.3

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 talkSpirit API lets you tap into a comprehensive platform for team communication and collaboration. On Pipedream, you can orchestrate sophisticated workflows tapping into talkSpirit's features such as posting messages, managing users, and handling groups. Automate notifications, sync data with other apps, or create custom integrations that trigger actions within talkSpirit, all in real-time.
4
+
5
+ # Example Use Cases
6
+
7
+ - **Automated Team Notifications**: Trigger a workflow in Pipedream when a specific event happens in another app (like a new GitHub commit) and post an update to a talkSpirit group to keep your team informed.
8
+
9
+ - **Event-Driven Group Management**: Maintain talkSpirit groups effortlessly by creating a Pipedream workflow that listens for changes in your HR system and adds or removes members from groups based on their department or role.
10
+
11
+ - **Cross-Platform Project Updates**: Whenever a task is marked as completed in a project management tool like Trello, trigger a Pipedream workflow that posts a message to a relevant talkSpirit chat, keeping everyone aligned on project progress.
package/package.json CHANGED
@@ -1,15 +1,12 @@
1
1
  {
2
2
  "name": "@pipedream/talkspirit",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Pipedream talkSpirit Components",
5
- "main": "dist/app/talkspirit.app.mjs",
5
+ "main": "talkspirit.app.mjs",
6
6
  "keywords": [
7
7
  "pipedream",
8
8
  "talkspirit"
9
9
  ],
10
- "files": [
11
- "dist"
12
- ],
13
10
  "homepage": "https://pipedream.com/apps/talkspirit",
14
11
  "author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
15
12
  "publishConfig": {
@@ -0,0 +1,11 @@
1
+ export default {
2
+ type: "app",
3
+ app: "talkspirit",
4
+ propDefinitions: {},
5
+ methods: {
6
+ // this.$auth contains connected account data
7
+ authKeys() {
8
+ console.log(Object.keys(this.$auth));
9
+ },
10
+ },
11
+ };