File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
components/microsoft_outlook
sources/new-email-in-shared-folder Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 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" : [
Original file line number Diff line number Diff line change 1+ import md5 from "md5" ;
12import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform" ;
23import microsoftOutlook from "../../microsoft_outlook.app.mjs" ;
34import 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 } ,
You can’t perform that action at this time.
0 commit comments