@types/office-js-preview 1.0.694 → 1.0.696

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: Thu, 12 Mar 2026 23:40:25 GMT
11
+ * Last updated: Fri, 20 Mar 2026 16:26:47 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
@@ -11616,7 +11616,7 @@ declare namespace Office {
11616
11616
  * `asyncContext`: Developers can provide any object they wish to access in the callback function.
11617
11617
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
11618
11618
  * type `Office.AsyncResult`. If the call fails, the `asyncResult.error` property will contain an error code with the reason for
11619
- * the failure.
11619
+ * the failure. If the call succeeds, an array of `AttachmentDetailsCompose` objects is returned in the `asyncResult.value` property.
11620
11620
  */
11621
11621
  getAttachmentsAsync(options: Office.AsyncContextOptions, callback?: (asyncResult: Office.AsyncResult<AttachmentDetailsCompose[]>) => void): void;
11622
11622
  /**
@@ -11634,7 +11634,7 @@ declare namespace Office {
11634
11634
  *
11635
11635
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
11636
11636
  * type `Office.AsyncResult`. If the call fails, the `asyncResult.error` property will contain an error code with the reason for
11637
- * the failure.
11637
+ * the failure. If the call succeeds, an array of `AttachmentDetailsCompose` objects is returned in the `asyncResult.value` property.
11638
11638
  */
11639
11639
  getAttachmentsAsync(callback?: (asyncResult: Office.AsyncResult<AttachmentDetailsCompose[]>) => void): void;
11640
11640
  /**
@@ -13408,13 +13408,43 @@ declare namespace Office {
13408
13408
  */
13409
13409
  contentId: string;
13410
13410
  /**
13411
- * Gets the index of the attachment.
13411
+ * Gets the identifier of an attachment. The value varies depending on the Outlook client.
13412
+ *
13413
+ * - In Outlook on the web and the new Outlook on Windows, the identifier is the Exchange Web Services (EWS) ID.
13414
+ * For inline attachments, the initial identifier is a temporary attachment ID, prefixed with `addinId`, while the attachment is uploaded to the server.
13415
+ * Once the upload completes, the attachment receives an EWS ID. For details, see the notes in the Remarks section.
13416
+ *
13417
+ * - In Outlook on Windows (classic) and on Mac, the identifier for inline and non-inline attachments is the index of the attachment.
13418
+ *
13419
+ * @remarks
13420
+ *
13421
+ * **Important**: Starting March 30, 2026, after the call to `addFileAttachmentAsync` or `addFileAttachmentFromBase64Async` with `isInline` set to `true` completes, inline images in messages in Outlook on the web and the new Outlook on Windows
13422
+ * are locally assigned a temporary attachment ID while they're uploaded to the server. A temporary attachment ID is prefixed with `addinId`. Once the images are
13423
+ * uploaded to the server, they are then assigned an Exchange Web Services (EWS) ID. The temporary attachment ID is only supported for the duration of the current compose session.
13424
+ * For more information on the changes to how inline images are handled, see
13425
+ * {@link https://devblogs.microsoft.com/microsoft365dev/changes-to-attachment-ids-for-inline-images-in-outlook-add-ins/ | Changes to attachment IDs for inline images in Outlook add-ins}.
13412
13426
  */
13413
13427
  id: string;
13414
13428
  /**
13415
13429
  * Gets a value that indicates whether the attachment appears as an image in the body of the item instead of in the attachment list.
13416
13430
  */
13417
13431
  isInline: boolean;
13432
+ /**
13433
+ * In Outlook on the web and the new Outlook on Windows, indicates whether an inline attachment in a message has been uploaded to the server and assigned an Exchange Web Services (EWS) ID.
13434
+ *
13435
+ * @remarks
13436
+ *
13437
+ * **Important**:
13438
+ *
13439
+ * - Starting March 30, 2026, after the call to `addFileAttachmentAsync` or `addFileAttachmentFromBase64Async` with `isInline` set to `true` completes, inline images in Outlook on the web and the new Outlook on Windows
13440
+ * are locally assigned a temporary attachment ID while they're uploaded to the server. A temporary attachment ID is prefixed with `addinId`. Once the images are
13441
+ * uploaded to the server, they are then assigned an Exchange Web Services (EWS) ID in the `id` property and their `isServiceAccessible` property is set to `true`.
13442
+ * The temporary attachment ID is only supported for the duration of the current compose session. For more information on the changes to how inline images are handled, see
13443
+ * {@link https://devblogs.microsoft.com/microsoft365dev/changes-to-attachment-ids-for-inline-images-in-outlook-add-ins/ | Changes to attachment IDs for inline images in Outlook add-ins}.
13444
+ *
13445
+ * - In Outlook on Windows (classic) and on Mac, the `isServiceAccessible` property always returns `false` since the attachment ID is the index of the attachment.
13446
+ */
13447
+ isServiceAccessible: boolean;
13418
13448
  /**
13419
13449
  * Gets the name of the attachment.
13420
13450
  *
@@ -16560,6 +16590,12 @@ declare namespace Office {
16560
16590
  * - The `getAttachmentContentAsync` method gets the attachment with the specified identifier from the item. As a best practice, you should get
16561
16591
  * the attachment's identifier from a `getAttachmentsAsync` call, then in the same session, use that identifier to retrieve the attachment.
16562
16592
  *
16593
+ * - Starting March 30, 2026, after the call to `addFileAttachmentAsync` or `addFileAttachmentFromBase64Async` with `isInline` set to `true` completes, inline images in messages in Outlook on the web and the new Outlook on Windows
16594
+ * are locally assigned a temporary attachment ID while they're uploaded to the server. A temporary attachment ID is prefixed with `addinId`. Once the images are
16595
+ * uploaded to the server, they are then assigned an Exchange Web Services (EWS) ID. The temporary attachment ID is only supported for the duration of the current compose session.
16596
+ * For more information on the changes to how inline images are handled, see
16597
+ * {@link https://devblogs.microsoft.com/microsoft365dev/changes-to-attachment-ids-for-inline-images-in-outlook-add-ins/ | Changes to attachment IDs for inline images in Outlook add-ins}.
16598
+ *
16563
16599
  * - In Outlook on the web and the {@link https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627 | new Outlook on Windows},
16564
16600
  * `getAttachmentContentAsync` doesn't support attachments that were added using the **Upload and share** option.
16565
16601
  *
@@ -16574,7 +16610,8 @@ declare namespace Office {
16574
16610
  *
16575
16611
  * - `InvalidAttachmentId`: The attachment identifier does not exist.
16576
16612
  *
16577
- * @param attachmentId - The identifier of the attachment you want to get.
16613
+ * @param attachmentId - The identifier of the attachment you want to get. In Outlook on the web and the new Outlook on Windows, the temporary attachment ID that's
16614
+ * locally generated for inline images that haven't been uploaded to the server yet are supported for the duration of the current compose session.
16578
16615
  * @param options - An object literal that contains one or more of the following properties:-
16579
16616
  * `asyncContext`: Developers can provide any object they wish to access in the callback function.
16580
16617
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
@@ -16597,6 +16634,12 @@ declare namespace Office {
16597
16634
  * - The `getAttachmentContentAsync` method gets the attachment with the specified identifier from the item. As a best practice, you should get
16598
16635
  * the attachment's identifier from a `getAttachmentsAsync` call, then in the same session, use that identifier to retrieve the attachment.
16599
16636
  *
16637
+ * - Starting March 30, 2026, after the call to `addFileAttachmentAsync` or `addFileAttachmentFromBase64Async` with `isInline` set to `true` completes, inline images in messages in Outlook on the web and the new Outlook on Windows
16638
+ * are locally assigned a temporary attachment ID while they're uploaded to the server. A temporary attachment ID is prefixed with `addinId`. Once the images are
16639
+ * uploaded to the server, they are then assigned an Exchange Web Services (EWS) ID. The temporary attachment ID is only supported for the duration of the current compose session.
16640
+ * For more information on the changes to how inline images are handled, see
16641
+ * {@link https://devblogs.microsoft.com/microsoft365dev/changes-to-attachment-ids-for-inline-images-in-outlook-add-ins/ | Changes to attachment IDs for inline images in Outlook add-ins}.
16642
+ *
16600
16643
  * - In Outlook on the web and the {@link https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627 | new Outlook on Windows},
16601
16644
  * `getAttachmentContentAsync` doesn't support attachments that were added using the **Upload and share** option.
16602
16645
  *
@@ -16611,7 +16654,8 @@ declare namespace Office {
16611
16654
  *
16612
16655
  * - `InvalidAttachmentId`: The attachment identifier does not exist.
16613
16656
  *
16614
- * @param attachmentId - The identifier of the attachment you want to get.
16657
+ * @param attachmentId - The identifier of the attachment you want to get. In Outlook on the web and the new Outlook on Windows, the temporary attachment ID that's
16658
+ * locally generated for inline images that haven't been uploaded to the server yet are supported for the duration of the current compose session.
16615
16659
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
16616
16660
  * `asyncResult`, which is an `Office.AsyncResult` object. If the call fails, the `asyncResult.error` property will contain
16617
16661
  * an error code with the reason for the failure.
@@ -16627,14 +16671,22 @@ declare namespace Office {
16627
16671
  *
16628
16672
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
16629
16673
  *
16630
- * **Important**: In Outlook on the web and the new Outlook on Windows, users can select the **Upload and share** option to upload an attachment to OneDrive and
16674
+ * **Important**:
16675
+ *
16676
+ * - Starting March 30, 2026, after the call to `addFileAttachmentAsync` or `addFileAttachmentFromBase64Async` with `isInline` set to `true` completes, inline images in messages in Outlook on the web and the new Outlook on Windows
16677
+ * are locally assigned a temporary attachment ID while they're uploaded to the server. A temporary attachment ID is prefixed with `addinId`. Once the images are
16678
+ * uploaded to the server, they are then assigned an Exchange Web Services (EWS) ID. The temporary attachment ID is only supported for the duration of the current compose session.
16679
+ * For more information on the changes to how inline images are handled, see
16680
+ * {@link https://devblogs.microsoft.com/microsoft365dev/changes-to-attachment-ids-for-inline-images-in-outlook-add-ins/ | Changes to attachment IDs for inline images in Outlook add-ins}.
16681
+ *
16682
+ * - In Outlook on the web and the new Outlook on Windows, users can select the **Upload and share** option to upload an attachment to OneDrive and
16631
16683
  * include a link to the file in the mail item. However, since only a link is included, `getAttachmentsAsync` doesn't return this attachment.
16632
16684
  *
16633
16685
  * @param options - An object literal that contains one or more of the following properties:-
16634
16686
  * `asyncContext`: Developers can provide any object they wish to access in the callback function.
16635
16687
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
16636
16688
  * type `Office.AsyncResult`. If the call fails, the `asyncResult.error` property will contain an error code with the reason for
16637
- * the failure.
16689
+ * the failure. If the call succeeds, an array of `AttachmentDetailsCompose` objects is returned in the `asyncResult.value` property.
16638
16690
  */
16639
16691
  getAttachmentsAsync(options: Office.AsyncContextOptions, callback?: (asyncResult: Office.AsyncResult<AttachmentDetailsCompose[]>) => void): void;
16640
16692
  /**
@@ -16647,12 +16699,20 @@ declare namespace Office {
16647
16699
  *
16648
16700
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
16649
16701
  *
16650
- * **Important**: In Outlook on the web and the new Outlook on Windows, users can select the **Upload and share** option to upload an attachment to OneDrive and
16702
+ * **Important**:
16703
+ *
16704
+ * - Starting March 30, 2026, after the call to `addFileAttachmentAsync` or `addFileAttachmentFromBase64Async` with `isInline` set to `true` completes, inline images in messages in Outlook on the web and the new Outlook on Windows
16705
+ * are locally assigned a temporary attachment ID while they're uploaded to the server. A temporary attachment ID is prefixed with `addinId`. Once the images are
16706
+ * uploaded to the server, they are then assigned an Exchange Web Services (EWS) ID. The temporary attachment ID is only supported for the duration of the current compose session.
16707
+ * For more information on the changes to how inline images are handled, see
16708
+ * {@link https://devblogs.microsoft.com/microsoft365dev/changes-to-attachment-ids-for-inline-images-in-outlook-add-ins/ | Changes to attachment IDs for inline images in Outlook add-ins}.
16709
+ *
16710
+ * - In Outlook on the web and the new Outlook on Windows, users can select the **Upload and share** option to upload an attachment to OneDrive and
16651
16711
  * include a link to the file in the mail item. However, since only a link is included, `getAttachmentsAsync` doesn't return this attachment.
16652
16712
  *
16653
16713
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
16654
16714
  * type `Office.AsyncResult`. If the call fails, the `asyncResult.error` property will contain an error code with the reason for
16655
- * the failure.
16715
+ * the failure. If the call succeeds, an array of `AttachmentDetailsCompose` objects is returned in the `asyncResult.value` property.
16656
16716
  */
16657
16717
  getAttachmentsAsync(callback?: (asyncResult: Office.AsyncResult<AttachmentDetailsCompose[]>) => void): void;
16658
16718
  /**
@@ -20009,6 +20069,12 @@ declare namespace Office {
20009
20069
  * - This method isn't supported in Outlook on iOS or Android. For more information on supported APIs in Outlook mobile, see
20010
20070
  * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
20011
20071
  *
20072
+ * - Starting March 30, 2026, after the call to `addFileAttachmentAsync` or `addFileAttachmentFromBase64Async` with `isInline` set to `true` completes, inline images in Outlook on the web and the new Outlook on Windows
20073
+ * are locally assigned a temporary attachment ID while they're uploaded to the server. A temporary attachment ID is prefixed with `addinId`. Once the images are
20074
+ * uploaded to the server, they are then assigned an Exchange Web Services (EWS) ID in the `id` property and their `isServiceAccessible` property is set to `true`.
20075
+ * The temporary attachment ID is only supported for the duration of the current compose session. For more information on the changes to how inline images are handled, see
20076
+ * {@link https://devblogs.microsoft.com/microsoft365dev/changes-to-attachment-ids-for-inline-images-in-outlook-add-ins/ | Changes to attachment IDs for inline images in Outlook add-ins}.
20077
+ *
20012
20078
  * - Bitmap (BMP) images aren't supported if they're added as inline attachments.
20013
20079
  *
20014
20080
  * - In recent builds of classic Outlook on Windows, a bug was introduced that incorrectly appends an `Authorization: Bearer` header to
@@ -20035,9 +20101,10 @@ declare namespace Office {
20035
20101
  * `asyncContext`: Developers can provide any object they wish to access in the callback function.
20036
20102
  * `isInline`: If true, indicates that the attachment will be shown inline as an image in the message body and won't be displayed in the attachment list.
20037
20103
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
20038
- * type `Office.AsyncResult`. On success, the attachment identifier will be provided in the `asyncResult.value` property.
20039
- * If uploading the attachment fails, the `asyncResult` object will contain an `Error` object that provides a description of
20040
- * the error.
20104
+ * type `Office.AsyncResult`. On success, the attachment identifier is provided in the `asyncResult.value` property. The identifier varies depending on the Outlook client.
20105
+ * In Outlook on the web and the new Outlook on Windows, the Exchange Web Services (EWS) ID is returned. If `isInline` is set to `true`, a temporary attachment ID prefixed with
20106
+ * `addinId` is initially returned while the attachment is uploaded to the server. Once the upload completes, the attachment is then assigned an EWS ID. For details, see the notes in the Remarks section.
20107
+ * In Outlook on Windows (classic) and on Mac, the index of the attachment is returned for inline and non-inline attachments. If uploading the attachment fails, a description of the error is provided in `asyncResult.error`.
20041
20108
  */
20042
20109
  addFileAttachmentAsync(uri: string, attachmentName: string, options: Office.AsyncContextOptions & { isInline: boolean }, callback?: (asyncResult: Office.AsyncResult<string>) => void): void;
20043
20110
  /**
@@ -20057,6 +20124,12 @@ declare namespace Office {
20057
20124
  * - This method isn't supported in Outlook on iOS or Android. For more information on supported APIs in Outlook mobile, see
20058
20125
  * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
20059
20126
  *
20127
+ * - Starting March 30, 2026, after the call to `addFileAttachmentAsync` or `addFileAttachmentFromBase64Async` with `isInline` set to `true` completes, inline images in Outlook on the web and the new Outlook on Windows
20128
+ * are locally assigned a temporary attachment ID while they're uploaded to the server. A temporary attachment ID is prefixed with `addinId`. Once the images are
20129
+ * uploaded to the server, they are then assigned an Exchange Web Services (EWS) ID in the `id` property and their `isServiceAccessible` property is set to `true`.
20130
+ * The temporary attachment ID is only supported for the duration of the current compose session. For more information on the changes to how inline images are handled, see
20131
+ * {@link https://devblogs.microsoft.com/microsoft365dev/changes-to-attachment-ids-for-inline-images-in-outlook-add-ins/ | Changes to attachment IDs for inline images in Outlook add-ins}.
20132
+ *
20060
20133
  * - Bitmap (BMP) images aren't supported if they're added as inline attachments.
20061
20134
  *
20062
20135
  * - In recent builds of classic Outlook on Windows, a bug was introduced that incorrectly appends an `Authorization: Bearer` header to
@@ -20080,9 +20153,10 @@ declare namespace Office {
20080
20153
  * @param uri - The URI that provides the location of the file to attach to the message or appointment. The maximum length is 2048 characters.
20081
20154
  * @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
20082
20155
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
20083
- * type `Office.AsyncResult`. On success, the attachment identifier will be provided in the `asyncResult.value` property.
20084
- * If uploading the attachment fails, the `asyncResult` object will contain an `Error` object that provides a description of
20085
- * the error.
20156
+ * type `Office.AsyncResult`. On success, the attachment identifier is provided in the `asyncResult.value` property. The identifier varies depending on the Outlook client.
20157
+ * In Outlook on the web and the new Outlook on Windows, the Exchange Web Services (EWS) ID is returned. If `isInline` is set to `true`, a temporary attachment ID prefixed with
20158
+ * `addinId` is initially returned while the attachment is uploaded to the server. Once the upload completes, the attachment is then assigned an EWS ID. For details, see the notes in the Remarks section.
20159
+ * In Outlook on Windows (classic) and on Mac, the index of the attachment is returned for inline and non-inline attachments. If uploading the attachment fails, a description of the error is provided in `asyncResult.error`.
20086
20160
  */
20087
20161
  addFileAttachmentAsync(uri: string, attachmentName: string, callback?: (asyncResult: Office.AsyncResult<string>) => void): void;
20088
20162
  /**
@@ -20105,6 +20179,12 @@ declare namespace Office {
20105
20179
  * - Adding an inline Base64 file to a message in compose mode is supported in Outlook on Android and on iOS. For more information on supported APIs in
20106
20180
  * Outlook mobile, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
20107
20181
  *
20182
+ * - Starting March 30, 2026, after the call to `addFileAttachmentAsync` or `addFileAttachmentFromBase64Async` with `isInline` set to `true` completes, inline images in messages in Outlook on the web and the new Outlook on Windows
20183
+ * are locally assigned a temporary attachment ID while they're uploaded to the server. A temporary attachment ID is prefixed with `addinId`. Once the images are
20184
+ * uploaded to the server, they are then assigned an Exchange Web Services (EWS) ID. The temporary attachment ID is only supported for the duration of the current compose session.
20185
+ * For more information on the changes to how inline images are handled, see
20186
+ * {@link https://devblogs.microsoft.com/microsoft365dev/changes-to-attachment-ids-for-inline-images-in-outlook-add-ins/ | Changes to attachment IDs for inline images in Outlook add-ins}.
20187
+ *
20108
20188
  * - If you're using a data URL API (for example, `readAsDataURL`), you need to strip out the data URL prefix, then send the rest of the string to this API.
20109
20189
  * For example, if the full string is represented by `data:image/svg+xml;base64,<rest of Base64 string>`, remove `data:image/svg+xml;base64,`.
20110
20190
  *
@@ -20128,9 +20208,11 @@ declare namespace Office {
20128
20208
  * @param options - An object literal that contains one or more of the following properties:-
20129
20209
  * `asyncContext`: Developers can provide any object they wish to access in the callback function.
20130
20210
  * `isInline`: If true, indicates that the attachment will be shown inline as an image in the message body and won't be displayed in the attachment list.
20131
- * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
20132
- * type Office.AsyncResult. On success, the attachment identifier will be provided in the `asyncResult.value` property.
20133
- * If uploading the attachment fails, the `asyncResult` object will contain an `Error` object that provides a description of the error.
20211
+ * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of type `Office.AsyncResult`.
20212
+ * On success, the attachment identifier is provided in the `asyncResult.value` property. The identifier varies depending on the Outlook client.
20213
+ * In Outlook on the web and the new Outlook on Windows, the Exchange Web Services (EWS) ID is returned. If `isInline` is set to `true`, a temporary attachment ID prefixed with
20214
+ * `addinId` is initially returned while the attachment is uploaded to the server. Once the upload completes, the attachment is then assigned an EWS ID. For details, see the notes in the Remarks section.
20215
+ * In Outlook on Windows (classic) and on Mac, the index of the attachment is returned for inline and non-inline attachments. If uploading the attachment fails, a description of the error is provided in `asyncResult.error`.
20134
20216
  */
20135
20217
  addFileAttachmentFromBase64Async(base64File: string, attachmentName: string, options: Office.AsyncContextOptions & { isInline: boolean }, callback?: (asyncResult: Office.AsyncResult<string>) => void): void;
20136
20218
  /**
@@ -20153,6 +20235,12 @@ declare namespace Office {
20153
20235
  * - Adding an inline Base64 file to a message in compose mode is supported in Outlook on Android and on iOS. For more information on supported APIs in
20154
20236
  * Outlook mobile, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
20155
20237
  *
20238
+ * - Starting March 30, 2026, after the call to `addFileAttachmentAsync` or `addFileAttachmentFromBase64Async` with `isInline` set to `true` completes, inline images in messages in Outlook on the web and the new Outlook on Windows
20239
+ * are locally assigned a temporary attachment ID while they're uploaded to the server. A temporary attachment ID is prefixed with `addinId`. Once the images are
20240
+ * uploaded to the server, they are then assigned an Exchange Web Services (EWS) ID. The temporary attachment ID is only supported for the duration of the current compose session.
20241
+ * For more information on the changes to how inline images are handled, see
20242
+ * {@link https://devblogs.microsoft.com/microsoft365dev/changes-to-attachment-ids-for-inline-images-in-outlook-add-ins/ | Changes to attachment IDs for inline images in Outlook add-ins}.
20243
+ *
20156
20244
  * - If you're using a data URL API (for example, `readAsDataURL`), you need to strip out the data URL prefix, then send the rest of the string to this API.
20157
20245
  * For example, if the full string is represented by `data:image/svg+xml;base64,<rest of Base64 string>`, remove `data:image/svg+xml;base64,`.
20158
20246
  *
@@ -20173,9 +20261,11 @@ declare namespace Office {
20173
20261
  *
20174
20262
  * @param base64File - The Base64-encoded content of an image or file to be added to an email or event. The maximum length of the encoded string is 27,892,122 characters (about 25 MB).
20175
20263
  * @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
20176
- * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
20177
- * type Office.AsyncResult. On success, the attachment identifier will be provided in the `asyncResult.value` property.
20178
- * If uploading the attachment fails, the `asyncResult` object will contain an `Error` object that provides a description of the error.
20264
+ * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of type `Office.AsyncResult`.
20265
+ * On success, the attachment identifier is provided in the `asyncResult.value` property. The identifier varies depending on the Outlook client.
20266
+ * In Outlook on the web and the new Outlook on Windows, the Exchange Web Services (EWS) ID is returned. If `isInline` is set to `true`, a temporary attachment ID prefixed with
20267
+ * `addinId` is initially returned while the attachment is uploaded to the server. Once the upload completes, the attachment is then assigned an EWS ID. For details, see the notes in the Remarks section.
20268
+ * In Outlook on Windows (classic) and on Mac, the index of the attachment is returned for inline and non-inline attachments. If uploading the attachment fails, a description of the error is provided in `asyncResult.error`.
20179
20269
  */
20180
20270
  addFileAttachmentFromBase64Async(base64File: string, attachmentName: string, callback?: (asyncResult: Office.AsyncResult<string>) => void): void;
20181
20271
  /**
@@ -20458,6 +20548,12 @@ declare namespace Office {
20458
20548
  * - The `getAttachmentContentAsync` method gets the attachment with the specified identifier from the item. As a best practice, you should get
20459
20549
  * the attachment's identifier from a `getAttachmentsAsync` call, then in the same session, use that identifier to retrieve the attachment.
20460
20550
  *
20551
+ * - Starting March 30, 2026, after the call to `addFileAttachmentAsync` or `addFileAttachmentFromBase64Async` with `isInline` set to `true` completes, inline images in messages in Outlook on the web and the new Outlook on Windows
20552
+ * are locally assigned a temporary attachment ID while they're uploaded to the server. A temporary attachment ID is prefixed with `addinId`. Once the images are
20553
+ * uploaded to the server, they are then assigned an Exchange Web Services (EWS) ID. The temporary attachment ID is only supported for the duration of the current compose session.
20554
+ * For more information on the changes to how inline images are handled, see
20555
+ * {@link https://devblogs.microsoft.com/microsoft365dev/changes-to-attachment-ids-for-inline-images-in-outlook-add-ins/ | Changes to attachment IDs for inline images in Outlook add-ins}.
20556
+ *
20461
20557
  * - In Outlook on the web and the {@link https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627 | new Outlook on Windows},
20462
20558
  * `getAttachmentContentAsync` doesn't support attachments that were added using the **Upload and share** option.
20463
20559
  *
@@ -20472,7 +20568,8 @@ declare namespace Office {
20472
20568
  *
20473
20569
  * - `InvalidAttachmentId`: The attachment identifier does not exist.
20474
20570
  *
20475
- * @param attachmentId - The identifier of the attachment you want to get.
20571
+ * @param attachmentId - The identifier of the attachment you want to get. In Outlook on the web and the new Outlook on Windows, the temporary attachment ID that's
20572
+ * locally generated for inline images that haven't been uploaded to the server yet are supported for the duration of the current compose session.
20476
20573
  * @param options - An object literal that contains one or more of the following properties:-
20477
20574
  * `asyncContext`: Developers can provide any object they wish to access in the callback function.
20478
20575
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
@@ -20495,6 +20592,12 @@ declare namespace Office {
20495
20592
  * - The `getAttachmentContentAsync` method gets the attachment with the specified identifier from the item. As a best practice, you should get
20496
20593
  * the attachment's identifier from a `getAttachmentsAsync` call, then in the same session, use that identifier to retrieve the attachment.
20497
20594
  *
20595
+ * - Starting March 30, 2026, after the call to `addFileAttachmentAsync` or `addFileAttachmentFromBase64Async` with `isInline` set to `true` completes, inline images in messages in Outlook on the web and the new Outlook on Windows
20596
+ * are locally assigned a temporary attachment ID while they're uploaded to the server. A temporary attachment ID is prefixed with `addinId`. Once the images are
20597
+ * uploaded to the server, they are then assigned an Exchange Web Services (EWS) ID. The temporary attachment ID is only supported for the duration of the current compose session.
20598
+ * For more information on the changes to how inline images are handled, see
20599
+ * {@link https://devblogs.microsoft.com/microsoft365dev/changes-to-attachment-ids-for-inline-images-in-outlook-add-ins/ | Changes to attachment IDs for inline images in Outlook add-ins}.
20600
+ *
20498
20601
  * - In Outlook on the web and the {@link https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627 | new Outlook on Windows},
20499
20602
  * `getAttachmentContentAsync` doesn't support attachments that were added using the **Upload and share** option.
20500
20603
  *
@@ -20509,7 +20612,8 @@ declare namespace Office {
20509
20612
  *
20510
20613
  * - `InvalidAttachmentId`: The attachment identifier does not exist.
20511
20614
  *
20512
- * @param attachmentId - The identifier of the attachment you want to get.
20615
+ * @param attachmentId - The identifier of the attachment you want to get. In Outlook on the web and the new Outlook on Windows, the temporary attachment ID that's
20616
+ * locally generated for inline images that haven't been uploaded to the server yet are supported for the duration of the current compose session.
20513
20617
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
20514
20618
  * `asyncResult`, which is an `Office.AsyncResult` object. If the call fails, the `asyncResult.error` property will contain
20515
20619
  * an error code with the reason for the failure.
@@ -20525,14 +20629,22 @@ declare namespace Office {
20525
20629
  *
20526
20630
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
20527
20631
  *
20528
- * **Important**: In Outlook on the web and the new Outlook on Windows, users can select the **Upload and share** option to upload an attachment to OneDrive and
20632
+ * **Important**:
20633
+ *
20634
+ * - Starting March 30, 2026, after the call to `addFileAttachmentAsync` or `addFileAttachmentFromBase64Async` with `isInline` set to `true` completes, inline images in messages in Outlook on the web and the new Outlook on Windows
20635
+ * are locally assigned a temporary attachment ID while they're uploaded to the server. A temporary attachment ID is prefixed with `addinId`. Once the images are
20636
+ * uploaded to the server, they are then assigned an Exchange Web Services (EWS) ID. The temporary attachment ID is only supported for the duration of the current compose session.
20637
+ * For more information on the changes to how inline images are handled, see
20638
+ * {@link https://devblogs.microsoft.com/microsoft365dev/changes-to-attachment-ids-for-inline-images-in-outlook-add-ins/ | Changes to attachment IDs for inline images in Outlook add-ins}.
20639
+ *
20640
+ * - In Outlook on the web and the new Outlook on Windows, users can select the **Upload and share** option to upload an attachment to OneDrive and
20529
20641
  * include a link to the file in the mail item. However, since only a link is included, `getAttachmentsAsync` doesn't return this attachment.
20530
20642
  *
20531
20643
  * @param options - An object literal that contains one or more of the following properties:-
20532
20644
  * `asyncContext`: Developers can provide any object they wish to access in the callback function.
20533
20645
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
20534
20646
  * type `Office.AsyncResult`. If the call fails, the `asyncResult.error` property will contain an error code with the reason for
20535
- * the failure.
20647
+ * the failure. If the call succeeds, an array of `AttachmentDetailsCompose` objects is returned in the `asyncResult.value` property.
20536
20648
  */
20537
20649
  getAttachmentsAsync(options: Office.AsyncContextOptions, callback?: (asyncResult: Office.AsyncResult<AttachmentDetailsCompose[]>) => void): void;
20538
20650
  /**
@@ -20545,12 +20657,20 @@ declare namespace Office {
20545
20657
  *
20546
20658
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
20547
20659
  *
20548
- * **Important**: In Outlook on the web and the new Outlook on Windows, users can select the **Upload and share** option to upload an attachment to OneDrive and
20660
+ * **Important**:
20661
+ *
20662
+ * - Starting March 30, 2026, after the call to `addFileAttachmentAsync` or `addFileAttachmentFromBase64Async` with `isInline` set to `true` completes, inline images in messages in Outlook on the web and the new Outlook on Windows
20663
+ * are locally assigned a temporary attachment ID while they're uploaded to the server. A temporary attachment ID is prefixed with `addinId`. Once the images are
20664
+ * uploaded to the server, they are then assigned an Exchange Web Services (EWS) ID. The temporary attachment ID is only supported for the duration of the current compose session.
20665
+ * For more information on the changes to how inline images are handled, see
20666
+ * {@link https://devblogs.microsoft.com/microsoft365dev/changes-to-attachment-ids-for-inline-images-in-outlook-add-ins/ | Changes to attachment IDs for inline images in Outlook add-ins}.
20667
+ *
20668
+ * - In Outlook on the web and the new Outlook on Windows, users can select the **Upload and share** option to upload an attachment to OneDrive and
20549
20669
  * include a link to the file in the mail item. However, since only a link is included, `getAttachmentsAsync` doesn't return this attachment.
20550
20670
  *
20551
20671
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
20552
20672
  * type `Office.AsyncResult`. If the call fails, the `asyncResult.error` property will contain an error code with the reason for
20553
- * the failure.
20673
+ * the failure. If the call succeeds, an array of `AttachmentDetailsCompose` objects are returned in the `asyncResult.value` property.
20554
20674
  */
20555
20675
  getAttachmentsAsync(callback?: (asyncResult: Office.AsyncResult<AttachmentDetailsCompose[]>) => void): void;
20556
20676
  /**
@@ -35480,6 +35600,48 @@ declare namespace Excel {
35480
35600
  function run<T>(context: OfficeExtension.ClientRequestContext, batch: (context: Excel.RequestContext) => Promise<T>): Promise<T>;
35481
35601
  function postprocessBindingDescriptor(response: any): any;
35482
35602
  function getDataCommonPostprocess(response: any, callArgs: any): any;
35603
+ /**
35604
+ * Provides information about the ranges that raised the `onCalculationBusy` event, which triggers when the calculation is in progress in a worksheet.
35605
+ *
35606
+ * @remarks
35607
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
35608
+ * @beta
35609
+ */
35610
+ interface WorksheetCalculationBusyEventArgs {
35611
+ /**
35612
+ * The address of the ranges that began calculation.
35613
+ If multiple ranges began calculation, the string is a comma-separated list of those range addresses.
35614
+ *
35615
+ * @remarks
35616
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
35617
+ * @beta
35618
+ */
35619
+ address: string;
35620
+ /**
35621
+ * The source of the event. It can be local or remote (through co-authoring).
35622
+ *
35623
+ * @remarks
35624
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
35625
+ * @beta
35626
+ */
35627
+ source: Excel.EventSource | "Local" | "Remote";
35628
+ /**
35629
+ * Gets the type of the event. See `Excel.EventType` for details.
35630
+ *
35631
+ * @remarks
35632
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
35633
+ * @beta
35634
+ */
35635
+ type: "WorksheetCalculationBusy";
35636
+ /**
35637
+ * The ID of the worksheet within which the calculation occurred.
35638
+ *
35639
+ * @remarks
35640
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
35641
+ * @beta
35642
+ */
35643
+ worksheetId: string;
35644
+ }
35483
35645
  /**
35484
35646
  * Provides information about the local image.
35485
35647
  *
@@ -39281,6 +39443,9 @@ declare namespace Excel {
39281
39443
  interface WorksheetFormulaChangedEventArgs {
39282
39444
  /**
39283
39445
  * Gets an array of `FormulaChangedEventDetail` objects, which contain the details about the all of the changed formulas.
39446
+
39447
+ If the number of changed formulas or the size of the changed formula text exceeds a size limit, `formulaDetails`
39448
+ returns undefined. This indicates that something on the sheet has changed, but the details cannot be reported.
39284
39449
  *
39285
39450
  * @remarks
39286
39451
  * [Api set: ExcelApi 1.13]
@@ -40937,6 +41102,14 @@ declare namespace Excel {
40937
41102
  * [Api set: ExcelApi 1.9]
40938
41103
  */
40939
41104
  getSelectedRanges(): Excel.RangeAreas;
41105
+ /**
41106
+ * Returns whether the workbook is currently in preview mode.
41107
+ *
41108
+ * @remarks
41109
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
41110
+ * @beta
41111
+ */
41112
+ inPreviewMode(): OfficeExtension.ClientResult<boolean>;
40940
41113
  /**
40941
41114
  * Inserts the specified worksheets from a source workbook into the current workbook.
40942
41115
 
@@ -41603,6 +41776,27 @@ declare namespace Excel {
41603
41776
  * @eventproperty
41604
41777
  */
41605
41778
  readonly onCalculated: OfficeExtension.EventHandlers<Excel.WorksheetCalculatedEventArgs>;
41779
+ /**
41780
+ * Occurs when cells in the worksheet are being calculated asynchronously.
41781
+
41782
+ This event is triggered at the end of a calculation cycle, similar to the `onCalculated` event.
41783
+ Ordinarily, when calculation completes for a cell, the `onCalculated` event is triggered.
41784
+ However, if the calculation places a transient pending value (such as "#BUSY!") in the
41785
+ cell, then `onCalculationBusy` is triggered instead to indicate that the cell's state has changed,
41786
+ although calculation of the final value is not yet complete. When a subsequent
41787
+ calculation cycle completes the calculation for that cell, the `onCalculated` event is
41788
+ then triggered.
41789
+
41790
+ Formula features such as JavaScript User-Defined Functions and =PY formulas
41791
+ may trigger this event.
41792
+ *
41793
+ * @remarks
41794
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
41795
+ *
41796
+ * @eventproperty
41797
+ * @beta
41798
+ */
41799
+ readonly onCalculationBusy: OfficeExtension.EventHandlers<Excel.WorksheetCalculationBusyEventArgs>;
41606
41800
  /**
41607
41801
  * Occurs when data changes in a specific worksheet.
41608
41802
  *
@@ -41651,6 +41845,9 @@ declare namespace Excel {
41651
41845
  readonly onFormatChanged: OfficeExtension.EventHandlers<Excel.WorksheetFormatChangedEventArgs>;
41652
41846
  /**
41653
41847
  * Occurs when one or more formulas are changed in this worksheet. This event is for when the formula itself changes, not the data value resulting from the formula's calculation.
41848
+
41849
+ The event is only triggered when the cell already contains a formula.
41850
+ The new cell value may not include a formula. This event is not triggered when a formula is entered into a cell that did not previously contain a formula.
41654
41851
  *
41655
41852
  * @remarks
41656
41853
  * [Api set: ExcelApi 1.13]
@@ -41904,6 +42101,27 @@ declare namespace Excel {
41904
42101
  * @eventproperty
41905
42102
  */
41906
42103
  readonly onCalculated: OfficeExtension.EventHandlers<Excel.WorksheetCalculatedEventArgs>;
42104
+ /**
42105
+ * Occurs when cells in the worksheet are being calculated asynchronously.
42106
+
42107
+ This event is triggered at the end of a calculation cycle, similar to the `onCalculated` event.
42108
+ Ordinarily, when calculation completes for a cell, the `onCalculated` event is triggered.
42109
+ However, if the calculation places a transient pending value (such as "#BUSY!") in the
42110
+ cell, then `onCalculationBusy` is triggered instead to indicate that the cell's state has changed,
42111
+ although calculation of the final value is not yet complete. When a subsequent
42112
+ calculation cycle completes the calculation for that cell, the `onCalculated` event is
42113
+ then triggered.
42114
+
42115
+ Formula features such as JavaScript User-Defined Functions and =PY formulas
42116
+ may trigger this event.
42117
+ *
42118
+ * @remarks
42119
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
42120
+ *
42121
+ * @eventproperty
42122
+ * @beta
42123
+ */
42124
+ readonly onCalculationBusy: OfficeExtension.EventHandlers<Excel.WorksheetCalculationBusyEventArgs>;
41907
42125
  /**
41908
42126
  * Occurs when any worksheet in the workbook is changed.
41909
42127
  *
@@ -42679,7 +42897,8 @@ declare namespace Excel {
42679
42897
  readonly valueTypes: Excel.RangeValueType[][];
42680
42898
  /**
42681
42899
  * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
42682
- If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
42900
+ If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
42901
+ Locale-shaped strings (such as the date "19-8-2025" in nl-NL or fr-FR, format DD-MM-YYYY) are stored as text instead of as dates. To ensure dates are stored as dates, use a locale-aware API like `formulasLocal` or use a locale-neutral format like ISO (YYYY-MM-DD) or a numeric date serial.
42683
42902
  *
42684
42903
  * @remarks
42685
42904
  * [Api set: ExcelApi 1.1]
@@ -47510,7 +47729,7 @@ declare namespace Excel {
47510
47729
  * @param sourceData The `Range` object corresponding to the source data.
47511
47730
  * @param seriesBy Optional. Specifies the way columns or rows are used as data series on the chart. See `Excel.ChartSeriesBy` for details.
47512
47731
  */
47513
- add(type: "Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" | "3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" | "3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" | "LineStacked100" | "LineMarkers" | "LineMarkersStacked" | "LineMarkersStacked100" | "PieOfPie" | "PieExploded" | "3DPieExploded" | "BarOfPie" | "XYScatterSmooth" | "XYScatterSmoothNoMarkers" | "XYScatterLines" | "XYScatterLinesNoMarkers" | "AreaStacked" | "AreaStacked100" | "3DAreaStacked" | "3DAreaStacked100" | "DoughnutExploded" | "RadarMarkers" | "RadarFilled" | "Surface" | "SurfaceWireframe" | "SurfaceTopView" | "SurfaceTopViewWireframe" | "Bubble" | "Bubble3DEffect" | "StockHLC" | "StockOHLC" | "StockVHLC" | "StockVOHLC" | "CylinderColClustered" | "CylinderColStacked" | "CylinderColStacked100" | "CylinderBarClustered" | "CylinderBarStacked" | "CylinderBarStacked100" | "CylinderCol" | "ConeColClustered" | "ConeColStacked" | "ConeColStacked100" | "ConeBarClustered" | "ConeBarStacked" | "ConeBarStacked100" | "ConeCol" | "PyramidColClustered" | "PyramidColStacked" | "PyramidColStacked100" | "PyramidBarClustered" | "PyramidBarStacked" | "PyramidBarStacked100" | "PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" | "XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" | "Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" | "Sunburst" | "Funnel", sourceData: Range, seriesBy?: "Auto" | "Columns" | "Rows"): Excel.Chart;
47732
+ add(type: "Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" | "3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" | "3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" | "LineStacked100" | "LineMarkers" | "LineMarkersStacked" | "LineMarkersStacked100" | "PieOfPie" | "PieExploded" | "3DPieExploded" | "BarOfPie" | "XYScatterSmooth" | "XYScatterSmoothNoMarkers" | "XYScatterLines" | "XYScatterLinesNoMarkers" | "AreaStacked" | "AreaStacked100" | "3DAreaStacked" | "3DAreaStacked100" | "DoughnutExploded" | "RadarMarkers" | "RadarFilled" | "Surface" | "SurfaceWireframe" | "SurfaceTopView" | "SurfaceTopViewWireframe" | "Bubble" | "Bubble3DEffect" | "StockHLC" | "StockOHLC" | "StockVHLC" | "StockVOHLC" | "CylinderColClustered" | "CylinderColStacked" | "CylinderColStacked100" | "CylinderBarClustered" | "CylinderBarStacked" | "CylinderBarStacked100" | "CylinderCol" | "ConeColClustered" | "ConeColStacked" | "ConeColStacked100" | "ConeBarClustered" | "ConeBarStacked" | "ConeBarStacked100" | "ConeCol" | "PyramidColClustered" | "PyramidColStacked" | "PyramidColStacked100" | "PyramidBarClustered" | "PyramidBarStacked" | "PyramidBarStacked100" | "PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" | "XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" | "Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" | "Sunburst" | "Funnel" | "ColumnClusteredEx" | "ColumnStackedEx" | "ColumnStacked100Ex" | "LineEx" | "LineStackedEx" | "LineStacked100Ex" | "PieEx" | "DoughnutEx" | "BarClusteredEx" | "BarStackedEx" | "BarStacked100Ex" | "AreaEx" | "AreaStackedEx" | "AreaStacked100Ex" | "XYScatterEx" | "BubbleEx", sourceData: Range, seriesBy?: "Auto" | "Columns" | "Rows"): Excel.Chart;
47514
47733
  /**
47515
47734
  * Returns the number of charts in the worksheet.
47516
47735
  *
@@ -47693,7 +47912,7 @@ declare namespace Excel {
47693
47912
  * @remarks
47694
47913
  * [Api set: ExcelApi 1.7]
47695
47914
  */
47696
- chartType: Excel.ChartType | "Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" | "3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" | "3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" | "LineStacked100" | "LineMarkers" | "LineMarkersStacked" | "LineMarkersStacked100" | "PieOfPie" | "PieExploded" | "3DPieExploded" | "BarOfPie" | "XYScatterSmooth" | "XYScatterSmoothNoMarkers" | "XYScatterLines" | "XYScatterLinesNoMarkers" | "AreaStacked" | "AreaStacked100" | "3DAreaStacked" | "3DAreaStacked100" | "DoughnutExploded" | "RadarMarkers" | "RadarFilled" | "Surface" | "SurfaceWireframe" | "SurfaceTopView" | "SurfaceTopViewWireframe" | "Bubble" | "Bubble3DEffect" | "StockHLC" | "StockOHLC" | "StockVHLC" | "StockVOHLC" | "CylinderColClustered" | "CylinderColStacked" | "CylinderColStacked100" | "CylinderBarClustered" | "CylinderBarStacked" | "CylinderBarStacked100" | "CylinderCol" | "ConeColClustered" | "ConeColStacked" | "ConeColStacked100" | "ConeBarClustered" | "ConeBarStacked" | "ConeBarStacked100" | "ConeCol" | "PyramidColClustered" | "PyramidColStacked" | "PyramidColStacked100" | "PyramidBarClustered" | "PyramidBarStacked" | "PyramidBarStacked100" | "PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" | "XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" | "Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" | "Sunburst" | "Funnel";
47915
+ chartType: Excel.ChartType | "Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" | "3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" | "3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" | "LineStacked100" | "LineMarkers" | "LineMarkersStacked" | "LineMarkersStacked100" | "PieOfPie" | "PieExploded" | "3DPieExploded" | "BarOfPie" | "XYScatterSmooth" | "XYScatterSmoothNoMarkers" | "XYScatterLines" | "XYScatterLinesNoMarkers" | "AreaStacked" | "AreaStacked100" | "3DAreaStacked" | "3DAreaStacked100" | "DoughnutExploded" | "RadarMarkers" | "RadarFilled" | "Surface" | "SurfaceWireframe" | "SurfaceTopView" | "SurfaceTopViewWireframe" | "Bubble" | "Bubble3DEffect" | "StockHLC" | "StockOHLC" | "StockVHLC" | "StockVOHLC" | "CylinderColClustered" | "CylinderColStacked" | "CylinderColStacked100" | "CylinderBarClustered" | "CylinderBarStacked" | "CylinderBarStacked100" | "CylinderCol" | "ConeColClustered" | "ConeColStacked" | "ConeColStacked100" | "ConeBarClustered" | "ConeBarStacked" | "ConeBarStacked100" | "ConeCol" | "PyramidColClustered" | "PyramidColStacked" | "PyramidColStacked100" | "PyramidBarClustered" | "PyramidBarStacked" | "PyramidBarStacked100" | "PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" | "XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" | "Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" | "Sunburst" | "Funnel" | "ColumnClusteredEx" | "ColumnStackedEx" | "ColumnStacked100Ex" | "LineEx" | "LineStackedEx" | "LineStacked100Ex" | "PieEx" | "DoughnutEx" | "BarClusteredEx" | "BarStackedEx" | "BarStacked100Ex" | "AreaEx" | "AreaStackedEx" | "AreaStacked100Ex" | "XYScatterEx" | "BubbleEx";
47697
47916
  /**
47698
47917
  * Specifies the way that blank cells are plotted on a chart.
47699
47918
  *
@@ -48253,7 +48472,7 @@ declare namespace Excel {
48253
48472
  * @remarks
48254
48473
  * [Api set: ExcelApi 1.7]
48255
48474
  */
48256
- chartType: Excel.ChartType | "Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" | "3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" | "3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" | "LineStacked100" | "LineMarkers" | "LineMarkersStacked" | "LineMarkersStacked100" | "PieOfPie" | "PieExploded" | "3DPieExploded" | "BarOfPie" | "XYScatterSmooth" | "XYScatterSmoothNoMarkers" | "XYScatterLines" | "XYScatterLinesNoMarkers" | "AreaStacked" | "AreaStacked100" | "3DAreaStacked" | "3DAreaStacked100" | "DoughnutExploded" | "RadarMarkers" | "RadarFilled" | "Surface" | "SurfaceWireframe" | "SurfaceTopView" | "SurfaceTopViewWireframe" | "Bubble" | "Bubble3DEffect" | "StockHLC" | "StockOHLC" | "StockVHLC" | "StockVOHLC" | "CylinderColClustered" | "CylinderColStacked" | "CylinderColStacked100" | "CylinderBarClustered" | "CylinderBarStacked" | "CylinderBarStacked100" | "CylinderCol" | "ConeColClustered" | "ConeColStacked" | "ConeColStacked100" | "ConeBarClustered" | "ConeBarStacked" | "ConeBarStacked100" | "ConeCol" | "PyramidColClustered" | "PyramidColStacked" | "PyramidColStacked100" | "PyramidBarClustered" | "PyramidBarStacked" | "PyramidBarStacked100" | "PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" | "XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" | "Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" | "Sunburst" | "Funnel";
48475
+ chartType: Excel.ChartType | "Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" | "3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" | "3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" | "LineStacked100" | "LineMarkers" | "LineMarkersStacked" | "LineMarkersStacked100" | "PieOfPie" | "PieExploded" | "3DPieExploded" | "BarOfPie" | "XYScatterSmooth" | "XYScatterSmoothNoMarkers" | "XYScatterLines" | "XYScatterLinesNoMarkers" | "AreaStacked" | "AreaStacked100" | "3DAreaStacked" | "3DAreaStacked100" | "DoughnutExploded" | "RadarMarkers" | "RadarFilled" | "Surface" | "SurfaceWireframe" | "SurfaceTopView" | "SurfaceTopViewWireframe" | "Bubble" | "Bubble3DEffect" | "StockHLC" | "StockOHLC" | "StockVHLC" | "StockVOHLC" | "CylinderColClustered" | "CylinderColStacked" | "CylinderColStacked100" | "CylinderBarClustered" | "CylinderBarStacked" | "CylinderBarStacked100" | "CylinderCol" | "ConeColClustered" | "ConeColStacked" | "ConeColStacked100" | "ConeBarClustered" | "ConeBarStacked" | "ConeBarStacked100" | "ConeCol" | "PyramidColClustered" | "PyramidColStacked" | "PyramidColStacked100" | "PyramidBarClustered" | "PyramidBarStacked" | "PyramidBarStacked100" | "PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" | "XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" | "Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" | "Sunburst" | "Funnel" | "ColumnClusteredEx" | "ColumnStackedEx" | "ColumnStacked100Ex" | "LineEx" | "LineStackedEx" | "LineStacked100Ex" | "PieEx" | "DoughnutEx" | "BarClusteredEx" | "BarStackedEx" | "BarStacked100Ex" | "AreaEx" | "AreaStackedEx" | "AreaStacked100Ex" | "XYScatterEx" | "BubbleEx";
48257
48476
  /**
48258
48477
  * Represents the doughnut hole size of a chart series. Only valid on doughnut and doughnut exploded charts.
48259
48478
  Throws an `InvalidArgument` error on invalid charts.
@@ -64065,7 +64284,87 @@ declare namespace Excel {
64065
64284
  * @remarks
64066
64285
  * [Api set: ExcelApi 1.9]
64067
64286
  */
64068
- funnel = "Funnel"
64287
+ funnel = "Funnel",
64288
+ /**
64289
+ * @remarks
64290
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64291
+ */
64292
+ columnClusteredEx = "ColumnClusteredEx",
64293
+ /**
64294
+ * @remarks
64295
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64296
+ */
64297
+ columnStackedEx = "ColumnStackedEx",
64298
+ /**
64299
+ * @remarks
64300
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64301
+ */
64302
+ columnStacked100Ex = "ColumnStacked100Ex",
64303
+ /**
64304
+ * @remarks
64305
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64306
+ */
64307
+ lineEx = "LineEx",
64308
+ /**
64309
+ * @remarks
64310
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64311
+ */
64312
+ lineStackedEx = "LineStackedEx",
64313
+ /**
64314
+ * @remarks
64315
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64316
+ */
64317
+ lineStacked100Ex = "LineStacked100Ex",
64318
+ /**
64319
+ * @remarks
64320
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64321
+ */
64322
+ pieEx = "PieEx",
64323
+ /**
64324
+ * @remarks
64325
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64326
+ */
64327
+ doughnutEx = "DoughnutEx",
64328
+ /**
64329
+ * @remarks
64330
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64331
+ */
64332
+ barClusteredEx = "BarClusteredEx",
64333
+ /**
64334
+ * @remarks
64335
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64336
+ */
64337
+ barStackedEx = "BarStackedEx",
64338
+ /**
64339
+ * @remarks
64340
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64341
+ */
64342
+ barStacked100Ex = "BarStacked100Ex",
64343
+ /**
64344
+ * @remarks
64345
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64346
+ */
64347
+ areaEx = "AreaEx",
64348
+ /**
64349
+ * @remarks
64350
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64351
+ */
64352
+ areaStackedEx = "AreaStackedEx",
64353
+ /**
64354
+ * @remarks
64355
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64356
+ */
64357
+ areaStacked100Ex = "AreaStacked100Ex",
64358
+ /**
64359
+ * @remarks
64360
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64361
+ */
64362
+ xyscatterEx = "XYScatterEx",
64363
+ /**
64364
+ * @remarks
64365
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
64366
+ */
64367
+ bubbleEx = "BubbleEx"
64069
64368
  }
