@types/office-js-preview 1.0.461 → 1.0.463

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,7 @@ This package contains type definitions for office-js-preview (https://github.com
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Mon, 08 Apr 2024 18:09:13 GMT
11
+ * Last updated: Thu, 11 Apr 2024 20:07:16 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
@@ -421,10 +421,6 @@ declare namespace Office {
421
421
  Project,
422
422
  /**
423
423
  * The Office application is Microsoft Access.
424
- *
425
- * **Important**: We no longer recommend that you create and use Access web apps and databases in SharePoint.
426
- * As an alternative, we recommend that you use {@link https://powerapps.microsoft.com/ | Microsoft PowerApps}
427
- * to build no-code business solutions for web and mobile devices.
428
424
  */
429
425
  Access
430
426
  }
@@ -1796,10 +1792,6 @@ declare namespace Office {
1796
1792
  filterType?: Office.FilterType | string
1797
1793
  /**
1798
1794
  * Only for table bindings in content add-ins for Access. Specifies the pre-defined string "thisRow" to get data in the currently selected row.
1799
- *
1800
- * **Important**: We no longer recommend that you create and use Access web apps and databases in SharePoint.
1801
- * As an alternative, we recommend that you use {@link https://powerapps.microsoft.com/ | Microsoft PowerApps}
1802
- * to build no-code business solutions for web and mobile devices.
1803
1795
  */
1804
1796
  rows?: string
1805
1797
  /**
@@ -1828,18 +1820,10 @@ declare namespace Office {
1828
1820
  coercionType?: Office.CoercionType | string
1829
1821
  /**
1830
1822
  * Only for table bindings in content add-ins for Access. Array of strings. Specifies the column names.
1831
- *
1832
- * **Important**: We no longer recommend that you create and use Access web apps and databases in SharePoint.
1833
- * As an alternative, we recommend that you use {@link https://powerapps.microsoft.com/ | Microsoft PowerApps}
1834
- * to build no-code business solutions for web and mobile devices.
1835
1823
  */
1836
1824
  columns?: string[]
1837
1825
  /**
1838
1826
  * Only for table bindings in content add-ins for Access. Specifies the pre-defined string "thisRow" to get data in the currently selected row.
1839
- *
1840
- * **Important**: We no longer recommend that you create and use Access web apps and databases in SharePoint.
1841
- * As an alternative, we recommend that you use {@link https://powerapps.microsoft.com/ | Microsoft PowerApps}
1842
- * to build no-code business solutions for web and mobile devices.
1843
1827
  */
1844
1828
  rows?: string
1845
1829
  /**
@@ -1934,10 +1918,6 @@ declare namespace Office {
1934
1918
  * The headers provided in the TableData object specify the labels used in the field selection UI.
1935
1919
  *
1936
1920
  * **Note**: This parameter is used only in add-ins for Access. It is ignored if provided when calling the method in an add-in for Excel.
1937
- *
1938
- * **Important**: We no longer recommend that you create and use Access web apps and databases in SharePoint.
1939
- * As an alternative, we recommend that you use {@link https://powerapps.microsoft.com/ | Microsoft PowerApps}
1940
- * to build no-code business solutions for web and mobile devices.
1941
1921
  */
1942
1922
  sampleData?: Office.TableData
1943
1923
  /**
@@ -15241,6 +15221,29 @@ declare namespace Office {
15241
15221
  *
15242
15222
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
15243
15223
  *
15224
+ * **Important**:
15225
+ *
15226
+ * - In October 2024, legacy Exchange {@link https://learn.microsoft.com/office/dev/add-ins/outlook/authentication#exchange-user-identity-token | user identity} and
15227
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/authentication#callback-tokens | callback} tokens will be turned off by default for all Exchange Online tenants.
15228
+ * This is part of {@link https://blogs.microsoft.com/on-the-issues/2023/11/02/secure-future-initiative-sfi-cybersecurity-cyberattacks/ | Microsoft's Secure Future Initiative},
15229
+ * which gives organizations the tools needed to respond to the current threat landscape. Exchange user identity tokens will still work for Exchange on-premises.
15230
+ * Nested app authentication is the recommended approach for tokens going forward. For more information, see our {@link https://aka.ms/NAApreviewblog | blog post} and
15231
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/faq-nested-app-auth-outlook-legacy-tokens | FAQ page}.
15232
+ *
15233
+ * - This method is only supported in read mode in Outlook on Android and on iOS. For more information on supported APIs in Outlook mobile, see
15234
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
15235
+ *
15236
+ * - EWS operations aren't supported in add-ins running in Outlook on iOS and on Android. A REST token is always returned in Outlook
15237
+ * mobile clients even if `options.isRest` is set to `false`.
15238
+ *
15239
+ *- Calling the `getCallbackTokenAsync` method in read mode requires a minimum permission level of **read item**.
15240
+ *
15241
+ * - Calling the `getCallbackTokenAsync` method in compose mode requires you to have saved the item.
15242
+ * The `saveAsync` method requires a minimum permission level of **read/write item**.
15243
+ *
15244
+ * - For guidance on delegate or shared scenarios, see the
15245
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/delegate-access | shared folders and shared mailbox} article.
15246
+ *
15244
15247
  * *REST Tokens*
15245
15248
  *
15246
15249
  * When a REST token is requested (`options.isRest` = `true`), the resulting token won't work to authenticate EWS calls.
@@ -15275,22 +15278,6 @@ declare namespace Office {
15275
15278
  * attachment or item. For example, you can create a remote service to
15276
15279
  * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/get-attachments-of-an-outlook-item | get attachments from the selected item}.
15277
15280
  *
15278
- * **Important**:
15279
- *
15280
- * - This method is only supported in read mode in Outlook on Android and on iOS. For more information on supported APIs in Outlook mobile, see
15281
- * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
15282
- *
15283
- * - EWS operations aren't supported in add-ins running in Outlook on iOS and on Android. A REST token is always returned in Outlook
15284
- * mobile clients even if `options.isRest` is set to `false`.
15285
- *
15286
- *- Calling the `getCallbackTokenAsync` method in read mode requires a minimum permission level of **read item**.
15287
- *
15288
- * - Calling the `getCallbackTokenAsync` method in compose mode requires you to have saved the item.
15289
- * The `saveAsync` method requires a minimum permission level of **read/write item**.
15290
- *
15291
- * - For guidance on delegate or shared scenarios, see the
15292
- * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/delegate-access | shared folders and shared mailbox} article.
15293
- *
15294
15281
  * **Errors**:
15295
15282
  *
15296
15283
  * - `HTTPRequestFailure`: The request has failed. Please look at the diagnostics object for the HTTP error code.
@@ -15324,6 +15311,13 @@ declare namespace Office {
15324
15311
  *
15325
15312
  * **Important**:
15326
15313
  *
15314
+ * - In October 2024, legacy Exchange {@link https://learn.microsoft.com/office/dev/add-ins/outlook/authentication#exchange-user-identity-token | user identity} and
15315
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/authentication#callback-tokens | callback} tokens will be turned off by default for all Exchange Online tenants.
15316
+ * This is part of {@link https://blogs.microsoft.com/on-the-issues/2023/11/02/secure-future-initiative-sfi-cybersecurity-cyberattacks/ | Microsoft's Secure Future Initiative},
15317
+ * which gives organizations the tools needed to respond to the current threat landscape. Exchange user identity tokens will still work for Exchange on-premises.
15318
+ * Nested app authentication is the recommended approach for tokens going forward. For more information, see our {@link https://aka.ms/NAApreviewblog | blog post} and
15319
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/faq-nested-app-auth-outlook-legacy-tokens | FAQ page}.
15320
+ *
15327
15321
  * - You can pass both the token and either an attachment identifier or item identifier to an external system. That system uses
15328
15322
  * the token as a bearer authorization token to call the Exchange Web Services (EWS)
15329
15323
  * {@link https://learn.microsoft.com/exchange/client-developer/web-service-reference/getattachment-operation | GetAttachment} or
@@ -15412,7 +15406,16 @@ declare namespace Office {
15412
15406
  *
15413
15407
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
15414
15408
  *
15415
- * The `getUserIdentityTokenAsync` method returns a token that you can use to identify and
15409
+ * **Important**:
15410
+ *
15411
+ * - In October 2024, legacy Exchange {@link https://learn.microsoft.com/office/dev/add-ins/outlook/authentication#exchange-user-identity-token | user identity} and
15412
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/authentication#callback-tokens | callback} tokens will be turned off by default for all Exchange Online tenants.
15413
+ * This is part of {@link https://blogs.microsoft.com/on-the-issues/2023/11/02/secure-future-initiative-sfi-cybersecurity-cyberattacks/ | Microsoft's Secure Future Initiative},
15414
+ * which gives organizations the tools needed to respond to the current threat landscape. Exchange user identity tokens will still work for Exchange on-premises.
15415
+ * Nested app authentication is the recommended approach for tokens going forward. For more information, see our {@link https://aka.ms/NAApreviewblog | blog post} and
15416
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/faq-nested-app-auth-outlook-legacy-tokens | FAQ page}.
15417
+ *
15418
+ * - The `getUserIdentityTokenAsync` method returns a token that you can use to identify and
15416
15419
  * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/authentication | authenticate the add-in and user with an external system}.
15417
15420
  *
15418
15421
  * **Errors**:
@@ -15444,6 +15447,13 @@ declare namespace Office {
15444
15447
  *
15445
15448
  * **Important**:
15446
15449
  *
15450
+ * - In October 2024, legacy Exchange {@link https://learn.microsoft.com/office/dev/add-ins/outlook/authentication#exchange-user-identity-token | user identity} and
15451
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/authentication#callback-tokens | callback} tokens will be turned off by default for all Exchange Online tenants.
15452
+ * This is part of {@link https://blogs.microsoft.com/on-the-issues/2023/11/02/secure-future-initiative-sfi-cybersecurity-cyberattacks/ | Microsoft's Secure Future Initiative},
15453
+ * which gives organizations the tools needed to respond to the current threat landscape. Exchange user identity tokens will still work for Exchange on-premises.
15454
+ * Nested app authentication is the recommended approach for tokens going forward. For more information, see our {@link https://aka.ms/NAApreviewblog | blog post} and
15455
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/faq-nested-app-auth-outlook-legacy-tokens | FAQ page}.
15456
+ *
15447
15457
  * - To enable the `makeEwsRequestAsync` method to make EWS requests, the server administrator must set `OAuthAuthentication` to `true` on the
15448
15458
  * Client Access Server EWS directory .
15449
15459
  *
@@ -15863,6 +15873,26 @@ declare namespace Office {
15863
15873
  * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/mobile-event-based | Implement event-based activation in Outlook mobile add-ins}.
15864
15874
  */
15865
15875
  from: From;
15876
+ /**
15877
+ * Gets the message ID of the original message being replied to by the current message.
15878
+ *
15879
+ * @remarks
15880
+ * [Api set: Mailbox preview]
15881
+ *
15882
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
15883
+ *
15884
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
15885
+ *
15886
+ * **Important**:
15887
+ *
15888
+ * - To preview the `inReplyTo` property, you must install Outlook on Windows Version 2402 (Build 17317.20000) or later. Then, join the
15889
+ * {@link https://insider.microsoft365.com/join/Windows | Microsoft 365 Insider program} and select the **Beta Channel** option to access Office beta builds.
15890
+ *
15891
+ * - In Outlook on Windows, the `inReplyTo` value is maintained on all replies regardless of changes made by the user, such as changing the subject in a reply.
15892
+ *
15893
+ * @beta
15894
+ */
15895
+ inReplyTo: string;
15866
15896
  /**
15867
15897
  * Gets or sets the custom internet headers of a message.
15868
15898
  *
@@ -16542,6 +16572,54 @@ declare namespace Office {
16542
16572
  * An object with `ComposeType` and `CoercionType` enum values for the message item.
16543
16573
  */
16544
16574
  getComposeTypeAsync(callback: (asyncResult: Office.AsyncResult<any>) => void): void;
16575
+ /**
16576
+ * Gets the Base64-encoded position of the current message in a conversation thread.
16577
+ *
16578
+ * @remarks
16579
+ * [Api set: Mailbox preview]
16580
+ *
16581
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
16582
+ *
16583
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
16584
+ *
16585
+ * **Important**: To preview the `getConversationIndexAsync` method, you must install Outlook on Windows Version 2402 (Build 17317.20000) or later. Then, join the
16586
+ * {@link https://insider.microsoft365.com/join/Windows | Microsoft 365 Insider program} and select the **Beta Channel** option to access Office beta builds.
16587
+ *
16588
+ * **Tip**: You can use the conversation index to locate a message in a conversation thread. Then, use its contents
16589
+ * to provide context for the current message being composed.
16590
+ *
16591
+ * @param options - An object literal that contains one or more of the following properties:-
16592
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
16593
+ * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`, which is an
16594
+ * `Office.AsyncResult` object. The Base64-encoded position of the current message in a conversation is returned in the `asyncResult.value`
16595
+ * property.
16596
+ *
16597
+ * @beta
16598
+ */
16599
+ getConversationIndexAsync(options: Office.AsyncContextOptions, callback: (asyncResult: Office.AsyncResult<string>) => void): void;
16600
+ /**
16601
+ * Gets the Base64-encoded position of the current message in a conversation thread.
16602
+ *
16603
+ * @remarks
16604
+ * [Api set: Mailbox preview]
16605
+ *
16606
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
16607
+ *
16608
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
16609
+ *
16610
+ * **Important**: To preview the `getConversationIndexAsync` method, you must install Outlook on Windows Version 2402 (Build 17317.20000) or later. Then, join the
16611
+ * {@link https://insider.microsoft365.com/join/Windows | Microsoft 365 Insider program} and select the **Beta Channel** option to access Office beta builds.
16612
+ *
16613
+ * **Tip**: You can use the conversation index to locate a message in a conversation thread. Then, use its contents
16614
+ * to provide context for the current message being composed.
16615
+ *
16616
+ * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`, which is an
16617
+ * `Office.AsyncResult` object. The Base64-encoded position of the current message in a conversation is returned in the `asyncResult.value`
16618
+ * property.
16619
+ *
16620
+ * @beta
16621
+ */
16622
+ getConversationIndexAsync(callback: (asyncResult: Office.AsyncResult<string>) => void): void;
16545
16623
  /**
16546
16624
  * Gets initialization data passed when the add-in is {@link https://learn.microsoft.com/outlook/actionable-messages/invoke-add-in | activated by an actionable message}.
16547
16625
  *
@@ -16557,7 +16635,7 @@ declare namespace Office {
16557
16635
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter
16558
16636
  * of type `Office.AsyncResult`.
16559
16637
  * On success, the initialization context data is provided as a string (or an empty string if there's no initialization context)
16560
- * in the `asyncResult.value` property..
16638
+ * in the `asyncResult.value` property.
16561
16639
  */
16562
16640
  getInitializationContextAsync(options: Office.AsyncContextOptions, callback: (asyncResult: Office.AsyncResult<string>) => void): void;
16563
16641
  /**
@@ -16576,6 +16654,116 @@ declare namespace Office {
16576
16654
  * in the `asyncResult.value` property.
16577
16655
  */
16578
16656
  getInitializationContextAsync(callback: (asyncResult: Office.AsyncResult<string>) => void): void;
16657
+ /**
16658
+ * Gets the Exchange Web Services item class of the selected message.
16659
+ *
16660
+ * @remarks
16661
+ * [Api set: Mailbox preview]
16662
+ *
16663
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
16664
+ *
16665
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
16666
+ *
16667
+ * **Important**:
16668
+ *
16669
+ * To preview the `getItemClassAsync` method, you must install Outlook on Windows Version 2402 (Build 17317.20000) or later. Then, join the
16670
+ * {@link https://insider.microsoft365.com/join/Windows | Microsoft 365 Insider program} and select the **Beta Channel** option to access Office beta builds.
16671
+ *
16672
+ * The following table lists the default message classes.
16673
+ *
16674
+ * <table>
16675
+ * <tr>
16676
+ * <th>Item class</th>
16677
+ * <th>Description</th>
16678
+ * </tr>
16679
+ * <tr>
16680
+ * <td>IPM.Note</td>
16681
+ * <td>New messages and message replies</td>
16682
+ * </tr>
16683
+ * <tr>
16684
+ * <td>IPM.Schedule.Meeting.Request</td>
16685
+ * <td>Meeting requests</td>
16686
+ * </tr>
16687
+ * <tr>
16688
+ * <td>IPM.Schedule.Meeting.Canceled</td>
16689
+ * <td>Meeting cancellations</td>
16690
+ * </tr>
16691
+ * <tr>
16692
+ * <td>IPM.Schedule.Meeting.Resp.Neg</td>
16693
+ * <td>Responses to decline meeting requests</td>
16694
+ * </tr>
16695
+ * <tr>
16696
+ * <td>IPM.Schedule.Meeting.Resp.Pos</td>
16697
+ * <td>Responses to accept meeting requests</td>
16698
+ * </tr>
16699
+ * <tr>
16700
+ * <td>IPM.Schedule.Meeting.Resp.Tent</td>
16701
+ * <td>Responses to tentatively accept meeting requests</td>
16702
+ * </tr>
16703
+ * </table>
16704
+ *
16705
+ * @param options - An object literal that contains one or more of the following properties:-
16706
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
16707
+ * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`, which is an
16708
+ * `Office.AsyncResult` object. The message class is returned in the `asyncResult.value` property.
16709
+ *
16710
+ * @beta
16711
+ */
16712
+ getItemClassAsync(options: Office.AsyncContextOptions, callback: (asyncResult: Office.AsyncResult<string>) => void): void;
16713
+ /**
16714
+ * Gets the Exchange Web Services item class of the selected message.
16715
+ *
16716
+ * @remarks
16717
+ * [Api set: Mailbox preview]
16718
+ *
16719
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
16720
+ *
16721
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
16722
+ *
16723
+ * **Important**:
16724
+ *
16725
+ * To preview the `getItemClassAsync` method, you must install Outlook on Windows Version 2402 (Build 17317.20000) or later. Then, join the
16726
+ * {@link https://insider.microsoft365.com/join/Windows | Microsoft 365 Insider program} and select the **Beta Channel** option to access Office beta builds.
16727
+ *
16728
+ * The following table lists the default message classes.
16729
+ *
16730
+ * <table>
16731
+ * <tr>
16732
+ * <th>Item class</th>
16733
+ * <th>Description</th>
16734
+ * </tr>
16735
+ * <tr>
16736
+ * <td>IPM.Note</td>
16737
+ * <td>New messages and message replies</td>
16738
+ * </tr>
16739
+ * <tr>
16740
+ * <td>IPM.Schedule.Meeting.Request</td>
16741
+ * <td>Meeting requests</td>
16742
+ * </tr>
16743
+ * <tr>
16744
+ * <td>IPM.Schedule.Meeting.Canceled</td>
16745
+ * <td>Meeting cancellations</td>
16746
+ * </tr>
16747
+ * <tr>
16748
+ * <td>IPM.Schedule.Meeting.Resp.Neg</td>
16749
+ * <td>Responses to decline meeting requests</td>
16750
+ * </tr>
16751
+ * <tr>
16752
+ * <td>IPM.Schedule.Meeting.Resp.Pos</td>
16753
+ * <td>Responses to accept meeting requests</td>
16754
+ * </tr>
16755
+ * <tr>
16756
+ * <td>IPM.Schedule.Meeting.Resp.Tent</td>
16757
+ * <td>Responses to tentatively accept meeting requests</td>
16758
+ * </tr>
16759
+ * </table>
16760
+ *
16761
+ * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`, which is an
16762
+ * `Office.AsyncResult` object. The message class is returned in the `asyncResult.value` property.
16763
+ *
16764
+ * @beta
16765
+ */
16766
+ getItemClassAsync(callback: (asyncResult: Office.AsyncResult<string>) => void): void;
16579
16767
  /**
16580
16768
  * Asynchronously gets the ID of a saved item.
16581
16769
  *
@@ -17224,10 +17412,7 @@ declare namespace Office {
17224
17412
  */
17225
17413
  internetMessageId: string;
17226
17414
  /**
17227
- * Gets the Exchange Web Services item class of the selected item.
17228
- *
17229
- * You can create custom message classes that extends a default message class, for example, a custom appointment message class
17230
- * `IPM.Appointment.Contoso`.
17415
+ * Gets the Exchange Web Services item class of the selected message.
17231
17416
  *
17232
17417
  * @remarks
17233
17418
  *
@@ -17235,27 +17420,42 @@ declare namespace Office {
17235
17420
  *
17236
17421
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Read
17237
17422
  *
17238
- * The `itemClass` property specifies the message class of the selected item.
17239
- * The following are the default message classes for the message or appointment item.
17423
+ * **Important**:
17424
+ *
17425
+ * The following table lists the default item classes for messages.
17240
17426
  *
17241
17427
  * <table>
17242
17428
  * <tr>
17243
- * <th>Type</th>
17429
+ * <th>Item class</th>
17244
17430
  * <th>Description</th>
17245
- * <th>Item Class</th>
17246
17431
  * </tr>
17247
17432
  * <tr>
17248
- * <td>Appointment items</td>
17249
- * <td>These are calendar items of the item class IPM.Appointment or IPM.Appointment.Occurrence.</td>
17250
- * <td>IPM.Appointment, IPM.Appointment.Occurrence</td>
17433
+ * <td>IPM.Note</td>
17434
+ * <td>New messages and message replies</td>
17435
+ * </tr>
17436
+ * <tr>
17437
+ * <td>IPM.Schedule.Meeting.Request</td>
17438
+ * <td>Meeting requests</td>
17439
+ * </tr>
17440
+ * <tr>
17441
+ * <td>IPM.Schedule.Meeting.Canceled</td>
17442
+ * <td>Meeting cancellations</td>
17443
+ * </tr>
17444
+ * <tr>
17445
+ * <td>IPM.Schedule.Meeting.Resp.Neg</td>
17446
+ * <td>Responses to decline meeting requests</td>
17447
+ * </tr>
17448
+ * <tr>
17449
+ * <td>IPM.Schedule.Meeting.Resp.Pos</td>
17450
+ * <td>Responses to accept meeting requests</td>
17251
17451
  * </tr>
17252
17452
  * <tr>
17253
- * <td>Message items</td>
17254
- * <td>These include email messages that have the default message class IPM.Note, and meeting requests, responses, and cancellations, that use IPM.Schedule.Meeting as the base message class.</td>
17255
- * <td>IPM.Note, IPM.Schedule.Meeting.Request, IPM.Schedule.Meeting.Neg, IPM.Schedule.Meeting.Pos, IPM.Schedule.Meeting.Tent, IPM.Schedule.Meeting.Canceled</td>
17453
+ * <td>IPM.Schedule.Meeting.Resp.Tent</td>
17454
+ * <td>Responses to tentatively accept meeting requests</td>
17256
17455
  * </tr>
17257
17456
  * </table>
17258
17457
  *
17458
+ * You can create custom classes that extend a default item class. For example, `IPM.Note.Contoso`.
17259
17459
  */
17260
17460
  itemClass: string;
17261
17461
  /**
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js-preview",
3
- "version": "1.0.461",
3
+ "version": "1.0.463",
4
4
  "description": "TypeScript definitions for office-js-preview",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview",
6
6
  "license": "MIT",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "scripts": {},
47
47
  "dependencies": {},
48
- "typesPublisherContentHash": "d960151f9ff70b53163f94072ac81dc317b480319e272203762c186c9cf71a8f",
48
+ "typesPublisherContentHash": "3565cb9b5bd4720088d0a1d0bb3dbc384f38f7f7cbd2be688921fe0174a06790",
49
49
  "typeScriptVersion": "4.7",
50
50
  "nonNpm": true
51
51
  }