From d4e7e6fb887fe0bbf403fb661758fe2461d05993 Mon Sep 17 00:00:00 2001 From: Elizabeth Samuel Date: Tue, 16 Jul 2019 15:23:12 -0700 Subject: [PATCH] [office-js-preview] (Outlook) Update SharedProperties props (#36934) * [office-js-preview] (Outlook) Update SharedProperties props * Update comment * Tweak comments * Tweak comment formatting * Update based on feedback * Update based on feedback --- types/office-js-preview/index.d.ts | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/types/office-js-preview/index.d.ts b/types/office-js-preview/index.d.ts index 32e3daf5d2..dc0269c7e2 100644 --- a/types/office-js-preview/index.d.ts +++ b/types/office-js-preview/index.d.ts @@ -16900,11 +16900,20 @@ declare namespace Office { /** * The email address of the owner of a shared item. */ - owner: String; + owner: string; /** - * The remote REST URL related to the owner’s mailbox. + * The REST API's base URL (currently https://outlook.office.com/api). + * Use with targetMailbox to construct REST operation's URL. + * + * Example usage: `targetRestUrl + "/{api_version}/users/" + targetMailbox + "/{REST_operation}"` */ - restUrl: String; + targetRestUrl: string; + /** + * The target/owner's mailbox. Use with targetRestUrl to construct REST operation's URL. + * + * Example usage: `targetRestUrl + "/{api_version}/users/" + targetMailbox + "/{REST_operation}"` + */ + targetMailbox: string; /** * The permissions that the delegate has on a shared folder. */