64070
64369
  /**
64071
64370
  * @remarks
@@ -66967,6 +67266,62 @@ declare namespace Excel {
66967
67266
  * [Api set: ExcelApi 1.7]
66968
67267
  */
66969
67268
  worksheetMoved = "WorksheetMoved",
67269
+ /**
67270
+ * ShapeAdded represents the type of event registered when a shape has been added to a ShapeCollection.
67271
+ * @remarks
67272
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
67273
+ * @beta
67274
+ */
67275
+ shapeAdded = "ShapeAdded",
67276
+ /**
67277
+ * ShapeDeleted represents the type of event registered when a shape has been deleted from a ShapeCollection.
67278
+ * @remarks
67279
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
67280
+ * @beta
67281
+ */
67282
+ shapeDeleted = "ShapeDeleted",
67283
+ /**
67284
+ * PivotTableAdded represents the type of event registered when a PivotTable has been added to a PivotTableCollection.
67285
+ * @remarks
67286
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
67287
+ * @beta
67288
+ */
67289
+ pivotTableAdded = "PivotTableAdded",
67290
+ /**
67291
+ * PivotTableDeleted represents the type of event registered when a PivotTable has been deleted from a PivotTableCollection.
67292
+ * @remarks
67293
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
67294
+ * @beta
67295
+ */
67296
+ pivotTableDeleted = "PivotTableDeleted",
67297
+ /**
67298
+ * NamedItemAdded represents the type of event registered when a NamedItem has been added to a NamedItemCollection.
67299
+ * @remarks
67300
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
67301
+ * @beta
67302
+ */
67303
+ namedItemAdded = "NamedItemAdded",
67304
+ /**
67305
+ * NamedItemDeleted represents the type of event registered when a NamedItem has been deleted from a NamedItemCollection.
67306
+ * @remarks
67307
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
67308
+ * @beta
67309
+ */
67310
+ namedItemDeleted = "NamedItemDeleted",
67311
+ /**
67312
+ * WorksheetNavigationObjectChanged represents the type of event registered when a navigation object has changed on a worksheet.
67313
+ * @remarks
67314
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
67315
+ * @beta
67316
+ */
67317
+ worksheetNavigationObjectChanged = "WorksheetNavigationObjectChanged",
67318
+ /**
67319
+ * WorkbookNavigationObjectChanged represents the type of event registered when a navigation object has changed on a workbook.
67320
+ * @remarks
67321
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
67322
+ * @beta
67323
+ */
67324
+ workbookNavigationObjectChanged = "WorkbookNavigationObjectChanged",
66970
67325
  /**
66971
67326
  * WorksheetRowHeightChanged represents the type of event registered when the height of a worksheet row is changed.
66972
67327
  * @remarks
@@ -67030,7 +67385,20 @@ declare namespace Excel {
67030
67385
  * @remarks
67031
67386
  * [Api set: ExcelApi BETA (PREVIEW ONLY)]
67032
67387
  */
