Skip to content

Commit

Permalink
Add scenario for RecipientType.Other (DefinitelyTyped#62241)
Browse files Browse the repository at this point in the history
  • Loading branch information
samantharamon authored Sep 13, 2022
1 parent e504996 commit 8e5d500
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
11 changes: 6 additions & 5 deletions types/office-js-preview/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8884,7 +8884,7 @@ declare namespace Office {
ThreeColumns = "ThreeColumns"
}
/**
* Specifies the type of recipient for an appointment.
* Specifies the type of recipient of a message or appointment.
*
* @remarks
* [Api set: Mailbox 1.1]
Expand All @@ -8898,19 +8898,20 @@ declare namespace Office {
*/
enum RecipientType {
/**
* Specifies that the recipient is a distribution list containing a list of email addresses.
* Specifies the recipient is a distribution list containing a list of email addresses.
*/
DistributionList = "distributionList",
/**
* Specifies that the recipient is an SMTP email address that is on the Exchange server.
* Specifies the recipient is an SMTP email address on the Exchange server.
*/
User = "user",
/**
* Specifies that the recipient is an SMTP email address that is not on the Exchange server.
* Specifies the recipient is an SMTP email address that isn't on the Exchange server.
*/
ExternalUser = "externalUser",
/**
* Specifies that the recipient is not one of the other recipient types.
* Specifies the recipient isn't one of the other recipient types. It also refers to a recipient that isn't resolved against the Exchange address book,
* and is therefore treated as an external SMTP address.
*/
Other = "other"
}
Expand Down
11 changes: 6 additions & 5 deletions types/office-js/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8768,7 +8768,7 @@ declare namespace Office {
ThreeColumns = "ThreeColumns"
}
/**
* Specifies the type of recipient for an appointment.
* Specifies the type of recipient of a message or appointment.
*
* @remarks
* [Api set: Mailbox 1.1]
Expand All @@ -8782,19 +8782,20 @@ declare namespace Office {
*/
enum RecipientType {
/**
* Specifies that the recipient is a distribution list containing a list of email addresses.
* Specifies the recipient is a distribution list containing a list of email addresses.
*/
DistributionList = "distributionList",
/**
* Specifies that the recipient is an SMTP email address that is on the Exchange server.
* Specifies the recipient is an SMTP email address on the Exchange server.
*/
User = "user",
/**
* Specifies that the recipient is an SMTP email address that is not on the Exchange server.
* Specifies the recipient is an SMTP email address that isn't on the Exchange server.
*/
ExternalUser = "externalUser",
/**
* Specifies that the recipient is not one of the other recipient types.
* Specifies the recipient isn't one of the other recipient types. It also refers to a recipient that isn't resolved against the Exchange address book,
* and is therefore treated as an external SMTP address.
*/
Other = "other"
}
Expand Down

0 comments on commit 8e5d500

Please sign in to comment.