From e8c88782db32fb4a4d3cddb5016b4b27d0de15c1 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Tue, 1 Jul 2025 12:46:46 -0400 Subject: [PATCH 1/7] bug fix --- .../actions/create-draft-email/create-draft-email.mjs | 4 ++-- components/microsoft_outlook/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/microsoft_outlook/actions/create-draft-email/create-draft-email.mjs b/components/microsoft_outlook/actions/create-draft-email/create-draft-email.mjs index 4e11d7e92d70b..421ee1b7732bc 100644 --- a/components/microsoft_outlook/actions/create-draft-email/create-draft-email.mjs +++ b/components/microsoft_outlook/actions/create-draft-email/create-draft-email.mjs @@ -3,7 +3,7 @@ import microsoftOutlook from "../../microsoft_outlook.app.mjs"; export default { type: "action", key: "microsoft_outlook-create-draft-email", - version: "0.0.14", + version: "0.0.15", name: "Create Draft Email", description: "Create a draft email, [See the documentation](https://docs.microsoft.com/en-us/graph/api/user-post-messages)", props: { @@ -62,7 +62,7 @@ export default { const response = await this.microsoftOutlook.createDraft({ $, data: { - ...this.microsoftOutlook.prepareMessageBody(this), + ...await this.microsoftOutlook.prepareMessageBody(this), ...this.expand, }, }); diff --git a/components/microsoft_outlook/package.json b/components/microsoft_outlook/package.json index 218d898ac8380..98a229b4a34a7 100644 --- a/components/microsoft_outlook/package.json +++ b/components/microsoft_outlook/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/microsoft_outlook", - "version": "1.5.1", + "version": "1.5.2", "description": "Pipedream Microsoft Outlook Components", "main": "microsoft_outlook.app.mjs", "keywords": [ From 08d1824b61b84694831924bef3da7c29654f90c8 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Tue, 1 Jul 2025 12:47:26 -0400 Subject: [PATCH 2/7] pnpm-lock.yaml --- pnpm-lock.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ca0a6e13fd61f..4319bbedd13b2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29612,22 +29612,22 @@ packages: superagent@3.8.1: resolution: {integrity: sha512-VMBFLYgFuRdfeNQSMLbxGSLfmXL/xc+OO+BZp41Za/NRDBet/BNbkRJrYzCUu0u4GU0i/ml2dtT8b9qgkw9z6Q==} engines: {node: '>= 4.0'} - deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at . + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superagent@4.1.0: resolution: {integrity: sha512-FT3QLMasz0YyCd4uIi5HNe+3t/onxMyEho7C3PSqmti3Twgy2rXT4fmkTz6wRL6bTF4uzPcfkUCa8u4JWHw8Ag==} engines: {node: '>= 6.0'} - deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at . + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superagent@5.3.1: resolution: {integrity: sha512-wjJ/MoTid2/RuGCOFtlacyGNxN9QLMgcpYLDQlWFIhhdJ93kNscFonGvrpAHSCVjRVj++DGCglocF7Aej1KHvQ==} engines: {node: '>= 7.0.0'} - deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at . + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superagent@7.1.6: resolution: {integrity: sha512-gZkVCQR1gy/oUXr+kxJMLDjla434KmSOKbx5iGD30Ql+AkJQ/YlPKECJy2nhqOsHLjGHzoDTXNSjhnvWhzKk7g==} engines: {node: '>=6.4.0 <13 || >=14'} - deprecated: Please downgrade to v7.1.5 if you need IE/ActiveXObject support OR upgrade to v8.0.0 as we no longer support IE and published an incorrect patch version (see https://github.com/visionmedia/superagent/issues/1731) + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net supports-color@2.0.0: resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} From a4f63bd5882edece6bd4600c6d19957cb2cbb58c Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Wed, 2 Jul 2025 12:35:14 -0400 Subject: [PATCH 3/7] parse expand prop --- .../create-draft-email/create-draft-email.mjs | 3 +- .../actions/send-email/send-email.mjs | 5 ++-- components/microsoft_outlook/common/utils.mjs | 29 +++++++++++++++++++ 3 files changed, 34 insertions(+), 3 deletions(-) create mode 100644 components/microsoft_outlook/common/utils.mjs diff --git a/components/microsoft_outlook/actions/create-draft-email/create-draft-email.mjs b/components/microsoft_outlook/actions/create-draft-email/create-draft-email.mjs index 421ee1b7732bc..50086eb809420 100644 --- a/components/microsoft_outlook/actions/create-draft-email/create-draft-email.mjs +++ b/components/microsoft_outlook/actions/create-draft-email/create-draft-email.mjs @@ -1,4 +1,5 @@ import microsoftOutlook from "../../microsoft_outlook.app.mjs"; +import { parseObject } from "../../common/utils.mjs"; export default { type: "action", @@ -63,7 +64,7 @@ export default { $, data: { ...await this.microsoftOutlook.prepareMessageBody(this), - ...this.expand, + ...parseObject(this.expand), }, }); $.export("$summary", "Email draft has been created."); diff --git a/components/microsoft_outlook/actions/send-email/send-email.mjs b/components/microsoft_outlook/actions/send-email/send-email.mjs index 9cc2a8c1b2b3e..b873c817176ce 100644 --- a/components/microsoft_outlook/actions/send-email/send-email.mjs +++ b/components/microsoft_outlook/actions/send-email/send-email.mjs @@ -1,9 +1,10 @@ import microsoftOutlook from "../../microsoft_outlook.app.mjs"; +import { parseObject } from "../../common/utils.mjs"; export default { type: "action", key: "microsoft_outlook-send-email", - version: "0.0.15", + version: "0.0.16", name: "Send Email", description: "Send an email to one or multiple recipients, [See the docs](https://docs.microsoft.com/en-us/graph/api/user-sendmail)", props: { @@ -64,7 +65,7 @@ export default { data: { message: { ...await this.microsoftOutlook.prepareMessageBody(this), - ...this.expand, + ...parseObject(this.expand), }, }, }); diff --git a/components/microsoft_outlook/common/utils.mjs b/components/microsoft_outlook/common/utils.mjs new file mode 100644 index 0000000000000..c0297cec0ce90 --- /dev/null +++ b/components/microsoft_outlook/common/utils.mjs @@ -0,0 +1,29 @@ +export const parseObject = (obj) => { + if (!obj) { + return {}; + } + + if (typeof obj === "string") { + try { + return JSON.parse(obj); + } catch { + return obj; + } + } + + if (Array.isArray(obj)) { + return obj.map(parseObject); + } + + if (typeof obj === "object") { + return Object.fromEntries(Object.entries(obj).map(([ + key, + value, + ]) => [ + key, + parseObject(value), + ])); + } + + return obj; +}; From 35ce9bfa1e1cf45f04ae63ec85589703fb50b2ca Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Thu, 3 Jul 2025 12:00:07 -0400 Subject: [PATCH 4/7] use getFileStreamAndMetadata for attachments --- .../microsoft_outlook/microsoft_outlook.app.mjs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/components/microsoft_outlook/microsoft_outlook.app.mjs b/components/microsoft_outlook/microsoft_outlook.app.mjs index ec64ce7893b9f..a406a02723ef7 100644 --- a/components/microsoft_outlook/microsoft_outlook.app.mjs +++ b/components/microsoft_outlook/microsoft_outlook.app.mjs @@ -1,8 +1,6 @@ import { - axios, getFileStream, + axios, getFileStreamAndMetadata, } from "@pipedream/platform"; -import path from "path"; -import mime from "mime-types"; const DEFAULT_LIMIT = 50; export default { @@ -297,15 +295,17 @@ export default { const attachments = []; for (let i = 0; self.files && i < self.files.length; i++) { - const stream = await getFileStream(self.files[i]); + const { + stream, metadata, + } = await getFileStreamAndMetadata(self.files[i]); const base64 = await this.streamToBase64(stream); attachments.push({ "@odata.type": "#microsoft.graph.fileAttachment", - "name": path.basename(self.files[i]), - "contentType": mime.lookup(self.files[i]), + "name": metadata.name, + "contentType": metadata.contentType, "contentBytes": base64, }); - } + } console.log(attachments); const message = { subject: self.subject, attachments, From fb86a71f21d056b8eddb66dde183d8f299a489c9 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Thu, 3 Jul 2025 12:05:32 -0400 Subject: [PATCH 5/7] versions --- .../actions/add-label-to-email/add-label-to-email.mjs | 2 +- .../actions/approve-workflow/approve-workflow.mjs | 2 +- .../microsoft_outlook/actions/create-contact/create-contact.mjs | 2 +- .../microsoft_outlook/actions/find-contacts/find-contacts.mjs | 2 +- components/microsoft_outlook/actions/find-email/find-email.mjs | 2 +- .../microsoft_outlook/actions/list-contacts/list-contacts.mjs | 2 +- .../microsoft_outlook/actions/list-folders/list-folders.mjs | 2 +- .../microsoft_outlook/actions/list-labels/list-labels.mjs | 2 +- .../actions/move-email-to-folder/move-email-to-folder.mjs | 2 +- .../actions/remove-label-from-email/remove-label-from-email.mjs | 2 +- .../microsoft_outlook/actions/reply-to-email/reply-to-email.mjs | 2 +- .../microsoft_outlook/actions/update-contact/update-contact.mjs | 2 +- .../sources/new-attachment-received/new-attachment-received.mjs | 2 +- .../microsoft_outlook/sources/new-contact/new-contact.mjs | 2 +- components/microsoft_outlook/sources/new-email/new-email.mjs | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/components/microsoft_outlook/actions/add-label-to-email/add-label-to-email.mjs b/components/microsoft_outlook/actions/add-label-to-email/add-label-to-email.mjs index 6b5ce5b3bd8e5..d22e1912a27ff 100644 --- a/components/microsoft_outlook/actions/add-label-to-email/add-label-to-email.mjs +++ b/components/microsoft_outlook/actions/add-label-to-email/add-label-to-email.mjs @@ -5,7 +5,7 @@ export default { key: "microsoft_outlook-add-label-to-email", name: "Add Label to Email", description: "Adds a label/category to an email in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/message-update)", - version: "0.0.7", + version: "0.0.8", type: "action", props: { microsoftOutlook, diff --git a/components/microsoft_outlook/actions/approve-workflow/approve-workflow.mjs b/components/microsoft_outlook/actions/approve-workflow/approve-workflow.mjs index 2ab42b00d3781..6e08830188af0 100644 --- a/components/microsoft_outlook/actions/approve-workflow/approve-workflow.mjs +++ b/components/microsoft_outlook/actions/approve-workflow/approve-workflow.mjs @@ -4,7 +4,7 @@ export default { key: "microsoft_outlook-approve-workflow", name: "Approve Workflow", description: "Suspend the workflow until approved by email. [See the documentation](https://pipedream.com/docs/code/nodejs/rerun#flowsuspend)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { microsoftOutlook, diff --git a/components/microsoft_outlook/actions/create-contact/create-contact.mjs b/components/microsoft_outlook/actions/create-contact/create-contact.mjs index 8ec5af30b2dfd..73d72b8dae914 100644 --- a/components/microsoft_outlook/actions/create-contact/create-contact.mjs +++ b/components/microsoft_outlook/actions/create-contact/create-contact.mjs @@ -3,7 +3,7 @@ import microsoftOutlook from "../../microsoft_outlook.app.mjs"; export default { type: "action", key: "microsoft_outlook-create-contact", - version: "0.0.14", + version: "0.0.15", name: "Create Contact", description: "Add a contact to the root Contacts folder, [See the documentation](https://docs.microsoft.com/en-us/graph/api/user-post-contacts)", props: { diff --git a/components/microsoft_outlook/actions/find-contacts/find-contacts.mjs b/components/microsoft_outlook/actions/find-contacts/find-contacts.mjs index a52ebd3378ec1..b6aed0590ed97 100644 --- a/components/microsoft_outlook/actions/find-contacts/find-contacts.mjs +++ b/components/microsoft_outlook/actions/find-contacts/find-contacts.mjs @@ -3,7 +3,7 @@ import microsoftOutlook from "../../microsoft_outlook.app.mjs"; export default { type: "action", key: "microsoft_outlook-find-contacts", - version: "0.0.14", + version: "0.0.15", name: "Find Contacts", description: "Finds contacts with the given search string. [See the documentation](https://docs.microsoft.com/en-us/graph/api/user-list-contacts)", props: { diff --git a/components/microsoft_outlook/actions/find-email/find-email.mjs b/components/microsoft_outlook/actions/find-email/find-email.mjs index c812f83f87552..fff91ae57b8df 100644 --- a/components/microsoft_outlook/actions/find-email/find-email.mjs +++ b/components/microsoft_outlook/actions/find-email/find-email.mjs @@ -4,7 +4,7 @@ export default { key: "microsoft_outlook-find-email", name: "Find Email", description: "Search for an email in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/user-list-messages)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { microsoftOutlook, diff --git a/components/microsoft_outlook/actions/list-contacts/list-contacts.mjs b/components/microsoft_outlook/actions/list-contacts/list-contacts.mjs index f57414f97cdc0..c4683f6899607 100644 --- a/components/microsoft_outlook/actions/list-contacts/list-contacts.mjs +++ b/components/microsoft_outlook/actions/list-contacts/list-contacts.mjs @@ -3,7 +3,7 @@ import microsoftOutlook from "../../microsoft_outlook.app.mjs"; export default { type: "action", key: "microsoft_outlook-list-contacts", - version: "0.0.14", + version: "0.0.15", name: "List Contacts", description: "Get a contact collection from the default contacts folder, [See the documentation](https://docs.microsoft.com/en-us/graph/api/user-list-contacts)", props: { diff --git a/components/microsoft_outlook/actions/list-folders/list-folders.mjs b/components/microsoft_outlook/actions/list-folders/list-folders.mjs index 4fa8d51dd9959..e52b1ee21423b 100644 --- a/components/microsoft_outlook/actions/list-folders/list-folders.mjs +++ b/components/microsoft_outlook/actions/list-folders/list-folders.mjs @@ -4,7 +4,7 @@ export default { key: "microsoft_outlook-list-folders", name: "List Folders", description: "Retrieves a list of all folders in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/user-list-mailfolders)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { microsoftOutlook, diff --git a/components/microsoft_outlook/actions/list-labels/list-labels.mjs b/components/microsoft_outlook/actions/list-labels/list-labels.mjs index 7fc3a9d5ed2ba..7c8677d91caec 100644 --- a/components/microsoft_outlook/actions/list-labels/list-labels.mjs +++ b/components/microsoft_outlook/actions/list-labels/list-labels.mjs @@ -4,7 +4,7 @@ export default { key: "microsoft_outlook-list-labels", name: "List Labels", description: "Get all the labels/categories that have been defined for a user. [See the documentation](https://learn.microsoft.com/en-us/graph/api/outlookuser-list-mastercategories)", - version: "0.0.7", + version: "0.0.8", type: "action", props: { microsoftOutlook, diff --git a/components/microsoft_outlook/actions/move-email-to-folder/move-email-to-folder.mjs b/components/microsoft_outlook/actions/move-email-to-folder/move-email-to-folder.mjs index a78052bd41e48..f28d384d2da51 100644 --- a/components/microsoft_outlook/actions/move-email-to-folder/move-email-to-folder.mjs +++ b/components/microsoft_outlook/actions/move-email-to-folder/move-email-to-folder.mjs @@ -4,7 +4,7 @@ export default { key: "microsoft_outlook-move-email-to-folder", name: "Move Email to Folder", description: "Moves an email to the specified folder in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/message-move)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { microsoftOutlook, diff --git a/components/microsoft_outlook/actions/remove-label-from-email/remove-label-from-email.mjs b/components/microsoft_outlook/actions/remove-label-from-email/remove-label-from-email.mjs index f4e9bd5c198fd..d7137db6af781 100644 --- a/components/microsoft_outlook/actions/remove-label-from-email/remove-label-from-email.mjs +++ b/components/microsoft_outlook/actions/remove-label-from-email/remove-label-from-email.mjs @@ -4,7 +4,7 @@ export default { key: "microsoft_outlook-remove-label-from-email", name: "Remove Label from Email", description: "Removes a label/category from an email in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/message-update)", - version: "0.0.7", + version: "0.0.8", type: "action", props: { microsoftOutlook, diff --git a/components/microsoft_outlook/actions/reply-to-email/reply-to-email.mjs b/components/microsoft_outlook/actions/reply-to-email/reply-to-email.mjs index 34323f797ae9b..5a7c0ca0f62e8 100644 --- a/components/microsoft_outlook/actions/reply-to-email/reply-to-email.mjs +++ b/components/microsoft_outlook/actions/reply-to-email/reply-to-email.mjs @@ -4,7 +4,7 @@ export default { key: "microsoft_outlook-reply-to-email", name: "Reply to Email", description: "Reply to an email in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/message-reply)", - version: "0.0.4", + version: "0.0.5", type: "action", props: { microsoftOutlook, diff --git a/components/microsoft_outlook/actions/update-contact/update-contact.mjs b/components/microsoft_outlook/actions/update-contact/update-contact.mjs index 5f04826e6f913..856cc55e92f2c 100644 --- a/components/microsoft_outlook/actions/update-contact/update-contact.mjs +++ b/components/microsoft_outlook/actions/update-contact/update-contact.mjs @@ -3,7 +3,7 @@ import microsoftOutlook from "../../microsoft_outlook.app.mjs"; export default { type: "action", key: "microsoft_outlook-update-contact", - version: "0.0.14", + version: "0.0.15", name: "Update Contact", description: "Add a contact to the root Contacts folder, [See the docs](https://docs.microsoft.com/en-us/graph/api/user-post-contacts)", props: { diff --git a/components/microsoft_outlook/sources/new-attachment-received/new-attachment-received.mjs b/components/microsoft_outlook/sources/new-attachment-received/new-attachment-received.mjs index 3dd0c5354149d..fee570d1c8ee5 100644 --- a/components/microsoft_outlook/sources/new-attachment-received/new-attachment-received.mjs +++ b/components/microsoft_outlook/sources/new-attachment-received/new-attachment-received.mjs @@ -5,7 +5,7 @@ export default { key: "microsoft_outlook-new-attachment-received", name: "New Attachment Received (Instant)", description: "Emit new event when a new email containing one or more attachments arrives in a specified Microsoft Outlook folder.", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", methods: { diff --git a/components/microsoft_outlook/sources/new-contact/new-contact.mjs b/components/microsoft_outlook/sources/new-contact/new-contact.mjs index 94e9dbe808d0f..b7afe98fccafb 100644 --- a/components/microsoft_outlook/sources/new-contact/new-contact.mjs +++ b/components/microsoft_outlook/sources/new-contact/new-contact.mjs @@ -5,7 +5,7 @@ export default { key: "microsoft_outlook-new-contact", name: "New Contact Event (Instant)", description: "Emit new event when a new Contact is created", - version: "0.0.15", + version: "0.0.16", type: "source", hooks: { ...common.hooks, diff --git a/components/microsoft_outlook/sources/new-email/new-email.mjs b/components/microsoft_outlook/sources/new-email/new-email.mjs index 4eb69d3bb3fe4..f0fce35560976 100644 --- a/components/microsoft_outlook/sources/new-email/new-email.mjs +++ b/components/microsoft_outlook/sources/new-email/new-email.mjs @@ -7,7 +7,7 @@ export default { key: "microsoft_outlook-new-email", name: "New Email Event (Instant)", description: "Emit new event when an email is received in specified folders.", - version: "0.0.18", + version: "0.0.19", type: "source", dedupe: "unique", methods: { From 9b84ad7e63677ef08565bba3bafa88d089d7b7f4 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Thu, 3 Jul 2025 12:06:22 -0400 Subject: [PATCH 6/7] remove console.log --- components/microsoft_outlook/microsoft_outlook.app.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/microsoft_outlook/microsoft_outlook.app.mjs b/components/microsoft_outlook/microsoft_outlook.app.mjs index a406a02723ef7..b2f6aea116f71 100644 --- a/components/microsoft_outlook/microsoft_outlook.app.mjs +++ b/components/microsoft_outlook/microsoft_outlook.app.mjs @@ -305,7 +305,7 @@ export default { "contentType": metadata.contentType, "contentBytes": base64, }); - } console.log(attachments); + } const message = { subject: self.subject, attachments, From b70fca8d7816a0843f54bfb64b8333b3f3c947b5 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Thu, 3 Jul 2025 12:08:41 -0400 Subject: [PATCH 7/7] version --- .../actions/download-attachment/download-attachment.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/microsoft_outlook/actions/download-attachment/download-attachment.mjs b/components/microsoft_outlook/actions/download-attachment/download-attachment.mjs index cf9cbe1089221..8f192bc905156 100644 --- a/components/microsoft_outlook/actions/download-attachment/download-attachment.mjs +++ b/components/microsoft_outlook/actions/download-attachment/download-attachment.mjs @@ -6,7 +6,7 @@ export default { key: "microsoft_outlook-download-attachment", name: "Download Attachment", description: "Downloads an attachment to the /tmp directory. [See the documentation](https://learn.microsoft.com/en-us/graph/api/attachment-get?view=graph-rest-1.0&tabs=http)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { microsoftOutlook,