67033
- augmentationLoopUploadStatusChanged = "AugmentationLoopUploadStatusChanged"
67388
+ augmentationLoopUploadStatusChanged = "AugmentationLoopUploadStatusChanged",
67389
+ /**
67390
+ * `WorksheetCalculationBusy` represents the type of event registered on a `Worksheet` or `WorksheetCollection` and occurs when a cell enters a busy calculation state.
67391
+ * @remarks
67392
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
67393
+ * @beta
67394
+ */
67395
+ worksheetCalculationBusy = "WorksheetCalculationBusy",
67396
+ /**
67397
+ * `WorkbookPreviewDirtied` represents the type of event registered when workbook preview mode has been dirtied.
67398
+ * @remarks
67399
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
67400
+ */
67401
+ workbookPreviewDirtied = "WorkbookPreviewDirtied"
67034
67402
  }
67035
67403
  /**
67036
67404
  * @remarks
@@ -75725,7 +76093,7 @@ declare namespace Excel {
75725
76093
  * @remarks
75726
76094
  * [Api set: ExcelApi 1.7]
75727
76095
  */
75728
- chartType?: Excel.ChartType | "Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" | "3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" | "3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" | "LineStacked100" | "LineMarkers" | "LineMarkersStacked" | "LineMarkersStacked100" | "PieOfPie" | "PieExploded" | "3DPieExploded" | "BarOfPie" | "XYScatterSmooth" | "XYScatterSmoothNoMarkers" | "XYScatterLines" | "XYScatterLinesNoMarkers" | "AreaStacked" | "AreaStacked100" | "3DAreaStacked" | "3DAreaStacked100" | "DoughnutExploded" | "RadarMarkers" | "RadarFilled" | "Surface" | "SurfaceWireframe" | "SurfaceTopView" | "SurfaceTopViewWireframe" | "Bubble" | "Bubble3DEffect" | "StockHLC" | "StockOHLC" | "StockVHLC" | "StockVOHLC" | "CylinderColClustered" | "CylinderColStacked" | "CylinderColStacked100" | "CylinderBarClustered" | "CylinderBarStacked" | "CylinderBarStacked100" | "CylinderCol" | "ConeColClustered" | "ConeColStacked" | "ConeColStacked100" | "ConeBarClustered" | "ConeBarStacked" | "ConeBarStacked100" | "ConeCol" | "PyramidColClustered" | "PyramidColStacked" | "PyramidColStacked100" | "PyramidBarClustered" | "PyramidBarStacked" | "PyramidBarStacked100" | "PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" | "XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" | "Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" | "Sunburst" | "Funnel";
76096
+ chartType?: Excel.ChartType | "Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" | "3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" | "3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" | "LineStacked100" | "LineMarkers" | "LineMarkersStacked" | "LineMarkersStacked100" | "PieOfPie" | "PieExploded" | "3DPieExploded" | "BarOfPie" | "XYScatterSmooth" | "XYScatterSmoothNoMarkers" | "XYScatterLines" | "XYScatterLinesNoMarkers" | "AreaStacked" | "AreaStacked100" | "3DAreaStacked" | "3DAreaStacked100" | "DoughnutExploded" | "RadarMarkers" | "RadarFilled" | "Surface" | "SurfaceWireframe" | "SurfaceTopView" | "SurfaceTopViewWireframe" | "Bubble" | "Bubble3DEffect" | "StockHLC" | "StockOHLC" | "StockVHLC" | "StockVOHLC" | "CylinderColClustered" | "CylinderColStacked" | "CylinderColStacked100" | "CylinderBarClustered" | "CylinderBarStacked" | "CylinderBarStacked100" | "CylinderCol" | "ConeColClustered" | "ConeColStacked" | "ConeColStacked100" | "ConeBarClustered" | "ConeBarStacked" | "ConeBarStacked100" | "ConeCol" | "PyramidColClustered" | "PyramidColStacked" | "PyramidColStacked100" | "PyramidBarClustered" | "PyramidBarStacked" | "PyramidBarStacked100" | "PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" | "XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" | "Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" | "Sunburst" | "Funnel" | "ColumnClusteredEx" | "ColumnStackedEx" | "ColumnStacked100Ex" | "LineEx" | "LineStackedEx" | "LineStacked100Ex" | "PieEx" | "DoughnutEx" | "BarClusteredEx" | "BarStackedEx" | "BarStacked100Ex" | "AreaEx" | "AreaStackedEx" | "AreaStacked100Ex" | "XYScatterEx" | "BubbleEx";
75729
76097
  /**
75730
76098
  * Specifies the way that blank cells are plotted on a chart.
75731
76099
  *
@@ -75950,7 +76318,7 @@ declare namespace Excel {
75950
76318
  * @remarks
75951
76319
  * [Api set: ExcelApi 1.7]
75952
76320
  */
