@types/office-js-preview 1.0.577 → 1.0.579

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: Tue, 25 Mar 2025 21:03:30 GMT
11
+ * Last updated: Tue, 01 Apr 2025 18:39:20 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
@@ -641,14 +641,20 @@ declare namespace Office {
641
641
  /**
642
642
  * Occurs in Outlook when an action is selected on a notification message with a defined
643
643
  * {@link https://learn.microsoft.com/javascript/api/outlook/office.notificationmessagedetails#actions | custom action}.
644
- * Currently, "Dismiss" is the only supported action that fires this event.
645
- *
646
- * **Important**: This event can only be handled in a task pane. Function commands can't register a handler for this event.
644
+ * Currently, **Dismiss** is the only supported action that fires this event.
647
645
  *
648
646
  * To add an event handler for the `InfobarClicked` event, use the `addHandlerAsync` method of the `Item` object.
649
647
  * The event handler receives an argument of type
650
648
  * {@link https://learn.microsoft.com/javascript/api/outlook/office.infobarclickedeventargs?view=outlook-js-1.10 | Office.InfobarClickedEventArgs}.
651
649
  *
650
+ * **Important**:
651
+ *
652
+ * - This event can only be handled in a task pane. Function commands can't register a handler for this event.
653
+ *
654
+ * - Although Outlook on Mac supports the `InsightMessage` notification type, it currently doesn't support the `InfobarClicked` event.
655
+ * To determine when the **Dismiss** action is selected from the notification, implement a handler for the `OnInfoBarDismissClicked` event instead.
656
+ * For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/autolaunch#supported-events | Configure your Outlook add-in for event-based activation}.
657
+ *
652
658
  * [Api set: Mailbox 1.10]
653
659
  */
654
660
  InfobarClicked,
@@ -97241,7 +97247,7 @@ declare namespace Word {
97241
97247
  * @remarks
97242
97248
  * [Api set: WordApi 1.1]
97243
97249
  *
97244
- * Note: Insertion isn't supported if the document being inserted contains an ActiveX control (likely in a form field). Consider replacing such a form field with a content control or other option appropriate for your scenario.
97250
+ * Insertion isn't supported if the document being inserted contains an ActiveX control (likely in a form field). Consider replacing such a form field with a content control or other option appropriate for your scenario.
97245
97251
  *
97246
97252
  * @param base64File Required. The Base64-encoded content of a .docx file.
97247
97253
  * @param insertLocation Required. The value must be 'Replace', 'Start', or 'End'.
@@ -98513,7 +98519,7 @@ declare namespace Word {
98513
98519
  * @remarks
98514
98520
  * [Api set: WordApi 1.1]
98515
98521
  *
98516
- * Note: Insertion isn't supported if the document being inserted contains an ActiveX control (likely in a form field). Consider replacing such a form field with a content control or other option appropriate for your scenario.
98522
+ * Insertion isn't supported if the document being inserted contains an ActiveX control (likely in a form field). Consider replacing such a form field with a content control or other option appropriate for your scenario.
98517
98523
  *
98518
98524
  * @param base64File Required. The Base64-encoded content of a .docx file.
98519
98525
  * @param insertLocation Required. The value must be 'Replace', 'Start', or 'End'. 'Replace' cannot be used with 'RichTextTable' and 'RichTextTableRow' content controls.
@@ -99939,7 +99945,7 @@ declare namespace Word {
99939
99945
  * @remarks
99940
99946
  * [Api set: WordApi 1.5]
99941
99947
  *
99942
- * Note: Insertion isn't supported if the document being inserted contains an ActiveX control (likely in a form field). Consider replacing such a form field with a content control or other option appropriate for your scenario.
99948
+ * Insertion isn't supported if the document being inserted contains an ActiveX control (likely in a form field). Consider replacing such a form field with a content control or other option appropriate for your scenario.
99943
99949
  *
99944
99950
  * @param base64File Required. The Base64-encoded content of a .docx file.
99945
99951
  * @param insertLocation Required. The value must be 'Replace', 'Start', or 'End'.
@@ -100241,7 +100247,7 @@ declare namespace Word {
100241
100247
  * @remarks
100242
100248
  * [Api set: WordApiHiddenDocument 1.5]
100243
100249
  *
100244
- * Note: Insertion isn't supported if the document being inserted contains an ActiveX control (likely in a form field). Consider replacing such a form field with a content control or other option appropriate for your scenario.
100250
+ * Insertion isn't supported if the document being inserted contains an ActiveX control (likely in a form field). Consider replacing such a form field with a content control or other option appropriate for your scenario.
100245
100251
  *
100246
100252
  * @param base64File Required. The Base64-encoded content of a .docx file.
100247
100253
  * @param insertLocation Required. The value must be 'Replace', 'Start', or 'End'.
@@ -100626,8 +100632,8 @@ declare namespace Word {
100626
100632
  *
100627
100633
  * Important: To learn more about which fields can be inserted, see the `Word.Range.insertField` API introduced in requirement set 1.5.
100628
100634
  * Support for managing fields is similar to what's available in the Word UI.
100629
- * However, while the Word UI on the web primarily only supports fields as read-only (see {@link https://support.microsoft.com/office/d8f46094-13c3-4966-98c3-259748f3caf1 | Field codes in Word for the web}),
100630
- * the `Addin` field is editable. To learn more about Word UI clients that more fully support fields,
100635
+ * However, the Word UI on the web primarily only supports fields as read-only (see {@link https://support.microsoft.com/office/d8f46094-13c3-4966-98c3-259748f3caf1 | Field codes in Word for the web}).
100636
+ * To learn more about Word UI clients that more fully support fields,
100631
100637
  * see the product list at the beginning of {@link https://support.microsoft.com/office/c429bbb0-8669-48a7-bd24-bab6ba6b06bb | Insert, edit, and view fields in Word}.
100632
100638
  */
100633
100639
  class Field extends OfficeExtension.ClientObject {
@@ -100828,10 +100834,10 @@ declare namespace Word {
100828
100834
  * @remarks
100829
100835
  * [Api set: WordApi 1.4]
100830
100836
  *
100831
- * Important: To learn more about which fields can be inserted, see the `Word.Range.insertField API` introduced in requirement set 1.5.
100837
+ * Important: To learn more about which fields can be inserted, see the `Word.Range.insertField` API introduced in requirement set 1.5.
100832
100838
  * Support for managing fields is similar to what's available in the Word UI.
100833
- * However, while the Word UI on the web primarily only supports fields as read-only (see {@link https://support.microsoft.com/office/d8f46094-13c3-4966-98c3-259748f3caf1 | Field codes in Word for the web}),
100834
- * the `Addin` field is editable. To learn more about Word UI clients that more fully support fields,
100839
+ * However, the Word UI on the web primarily only supports fields as read-only (see {@link https://support.microsoft.com/office/d8f46094-13c3-4966-98c3-259748f3caf1 | Field codes in Word for the web}).
100840
+ * To learn more about Word UI clients that more fully support fields,
100835
100841
  * see the product list at the beginning of {@link https://support.microsoft.com/office/c429bbb0-8669-48a7-bd24-bab6ba6b06bb | Insert, edit, and view fields in Word}.
100836
100842
  */
100837
100843
  class FieldCollection extends OfficeExtension.ClientObject {
@@ -101205,7 +101211,7 @@ declare namespace Word {
101205
101211
  * @remarks
101206
101212
  * [Api set: WordApi 1.2]
101207
101213
  *
101208
- * Note: Insertion isn't supported if the document being inserted contains an ActiveX control (likely in a form field). Consider replacing such a form field with a content control or other option appropriate for your scenario.
101214
+ * Insertion isn't supported if the document being inserted contains an ActiveX control (likely in a form field). Consider replacing such a form field with a content control or other option appropriate for your scenario.
101209
101215
  *
101210
101216
  * @param base64File Required. The Base64-encoded content of a .docx file.
101211
101217
  * @param insertLocation Required. The value must be 'Before' or 'After'.
@@ -103018,7 +103024,7 @@ declare namespace Word {
103018
103024
  * @remarks
103019
103025
  * [Api set: WordApi 1.1]
103020
103026
  *
103021
- * Note: Insertion isn't supported if the document being inserted contains an ActiveX control (likely in a form field). Consider replacing such a form field with a content control or other option appropriate for your scenario.
103027
+ * Insertion isn't supported if the document being inserted contains an ActiveX control (likely in a form field). Consider replacing such a form field with a content control or other option appropriate for your scenario.
103022
103028
  *
103023
103029
  * @param base64File Required. The Base64-encoded content of a .docx file.
103024
103030
  * @param insertLocation Required. The value must be 'Replace', 'Start', or 'End'.
@@ -103898,19 +103904,8 @@ declare namespace Word {
103898
103904
  * @remarks
103899
103905
  * [Api set: WordApi 1.5]
103900
103906
  *
103901
- * Important:
103902
- *
103903
- * In Word on Windows and on Mac, the API supports inserting and managing all types listed in {@link Word.FieldType} except `Word.FieldType.others`.
103904
- *
103905
- * In Word on the web, the API supports inserting and managing the following field types.
103906
- *
103907
- * - `Word.FieldType.addin`
103908
- *
103909
- * - `Word.FieldType.date`
103910
- *
103911
- * - `Word.FieldType.hyperlink`
103912
- *
103913
- * - `Word.FieldType.toc`
103907
+ * Important: In Word on Windows and on Mac, the API supports inserting and managing all types listed in {@link Word.FieldType} except `Word.FieldType.others`.
103908
+ * In Word on the web, fields are mainly read-only. To learn more, see {@link https://learn.microsoft.com/office/dev/add-ins/word/fields-guidance | Use fields in your Word add-in}.
103914
103909
  *
103915
103910
  * @param insertLocation Required. The location relative to the range where the field will be inserted. The value must be 'Replace', 'Start', 'End', 'Before', or 'After'.
103916
103911
  * @param fieldType Optional. Can be any FieldType constant. The default value is Empty.
@@ -103924,19 +103919,8 @@ declare namespace Word {
103924
103919
  * @remarks
103925
103920
  * [Api set: WordApi 1.5]
103926
103921
  *
103927
- * Important:
103928
- *
103929
- * In Word on Windows and on Mac, the API supports inserting and managing all types listed in {@link Word.FieldType} except `Word.FieldType.others`.
103930
- *
103931
- * In Word on the web, the API supports inserting and managing the following field types.
103932
- *
103933
- * - `Word.FieldType.addin`
103934
- *
103935
- * - `Word.FieldType.date`
103936
- *
103937
- * - `Word.FieldType.hyperlink`
103938
- *
103939
- * - `Word.FieldType.toc`
103922
+ * Important: In Word on Windows and on Mac, the API supports inserting and managing all types listed in {@link Word.FieldType} except `Word.FieldType.others`.
103923
+ * In Word on the web, fields are mainly read-only. To learn more, see {@link https://learn.microsoft.com/office/dev/add-ins/word/fields-guidance | Use fields in your Word add-in}.
103940
103924
  *
103941
103925
  * @param insertLocation Required. The location relative to the range where the field will be inserted. The value must be 'Replace', 'Start', 'End', 'Before', or 'After'.
103942
103926
  * @param fieldType Optional. Can be any FieldType constant. The default value is Empty.
@@ -103950,7 +103934,7 @@ declare namespace Word {
103950
103934
  * @remarks
103951
103935
  * [Api set: WordApi 1.1]
103952
103936
  *
103953
- * Note: Insertion isn't supported if the document being inserted contains an ActiveX control (likely in a form field). Consider replacing such a form field with a content control or other option appropriate for your scenario.
103937
+ * Insertion isn't supported if the document being inserted contains an ActiveX control (likely in a form field). Consider replacing such a form field with a content control or other option appropriate for your scenario.
103954
103938
  *
103955
103939
  * @param base64File Required. The Base64-encoded content of a .docx file.
103956
103940
  * @param insertLocation Required. The value must be 'Replace', 'Start', 'End', 'Before', or 'After'.
@@ -107889,24 +107873,6 @@ declare namespace Word {
107889
107873
  * [Api set: WordApi 1.5]
107890
107874
  */
107891
107875
  contentControlAdded = "ContentControlAdded",
107892
- /**
107893
- * AnnotationAdded represents the event an annotation has been added to the document.
107894
- * @remarks
107895
- * [Api set: WordApiOnline 1.1]
107896
- */
107897
- annotationAdded = "AnnotationAdded",
107898
- /**
107899
- * AnnotationChanged represents the event an annotation has been updated in the document.
107900
- * @remarks
107901
- * [Api set: WordApiOnline 1.1]
107902
- */
107903
- annotationChanged = "AnnotationChanged",
107904
- /**
107905
- * AnnotationDeleted represents the event an annotation has been deleted from the document.
107906
- * @remarks
107907
- * [Api set: WordApiOnline 1.1]
107908
- */
107909
- annotationDeleted = "AnnotationDeleted",
107910
107876
  /**
107911
107877
  * Represents that one or more comments were deleted.
107912
107878
  * @remarks
@@ -107954,12 +107920,6 @@ declare namespace Word {
107954
107920
  * [Api set: WordApi 1.5]
107955
107921
  */
107956
107922
  contentControlExited = "ContentControlExited",
107957
- /**
107958
- * Represents that a word count has been changed.
107959
- * @remarks
107960
- * [Api set: WordApi Unknown Version, this API may or may not work on a client. This API may not be released to 3rd parties.]
107961
- */
107962
- documentWordCountChanged = "DocumentWordCountChanged",
107963
107923
  /**
107964
107924
  * Represents that one or more new paragraphs were added.
107965
107925
  * @remarks
@@ -108040,7 +108000,7 @@ declare namespace Word {
108040
108000
  * @remarks
108041
108001
  * [Api set: WordApi 1.5]
108042
108002
  */
108043
- eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "AnnotationAdded" | "AnnotationChanged" | "AnnotationDeleted" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "DocumentWordCountChanged" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108003
+ eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108044
108004
  /**
108045
108005
  * Gets the content control IDs.
108046
108006
  *
@@ -108069,7 +108029,7 @@ declare namespace Word {
108069
108029
  * @remarks
108070
108030
  * [Api set: WordApi 1.5]
108071
108031
  */
108072
- eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "AnnotationAdded" | "AnnotationChanged" | "AnnotationDeleted" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "DocumentWordCountChanged" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108032
+ eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108073
108033
  /**
108074
108034
  * Gets the content control IDs.
108075
108035
  *
@@ -108098,7 +108058,7 @@ declare namespace Word {
108098
108058
  * @remarks
108099
108059
  * [Api set: WordApi 1.5]
108100
108060
  */
108101
- eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "AnnotationAdded" | "AnnotationChanged" | "AnnotationDeleted" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "DocumentWordCountChanged" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108061
+ eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108102
108062
  /**
108103
108063
  * Gets the content control IDs.
108104
108064
  *
@@ -108127,7 +108087,7 @@ declare namespace Word {
108127
108087
  * @remarks
108128
108088
  * [Api set: WordApi 1.5]
108129
108089
  */
108130
- eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "AnnotationAdded" | "AnnotationChanged" | "AnnotationDeleted" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "DocumentWordCountChanged" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108090
+ eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108131
108091
  /**
108132
108092
  * Gets the content control IDs.
108133
108093
  *
@@ -108156,7 +108116,7 @@ declare namespace Word {
108156
108116
  * @remarks
108157
108117
  * [Api set: WordApi 1.5]
108158
108118
  */
108159
- eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "AnnotationAdded" | "AnnotationChanged" | "AnnotationDeleted" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "DocumentWordCountChanged" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108119
+ eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108160
108120
  /**
108161
108121
  * Gets the content control IDs.
108162
108122
  *
@@ -108185,7 +108145,7 @@ declare namespace Word {
108185
108145
  * @remarks
108186
108146
  * [Api set: WordApi 1.5]
108187
108147
  */
108188
- eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "AnnotationAdded" | "AnnotationChanged" | "AnnotationDeleted" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "DocumentWordCountChanged" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108148
+ eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108189
108149
  /**
108190
108150
  * Gets the content control IDs.
108191
108151
  *
@@ -108221,7 +108181,7 @@ declare namespace Word {
108221
108181
  * @remarks
108222
108182
  * [Api set: WordApi 1.6]
108223
108183
  */
108224
- type: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "AnnotationAdded" | "AnnotationChanged" | "AnnotationDeleted" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "DocumentWordCountChanged" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108184
+ type: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108225
108185
  /**
108226
108186
  * Gets the unique IDs of the involved paragraphs. IDs are in standard 8-4-4-4-12 GUID format without curly braces and differ across sessions and coauthors.
108227
108187
  *
@@ -108250,7 +108210,7 @@ declare namespace Word {
108250
108210
  * @remarks
108251
108211
  * [Api set: WordApi 1.6]
108252
108212
  */
108253
- type: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "AnnotationAdded" | "AnnotationChanged" | "AnnotationDeleted" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "DocumentWordCountChanged" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108213
+ type: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108254
108214
  /**
108255
108215
  * Gets the unique IDs of the involved paragraphs. IDs are in standard 8-4-4-4-12 GUID format without curly braces and differ across sessions and coauthors.
108256
108216
  *
@@ -108279,7 +108239,7 @@ declare namespace Word {
108279
108239
  * @remarks
108280
108240
  * [Api set: WordApi 1.6]
108281
108241
  */
108282
- type: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "AnnotationAdded" | "AnnotationChanged" | "AnnotationDeleted" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "DocumentWordCountChanged" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108242
+ type: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108283
108243
  /**
108284
108244
  * Gets the unique IDs of the involved paragraphs. IDs are in standard 8-4-4-4-12 GUID format without curly braces and differ across sessions and coauthors.
108285
108245
  *
@@ -108327,7 +108287,7 @@ declare namespace Word {
108327
108287
  * [Api set: WordApi BETA (PREVIEW ONLY)]
108328
108288
  * @beta
108329
108289
  */
108330
- type: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "AnnotationAdded" | "AnnotationChanged" | "AnnotationDeleted" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "DocumentWordCountChanged" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108290
+ type: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
108331
108291
  }
108332
108292
  /**
108333
108293
  * A structure for the ID and reply IDs of this comment.
@@ -119269,8 +119229,8 @@ declare namespace Word {
119269
119229
  *
119270
119230
  * Important: To learn more about which fields can be inserted, see the `Word.Range.insertField` API introduced in requirement set 1.5.
119271
119231
  * Support for managing fields is similar to what's available in the Word UI.
119272
- * However, while the Word UI on the web primarily only supports fields as read-only (see {@link https://support.microsoft.com/office/d8f46094-13c3-4966-98c3-259748f3caf1 | Field codes in Word for the web}),
119273
- * the `Addin` field is editable. To learn more about Word UI clients that more fully support fields,
119232
+ * However, the Word UI on the web primarily only supports fields as read-only (see {@link https://support.microsoft.com/office/d8f46094-13c3-4966-98c3-259748f3caf1 | Field codes in Word for the web}).
119233
+ * To learn more about Word UI clients that more fully support fields,
119274
119234
  * see the product list at the beginning of {@link https://support.microsoft.com/office/c429bbb0-8669-48a7-bd24-bab6ba6b06bb | Insert, edit, and view fields in Word}.
119275
119235
  */
119276
119236
  interface FieldLoadOptions {
@@ -119385,10 +119345,10 @@ declare namespace Word {
119385
119345
  * @remarks
119386
119346
  * [Api set: WordApi 1.4]
119387
119347
  *
119388
- * Important: To learn more about which fields can be inserted, see the `Word.Range.insertField API` introduced in requirement set 1.5.
119348
+ * Important: To learn more about which fields can be inserted, see the `Word.Range.insertField` API introduced in requirement set 1.5.
119389
119349
  * Support for managing fields is similar to what's available in the Word UI.
119390
- * However, while the Word UI on the web primarily only supports fields as read-only (see {@link https://support.microsoft.com/office/d8f46094-13c3-4966-98c3-259748f3caf1 | Field codes in Word for the web}),
119391
- * the `Addin` field is editable. To learn more about Word UI clients that more fully support fields,
119350
+ * However, the Word UI on the web primarily only supports fields as read-only (see {@link https://support.microsoft.com/office/d8f46094-13c3-4966-98c3-259748f3caf1 | Field codes in Word for the web}).
119351
+ * To learn more about Word UI clients that more fully support fields,
119392
119352
  * see the product list at the beginning of {@link https://support.microsoft.com/office/c429bbb0-8669-48a7-bd24-bab6ba6b06bb | Insert, edit, and view fields in Word}.
119393
119353
  */
119394
119354
  interface FieldCollectionLoadOptions {
@@ -133498,7 +133458,7 @@ declare namespace PowerPoint {
133498
133458
  slideMasterId?: string;
133499
133459
  }
133500
133460
  /**
133501
- * Binding type enumeration.
133461
+ * Represents the possible binding types.
133502
133462
  *
133503
133463
  * @remarks
133504
133464
  * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js-preview",
3
- "version": "1.0.577",
3
+ "version": "1.0.579",
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": "eeae977d650313440db86ece9c37fe2a83438d6f64a8b815b33c84241fcbdb4d",
50
- "typeScriptVersion": "5.0",
49
+ "typesPublisherContentHash": "1700e3f24560876db50db4022f11637da640221032ca20eae19f8c191706d97b",
50
+ "typeScriptVersion": "5.1",
51
51
  "nonNpm": true
52
52
  }