Skip to content

Commit e8c8878

Browse files
committed
bug fix
1 parent df8a3b7 commit e8c8878

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/microsoft_outlook/actions/create-draft-email/create-draft-email.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import microsoftOutlook from "../../microsoft_outlook.app.mjs";
33
export default {
44
type: "action",
55
key: "microsoft_outlook-create-draft-email",
6-
version: "0.0.14",
6+
version: "0.0.15",
77
name: "Create Draft Email",
88
description: "Create a draft email, [See the documentation](https://docs.microsoft.com/en-us/graph/api/user-post-messages)",
99
props: {
@@ -62,7 +62,7 @@ export default {
6262
const response = await this.microsoftOutlook.createDraft({
6363
$,
6464
data: {
65-
...this.microsoftOutlook.prepareMessageBody(this),
65+
...await this.microsoftOutlook.prepareMessageBody(this),
6666
...this.expand,
6767
},
6868
});

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

0 commit comments

Comments
 (0)