75953
- chartType?: Excel.ChartType | "Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" | "3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" | "3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" | "LineStacked100" | "LineMarkers" | "LineMarkersStacked" | "LineMarkersStacked100" | "PieOfPie" | "PieExploded" | "3DPieExploded" | "BarOfPie" | "XYScatterSmooth" | "XYScatterSmoothNoMarkers" | "XYScatterLines" | "XYScatterLinesNoMarkers" | "AreaStacked" | "AreaStacked100" | "3DAreaStacked" | "3DAreaStacked100" | "DoughnutExploded" | "RadarMarkers" | "RadarFilled" | "Surface" | "SurfaceWireframe" | "SurfaceTopView" | "SurfaceTopViewWireframe" | "Bubble" | "Bubble3DEffect" | "StockHLC" | "StockOHLC" | "StockVHLC" | "StockVOHLC" | "CylinderColClustered" | "CylinderColStacked" | "CylinderColStacked100" | "CylinderBarClustered" | "CylinderBarStacked" | "CylinderBarStacked100" | "CylinderCol" | "ConeColClustered" | "ConeColStacked" | "ConeColStacked100" | "ConeBarClustered" | "ConeBarStacked" | "ConeBarStacked100" | "ConeCol" | "PyramidColClustered" | "PyramidColStacked" | "PyramidColStacked100" | "PyramidBarClustered" | "PyramidBarStacked" | "PyramidBarStacked100" | "PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" | "XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" | "Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" | "Sunburst" | "Funnel";
76321
+ chartType?: Excel.ChartType | "Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" | "3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" | "3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" | "LineStacked100" | "LineMarkers" | "LineMarkersStacked" | "LineMarkersStacked100" | "PieOfPie" | "PieExploded" | "3DPieExploded" | "BarOfPie" | "XYScatterSmooth" | "XYScatterSmoothNoMarkers" | "XYScatterLines" | "XYScatterLinesNoMarkers" | "AreaStacked" | "AreaStacked100" | "3DAreaStacked" | "3DAreaStacked100" | "DoughnutExploded" | "RadarMarkers" | "RadarFilled" | "Surface" | "SurfaceWireframe" | "SurfaceTopView" | "SurfaceTopViewWireframe" | "Bubble" | "Bubble3DEffect" | "StockHLC" | "StockOHLC" | "StockVHLC" | "StockVOHLC" | "CylinderColClustered" | "CylinderColStacked" | "CylinderColStacked100" | "CylinderBarClustered" | "CylinderBarStacked" | "CylinderBarStacked100" | "CylinderCol" | "ConeColClustered" | "ConeColStacked" | "ConeColStacked100" | "ConeBarClustered" | "ConeBarStacked" | "ConeBarStacked100" | "ConeCol" | "PyramidColClustered" | "PyramidColStacked" | "PyramidColStacked100" | "PyramidBarClustered" | "PyramidBarStacked" | "PyramidBarStacked100" | "PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" | "XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" | "Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" | "Sunburst" | "Funnel" | "ColumnClusteredEx" | "ColumnStackedEx" | "ColumnStacked100Ex" | "LineEx" | "LineStackedEx" | "LineStacked100Ex" | "PieEx" | "DoughnutEx" | "BarClusteredEx" | "BarStackedEx" | "BarStacked100Ex" | "AreaEx" | "AreaStackedEx" | "AreaStacked100Ex" | "XYScatterEx" | "BubbleEx";
75954
76322
  /**
75955
76323
  * Represents the doughnut hole size of a chart series. Only valid on doughnut and doughnut exploded charts.
75956
76324
  Throws an `InvalidArgument` error on invalid charts.
@@ -82477,7 +82845,7 @@ declare namespace Excel {
82477
82845
  * @remarks
82478
82846
  * [Api set: ExcelApi 1.7]
82479
82847
  */
