@pipedream/microsoft_teams 0.0.3 → 0.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 +7 -0
- package/package.json +2 -1
- package/sources/common/base.mjs +2 -1
- package/sources/new-channel/new-channel.mjs +1 -1
- package/sources/new-channel-message/new-channel-message.mjs +1 -1
- package/sources/new-chat/new-chat.mjs +1 -1
- package/sources/new-chat-message/new-chat-message.mjs +1 -1
- package/sources/new-team/new-team.mjs +1 -1
- package/sources/new-team-member/new-team-member.mjs +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Overview
|
|
2
|
+
|
|
3
|
+
With the Microsoft Teams API, you can build a variety of applications and
|
|
4
|
+
integrations that work with Teams. For example, you could build a bot that
|
|
5
|
+
responds to questions from users, or an app that lets users add information to
|
|
6
|
+
a shared Teams document. You could also build an integration that lets users
|
|
7
|
+
interact with an external service right from within Teams.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/microsoft_teams",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Pipedream Microsoft Teams Components",
|
|
5
5
|
"main": "microsoft_teams.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@microsoft/microsoft-graph-client": "^3.0.2",
|
|
19
|
+
"@pipedream/platform": "^1.2.0",
|
|
19
20
|
"isomorphic-fetch": "^3.0.0"
|
|
20
21
|
}
|
|
21
22
|
}
|
package/sources/common/base.mjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import microsoftTeams from "../../microsoft_teams.app.mjs";
|
|
2
|
+
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
|
|
2
3
|
|
|
3
4
|
export default {
|
|
4
5
|
props: {
|
|
@@ -9,7 +10,7 @@ export default {
|
|
|
9
10
|
description: "Pipedream will poll the YouTube API on this schedule",
|
|
10
11
|
type: "$.interface.timer",
|
|
11
12
|
default: {
|
|
12
|
-
intervalSeconds:
|
|
13
|
+
intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
|
|
13
14
|
},
|
|
14
15
|
},
|
|
15
16
|
},
|