You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/microsoft_outlook/actions/add-label-to-email/add-label-to-email.mjs
+1-1
Original file line number
Diff line number
Diff line change
@@ -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)",
Copy file name to clipboardExpand all lines: components/microsoft_outlook/actions/list-contacts/list-contacts.mjs
+24-8
Original file line number
Diff line number
Diff line change
@@ -3,25 +3,41 @@ import microsoftOutlook from "../../microsoft_outlook.app.mjs";
3
3
exportdefault{
4
4
type: "action",
5
5
key: "microsoft_outlook-list-contacts",
6
-
version: "0.0.11",
6
+
version: "0.0.12",
7
7
name: "List Contacts",
8
-
description: "Get a contact collection from the default contacts folder, [See the docs](https://docs.microsoft.com/en-us/graph/api/user-list-contacts)",
8
+
description: "Get a contact collection from the default contacts folder, [See the documentation](https://docs.microsoft.com/en-us/graph/api/user-list-contacts)",
9
9
props: {
10
10
microsoftOutlook,
11
11
filterAddress: {
12
-
label: "Email adress",
12
+
label: "Email Address",
13
13
description: "If this is given, only contacts with the given address will be retrieved.",
Copy file name to clipboardExpand all lines: components/microsoft_outlook/actions/list-folders/list-folders.mjs
+21-5
Original file line number
Diff line number
Diff line change
@@ -4,18 +4,34 @@ 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.2",
7
+
version: "0.0.3",
8
8
type: "action",
9
9
props: {
10
10
microsoftOutlook,
11
+
maxResults: {
12
+
propDefinition: [
13
+
microsoftOutlook,
14
+
"maxResults",
15
+
],
16
+
},
11
17
},
12
18
asyncrun({ $ }){
13
-
const{ value }=awaitthis.microsoftOutlook.listFolders({
Copy file name to clipboardExpand all lines: components/microsoft_outlook/actions/list-labels/list-labels.mjs
+1-1
Original file line number
Diff line number
Diff line change
@@ -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)",
Copy file name to clipboardExpand all lines: components/microsoft_outlook/actions/move-email-to-folder/move-email-to-folder.mjs
+1-1
Original file line number
Diff line number
Diff line change
@@ -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)",
Copy file name to clipboardExpand all lines: components/microsoft_outlook/actions/remove-label-from-email/remove-label-from-email.mjs
+1-1
Original file line number
Diff line number
Diff line change
@@ -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)",
0 commit comments