Skip to content

Commit 54291be

Browse files
authored
Merging pull request #18785
* bug fix * versions
1 parent ffab7aa commit 54291be

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

components/microsoft_teams/actions/create-channel/create-channel.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Create Channel",
66
description: "Create a new channel in Microsoft Teams. [See the docs here](https://docs.microsoft.com/en-us/graph/api/channel-post?view=graph-rest-1.0&tabs=http)",
77
type: "action",
8-
version: "0.0.10",
8+
version: "0.0.11",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/microsoft_teams/actions/list-channels/list-channels.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "List Channels",
66
description: "Lists all channels in a Microsoft Team. [See the docs here](https://docs.microsoft.com/en-us/graph/api/channel-list?view=graph-rest-1.0&tabs=http)",
77
type: "action",
8-
version: "0.0.10",
8+
version: "0.0.11",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/microsoft_teams/actions/list-shifts/list-shifts.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "List Shifts",
66
description: "Get the list of shift instances for a team. [See the documentation](https://learn.microsoft.com/en-us/graph/api/schedule-list-shifts?view=graph-rest-1.0&tabs=http)",
77
type: "action",
8-
version: "0.0.7",
8+
version: "0.0.8",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/microsoft_teams/actions/send-channel-message/send-channel-message.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Send Channel Message",
66
description: "Send a message to a team's channel. [See the docs here](https://docs.microsoft.com/en-us/graph/api/channel-post-messages?view=graph-rest-1.0&tabs=http)",
77
type: "action",
8-
version: "0.0.10",
8+
version: "0.0.11",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/microsoft_teams/actions/send-chat-message/send-chat-message.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Send Chat Message",
66
description: "Send a message to a team's chat. [See the docs here](https://docs.microsoft.com/en-us/graph/api/chat-post-messages?view=graph-rest-1.0&tabs=http)",
77
type: "action",
8-
version: "0.0.10",
8+
version: "0.0.11",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/microsoft_teams/microsoft_teams.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ export default {
276276
channelId,
277277
}) {
278278
return this.makeRequest({
279-
path: `/teams/${teamId}/channels/${channelId}/messages/delta`,
279+
path: `/teams/${teamId}/channels/${channelId}/messages`,
280280
});
281281
},
282282
async listTeamMembers({ teamId }) {

components/microsoft_teams/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/microsoft_teams",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"description": "Pipedream Microsoft Teams Components",
55
"main": "microsoft_teams.app.mjs",
66
"keywords": [

components/microsoft_teams/sources/new-channel-message/new-channel-message.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "microsoft_teams-new-channel-message",
66
name: "New Channel Message",
77
description: "Emit new event when a new message is posted in a channel. [See the documentation](https://learn.microsoft.com/en-us/graph/api/channel-list-messages?view=graph-rest-1.0&tabs=http)",
8-
version: "0.0.12",
8+
version: "0.0.13",
99
type: "source",
1010
dedupe: "unique",
1111
props: {

components/microsoft_teams/sources/new-channel/new-channel.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "microsoft_teams-new-channel",
66
name: "New Channel",
77
description: "Emit new event when a new channel is created within a team. [See the documentation](https://learn.microsoft.com/en-us/graph/api/team-list-allchannels?view=graph-rest-1.0&tabs=http)",
8-
version: "0.0.12",
8+
version: "0.0.13",
99
type: "source",
1010
dedupe: "unique",
1111
props: {

components/microsoft_teams/sources/new-chat-message/new-chat-message.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "microsoft_teams-new-chat-message",
66
name: "New Chat Message",
77
description: "Emit new event when a new message is received in a chat. [See the documentation](https://learn.microsoft.com/en-us/graph/api/chat-list-messages?view=graph-rest-1.0&tabs=http)",
8-
version: "0.0.12",
8+
version: "0.0.13",
99
type: "source",
1010
dedupe: "unique",
1111
props: {

0 commit comments

Comments
 (0)