@pipedream/microsoft_outlook 1.7.4 → 1.7.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/microsoft_outlook",
3
- "version": "1.7.4",
3
+ "version": "1.7.6",
4
4
  "description": "Pipedream Microsoft Outlook Components",
5
5
  "main": "microsoft_outlook.app.mjs",
6
6
  "keywords": [
@@ -12,8 +12,8 @@
12
12
  "homepage": "https://pipedream.com/apps/microsoft_outlook",
13
13
  "author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
14
14
  "dependencies": {
15
- "@pipedream/platform": "^3.1.0",
16
- "axios": "^0.21.1",
15
+ "@pipedream/platform": "^3.1.1",
16
+ "axios": "^0.30.2",
17
17
  "js-base64": "^3.7.2",
18
18
  "md5": "^2.3.0",
19
19
  "mime-types": "^2.1.35"
@@ -1,3 +1,4 @@
1
+ import md5 from "md5";
1
2
  import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
2
3
  import microsoftOutlook from "../../microsoft_outlook.app.mjs";
3
4
  import sampleEmit from "./test-event.mjs";
@@ -6,7 +7,7 @@ export default {
6
7
  key: "microsoft_outlook-new-email-in-shared-folder",
7
8
  name: "New Email in Shared Folder Event",
8
9
  description: "Emit new event when an email is received in specified shared folders.",
9
- version: "0.0.4",
10
+ version: "0.0.5",
10
11
  type: "source",
11
12
  dedupe: "unique",
12
13
  props: {
@@ -70,7 +71,7 @@ export default {
70
71
  this.$emit(
71
72
  item,
72
73
  {
73
- id: item.id,
74
+ id: md5(item.id),
74
75
  summary: `A new email with subject ${item.subject} was received!`,
75
76
  ts,
76
77
  },