@pipedream/microsoft_outlook 1.7.5 → 1.7.7
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/actions/add-label-to-email/add-label-to-email.mjs +1 -1
- package/actions/approve-workflow/approve-workflow.mjs +1 -1
- package/actions/create-contact/create-contact.mjs +1 -1
- package/actions/create-draft-email/create-draft-email.mjs +1 -1
- package/actions/download-attachment/download-attachment.mjs +1 -1
- package/actions/find-contacts/find-contacts.mjs +1 -1
- package/actions/find-email/find-email.mjs +7 -4
- package/actions/find-shared-folder-email/find-shared-folder-email.mjs +7 -2
- package/actions/list-contacts/list-contacts.mjs +1 -1
- package/actions/list-folders/list-folders.mjs +1 -1
- package/actions/list-labels/list-labels.mjs +1 -1
- package/actions/move-email-to-folder/move-email-to-folder.mjs +1 -1
- package/actions/remove-label-from-email/remove-label-from-email.mjs +1 -1
- package/actions/reply-to-email/reply-to-email.mjs +1 -1
- package/actions/send-email/send-email.mjs +1 -1
- package/actions/update-contact/update-contact.mjs +1 -1
- package/microsoft_outlook.app.mjs +3 -3
- package/package.json +2 -2
- package/sources/new-attachment-received/new-attachment-received.mjs +1 -1
- package/sources/new-contact/new-contact.mjs +1 -1
- package/sources/new-email/new-email.mjs +1 -1
- package/sources/new-email-in-shared-folder/new-email-in-shared-folder.mjs +3 -2
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
key: "microsoft_outlook-add-label-to-email",
|
|
6
6
|
name: "Add Label to Email",
|
|
7
7
|
description: "Adds a label/category to an email in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/message-update)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.13",
|
|
9
9
|
annotations: {
|
|
10
10
|
destructiveHint: true,
|
|
11
11
|
openWorldHint: true,
|
|
@@ -4,7 +4,7 @@ export default {
|
|
|
4
4
|
key: "microsoft_outlook-approve-workflow",
|
|
5
5
|
name: "Approve Workflow",
|
|
6
6
|
description: "Suspend the workflow until approved by email. [See the documentation](https://pipedream.com/docs/code/nodejs/rerun#flowsuspend)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.11",
|
|
8
8
|
annotations: {
|
|
9
9
|
destructiveHint: false,
|
|
10
10
|
openWorldHint: true,
|
|
@@ -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.8",
|
|
10
10
|
annotations: {
|
|
11
11
|
destructiveHint: false,
|
|
12
12
|
openWorldHint: true,
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import microsoftOutlook from "../../microsoft_outlook.app.mjs";
|
|
2
|
+
import { ConfigurationError } from "@pipedream/platform";
|
|
2
3
|
|
|
3
4
|
export default {
|
|
4
5
|
key: "microsoft_outlook-find-email",
|
|
5
6
|
name: "Find Email",
|
|
6
7
|
description: "Search for an email in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/user-list-messages)",
|
|
7
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.14",
|
|
8
9
|
annotations: {
|
|
9
10
|
destructiveHint: false,
|
|
10
11
|
openWorldHint: true,
|
|
@@ -16,7 +17,7 @@ export default {
|
|
|
16
17
|
info: {
|
|
17
18
|
type: "alert",
|
|
18
19
|
alertType: "info",
|
|
19
|
-
content: "When you specify `$filter`, the service infers a sort order for the results. If you use both `$orderby` and `$filter` to get messages, because the server always infers a sort order for the results of a `$filter`, you must [specify properties in certain ways](https://learn.microsoft.com/en-us/graph/api/user-list-messages#using-filter-and-orderby-in-the-same-query).",
|
|
20
|
+
content: "**Note:** `$search` cannot be used together with `$filter` or `$orderby`. When you specify `$filter`, the service infers a sort order for the results. If you use both `$orderby` and `$filter` to get messages, because the server always infers a sort order for the results of a `$filter`, you must [specify properties in certain ways](https://learn.microsoft.com/en-us/graph/api/user-list-messages#using-filter-and-orderby-in-the-same-query).",
|
|
20
21
|
},
|
|
21
22
|
search: {
|
|
22
23
|
propDefinition: [
|
|
@@ -51,6 +52,10 @@ export default {
|
|
|
51
52
|
},
|
|
52
53
|
},
|
|
53
54
|
async run({ $ }) {
|
|
55
|
+
if (this.search && (this.filter || this.orderBy)) {
|
|
56
|
+
throw new ConfigurationError("`$search` not supported when using `$filter` or `$orderby`.");
|
|
57
|
+
}
|
|
58
|
+
|
|
54
59
|
let emails = [];
|
|
55
60
|
|
|
56
61
|
if (!this.search) {
|
|
@@ -73,8 +78,6 @@ export default {
|
|
|
73
78
|
const { value } = await this.microsoftOutlook.listMessages({
|
|
74
79
|
$,
|
|
75
80
|
params: {
|
|
76
|
-
"$filter": this.filter,
|
|
77
|
-
"$orderby": this.orderBy,
|
|
78
81
|
"$search": this.ensureQuotes(this.search),
|
|
79
82
|
"$top": this.maxResults,
|
|
80
83
|
},
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import microsoftOutlook from "../../microsoft_outlook.app.mjs";
|
|
2
|
+
import { ConfigurationError } from "@pipedream/platform";
|
|
2
3
|
|
|
3
4
|
export default {
|
|
4
5
|
key: "microsoft_outlook-find-shared-folder-email",
|
|
5
6
|
name: "Find Shared Folder Email",
|
|
6
7
|
description: "Search for an email in a shared folder in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/user-list-messages)",
|
|
7
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.5",
|
|
8
9
|
annotations: {
|
|
9
10
|
destructiveHint: false,
|
|
10
11
|
openWorldHint: true,
|
|
@@ -31,7 +32,7 @@ export default {
|
|
|
31
32
|
info: {
|
|
32
33
|
type: "alert",
|
|
33
34
|
alertType: "info",
|
|
34
|
-
content: "When you specify `$filter`, the service infers a sort order for the results. If you use both `$orderby` and `$filter` to get messages, because the server always infers a sort order for the results of a `$filter`, you must [specify properties in certain ways](https://learn.microsoft.com/en-us/graph/api/user-list-messages#using-filter-and-orderby-in-the-same-query).",
|
|
35
|
+
content: "**Note:** `$search` cannot be used together with `$filter` or `$orderby`. When you specify `$filter`, the service infers a sort order for the results. If you use both `$orderby` and `$filter` to get messages, because the server always infers a sort order for the results of a `$filter`, you must [specify properties in certain ways](https://learn.microsoft.com/en-us/graph/api/user-list-messages#using-filter-and-orderby-in-the-same-query).",
|
|
35
36
|
},
|
|
36
37
|
search: {
|
|
37
38
|
propDefinition: [
|
|
@@ -59,6 +60,10 @@ export default {
|
|
|
59
60
|
},
|
|
60
61
|
},
|
|
61
62
|
async run({ $ }) {
|
|
63
|
+
if (this.search && (this.filter || this.orderBy)) {
|
|
64
|
+
throw new ConfigurationError("`$search` not supported when using `$filter` or `$orderby`.");
|
|
65
|
+
}
|
|
66
|
+
|
|
62
67
|
const items = this.microsoftOutlook.paginate({
|
|
63
68
|
fn: this.microsoftOutlook.listSharedFolderMessages,
|
|
64
69
|
args: {
|
|
@@ -4,7 +4,7 @@ export default {
|
|
|
4
4
|
key: "microsoft_outlook-list-folders",
|
|
5
5
|
name: "List Folders",
|
|
6
6
|
description: "Retrieves a list of all folders in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/user-list-mailfolders)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.11",
|
|
8
8
|
annotations: {
|
|
9
9
|
destructiveHint: false,
|
|
10
10
|
openWorldHint: true,
|
|
@@ -4,7 +4,7 @@ export default {
|
|
|
4
4
|
key: "microsoft_outlook-list-labels",
|
|
5
5
|
name: "List Labels",
|
|
6
6
|
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)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.13",
|
|
8
8
|
annotations: {
|
|
9
9
|
destructiveHint: false,
|
|
10
10
|
openWorldHint: true,
|
|
@@ -4,7 +4,7 @@ export default {
|
|
|
4
4
|
key: "microsoft_outlook-move-email-to-folder",
|
|
5
5
|
name: "Move Email to Folder",
|
|
6
6
|
description: "Moves an email to the specified folder in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/message-move)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.11",
|
|
8
8
|
annotations: {
|
|
9
9
|
destructiveHint: false,
|
|
10
10
|
openWorldHint: true,
|
|
@@ -4,7 +4,7 @@ export default {
|
|
|
4
4
|
key: "microsoft_outlook-remove-label-from-email",
|
|
5
5
|
name: "Remove Label from Email",
|
|
6
6
|
description: "Removes a label/category from an email in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/message-update)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.13",
|
|
8
8
|
annotations: {
|
|
9
9
|
destructiveHint: true,
|
|
10
10
|
openWorldHint: true,
|
|
@@ -4,7 +4,7 @@ export default {
|
|
|
4
4
|
key: "microsoft_outlook-reply-to-email",
|
|
5
5
|
name: "Reply to Email",
|
|
6
6
|
description: "Reply to an email in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/message-reply)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.10",
|
|
8
8
|
annotations: {
|
|
9
9
|
destructiveHint: false,
|
|
10
10
|
openWorldHint: true,
|
|
@@ -238,19 +238,19 @@ export default {
|
|
|
238
238
|
search: {
|
|
239
239
|
type: "string",
|
|
240
240
|
label: "Search",
|
|
241
|
-
description: "Search for an email in Microsoft Outlook. Can search for specific message properties such as `\"to:example@example.com\"` or `\"subject:example\"`. If the property is excluded, the search targets the default propertes `from`, `subject`, and `body`. For example, `\"pizza\"` will search for messages with the word `pizza` in the subject, body, or from address, but `\"to:example@example.com\"` will only search for messages to `example@example.com`.",
|
|
241
|
+
description: "Search for an email in Microsoft Outlook. Can search for specific message properties such as `\"to:example@example.com\"` or `\"subject:example\"`. If the property is excluded, the search targets the default propertes `from`, `subject`, and `body`. For example, `\"pizza\"` will search for messages with the word `pizza` in the subject, body, or from address, but `\"to:example@example.com\"` will only search for messages to `example@example.com`. Not for use with `$filter` or `$orderby`.",
|
|
242
242
|
optional: true,
|
|
243
243
|
},
|
|
244
244
|
filter: {
|
|
245
245
|
type: "string",
|
|
246
246
|
label: "Filter",
|
|
247
|
-
description: "Filters results. For example, `contains(subject, 'meet for lunch?')` will include messages whose subject contains ‘meet for lunch?’. [See documentation](https://learn.microsoft.com/en-us/graph/filter-query-parameter) for the full list of operations.",
|
|
247
|
+
description: "Filters results. For example, `contains(subject, 'meet for lunch?')` will include messages whose subject contains ‘meet for lunch?’. [See documentation](https://learn.microsoft.com/en-us/graph/filter-query-parameter) for the full list of operations. Not for use with `$search`.",
|
|
248
248
|
optional: true,
|
|
249
249
|
},
|
|
250
250
|
orderBy: {
|
|
251
251
|
type: "string",
|
|
252
252
|
label: "Order By",
|
|
253
|
-
description: "Order results by a property. For example, `receivedDateTime desc` will order messages by the received date in descending order.",
|
|
253
|
+
description: "Order results by a property. For example, `receivedDateTime desc` will order messages by the received date in descending order. Not for use with `$search`.",
|
|
254
254
|
optional: true,
|
|
255
255
|
},
|
|
256
256
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/microsoft_outlook",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.7",
|
|
4
4
|
"description": "Pipedream Microsoft Outlook Components",
|
|
5
5
|
"main": "microsoft_outlook.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -12,7 +12,7 @@
|
|
|
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.
|
|
15
|
+
"@pipedream/platform": "^3.1.1",
|
|
16
16
|
"axios": "^0.30.2",
|
|
17
17
|
"js-base64": "^3.7.2",
|
|
18
18
|
"md5": "^2.3.0",
|
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
key: "microsoft_outlook-new-attachment-received",
|
|
7
7
|
name: "New Attachment Received (Instant)",
|
|
8
8
|
description: "Emit new event when a new email containing one or more attachments arrives in a specified Microsoft Outlook folder.",
|
|
9
|
-
version: "0.1.
|
|
9
|
+
version: "0.1.4",
|
|
10
10
|
type: "source",
|
|
11
11
|
dedupe: "unique",
|
|
12
12
|
props: {
|
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
key: "microsoft_outlook-new-email",
|
|
8
8
|
name: "New Email Event (Instant)",
|
|
9
9
|
description: "Emit new event when an email is received in specified folders.",
|
|
10
|
-
version: "0.1.
|
|
10
|
+
version: "0.1.6",
|
|
11
11
|
type: "source",
|
|
12
12
|
dedupe: "unique",
|
|
13
13
|
methods: {
|
|
@@ -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.
|
|
10
|
+
version: "0.0.6",
|
|
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
|
},
|