@@ -5393,12 +5393,12 @@ export interface ApplicationTemplate extends Entity {
53935393 * The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer,
53945394 * Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human
53955395 * resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications,
5396- * Tools, Travel, and Web design & hosting.
5396+ * Tools, Travel, and Web design & hosting. Supports $filter (contains).
53975397 */
53985398 categories?: NullableOption<string[]>;
53995399 // A description of the application.
54005400 description?: NullableOption<string>;
5401- // The name of the application.
5401+ // The name of the application. Supports $filter (contains).
54025402 displayName?: NullableOption<string>;
54035403 // The home page URL of the application.
54045404 homePageUrl?: NullableOption<string>;
@@ -13550,7 +13550,10 @@ export interface Message extends OutlookItem {
1355013550 * how the message is displayed. If ispopout is not present or if it is set to 1, then the message is shown in a popout
1355113551 * window. If ispopout is set to 0, the browser shows the message in the Outlook on the web review pane.The message opens
1355213552 * in the browser if you are signed in to your mailbox via Outlook on the web. You are prompted to sign in if you are not
13553- * already signed in with the browser.This URL cannot be accessed from within an iFrame.
13553+ * already signed in with the browser.This URL cannot be accessed from within an iFrame.NOTE: When using this URL to
13554+ * access a message from a mailbox with delegate permissions, both the signed-in user and the target mailbox must be in
13555+ * the same database region. For example, an error is returned when a user with a mailbox in the EUR (Europe) region
13556+ * attempts to access messages from a mailbox in the NAM (North America) region.
1355413557 */
1355513558 webLink?: NullableOption<string>;
1355613559 // The fileAttachment and itemAttachment attachments for the message.
@@ -20079,6 +20082,8 @@ export interface User extends DirectoryObject {
2007920082 calendarView?: NullableOption<Event[]>;
2008020083 chats?: NullableOption<Chat[]>;
2008120084 cloudClipboard?: NullableOption<CloudClipboardRoot>;
20085+ // The user's Cloud PCs. Read-only. Nullable.
20086+ cloudPCs?: NullableOption<CloudPC[]>;
2008220087 // The user's contacts folders. Read-only. Nullable.
2008320088 contactFolders?: NullableOption<ContactFolder[]>;
2008420089 // The user's contacts. Read-only. Nullable.
0 commit comments