82480
- chartType?: Excel.ChartType | "Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" | "3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" | "3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" | "LineStacked100" | "LineMarkers" | "LineMarkersStacked" | "LineMarkersStacked100" | "PieOfPie" | "PieExploded" | "3DPieExploded" | "BarOfPie" | "XYScatterSmooth" | "XYScatterSmoothNoMarkers" | "XYScatterLines" | "XYScatterLinesNoMarkers" | "AreaStacked" | "AreaStacked100" | "3DAreaStacked" | "3DAreaStacked100" | "DoughnutExploded" | "RadarMarkers" | "RadarFilled" | "Surface" | "SurfaceWireframe" | "SurfaceTopView" | "SurfaceTopViewWireframe" | "Bubble" | "Bubble3DEffect" | "StockHLC" | "StockOHLC" | "StockVHLC" | "StockVOHLC" | "CylinderColClustered" | "CylinderColStacked" | "CylinderColStacked100" | "CylinderBarClustered" | "CylinderBarStacked" | "CylinderBarStacked100" | "CylinderCol" | "ConeColClustered" | "ConeColStacked" | "ConeColStacked100" | "ConeBarClustered" | "ConeBarStacked" | "ConeBarStacked100" | "ConeCol" | "PyramidColClustered" | "PyramidColStacked" | "PyramidColStacked100" | "PyramidBarClustered" | "PyramidBarStacked" | "PyramidBarStacked100" | "PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" | "XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" | "Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" | "Sunburst" | "Funnel";
82848
+ chartType?: Excel.ChartType | "Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" | "3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" | "3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" | "LineStacked100" | "LineMarkers" | "LineMarkersStacked" | "LineMarkersStacked100" | "PieOfPie" | "PieExploded" | "3DPieExploded" | "BarOfPie" | "XYScatterSmooth" | "XYScatterSmoothNoMarkers" | "XYScatterLines" | "XYScatterLinesNoMarkers" | "AreaStacked" | "AreaStacked100" | "3DAreaStacked" | "3DAreaStacked100" | "DoughnutExploded" | "RadarMarkers" | "RadarFilled" | "Surface" | "SurfaceWireframe" | "SurfaceTopView" | "SurfaceTopViewWireframe" | "Bubble" | "Bubble3DEffect" | "StockHLC" | "StockOHLC" | "StockVHLC" | "StockVOHLC" | "CylinderColClustered" | "CylinderColStacked" | "CylinderColStacked100" | "CylinderBarClustered" | "CylinderBarStacked" | "CylinderBarStacked100" | "CylinderCol" | "ConeColClustered" | "ConeColStacked" | "ConeColStacked100" | "ConeBarClustered" | "ConeBarStacked" | "ConeBarStacked100" | "ConeCol" | "PyramidColClustered" | "PyramidColStacked" | "PyramidColStacked100" | "PyramidBarClustered" | "PyramidBarStacked" | "PyramidBarStacked100" | "PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" | "XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" | "Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" | "Sunburst" | "Funnel" | "ColumnClusteredEx" | "ColumnStackedEx" | "ColumnStacked100Ex" | "LineEx" | "LineStackedEx" | "LineStacked100Ex" | "PieEx" | "DoughnutEx" | "BarClusteredEx" | "BarStackedEx" | "BarStacked100Ex" | "AreaEx" | "AreaStackedEx" | "AreaStacked100Ex" | "XYScatterEx" | "BubbleEx";
82481
82849
  /**
82482
82850
  * Specifies the way that blank cells are plotted on a chart.
82483
82851
  *
@@ -82723,7 +83091,7 @@ declare namespace Excel {
82723
83091
  * @remarks
82724
83092
  * [Api set: ExcelApi 1.7]
82725
83093
  */
