Skip to content

Commit 5d2ea06

Browse files
authored
[scripts] Update to latest versioned-d.ts-tools (#2354)
* Update to versioned-d.ts-tools v0.7.0 with exclusion configs - Updated package.json to use versioned-d.ts-tools 0.7.0 - Created 50+ config files with proper exclusion settings - Excluded enums, static fields, and specified field patterns - Updated GenerateDocs.sh to use new config files - Fixed JSON BOM issues in config files - Regenerated documentation with new exclusions * Update tool output * Restore old config file link paths * Removing extra config files * Remove temp file
1 parent fb4e6af commit 5d2ea06

File tree

74 files changed

+2205
-348
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+2205
-348
lines changed

docs/includes/outlook-1_1.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
||[remove(name: string)](/javascript/api/outlook/office.customproperties#outlook-office-customproperties-remove-member(1))|Removes the specified property from the custom property collection.|
3636
||[saveAsync(asyncContext?: any)](/javascript/api/outlook/office.customproperties#outlook-office-customproperties-saveasync-member(1))|Saves custom properties to a message or appointment.|
3737
||[saveAsync(callback: (asyncResult: Office.AsyncResult<void>) => void, asyncContext?: any)](/javascript/api/outlook/office.customproperties#outlook-office-customproperties-saveasync-member(1))|Saves custom properties to a message or appointment.|
38+
||[set(name: string, value: string)](/javascript/api/outlook/office.customproperties#outlook-office-customproperties-set-member(1))|Sets the specified property to the specified value.|
3839
|[Diagnostics](/javascript/api/outlook/office.diagnostics)|[OWAView](/javascript/api/outlook/office.diagnostics#outlook-office-diagnostics-owaview-member)|Gets a string that represents the current view of Outlook on the web.|
3940
||[hostName](/javascript/api/outlook/office.diagnostics#outlook-office-diagnostics-hostname-member)|Gets a string that represents the type of Outlook client.|
4041
||[hostVersion](/javascript/api/outlook/office.diagnostics#outlook-office-diagnostics-hostversion-member)|Gets a string that represents the version of either the Outlook client or the Exchange Server (for example, "15.0.468.0").|
@@ -75,6 +76,7 @@
7576
|[RoamingSettings](/javascript/api/outlook/office.roamingsettings)|[get(name: string)](/javascript/api/outlook/office.roamingsettings#outlook-office-roamingsettings-get-member(1))|Retrieves the specified setting.|
7677
||[remove(name: string)](/javascript/api/outlook/office.roamingsettings#outlook-office-roamingsettings-remove-member(1))|Removes the specified setting.|
7778
||[saveAsync(callback?: (asyncResult: Office.AsyncResult<void>) => void)](/javascript/api/outlook/office.roamingsettings#outlook-office-roamingsettings-saveasync-member(1))|Saves the settings.|
79+
||[set(name: string, value: any)](/javascript/api/outlook/office.roamingsettings#outlook-office-roamingsettings-set-member(1))|Sets or creates the specified setting.|
7880
|[Subject](/javascript/api/outlook/office.subject)|[getAsync(callback: (asyncResult: Office.AsyncResult<string>) => void)](/javascript/api/outlook/office.subject#outlook-office-subject-getasync-member(1))|Gets the subject of an appointment or message.|
7981
||[getAsync(options: Office.AsyncContextOptions, callback: (asyncResult: Office.AsyncResult<string>) => void)](/javascript/api/outlook/office.subject#outlook-office-subject-getasync-member(1))|Gets the subject of an appointment or message.|
8082
||[setAsync(subject: string, callback?: (asyncResult: Office.AsyncResult<void>) => void)](/javascript/api/outlook/office.subject#outlook-office-subject-setasync-member(1))|Sets the subject of an appointment or message.|

docs/includes/outlook-1_11.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,11 @@
22
|:---|:---|:---|
33
|[AppointmentCompose](/javascript/api/outlook/office.appointmentcompose)|[sessionData](/javascript/api/outlook/office.appointmentcompose#outlook-office-appointmentcompose-sessiondata-member)|Manages the {@link Office.SessionData | SessionData} of an item in Compose mode.|
44
|[MessageCompose](/javascript/api/outlook/office.messagecompose)|[sessionData](/javascript/api/outlook/office.messagecompose#outlook-office-messagecompose-sessiondata-member)|Manages the {@link Office.SessionData | SessionData} of an item in Compose mode.|
5+
|[SessionData](/javascript/api/outlook/office.sessiondata)|[clearAsync(callback?: (asyncResult: Office.AsyncResult<void>) => void)](/javascript/api/outlook/office.sessiondata#outlook-office-sessiondata-clearasync-member(1))|Clears all session data key-value pairs.|
6+
||[clearAsync(options: Office.AsyncContextOptions, callback?: (asyncResult: Office.AsyncResult<void>) => void)](/javascript/api/outlook/office.sessiondata#outlook-office-sessiondata-clearasync-member(1))|Clears all session data key-value pairs.|
7+
||[getAllAsync(callback: (asyncResult: Office.AsyncResult<object>) => void)](/javascript/api/outlook/office.sessiondata#outlook-office-sessiondata-getallasync-member(1))|Gets all session data key-value pairs.|
8+
||[getAsync(name: string, callback: (asyncResult: Office.AsyncResult<string>) => void)](/javascript/api/outlook/office.sessiondata#outlook-office-sessiondata-getasync-member(1))|Gets the session data value of the specified key.|
9+
||[removeAsync(name: string, callback?: (asyncResult: Office.AsyncResult<void>) => void)](/javascript/api/outlook/office.sessiondata#outlook-office-sessiondata-removeasync-member(1))|Removes a session data key-value pair.|
10+
||[removeAsync(name: string, options: Office.AsyncContextOptions, callback?: (asyncResult: Office.AsyncResult<void>) => void)](/javascript/api/outlook/office.sessiondata#outlook-office-sessiondata-removeasync-member(1))|Removes a session data key-value pair.|
11+
||[setAsync(name: string, value: string, callback?: (asyncResult: Office.AsyncResult<void>) => void)](/javascript/api/outlook/office.sessiondata#outlook-office-sessiondata-setasync-member(1))|Sets a session data key-value pair.|
12+
||[setAsync(name: string, value: string, options: Office.AsyncContextOptions, callback?: (asyncResult: Office.AsyncResult<void>) => void)](/javascript/api/outlook/office.sessiondata#outlook-office-sessiondata-setasync-member(1))|Sets a session data key-value pair.|

docs/includes/outlook-1_5.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
|:---|:---|:---|
33
|[DragAndDropEventArgs](/javascript/api/outlook/office.draganddropeventargs)|[dragAndDropEventData](/javascript/api/outlook/office.draganddropeventargs#outlook-office-draganddropeventargs-draganddropeventdata-member)|Gets the details about the mouse pointer position within an add-in's task pane and the messages or file attachments being dragged and dropped into the task pane.|
44
||[type](/javascript/api/outlook/office.draganddropeventargs#outlook-office-draganddropeventargs-type-member)|Gets the type of the event.|
5+
|[DragoverEventData](/javascript/api/outlook/office.dragovereventdata)|[pageX](/javascript/api/outlook/office.dragovereventdata#outlook-office-dragovereventdata-pagex-member)|Gets the x-coordinate of the mouse pointer that represents the horizontal position in pixels.|
6+
||[pageY](/javascript/api/outlook/office.dragovereventdata#outlook-office-dragovereventdata-pagey-member)|Gets the y-coordinate of the mouse pointer that represents the vertical position in pixels.|
7+
||[type](/javascript/api/outlook/office.dragovereventdata#outlook-office-dragovereventdata-type-member)|Gets the type of drag-and-drop event.|
8+
|[DropEventData](/javascript/api/outlook/office.dropeventdata)|[dataTransfer](/javascript/api/outlook/office.dropeventdata#outlook-office-dropeventdata-datatransfer-member)|Gets the messages or file attachments being dragged and dropped into an add-in's task pane.|
9+
||[pageX](/javascript/api/outlook/office.dropeventdata#outlook-office-dropeventdata-pagex-member)|Gets the x-coordinate of the mouse pointer that represents the horizontal position in pixels.|
10+
||[pageY](/javascript/api/outlook/office.dropeventdata#outlook-office-dropeventdata-pagey-member)|Gets the y-coordinate of the mouse pointer that represents the vertical position in pixels.|
11+
||[type](/javascript/api/outlook/office.dropeventdata#outlook-office-dropeventdata-type-member)|Gets the type of drag-and-drop event.|
512
|[DroppedItemDetails](/javascript/api/outlook/office.droppeditemdetails)|[fileContent](/javascript/api/outlook/office.droppeditemdetails#outlook-office-droppeditemdetails-filecontent-member)|Gets the contents of the file being dragged and dropped.|
613
||[name](/javascript/api/outlook/office.droppeditemdetails#outlook-office-droppeditemdetails-name-member)|Gets the name of the file being dragged and dropped.|
714
||[type](/javascript/api/outlook/office.droppeditemdetails#outlook-office-droppeditemdetails-type-member)|Gets the type of the file being dragged and dropped.|

0 commit comments

Comments
 (0)