mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
✨ Add isRead property & message:move to Outlook (#1724)
This commit is contained in:
parent
ea48882291
commit
74d8f3d150
|
@ -175,6 +175,13 @@ export const draftMessageSharedFields = [
|
||||||
],
|
],
|
||||||
default: 'Low',
|
default: 'Low',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Is Read',
|
||||||
|
name: 'isRead',
|
||||||
|
description: 'Indicates whether the message has been read.',
|
||||||
|
type: 'boolean',
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Read Receipt Requested',
|
displayName: 'Read Receipt Requested',
|
||||||
name: 'isReadReceiptRequested',
|
name: 'isReadReceiptRequested',
|
||||||
|
|
|
@ -35,6 +35,11 @@ export const messageOperations = [
|
||||||
value: 'getMime',
|
value: 'getMime',
|
||||||
description: 'Get MIME content of a message',
|
description: 'Get MIME content of a message',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'Move',
|
||||||
|
value: 'move',
|
||||||
|
description: 'Move a message',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'Reply',
|
name: 'Reply',
|
||||||
value: 'reply',
|
value: 'reply',
|
||||||
|
@ -75,6 +80,7 @@ export const messageFields = [
|
||||||
'get',
|
'get',
|
||||||
'getAttachment',
|
'getAttachment',
|
||||||
'getMime',
|
'getMime',
|
||||||
|
'move',
|
||||||
'update',
|
'update',
|
||||||
'reply',
|
'reply',
|
||||||
],
|
],
|
||||||
|
@ -615,7 +621,7 @@ export const messageFields = [
|
||||||
{
|
{
|
||||||
displayName: 'Folder ID',
|
displayName: 'Folder ID',
|
||||||
name: 'folderId',
|
name: 'folderId',
|
||||||
description: 'Folder ID',
|
description: 'Target Folder ID.',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
|
Loading…
Reference in a new issue