82726
- chartType?: Excel.ChartType | "Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" | "3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" | "3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" | "LineStacked100" | "LineMarkers" | "LineMarkersStacked" | "LineMarkersStacked100" | "PieOfPie" | "PieExploded" | "3DPieExploded" | "BarOfPie" | "XYScatterSmooth" | "XYScatterSmoothNoMarkers" | "XYScatterLines" | "XYScatterLinesNoMarkers" | "AreaStacked" | "AreaStacked100" | "3DAreaStacked" | "3DAreaStacked100" | "DoughnutExploded" | "RadarMarkers" | "RadarFilled" | "Surface" | "SurfaceWireframe" | "SurfaceTopView" | "SurfaceTopViewWireframe" | "Bubble" | "Bubble3DEffect" | "StockHLC" | "StockOHLC" | "StockVHLC" | "StockVOHLC" | "CylinderColClustered" | "CylinderColStacked" | "CylinderColStacked100" | "CylinderBarClustered" | "CylinderBarStacked" | "CylinderBarStacked100" | "CylinderCol" | "ConeColClustered" | "ConeColStacked" | "ConeColStacked100" | "ConeBarClustered" | "ConeBarStacked" | "ConeBarStacked100" | "ConeCol" | "PyramidColClustered" | "PyramidColStacked" | "PyramidColStacked100" | "PyramidBarClustered" | "PyramidBarStacked" | "PyramidBarStacked100" | "PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" | "XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" | "Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" | "Sunburst" | "Funnel";
83094
+ chartType?: Excel.ChartType | "Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" | "3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" | "3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" | "LineStacked100" | "LineMarkers" | "LineMarkersStacked" | "LineMarkersStacked100" | "PieOfPie" | "PieExploded" | "3DPieExploded" | "BarOfPie" | "XYScatterSmooth" | "XYScatterSmoothNoMarkers" | "XYScatterLines" | "XYScatterLinesNoMarkers" | "AreaStacked" | "AreaStacked100" | "3DAreaStacked" | "3DAreaStacked100" | "DoughnutExploded" | "RadarMarkers" | "RadarFilled" | "Surface" | "SurfaceWireframe" | "SurfaceTopView" | "SurfaceTopViewWireframe" | "Bubble" | "Bubble3DEffect" | "StockHLC" | "StockOHLC" | "StockVHLC" | "StockVOHLC" | "CylinderColClustered" | "CylinderColStacked" | "CylinderColStacked100" | "CylinderBarClustered" | "CylinderBarStacked" | "CylinderBarStacked100" | "CylinderCol" | "ConeColClustered" | "ConeColStacked" | "ConeColStacked100" | "ConeBarClustered" | "ConeBarStacked" | "ConeBarStacked100" | "ConeCol" | "PyramidColClustered" | "PyramidColStacked" | "PyramidColStacked100" | "PyramidBarClustered" | "PyramidBarStacked" | "PyramidBarStacked100" | "PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" | "XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" | "Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" | "Sunburst" | "Funnel" | "ColumnClusteredEx" | "ColumnStackedEx" | "ColumnStacked100Ex" | "LineEx" | "LineStackedEx" | "LineStacked100Ex" | "PieEx" | "DoughnutEx" | "BarClusteredEx" | "BarStackedEx" | "BarStacked100Ex" | "AreaEx" | "AreaStackedEx" | "AreaStacked100Ex" | "XYScatterEx" | "BubbleEx";
82727
83095
  /**
82728
83096
  * Represents the doughnut hole size of a chart series. Only valid on doughnut and doughnut exploded charts.
82729
83097
  Throws an `InvalidArgument` error on invalid charts.
@@ -144050,7 +144418,7 @@ declare namespace Word {
144050
144418
  unit?: Word.OperationUnit | "Character" | "Word" | "Sentence" | "Paragraph" | "Line" | "Story" | "Screen" | "Section" | "Column" | "Row" | "Window" | "Cell" | "CharacterFormat" | "ParagraphFormat" | "Table" | "Item";
144051
144419
  }
144052
144420
  /**
144053
- * Represents the options for the {@link Word.Selection | Selection.next} method.
144421
+ * Represents the options for the {@link Word.Selection | Selection.getNextRange} method.
144054
144422
  *
144055
144423
  * @remarks
144056
144424
  * [Api set: WordApiDesktop 1.4]
@@ -144072,7 +144440,7 @@ declare namespace Word {
144072
144440
  unit?: Word.OperationUnit | "Character" | "Word" | "Sentence" | "Paragraph" | "Line" | "Story" | "Screen" | "Section" | "Column" | "Row" | "Window" | "Cell" | "CharacterFormat" | "ParagraphFormat" | "Table" | "Item";
144073
144441
  }
144074
144442
  /**
144075
- * Represents the options for the {@link Word.Selection | Selection.previous} method.
144443
+ * Represents the options for the {@link Word.Selection | Selection.getPreviousRange} method.
144076
144444
  *
144077
144445
  * @remarks
144078
144446
  * [Api set: WordApiDesktop 1.4]
@@ -148833,7 +149201,7 @@ declare namespace Word {
148833
149201
  /** An interface for updating data on the `CommentContentRange` object, for use in `commentContentRange.set({ ... })`. */
