@pipedream/microsoft_outlook 1.5.1 → 1.5.2
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.
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
key: "microsoft_outlook-download-attachment",
|
|
7
7
|
name: "Download Attachment",
|
|
8
8
|
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)",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.3",
|
|
10
10
|
type: "action",
|
|
11
11
|
props: {
|
|
12
12
|
microsoftOutlook,
|
|
@@ -31,6 +31,11 @@ export default {
|
|
|
31
31
|
label: "Filename",
|
|
32
32
|
description: "The filename to save the attachment as in the /tmp directory",
|
|
33
33
|
},
|
|
34
|
+
syncDir: {
|
|
35
|
+
type: "dir",
|
|
36
|
+
accessMode: "write",
|
|
37
|
+
sync: true,
|
|
38
|
+
},
|
|
34
39
|
},
|
|
35
40
|
async run({ $ }) {
|
|
36
41
|
const response = await this.microsoftOutlook.getAttachment({
|