@types/office-js 1.0.488 → 1.0.490
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 +191 -30
- 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: Mon,
|
|
11
|
+
* Last updated: Mon, 14 Apr 2025 22:37:06 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -10368,6 +10368,9 @@ declare namespace Office {
|
|
|
10368
10368
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
|
|
10369
10369
|
*
|
|
10370
10370
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Organizer
|
|
10371
|
+
*
|
|
10372
|
+
* **Important**: This property isn't supported in Outlook on Android or on iOS. For more information on supported APIs in Outlook mobile, see
|
|
10373
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
10371
10374
|
*/
|
|
10372
10375
|
notificationMessages: NotificationMessages;
|
|
10373
10376
|
/**
|
|
@@ -11933,6 +11936,9 @@ declare namespace Office {
|
|
|
11933
11936
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
|
|
11934
11937
|
*
|
|
11935
11938
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Attendee
|
|
11939
|
+
*
|
|
11940
|
+
* **Important**: This property isn't supported in Outlook on Android or on iOS. For more information on supported APIs in Outlook mobile, see
|
|
11941
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
11936
11942
|
*/
|
|
11937
11943
|
notificationMessages: NotificationMessages;
|
|
11938
11944
|
/**
|
|
@@ -12943,6 +12949,9 @@ declare namespace Office {
|
|
|
12943
12949
|
*
|
|
12944
12950
|
* - The `appendOnSendAsync` method doesn't support inline CSS. Use internal or external CSS instead.
|
|
12945
12951
|
*
|
|
12952
|
+
* - The `appendOnSendAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
12953
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
12954
|
+
*
|
|
12946
12955
|
* **Errors**:
|
|
12947
12956
|
*
|
|
12948
12957
|
* - `DataExceedsMaximumSize`: The `data` parameter is longer than 5,000 characters.
|
|
@@ -12987,6 +12996,9 @@ declare namespace Office {
|
|
|
12987
12996
|
*
|
|
12988
12997
|
* - The `appendOnSendAsync` method doesn't support inline CSS. Use internal or external CSS instead.
|
|
12989
12998
|
*
|
|
12999
|
+
* - The `appendOnSendAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
13000
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
13001
|
+
*
|
|
12990
13002
|
* **Errors**:
|
|
12991
13003
|
*
|
|
12992
13004
|
* - `DataExceedsMaximumSize`: The `data` parameter is longer than 5,000 characters.
|
|
@@ -13129,6 +13141,9 @@ declare namespace Office {
|
|
|
13129
13141
|
*
|
|
13130
13142
|
* - The `prependAsync` method doesn't support inline CSS. Use internal or external CSS instead.
|
|
13131
13143
|
*
|
|
13144
|
+
* - The `prependAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
13145
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
13146
|
+
*
|
|
13132
13147
|
* **Errors**:
|
|
13133
13148
|
*
|
|
13134
13149
|
* - `DataExceedsMaximumSize`: The data parameter is longer than 1,000,000 characters.
|
|
@@ -13176,6 +13191,9 @@ declare namespace Office {
|
|
|
13176
13191
|
*
|
|
13177
13192
|
* - The `prependAsync` method doesn't support inline CSS. Use internal or external CSS instead.
|
|
13178
13193
|
*
|
|
13194
|
+
* - The `prependAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
13195
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
13196
|
+
*
|
|
13179
13197
|
* **Errors**:
|
|
13180
13198
|
*
|
|
13181
13199
|
* - `DataExceedsMaximumSize`: The data parameter is longer than 1,000,000 characters.
|
|
@@ -13216,6 +13234,9 @@ declare namespace Office {
|
|
|
13216
13234
|
*
|
|
13217
13235
|
* - The `prependOnSendAsync` method doesn't support inline CSS. Use internal or external CSS instead.
|
|
13218
13236
|
*
|
|
13237
|
+
* - The `prependOnSendAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
13238
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
13239
|
+
*
|
|
13219
13240
|
* **Errors**:
|
|
13220
13241
|
*
|
|
13221
13242
|
* - `DataExceedsMaximumSize`: The `data` parameter exceeds 5,000 characters.
|
|
@@ -13261,6 +13282,9 @@ declare namespace Office {
|
|
|
13261
13282
|
*
|
|
13262
13283
|
* - The `prependOnSendAsync` method doesn't support inline CSS. Use internal or external CSS instead.
|
|
13263
13284
|
*
|
|
13285
|
+
* - The `prependOnSendAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
13286
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
13287
|
+
*
|
|
13264
13288
|
* **Errors**:
|
|
13265
13289
|
*
|
|
13266
13290
|
* - `DataExceedsMaximumSize`: The `data` parameter exceeds 5,000 characters.
|
|
@@ -13309,6 +13333,9 @@ declare namespace Office {
|
|
|
13309
13333
|
*
|
|
13310
13334
|
* - The `setAsync` method doesn't support inline CSS. Use internal or external CSS instead.
|
|
13311
13335
|
*
|
|
13336
|
+
* - The `setAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
13337
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
13338
|
+
*
|
|
13312
13339
|
* **Errors**:
|
|
13313
13340
|
*
|
|
13314
13341
|
* - `DataExceedsMaximumSize`: The data parameter is longer than 1,000,000 characters.
|
|
@@ -13360,6 +13387,9 @@ declare namespace Office {
|
|
|
13360
13387
|
*
|
|
13361
13388
|
* - The `setAsync` method doesn't support inline CSS. Use internal or external CSS instead.
|
|
13362
13389
|
*
|
|
13390
|
+
* - The `setAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
13391
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
13392
|
+
*
|
|
13363
13393
|
* **Errors**:
|
|
13364
13394
|
*
|
|
13365
13395
|
* - `DataExceedsMaximumSize`: The data parameter is longer than 1,000,000 characters.
|
|
@@ -13396,6 +13426,9 @@ declare namespace Office {
|
|
|
13396
13426
|
*
|
|
13397
13427
|
* - The `setSelectedDataAsync` method doesn't support inline CSS. Use internal or external CSS instead.
|
|
13398
13428
|
*
|
|
13429
|
+
* - The `setSelectedDataAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
13430
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
13431
|
+
*
|
|
13399
13432
|
* **Errors**:
|
|
13400
13433
|
*
|
|
13401
13434
|
* - `DataExceedsMaximumSize`: The `data` parameter is longer than 1,000,000 characters.
|
|
@@ -13435,6 +13468,9 @@ declare namespace Office {
|
|
|
13435
13468
|
*
|
|
13436
13469
|
* - The `setSelectedDataAsync` method doesn't support inline CSS. Use internal or external CSS instead.
|
|
13437
13470
|
*
|
|
13471
|
+
* - The `setSelectedDataAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
13472
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
13473
|
+
*
|
|
13438
13474
|
* **Errors**:
|
|
13439
13475
|
*
|
|
13440
13476
|
* - `DataExceedsMaximumSize`: The `data` parameter is longer than 1,000,000 characters.
|
|
@@ -13475,6 +13511,9 @@ declare namespace Office {
|
|
|
13475
13511
|
*
|
|
13476
13512
|
* - The `setSignatureAsync` method doesn't support inline CSS. Use internal or external CSS instead.
|
|
13477
13513
|
*
|
|
13514
|
+
* - The `setSignatureAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
13515
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
13516
|
+
*
|
|
13478
13517
|
* **Errors**:
|
|
13479
13518
|
*
|
|
13480
13519
|
* - `DataExceedsMaximumSize`: The `data` parameter is longer than 30,000 characters.
|
|
@@ -13519,6 +13558,9 @@ declare namespace Office {
|
|
|
13519
13558
|
*
|
|
13520
13559
|
* - The `setSignatureAsync` method doesn't support inline CSS. Use internal or external CSS instead.
|
|
13521
13560
|
*
|
|
13561
|
+
* - The `setSignatureAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
13562
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
13563
|
+
*
|
|
13522
13564
|
* **Errors**:
|
|
13523
13565
|
*
|
|
13524
13566
|
* - `DataExceedsMaximumSize`: The `data` parameter is longer than 30,000 characters.
|
|
@@ -13884,6 +13926,9 @@ declare namespace Office {
|
|
|
13884
13926
|
*
|
|
13885
13927
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
13886
13928
|
*
|
|
13929
|
+
* **Important**: The `remove` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
13930
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
13931
|
+
*
|
|
13887
13932
|
* @param name - The `name` of the property to be removed.
|
|
13888
13933
|
*/
|
|
13889
13934
|
remove(name: string): void;
|
|
@@ -13953,6 +13998,9 @@ declare namespace Office {
|
|
|
13953
13998
|
*
|
|
13954
13999
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
13955
14000
|
*
|
|
14001
|
+
* **Important**: The `set` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
14002
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
14003
|
+
*
|
|
13956
14004
|
* @param name - The name of the property to be set.
|
|
13957
14005
|
* @param value - The value of the property to be set.
|
|
13958
14006
|
*/
|
|
@@ -14011,7 +14059,9 @@ declare namespace Office {
|
|
|
14011
14059
|
*
|
|
14012
14060
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
14013
14061
|
*
|
|
14014
|
-
* **Important**:
|
|
14062
|
+
* **Important**:
|
|
14063
|
+
*
|
|
14064
|
+
* - When `item.delayDeliveryTime.setAsync` is used to schedule the delivery of a message, the delay is processed on the server.
|
|
14015
14065
|
* This allows the message to be sent even if the Outlook client isn't running. In classic Outlook on Windows, the message doesn't appear in the
|
|
14016
14066
|
* **Outbox** folder, so you won't be able to edit the message or cancel its delivery after selecting **Send**. You'll only be able to review
|
|
14017
14067
|
* the message from the **Sent Items** folder. In Outlook on the web, on Mac, and in
|
|
@@ -14019,6 +14069,9 @@ declare namespace Office {
|
|
|
14019
14069
|
* until the scheduled delivery time. While it's in the **Drafts** folder, you'll be able to edit the message before it's sent.
|
|
14020
14070
|
* To learn more, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/delay-delivery | Manage the delivery date and time of a message}.
|
|
14021
14071
|
*
|
|
14072
|
+
* - The `setAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
14073
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
14074
|
+
*
|
|
14022
14075
|
* **Errors**:
|
|
14023
14076
|
*
|
|
14024
14077
|
* - `InvalidFormatError` - The format of the specified data object is not valid.
|
|
@@ -14040,7 +14093,9 @@ declare namespace Office {
|
|
|
14040
14093
|
*
|
|
14041
14094
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
14042
14095
|
*
|
|
14043
|
-
* **Important**:
|
|
14096
|
+
* **Important**:
|
|
14097
|
+
*
|
|
14098
|
+
* - When `item.delayDeliveryTime.setAsync` is used to schedule the delivery of a message, the delay is processed on the server.
|
|
14044
14099
|
* This allows the message to be sent even if the Outlook client isn't running. In classic Outlook on Windows, the message doesn't appear in the
|
|
14045
14100
|
* **Outbox** folder, so you won't be able to edit the message or cancel its delivery after selecting **Send**. You'll only be able to review
|
|
14046
14101
|
* the message from the **Sent Items** folder. In Outlook on the web, on Mac, and in
|
|
@@ -14048,6 +14103,9 @@ declare namespace Office {
|
|
|
14048
14103
|
* until the scheduled delivery time. While it's in the **Drafts** folder, you'll be able to edit the message before it's sent.
|
|
14049
14104
|
* To learn more, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/delay-delivery | Manage the delivery date and time of a message}.
|
|
14050
14105
|
*
|
|
14106
|
+
* - The `setAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
14107
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
14108
|
+
*
|
|
14051
14109
|
* **Errors**:
|
|
14052
14110
|
*
|
|
14053
14111
|
* - `InvalidFormatError` - The format of the specified data object is not valid.
|
|
@@ -14698,10 +14756,15 @@ declare namespace Office {
|
|
|
14698
14756
|
*
|
|
14699
14757
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
14700
14758
|
*
|
|
14701
|
-
* **Important**:
|
|
14759
|
+
* **Important**:
|
|
14760
|
+
*
|
|
14761
|
+
* - The internet headers API is supported in Outlook on Android and on iOS starting in Version 4.2405.0.
|
|
14702
14762
|
* To learn more about features supported in Outlook on mobile devices, see
|
|
14703
14763
|
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
14704
14764
|
*
|
|
14765
|
+
* - The `removeAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
14766
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
14767
|
+
*
|
|
14705
14768
|
* @param names - The names of the internet headers to be removed.
|
|
14706
14769
|
* @param options - An object literal that contains one or more of the following properties:-
|
|
14707
14770
|
* `asyncContext`: Developers can provide any object they wish to access in the callback function.
|
|
@@ -14721,10 +14784,15 @@ declare namespace Office {
|
|
|
14721
14784
|
*
|
|
14722
14785
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
14723
14786
|
*
|
|
14724
|
-
* **Important**:
|
|
14787
|
+
* **Important**:
|
|
14788
|
+
*
|
|
14789
|
+
* - The internet headers API is supported in Outlook on Android and on iOS starting in Version 4.2405.0.
|
|
14725
14790
|
* To learn more about features supported in Outlook on mobile devices, see
|
|
14726
14791
|
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
14727
14792
|
*
|
|
14793
|
+
* - The `removeAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
14794
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
14795
|
+
*
|
|
14728
14796
|
* @param names - The names of the internet headers to be removed.
|
|
14729
14797
|
* @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
|
|
14730
14798
|
* `asyncResult`, of type `Office.AsyncResult`. Any errors encountered are provided in the `asyncResult.error` property.
|
|
@@ -14757,6 +14825,9 @@ declare namespace Office {
|
|
|
14757
14825
|
* {@link https://learn.microsoft.com/office365/servicedescriptions/exchange-online-service-description/exchange-online-limits#message-limits | Exchange Online message limits}
|
|
14758
14826
|
* and {@link https://learn.microsoft.com/exchange/mail-flow/message-size-limits?view=exchserver-2019#types-of-message-size-limits | Exchange Server message limits}.
|
|
14759
14827
|
*
|
|
14828
|
+
* - The `setAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
14829
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
14830
|
+
*
|
|
14760
14831
|
* @param headers - The names and corresponding values of the headers to be set. This should be a record object with its keys being internet header names
|
|
14761
14832
|
* and values being the corresponding header value strings.
|
|
14762
14833
|
* @param options - An object literal that contains one or more of the following properties:-
|
|
@@ -14792,6 +14863,9 @@ declare namespace Office {
|
|
|
14792
14863
|
* {@link https://learn.microsoft.com/office365/servicedescriptions/exchange-online-service-description/exchange-online-limits#message-limits | Exchange Online message limits}
|
|
14793
14864
|
* and {@link https://learn.microsoft.com/exchange/mail-flow/message-size-limits?view=exchserver-2019#types-of-message-size-limits | Exchange Server message limits}.
|
|
14794
14865
|
*
|
|
14866
|
+
* - The `setAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
14867
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
14868
|
+
*
|
|
14795
14869
|
* @param headers - The names and corresponding values of the headers to be set. This should be a record object with its keys being internet header names
|
|
14796
14870
|
* and values being the corresponding header value strings.
|
|
14797
14871
|
* @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
|
|
@@ -21089,21 +21163,30 @@ declare namespace Office {
|
|
|
21089
21163
|
/**
|
|
21090
21164
|
* Specifies the `ItemNotificationMessageType` of message.
|
|
21091
21165
|
*
|
|
21092
|
-
*
|
|
21093
|
-
*
|
|
21166
|
+
* @remarks
|
|
21167
|
+
*
|
|
21168
|
+
* **Important**:
|
|
21169
|
+
*
|
|
21170
|
+
* - For the `ProgressIndicator` or `ErrorMessage` types, an icon is automatically supplied
|
|
21171
|
+
* and the message isn't persistent. Therefore, the icon and persistent properties aren't valid for these types of messages.
|
|
21094
21172
|
* Including them will result in an `ArgumentException`.
|
|
21095
21173
|
*
|
|
21096
|
-
*
|
|
21097
|
-
*
|
|
21098
|
-
*
|
|
21174
|
+
* - For the `ProgressIndicator` type, you should remove or replace the progress indicator when the action is complete.
|
|
21175
|
+
*
|
|
21176
|
+
* - In Outlook on Android and on iOS, only the `ProgressIndicator`, `InformationalMessage`, and `ErrorMessage` notification types are supported.
|
|
21177
|
+
*
|
|
21178
|
+
* - In compose mode, while the style of each notification type varies on other Outlook clients, notifications in Outlook on Android and on iOS
|
|
21179
|
+
* all use the same style. The notification message is always prefixed with an informational icon.
|
|
21099
21180
|
*/
|
|
21100
21181
|
type: MailboxEnums.ItemNotificationMessageType | string;
|
|
21101
21182
|
/**
|
|
21102
|
-
* A reference to an icon that
|
|
21103
|
-
* It
|
|
21183
|
+
* A reference to an icon that's defined in the manifest. It appears in the infobar area.
|
|
21184
|
+
* It's applicable if the type is `InformationalMessage`, and is required if the type is `InsightMessage`.
|
|
21104
21185
|
* Specifying this parameter for an unsupported type results in an exception.
|
|
21105
21186
|
*
|
|
21106
|
-
*
|
|
21187
|
+
* @remarks
|
|
21188
|
+
*
|
|
21189
|
+
* **Important**: Currently, the custom icon is only displayed in classic Outlook on Windows.
|
|
21107
21190
|
*/
|
|
21108
21191
|
icon?: string;
|
|
21109
21192
|
/**
|
|
@@ -21148,8 +21231,6 @@ declare namespace Office {
|
|
|
21148
21231
|
/**
|
|
21149
21232
|
* Adds a notification to an item.
|
|
21150
21233
|
*
|
|
21151
|
-
* There are a maximum of 5 notifications per message. Setting more will return a `NumberOfNotificationMessagesExceeded` error.
|
|
21152
|
-
*
|
|
21153
21234
|
* @remarks
|
|
21154
21235
|
* [Api set: Mailbox 1.3]
|
|
21155
21236
|
*
|
|
@@ -21159,13 +21240,23 @@ declare namespace Office {
|
|
|
21159
21240
|
*
|
|
21160
21241
|
* **Important**:
|
|
21161
21242
|
*
|
|
21243
|
+
* - In Outlook on the web, on Windows (new and classic), and on Mac, you can set a maximum of five notifications per message.
|
|
21244
|
+
* Setting more returns a `NumberOfNotificationMessagesExceeded` error. In Outlook on Android and on iOS, you can only set one notification per message.
|
|
21245
|
+
* Setting an additional notification replaces the previous one.
|
|
21246
|
+
*
|
|
21162
21247
|
* - Only one notification of type {@link https://learn.microsoft.com/javascript/api/outlook/office.mailboxenums.itemnotificationmessagetype#fields | InsightMessage}
|
|
21163
21248
|
* is allowed per add-in. Attempting to add more will throw an error.
|
|
21164
21249
|
*
|
|
21165
21250
|
* - In modern Outlook on the web and {@link https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627 | new Outlook on Windows},
|
|
21166
21251
|
* you can add an `InsightMessage` notification only in Compose mode.
|
|
21167
21252
|
*
|
|
21168
|
-
* -
|
|
21253
|
+
* - In Outlook on Android and on iOS, only the `ProgressIndicator`, `InformationalMessage`, and `ErrorMessage` notification types are supported.
|
|
21254
|
+
*
|
|
21255
|
+
* - In compose mode, while the style of each notification type varies on other Outlook clients, notifications in Outlook on Android and on iOS
|
|
21256
|
+
* all use the same style. The notification message is always prefixed with an informational icon.
|
|
21257
|
+
*
|
|
21258
|
+
* - The `addAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
21259
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
21169
21260
|
*
|
|
21170
21261
|
* @param key - A developer-specified key used to reference this notification message.
|
|
21171
21262
|
* Developers can use it to modify this message later. It can't be longer than 32 characters.
|
|
@@ -21180,8 +21271,6 @@ declare namespace Office {
|
|
|
21180
21271
|
/**
|
|
21181
21272
|
* Adds a notification to an item.
|
|
21182
21273
|
*
|
|
21183
|
-
* There are a maximum of 5 notifications per message. Setting more will return a `NumberOfNotificationMessagesExceeded` error.
|
|
21184
|
-
*
|
|
21185
21274
|
* @remarks
|
|
21186
21275
|
* [Api set: Mailbox 1.3]
|
|
21187
21276
|
*
|
|
@@ -21191,13 +21280,23 @@ declare namespace Office {
|
|
|
21191
21280
|
*
|
|
21192
21281
|
* **Important**:
|
|
21193
21282
|
*
|
|
21283
|
+
* - In Outlook on the web, on Windows (new and classic), and on Mac, you can set a maximum of five notifications per message.
|
|
21284
|
+
* Setting more returns a `NumberOfNotificationMessagesExceeded` error. In Outlook on Android and on iOS, you can only set one notification per message.
|
|
21285
|
+
* Setting an additional notification replaces the previous one.
|
|
21286
|
+
*
|
|
21194
21287
|
* - Only one notification of type {@link https://learn.microsoft.com/javascript/api/outlook/office.mailboxenums.itemnotificationmessagetype#fields | InsightMessage}
|
|
21195
21288
|
* is allowed per add-in. Attempting to add more will throw an error.
|
|
21196
21289
|
*
|
|
21197
21290
|
* - In modern Outlook on the web and {@link https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627 | new Outlook on Windows},
|
|
21198
21291
|
* you can add an `InsightMessage` notification only in Compose mode.
|
|
21199
21292
|
*
|
|
21200
|
-
* -
|
|
21293
|
+
* - In Outlook on Android and on iOS, only the `ProgressIndicator`, `InformationalMessage`, and `ErrorMessage` notification types are supported.
|
|
21294
|
+
*
|
|
21295
|
+
* - In compose mode, while the style of each notification type varies on other Outlook clients, notifications in Outlook on Android and on iOS
|
|
21296
|
+
* all use the same style. The notification message is always prefixed with an informational icon.
|
|
21297
|
+
*
|
|
21298
|
+
* - The `addAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
21299
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
21201
21300
|
*
|
|
21202
21301
|
* @param key - A developer-specified key used to reference this notification message.
|
|
21203
21302
|
* Developers can use it to modify this message later. It can't be longer than 32 characters.
|
|
@@ -21247,6 +21346,9 @@ declare namespace Office {
|
|
|
21247
21346
|
*
|
|
21248
21347
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
21249
21348
|
*
|
|
21349
|
+
* **Important**: The `removeAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
21350
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
21351
|
+
*
|
|
21250
21352
|
* @param key - The key for the notification message to remove.
|
|
21251
21353
|
* @param options - An object literal that contains one or more of the following properties:-
|
|
21252
21354
|
* `asyncContext`: Developers can provide any object they wish to access in the callback function.
|
|
@@ -21264,6 +21366,9 @@ declare namespace Office {
|
|
|
21264
21366
|
*
|
|
21265
21367
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
21266
21368
|
*
|
|
21369
|
+
* **Important**: The `removeAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
21370
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
21371
|
+
*
|
|
21267
21372
|
* @param key - The key for the notification message to remove.
|
|
21268
21373
|
* @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
|
|
21269
21374
|
* of type `Office.AsyncResult`.
|
|
@@ -21281,6 +21386,9 @@ declare namespace Office {
|
|
|
21281
21386
|
*
|
|
21282
21387
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
21283
21388
|
*
|
|
21389
|
+
* **Important**: The `replaceAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
21390
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
21391
|
+
*
|
|
21284
21392
|
* @param key - The key for the notification message to replace. It can't be longer than 32 characters.
|
|
21285
21393
|
* @param JSONmessage - A JSON object that contains the new notification message to replace the existing message.
|
|
21286
21394
|
* It contains a `NotificationMessageDetails` object.
|
|
@@ -21302,6 +21410,9 @@ declare namespace Office {
|
|
|
21302
21410
|
*
|
|
21303
21411
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
21304
21412
|
*
|
|
21413
|
+
* **Important**: The `replaceAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
21414
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
21415
|
+
*
|
|
21305
21416
|
* @param key - The key for the notification message to replace. It can't be longer than 32 characters.
|
|
21306
21417
|
* @param JSONmessage - A JSON object that contains the new notification message to replace the existing message.
|
|
21307
21418
|
* It contains a `NotificationMessageDetails` object.
|
|
@@ -21461,7 +21572,9 @@ declare namespace Office {
|
|
|
21461
21572
|
*
|
|
21462
21573
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
21463
21574
|
*
|
|
21464
|
-
* **Important**:
|
|
21575
|
+
* **Important**:
|
|
21576
|
+
*
|
|
21577
|
+
* With the `addAsync` method, you can add a maximum of 100 recipients to a mail item in Outlook on the web, on Windows
|
|
21465
21578
|
* ({@link https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627 | new} and classic), on Mac (classic UI), on Android, and on iOS.
|
|
21466
21579
|
* However, take note of the following:
|
|
21467
21580
|
*
|
|
@@ -21474,6 +21587,9 @@ declare namespace Office {
|
|
|
21474
21587
|
*
|
|
21475
21588
|
* There's no recipient limit if you call `addAsync` in Outlook on Mac (new UI).
|
|
21476
21589
|
*
|
|
21590
|
+
* The `addAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
21591
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
21592
|
+
*
|
|
21477
21593
|
* **Errors**:
|
|
21478
21594
|
*
|
|
21479
21595
|
* - `NumberOfRecipientsExceeded`: The number of recipients exceeded 100 entries.
|
|
@@ -21496,7 +21612,9 @@ declare namespace Office {
|
|
|
21496
21612
|
*
|
|
21497
21613
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
21498
21614
|
*
|
|
21499
|
-
* **Important**:
|
|
21615
|
+
* **Important**:
|
|
21616
|
+
*
|
|
21617
|
+
* With the `addAsync` method, you can add a maximum of 100 recipients to a mail item in Outlook on the web, on Windows
|
|
21500
21618
|
* ({@link https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627 | new} and classic), on Mac (classic UI), on Android, and on iOS.
|
|
21501
21619
|
* However, take note of the following:
|
|
21502
21620
|
*
|
|
@@ -21509,6 +21627,9 @@ declare namespace Office {
|
|
|
21509
21627
|
*
|
|
21510
21628
|
* There's no recipient limit if you call `addAsync` in Outlook on Mac (new UI).
|
|
21511
21629
|
*
|
|
21630
|
+
* The `addAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
21631
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
21632
|
+
*
|
|
21512
21633
|
* **Errors**:
|
|
21513
21634
|
*
|
|
21514
21635
|
* - `NumberOfRecipientsExceeded`: The number of recipients exceeded 100 entries.
|
|
@@ -21630,7 +21751,9 @@ declare namespace Office {
|
|
|
21630
21751
|
*
|
|
21631
21752
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
21632
21753
|
*
|
|
21633
|
-
* **Important**:
|
|
21754
|
+
* **Important**:
|
|
21755
|
+
*
|
|
21756
|
+
* With the `setAsync` method, you can set a maximum of 100 recipients in Outlook on the web, on Windows
|
|
21634
21757
|
* ({@link https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627 | new} and classic), on Mac (classic UI), on Android, and on iOS.
|
|
21635
21758
|
* However, take note of the following:
|
|
21636
21759
|
*
|
|
@@ -21643,6 +21766,9 @@ declare namespace Office {
|
|
|
21643
21766
|
*
|
|
21644
21767
|
* There's no recipient limit if you call `setAsync` in Outlook on Mac (new UI).
|
|
21645
21768
|
*
|
|
21769
|
+
* The `setAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
21770
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
21771
|
+
*
|
|
21646
21772
|
* **Errors**:
|
|
21647
21773
|
*
|
|
21648
21774
|
* - `NumberOfRecipientsExceeded`: The number of recipients exceeded 100 entries.
|
|
@@ -21668,7 +21794,9 @@ declare namespace Office {
|
|
|
21668
21794
|
*
|
|
21669
21795
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
21670
21796
|
*
|
|
21671
|
-
* **Important**:
|
|
21797
|
+
* **Important**:
|
|
21798
|
+
*
|
|
21799
|
+
* With the `setAsync` method, you can set a maximum of 100 recipients in Outlook on the web, on Windows
|
|
21672
21800
|
* ({@link https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627 | new} and classic), on Mac (classic UI), on Android, and on iOS.
|
|
21673
21801
|
* However, take note of the following:
|
|
21674
21802
|
*
|
|
@@ -21681,6 +21809,9 @@ declare namespace Office {
|
|
|
21681
21809
|
*
|
|
21682
21810
|
* There's no recipient limit if you call `setAsync` in Outlook on Mac (new UI).
|
|
21683
21811
|
*
|
|
21812
|
+
* The `setAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
21813
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
21814
|
+
*
|
|
21684
21815
|
* **Errors**:
|
|
21685
21816
|
*
|
|
21686
21817
|
* - `NumberOfRecipientsExceeded`: The number of recipients exceeded 100 entries.
|
|
@@ -21902,8 +22033,6 @@ declare namespace Office {
|
|
|
21902
22033
|
/**
|
|
21903
22034
|
* Sets the recurrence pattern of an appointment series.
|
|
21904
22035
|
*
|
|
21905
|
-
* **Note**: `setAsync` should only be available for series items and not instance items.
|
|
21906
|
-
*
|
|
21907
22036
|
* @remarks
|
|
21908
22037
|
* [Api set: Mailbox 1.7]
|
|
21909
22038
|
*
|
|
@@ -21911,6 +22040,13 @@ declare namespace Office {
|
|
|
21911
22040
|
*
|
|
21912
22041
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
21913
22042
|
*
|
|
22043
|
+
* **Important**:
|
|
22044
|
+
*
|
|
22045
|
+
* - `setAsync` is only available for series items and not instance items.
|
|
22046
|
+
*
|
|
22047
|
+
* - The `setAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
22048
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
22049
|
+
*
|
|
21914
22050
|
* **Errors**:
|
|
21915
22051
|
*
|
|
21916
22052
|
* - `InvalidEndTime`: The appointment end time is before its start time.
|
|
@@ -21925,8 +22061,6 @@ declare namespace Office {
|
|
|
21925
22061
|
/**
|
|
21926
22062
|
* Sets the recurrence pattern of an appointment series.
|
|
21927
22063
|
*
|
|
21928
|
-
* **Note**: `setAsync` should only be available for series items and not instance items.
|
|
21929
|
-
*
|
|
21930
22064
|
* @remarks
|
|
21931
22065
|
* [Api set: Mailbox 1.7]
|
|
21932
22066
|
*
|
|
@@ -21934,6 +22068,13 @@ declare namespace Office {
|
|
|
21934
22068
|
*
|
|
21935
22069
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
21936
22070
|
*
|
|
22071
|
+
* **Important**:
|
|
22072
|
+
*
|
|
22073
|
+
* - `setAsync` is only available for series items and not instance items.
|
|
22074
|
+
*
|
|
22075
|
+
* - The `setAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
22076
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
22077
|
+
*
|
|
21937
22078
|
* **Errors**:
|
|
21938
22079
|
*
|
|
21939
22080
|
* - `InvalidEndTime`: The appointment end time is before its start time.
|
|
@@ -22456,7 +22597,12 @@ declare namespace Office {
|
|
|
22456
22597
|
*
|
|
22457
22598
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
22458
22599
|
*
|
|
22459
|
-
* **Important**:
|
|
22600
|
+
* **Important**:
|
|
22601
|
+
*
|
|
22602
|
+
* - To use the sensitivity label feature in your add-in, you must have a Microsoft 365 E5 subscription.
|
|
22603
|
+
*
|
|
22604
|
+
* - The `setAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
22605
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
22460
22606
|
*
|
|
22461
22607
|
* **Tip**: To determine the sensitivity labels available for use, call the `Office.context.sensitivityLabelsCatalog.getAsync` method.
|
|
22462
22608
|
*
|
|
@@ -22481,7 +22627,12 @@ declare namespace Office {
|
|
|
22481
22627
|
*
|
|
22482
22628
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
22483
22629
|
*
|
|
22484
|
-
* **Important**:
|
|
22630
|
+
* **Important**:
|
|
22631
|
+
*
|
|
22632
|
+
* - To use the sensitivity label feature in your add-in, you must have a Microsoft 365 E5 subscription.
|
|
22633
|
+
*
|
|
22634
|
+
* - The `setAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
22635
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
22485
22636
|
*
|
|
22486
22637
|
* **Tip**: To determine the sensitivity labels available for use, call the `Office.context.sensitivityLabelsCatalog.getAsync` method.
|
|
22487
22638
|
*
|
|
@@ -23510,10 +23661,15 @@ declare namespace Office {
|
|
|
23510
23661
|
*
|
|
23511
23662
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
23512
23663
|
*
|
|
23513
|
-
* **Important**:
|
|
23664
|
+
* **Important**:
|
|
23665
|
+
*
|
|
23666
|
+
* - In Outlook on Android and on iOS, this method isn't supported in the Message Compose mode. Only the Appointment Organizer mode is
|
|
23514
23667
|
* supported. For more information on supported APIs in Outlook mobile, see
|
|
23515
23668
|
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
23516
23669
|
*
|
|
23670
|
+
* - The `setAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
23671
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
23672
|
+
*
|
|
23517
23673
|
* **Errors**:
|
|
23518
23674
|
*
|
|
23519
23675
|
* - `DataExceedsMaximumSize`: The subject parameter is longer than 255 characters.
|
|
@@ -23538,10 +23694,15 @@ declare namespace Office {
|
|
|
23538
23694
|
*
|
|
23539
23695
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
23540
23696
|
*
|
|
23541
|
-
* **Important**:
|
|
23697
|
+
* **Important**:
|
|
23698
|
+
*
|
|
23699
|
+
* - In Outlook on Android and on iOS, this method isn't supported in the Message Compose mode. Only the Appointment Organizer mode is
|
|
23542
23700
|
* supported. For more information on supported APIs in Outlook mobile, see
|
|
23543
23701
|
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
23544
23702
|
*
|
|
23703
|
+
* - The `setAsync` method isn't supported on a message that's currently loaded using the `loadItemByIdAsync` method.
|
|
23704
|
+
* For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/item-multi-select | Activate your Outlook add-in on multiple messages}.
|
|
23705
|
+
*
|
|
23545
23706
|
* **Errors**:
|
|
23546
23707
|
*
|
|
23547
23708
|
* - `DataExceedsMaximumSize`: The subject parameter is longer than 255 characters.
|
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.490",
|
|
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": "911ee1c530e3798c50136faf3bed570ecff0a41cd31148cb026769a535982082",
|
|
50
50
|
"typeScriptVersion": "5.1"
|
|
51
51
|
}
|