@types/office-js 1.0.443 → 1.0.445
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.
- office-js/README.md +1 -1
- office-js/index.d.ts +31 -15
- office-js/package.json +2 -2
office-js/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for office-js (https://github.com/OfficeD
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, 15 Nov 2024 20:02:25 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -13030,7 +13030,7 @@ declare namespace Office {
|
|
|
13030
13030
|
* - When including links in HTML markup, you can disable online link preview by setting the `id` attribute on the anchor (\<a\>) to "LPNoLP"
|
|
13031
13031
|
* (see the **Examples** section for a sample).
|
|
13032
13032
|
*
|
|
13033
|
-
* - In Outlook on Windows and on Mac, the add-in user isn't able to revert this action with the **Undo** command.
|
|
13033
|
+
* - In Outlook on Windows (classic) and on Mac, the add-in user isn't able to revert this action with the **Undo** command.
|
|
13034
13034
|
*
|
|
13035
13035
|
* - In Outlook on Android and on iOS, this method isn't supported in the Message Compose mode. Only the Appointment Organizer mode is
|
|
13036
13036
|
* supported. For more information on supported APIs in Outlook mobile, see
|
|
@@ -13081,7 +13081,7 @@ declare namespace Office {
|
|
|
13081
13081
|
* - When including links in HTML markup, you can disable online link preview by setting the `id` attribute on the anchor (\<a\>) to "LPNoLP"
|
|
13082
13082
|
* (see the **Examples** section for a sample).
|
|
13083
13083
|
*
|
|
13084
|
-
* - In Outlook on Windows and on Mac, the add-in user isn't able to revert this action with the **Undo** command.
|
|
13084
|
+
* - In Outlook on Windows (classic) and on Mac, the add-in user isn't able to revert this action with the **Undo** command.
|
|
13085
13085
|
*
|
|
13086
13086
|
* - In Outlook on Android and on iOS, this method isn't supported in the Message Compose mode. Only the Appointment Organizer mode is
|
|
13087
13087
|
* supported. For more information on supported APIs in Outlook mobile, see
|
|
@@ -16084,15 +16084,15 @@ declare namespace Office {
|
|
|
16084
16084
|
/**
|
|
16085
16085
|
* Gets an object that provides methods for managing the item's categories.
|
|
16086
16086
|
*
|
|
16087
|
-
* **Important**: In Outlook on the web and {@link https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627 | new Outlook on Windows},
|
|
16088
|
-
* you can't use the API to manage categories on a message in Compose mode.
|
|
16089
|
-
*
|
|
16090
16087
|
* @remarks
|
|
16091
16088
|
* [Api set: Mailbox 1.8]
|
|
16092
16089
|
*
|
|
16093
16090
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
|
|
16094
16091
|
*
|
|
16095
16092
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
|
|
16093
|
+
*
|
|
16094
|
+
* **Important**: In Outlook on the web and {@link https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627 | new Outlook on Windows},
|
|
16095
|
+
* you can't use the API to manage categories on a message in Compose mode.
|
|
16096
16096
|
*/
|
|
16097
16097
|
categories: Categories;
|
|
16098
16098
|
/**
|
|
@@ -16240,20 +16240,20 @@ declare namespace Office {
|
|
|
16240
16240
|
* the `seriesId` returns the Exchange Web Services (EWS) ID of the parent (series) item that this item belongs to.
|
|
16241
16241
|
* However, in Outlook on Android and on iOS, the seriesId returns the REST ID of the parent item.
|
|
16242
16242
|
*
|
|
16243
|
-
* **Note**: The identifier returned by the `seriesId` property is the same as the Exchange Web Services item identifier.
|
|
16244
|
-
* The `seriesId` property is not identical to the Outlook IDs used by the Outlook REST API.
|
|
16245
|
-
* Before making REST API calls using this value, it should be converted using `Office.context.mailbox.convertToRestId`.
|
|
16246
|
-
* For more details, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/use-rest-api | Use the Outlook REST APIs from an Outlook add-in}.
|
|
16247
|
-
*
|
|
16248
|
-
* The `seriesId` property returns `null` for items that do not have parent items such as single appointments, series items, or meeting requests
|
|
16249
|
-
* and returns `undefined` for any other items that are not meeting requests.
|
|
16250
|
-
*
|
|
16251
16243
|
* @remarks
|
|
16252
16244
|
* [Api set: Mailbox 1.7]
|
|
16253
16245
|
*
|
|
16254
16246
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
|
|
16255
16247
|
*
|
|
16256
16248
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
|
|
16249
|
+
*
|
|
16250
|
+
* **Important**: The identifier returned by the `seriesId` property is the same as the Exchange Web Services item identifier.
|
|
16251
|
+
* The `seriesId` property is not identical to the Outlook IDs used by the Outlook REST API.
|
|
16252
|
+
* Before making REST API calls using this value, it should be converted using `Office.context.mailbox.convertToRestId`.
|
|
16253
|
+
* For more details, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/use-rest-api | Use the Outlook REST APIs from an Outlook add-in}.
|
|
16254
|
+
*
|
|
16255
|
+
* The `seriesId` property returns `null` for items that don't have parent items such as single appointments, series items, or meeting requests
|
|
16256
|
+
* and returns `undefined` for any other items that are not meeting requests.
|
|
16257
16257
|
*/
|
|
16258
16258
|
seriesId: string;
|
|
16259
16259
|
/**
|
|
@@ -16958,6 +16958,14 @@ declare namespace Office {
|
|
|
16958
16958
|
* <td>New messages and message replies</td>
|
|
16959
16959
|
* </tr>
|
|
16960
16960
|
* <tr>
|
|
16961
|
+
* <td>IPM.Note.SMIME</td>
|
|
16962
|
+
* <td>Encrypted messages that can also be signed</td>
|
|
16963
|
+
* </tr>
|
|
16964
|
+
* <tr>
|
|
16965
|
+
* <td>IPM.Note.SMIME.MultipartSigned</td>
|
|
16966
|
+
* <td>Clear-signed messages</td>
|
|
16967
|
+
* </tr>
|
|
16968
|
+
* <tr>
|
|
16961
16969
|
* <td>IPM.Schedule.Meeting.Request</td>
|
|
16962
16970
|
* <td>Meeting requests</td>
|
|
16963
16971
|
* </tr>
|
|
@@ -17009,6 +17017,14 @@ declare namespace Office {
|
|
|
17009
17017
|
* <td>New messages and message replies</td>
|
|
17010
17018
|
* </tr>
|
|
17011
17019
|
* <tr>
|
|
17020
|
+
* <td>IPM.Note.SMIME</td>
|
|
17021
|
+
* <td>Encrypted messages that can also be signed</td>
|
|
17022
|
+
* </tr>
|
|
17023
|
+
* <tr>
|
|
17024
|
+
* <td>IPM.Note.SMIME.MultipartSigned</td>
|
|
17025
|
+
* <td>Clear-signed messages</td>
|
|
17026
|
+
* </tr>
|
|
17027
|
+
* <tr>
|
|
17012
17028
|
* <td>IPM.Schedule.Meeting.Request</td>
|
|
17013
17029
|
* <td>Meeting requests</td>
|
|
17014
17030
|
* </tr>
|
|
@@ -17174,7 +17190,7 @@ declare namespace Office {
|
|
|
17174
17190
|
*
|
|
17175
17191
|
* 3. The delegate opens the draft from the shared folder then continues composing.
|
|
17176
17192
|
*
|
|
17177
|
-
* b. **Shared mailbox (applies to Outlook on Windows only)**
|
|
17193
|
+
* b. **Shared mailbox (applies to classic Outlook on Windows only)**
|
|
17178
17194
|
*
|
|
17179
17195
|
* 1. The shared mailbox user starts a message. This can be a new message, a reply, or a forward.
|
|
17180
17196
|
*
|
|
@@ -17217,7 +17233,7 @@ declare namespace Office {
|
|
|
17217
17233
|
*
|
|
17218
17234
|
* 3. The delegate opens the draft from the shared folder then continues composing.
|
|
17219
17235
|
*
|
|
17220
|
-
* b. **Shared mailbox (applies to Outlook on Windows only)**
|
|
17236
|
+
* b. **Shared mailbox (applies to classic Outlook on Windows only)**
|
|
17221
17237
|
*
|
|
17222
17238
|
* 1. The shared mailbox user starts a message. This can be a new message, a reply, or a forward.
|
|
17223
17239
|
*
|
office-js/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.445",
|
|
4
4
|
"description": "TypeScript definitions for office-js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
48
|
"peerDependencies": {},
|
|
49
|
-
"typesPublisherContentHash": "
|
|
49
|
+
"typesPublisherContentHash": "b79a3de09801ea6d6c836b8ecc473785a3a91ea3f29c23e0e50d882c046f5d6b",
|
|
50
50
|
"typeScriptVersion": "4.9"
|
|
51
51
|
}
|