Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 22 additions & 14 deletions types/office-js-preview/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16993,8 +16993,9 @@ declare namespace Office {
*
* **Important**:
*
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
* In that case, the `from` property represents the delegator, and the `sender` property represents the delegate.
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
* In this case, the `from` property returns the delegator's email address and the `sender` property returns the delegate's address. For information about mailbox delegation, see
* {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
*
* - The `recipientType` property of the `EmailAddressDetails` object in the `from` property is undefined.
*/
Expand Down Expand Up @@ -17198,8 +17199,9 @@ declare namespace Office {
*
* **Important**:
*
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
* In that case, the `from` property represents the delegator, and the `sender` property represents the delegate.
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
* In this case, the `from` property returns the delegator's email address and the `sender` property returns the delegate's address. For information about mailbox delegation, see
* {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
*
* - The `recipientType` property of the `EmailAddressDetails` object in the `sender` property is undefined.
*/
Expand Down Expand Up @@ -21290,18 +21292,21 @@ declare namespace Office {
/**
* Gets the email address of the sender of a message.
*
* The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
* In that case, the `from` property represents the delegator, and the `sender` property represents the delegate.
*
* **Note**: The `recipientType` property of the `EmailAddressDetails` object in the `from` property is undefined.
*
* The `from` property returns an `EmailAddressDetails` object.
*
* @remarks
*
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
*
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Read
*
* **Important**:
*
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
* In this case, the `from` property returns the delegator's email address and the `sender` property returns the delegate's address. For information about mailbox delegation, see
* {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
*
* - The `recipientType` property of the `EmailAddressDetails` object in the `from` property is undefined.
*/
from: EmailAddressDetails;
/**
Expand Down Expand Up @@ -21484,16 +21489,19 @@ declare namespace Office {
/**
* Gets the email address of the sender of an email message.
*
* The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
* In that case, the `from` property represents the delegator, and the `sender` property represents the delegate.
*
* **Note**: The `recipientType` property of the `EmailAddressDetails` object in the `sender` property is undefined.
*
* @remarks
*
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
*
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Read
*
* **Important**:
*
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
* In this case, the `from` property returns the delegator's email address and the `sender` property returns the delegate's address. For information about mailbox delegation, see
* {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
*
* - The `recipientType` property of the `EmailAddressDetails` object in the `sender` property is undefined.
*/
sender: EmailAddressDetails;
/**
Expand Down
37 changes: 23 additions & 14 deletions types/office-js/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16454,8 +16454,9 @@ declare namespace Office {
*
* **Important**:
*
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
* In that case, the `from` property represents the delegator, and the `sender` property represents the delegate.
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
* In this case, the `from` property returns the delegator's email address and the `sender` property returns the delegate's address. For information about mailbox delegation, see
* {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
*
* - The `recipientType` property of the `EmailAddressDetails` object in the `from` property is undefined.
*/
Expand Down Expand Up @@ -16659,8 +16660,9 @@ declare namespace Office {
*
* **Important**:
*
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
* In that case, the `from` property represents the delegator, and the `sender` property represents the delegate.
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
* In this case, the `from` property returns the delegator's email address and the `sender` property returns the delegate's address. For information about mailbox delegation, see
* {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
*
* - The `recipientType` property of the `EmailAddressDetails` object in the `sender` property is undefined.
*/
Expand Down Expand Up @@ -20630,18 +20632,22 @@ declare namespace Office {
/**
* Gets the email address of the sender of a message.
*
* The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
* In that case, the `from` property represents the delegator, and the `sender` property represents the delegate.
*
* **Note**: The `recipientType` property of the `EmailAddressDetails` object in the `from` property is undefined.
*
* The `from` property returns an `EmailAddressDetails` object.
*
* @remarks
*
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
*
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Read
*
*
* **Important**:
*
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
* In this case, the `from` property returns the delegator's email address and the `sender` property returns the delegate's address. For information about mailbox delegation, see
* {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
*
* - The `recipientType` property of the `EmailAddressDetails` object in the `from` property is undefined.
*/
from: EmailAddressDetails;
/**
Expand Down Expand Up @@ -20824,16 +20830,19 @@ declare namespace Office {
/**
* Gets the email address of the sender of an email message.
*
* The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
* In that case, the `from` property represents the delegator, and the `sender` property represents the delegate.
*
* **Note**: The `recipientType` property of the `EmailAddressDetails` object in the `sender` property is undefined.
*
* @remarks
*
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
*
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Read
*
* **Important**:
*
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
* In this case, the `from` property returns the delegator's email address and the `sender` property returns the delegate's address. For information about mailbox delegation, see
* {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
*
* - The `recipientType` property of the `EmailAddressDetails` object in the `sender` property is undefined.
*/
sender: EmailAddressDetails;
/**
Expand Down