Skip to content

Commit 1e51e88

Browse files
[18884] Update new-email-in-shared-folder.mjs (#19077)
* Update new-email-in-shared-folder.mjs * versions --------- Co-authored-by: Michelle Bergeron <michelle.bergeron@gmail.com>
1 parent 50dd5b6 commit 1e51e88

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

components/microsoft_outlook/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_outlook",
3-
"version": "1.7.5",
3+
"version": "1.7.6",
44
"description": "Pipedream Microsoft Outlook Components",
55
"main": "microsoft_outlook.app.mjs",
66
"keywords": [

components/microsoft_outlook/sources/new-email-in-shared-folder/new-email-in-shared-folder.mjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import md5 from "md5";
12
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
23
import microsoftOutlook from "../../microsoft_outlook.app.mjs";
34
import sampleEmit from "./test-event.mjs";
@@ -6,7 +7,7 @@ export default {
67
key: "microsoft_outlook-new-email-in-shared-folder",
78
name: "New Email in Shared Folder Event",
89
description: "Emit new event when an email is received in specified shared folders.",
9-
version: "0.0.4",
10+
version: "0.0.5",
1011
type: "source",
1112
dedupe: "unique",
1213
props: {
@@ -70,7 +71,7 @@ export default {
7071
this.$emit(
7172
item,
7273
{
73-
id: item.id,
74+
id: md5(item.id),
7475
summary: `A new email with subject ${item.subject} was received!`,
7576
ts,
7677
},

0 commit comments

Comments
 (0)