148834
149202
  interface CommentContentRangeUpdateData {
148835
149203
  /**
148836
- * Specifies a value that indicates whether the comment text is bold.
149204
+ * Specifies whether the comment text is bold.
148837
149205
  *
148838
149206
  * @remarks
148839
149207
  * [Api set: WordApi 1.4]
@@ -148847,21 +149215,21 @@ declare namespace Word {
148847
149215
  */
148848
149216
  hyperlink?: string;
148849
149217
  /**
148850
- * Specifies a value that indicates whether the comment text is italicized.
149218
+ * Specifies whether the comment text is italicized.
148851
149219
  *
148852
149220
  * @remarks
148853
149221
  * [Api set: WordApi 1.4]
148854
149222
  */
148855
149223
  italic?: boolean;
148856
149224
  /**
148857
- * Specifies a value that indicates whether the comment text has a strikethrough.
149225
+ * Specifies whether the comment text has a strikethrough.
148858
149226
  *
148859
149227
  * @remarks
148860
149228
  * [Api set: WordApi 1.4]
148861
149229
  */
148862
149230
  strikeThrough?: boolean;
148863
149231
  /**
148864
- * Specifies a value that indicates the comment text's underline type. `none` if the comment text isn't underlined.
149232
+ * Specifies the comment text's underline type. `none` if the comment text isn't underlined.
148865
149233
  *
148866
149234
  * @remarks
148867
149235
  * [Api set: WordApi 1.4]
@@ -154637,7 +155005,7 @@ declare namespace Word {
154637
155005
  */
154638
155006
  styleBuiltIn?: Word.BuiltInStyleName | "Other" | "Normal" | "Heading1" | "Heading2" | "Heading3" | "Heading4" | "Heading5" | "Heading6" | "Heading7" | "Heading8" | "Heading9" | "Toc1" | "Toc2" | "Toc3" | "Toc4" | "Toc5" | "Toc6" | "Toc7" | "Toc8" | "Toc9" | "FootnoteText" | "Header" | "Footer" | "Caption" | "FootnoteReference" | "EndnoteReference" | "EndnoteText" | "Title" | "Subtitle" | "Hyperlink" | "Strong" | "Emphasis" | "NoSpacing" | "ListParagraph" | "Quote" | "IntenseQuote" | "SubtleEmphasis" | "IntenseEmphasis" | "SubtleReference" | "IntenseReference" | "BookTitle" | "Bibliography" | "TocHeading" | "TableGrid" | "PlainTable1" | "PlainTable2" | "PlainTable3" | "PlainTable4" | "PlainTable5" | "TableGridLight" | "GridTable1Light" | "GridTable1Light_Accent1" | "GridTable1Light_Accent2" | "GridTable1Light_Accent3" | "GridTable1Light_Accent4" | "GridTable1Light_Accent5" | "GridTable1Light_Accent6" | "GridTable2" | "GridTable2_Accent1" | "GridTable2_Accent2" | "GridTable2_Accent3" | "GridTable2_Accent4" | "GridTable2_Accent5" | "GridTable2_Accent6" | "GridTable3" | "GridTable3_Accent1" | "GridTable3_Accent2" | "GridTable3_Accent3" | "GridTable3_Accent4" | "GridTable3_Accent5" | "GridTable3_Accent6" | "GridTable4" | "GridTable4_Accent1" | "GridTable4_Accent2" | "GridTable4_Accent3" | "GridTable4_Accent4" | "GridTable4_Accent5" | "GridTable4_Accent6" | "GridTable5Dark" | "GridTable5Dark_Accent1" | "GridTable5Dark_Accent2" | "GridTable5Dark_Accent3" | "GridTable5Dark_Accent4" | "GridTable5Dark_Accent5" | "GridTable5Dark_Accent6" | "GridTable6Colorful" | "GridTable6Colorful_Accent1" | "GridTable6Colorful_Accent2" | "GridTable6Colorful_Accent3" | "GridTable6Colorful_Accent4" | "GridTable6Colorful_Accent5" | "GridTable6Colorful_Accent6" | "GridTable7Colorful" | "GridTable7Colorful_Accent1" | "GridTable7Colorful_Accent2" | "GridTable7Colorful_Accent3" | "GridTable7Colorful_Accent4" | "GridTable7Colorful_Accent5" | "GridTable7Colorful_Accent6" | "ListTable1Light" | "ListTable1Light_Accent1" | "ListTable1Light_Accent2" | "ListTable1Light_Accent3" | "ListTable1Light_Accent4" | "ListTable1Light_Accent5" | "ListTable1Light_Accent6" | "ListTable2" | "ListTable2_Accent1" | "ListTable2_Accent2" | "ListTable2_Accent3" | "ListTable2_Accent4" | "ListTable2_Accent5" | "ListTable2_Accent6" | "ListTable3" | "ListTable3_Accent1" | "ListTable3_Accent2" | "ListTable3_Accent3" | "ListTable3_Accent4" | "ListTable3_Accent5" | "ListTable3_Accent6" | "ListTable4" | "ListTable4_Accent1" | "ListTable4_Accent2" | "ListTable4_Accent3" | "ListTable4_Accent4" | "ListTable4_Accent5" | "ListTable4_Accent6" | "ListTable5Dark" | "ListTable5Dark_Accent1" | "ListTable5Dark_Accent2" | "ListTable5Dark_Accent3" | "ListTable5Dark_Accent4" | "ListTable5Dark_Accent5" | "ListTable5Dark_Accent6" | "ListTable6Colorful" | "ListTable6Colorful_Accent1" | "ListTable6Colorful_Accent2" | "ListTable6Colorful_Accent3" | "ListTable6Colorful_Accent4" | "ListTable6Colorful_Accent5" | "ListTable6Colorful_Accent6" | "ListTable7Colorful" | "ListTable7Colorful_Accent1" | "ListTable7Colorful_Accent2" | "ListTable7Colorful_Accent3" | "ListTable7Colorful_Accent4" | "ListTable7Colorful_Accent5" | "ListTable7Colorful_Accent6";
154639
155007
  /**
154640
- * Gets the text of the body. Use the insertText method to insert text.
155008
+ * Gets the text of the body. Use the `insertText` method to insert text.
154641
155009
  *
154642
155010
  * @remarks
154643
155011
  * [Api set: WordApi 1.1]
@@ -155075,7 +155443,7 @@ declare namespace Word {
155075
155443
  /** An interface describing the data returned by calling `commentContentRange.toJSON()`. */
155076
155444
  interface CommentContentRangeData {
155077
155445
  /**
155078
- * Specifies a value that indicates whether the comment text is bold.
155446
+ * Specifies whether the comment text is bold.
155079
155447
  *
155080
155448
  * @remarks
155081
155449
  * [Api set: WordApi 1.4]
@@ -155096,14 +155464,14 @@ declare namespace Word {
155096
155464
  */
155097
155465
  isEmpty?: boolean;
155098
155466
  /**
155099
- * Specifies a value that indicates whether the comment text is italicized.
155467
+ * Specifies whether the comment text is italicized.
155100
155468
  *
155101
155469
  * @remarks
155102
155470
  * [Api set: WordApi 1.4]
155103
155471
  */
155104
155472
  italic?: boolean;
155105
155473
  /**
155106
- * Specifies a value that indicates whether the comment text has a strikethrough.
155474
+ * Specifies whether the comment text has a strikethrough.
155107
155475
  *
155108
155476
  * @remarks
155109
155477
  * [Api set: WordApi 1.4]
@@ -155117,7 +155485,7 @@ declare namespace Word {
155117
155485
  */
155118
155486
  text?: string;
155119
155487
  /**
155120
- * Specifies a value that indicates the comment text's underline type. `none` if the comment text isn't underlined.
155488
+ * Specifies the comment text's underline type. `none` if the comment text isn't underlined.
155121
155489
  *
155122
155490
  * @remarks
155123
155491
  * [Api set: WordApi 1.4]
@@ -163294,7 +163662,7 @@ declare namespace Word {
163294
163662
  */
163295
163663
  styleBuiltIn?: boolean;
163296
163664
  /**
163297
- * Gets the text of the body. Use the insertText method to insert text.
163665
+ * Gets the text of the body. Use the `insertText` method to insert text.
163298
163666
  *
163299
163667
  * @remarks
163300
163668
  * [Api set: WordApi 1.1]
@@ -164083,6 +164451,8 @@ declare namespace Word {
164083
164451
  resolved?: boolean;
164084
164452
  }
164085
164453
  /**
164454
+ * Represents a content range within a comment.
164455
+ *
164086
164456
  * @remarks
164087
164457
  * [Api set: WordApi 1.4]
164088
164458
  */
@@ -164092,7 +164462,7 @@ declare namespace Word {
164092
164462
  */
164093
164463
  $all?: boolean;
164094
164464
  /**
164095
- * Specifies a value that indicates whether the comment text is bold.
164465
+ * Specifies whether the comment text is bold.
164096
164466
  *
164097
164467
  * @remarks
164098
164468
  * [Api set: WordApi 1.4]
@@ -164113,14 +164483,14 @@ declare namespace Word {
164113
164483
  */
164114
164484
  isEmpty?: boolean;
164115
164485
  /**
164116
- * Specifies a value that indicates whether the comment text is italicized.
164486
+ * Specifies whether the comment text is italicized.
164117
164487
  *
164118
164488
  * @remarks
164119
164489
  * [Api set: WordApi 1.4]
164120
164490
  */
164121
164491
  italic?: boolean;
164122
164492
  /**
164123
- * Specifies a value that indicates whether the comment text has a strikethrough.
164493
+ * Specifies whether the comment text has a strikethrough.
164124
164494
  *
164125
164495
  * @remarks
164126
164496
  * [Api set: WordApi 1.4]
@@ -164134,7 +164504,7 @@ declare namespace Word {
164134
164504
  */
164135
164505
  text?: boolean;
164136
164506
  /**
164137
- * Specifies a value that indicates the comment text's underline type. `none` if the comment text isn't underlined.
164507
+ * Specifies the comment text's underline type. `none` if the comment text isn't underlined.
164138
164508
  *
164139
164509
  * @remarks
164140
164510
  * [Api set: WordApi 1.4]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js-preview",
3
- "version": "1.0.694",
3
+ "version": "1.0.696",
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",
@@ -46,7 +46,7 @@
46
46
  "scripts": {},
47
47
  "dependencies": {},
48
48
  "peerDependencies": {},
49
- "typesPublisherContentHash": "4045633aeaf34da475e5043824d0e1995cebc41e1d2bf08ca40757c47da34808",
49
+ "typesPublisherContentHash": "957ea6b05bfb01d8487c2cc04d2461733b71451437d855cd4c062726a86b22ad",
50
50
  "typeScriptVersion": "5.2",
51
51
  "nonNpm": true
52
52
  }