@types/office-js 1.0.446 → 1.0.448
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 +25 -8
- 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: Tue, 19 Nov 2024 21:02:30 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -10420,7 +10420,7 @@ declare namespace Office {
|
|
|
10420
10420
|
* The `addFileAttachmentAsync` method uploads the file at the specified URI and attaches it to the item in the compose form.
|
|
10421
10421
|
*
|
|
10422
10422
|
* @remarks
|
|
10423
|
-
* [Api set: Mailbox 1.1]
|
|
10423
|
+
* [Api set: Mailbox 1.1 for Outlook on Windows (classic) and on Mac, Mailbox 1.8 for Outlook on the web and new Outlook on Windows]
|
|
10424
10424
|
*
|
|
10425
10425
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read/write item**
|
|
10426
10426
|
*
|
|
@@ -10428,8 +10428,11 @@ declare namespace Office {
|
|
|
10428
10428
|
*
|
|
10429
10429
|
* **Important**:
|
|
10430
10430
|
*
|
|
10431
|
+
* - This method isn't supported in Outlook on iOS or Android. For more information on supported APIs in Outlook mobile, see
|
|
10432
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
10433
|
+
*
|
|
10431
10434
|
* - In recent builds of classic Outlook on Windows, a bug was introduced that incorrectly appends an `Authorization: Bearer` header to
|
|
10432
|
-
* this action (whether using this API or the Outlook UI). To work around this issue,
|
|
10435
|
+
* this action (whether using this API or the Outlook UI). To work around this issue, use the `addFileAttachmentFromBase64` API
|
|
10433
10436
|
* introduced with requirement set 1.8.
|
|
10434
10437
|
*
|
|
10435
10438
|
* - The URI of the file to be attached must support caching in production. The server hosting the image shouldn't return a `Cache-Control` header that
|
|
@@ -10464,7 +10467,7 @@ declare namespace Office {
|
|
|
10464
10467
|
* The `addFileAttachmentAsync` method uploads the file at the specified URI and attaches it to the item in the compose form.
|
|
10465
10468
|
*
|
|
10466
10469
|
* @remarks
|
|
10467
|
-
* [Api set: Mailbox 1.1]
|
|
10470
|
+
* [Api set: Mailbox 1.1 for Outlook on Windows (classic) and on Mac, Mailbox 1.8 for Outlook on the web and new Outlook on Windows]
|
|
10468
10471
|
*
|
|
10469
10472
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read/write item**
|
|
10470
10473
|
*
|
|
@@ -10472,8 +10475,11 @@ declare namespace Office {
|
|
|
10472
10475
|
*
|
|
10473
10476
|
* **Important**:
|
|
10474
10477
|
*
|
|
10478
|
+
* - This method isn't supported in Outlook on iOS or Android. For more information on supported APIs in Outlook mobile, see
|
|
10479
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
10480
|
+
*
|
|
10475
10481
|
* - In recent builds of classic Outlook on Windows, a bug was introduced that incorrectly appends an `Authorization: Bearer` header to
|
|
10476
|
-
* this action (whether using this API or the Outlook UI). To work around this issue,
|
|
10482
|
+
* this action (whether using this API or the Outlook UI). To work around this issue, use the `addFileAttachmentFromBase64` API
|
|
10477
10483
|
* introduced with requirement set 1.8.
|
|
10478
10484
|
*
|
|
10479
10485
|
* - The URI of the file to be attached must support caching in production. The server hosting the image shouldn't return a `Cache-Control` header that
|
|
@@ -11778,6 +11784,8 @@ declare namespace Office {
|
|
|
11778
11784
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
|
|
11779
11785
|
*
|
|
11780
11786
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Attendee
|
|
11787
|
+
*
|
|
11788
|
+
* **Important**: In Outlook on the web and on Windows (new and classic), the appointment organizer is included in the object returned by the `requiredAttendees` property.
|
|
11781
11789
|
*/
|
|
11782
11790
|
requiredAttendees: EmailAddressDetails[];
|
|
11783
11791
|
/**
|
|
@@ -16305,7 +16313,7 @@ declare namespace Office {
|
|
|
16305
16313
|
* The `addFileAttachmentAsync` method uploads the file at the specified URI and attaches it to the item in the compose form.
|
|
16306
16314
|
*
|
|
16307
16315
|
* @remarks
|
|
16308
|
-
* [Api set: Mailbox 1.1]
|
|
16316
|
+
* [Api set: Mailbox 1.1 for Outlook on Windows (classic) and on Mac, Mailbox 1.8 for Outlook on the web and new Outlook on Windows]
|
|
16309
16317
|
*
|
|
16310
16318
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read/write item**
|
|
16311
16319
|
*
|
|
@@ -16313,8 +16321,11 @@ declare namespace Office {
|
|
|
16313
16321
|
*
|
|
16314
16322
|
* **Important**:
|
|
16315
16323
|
*
|
|
16324
|
+
* - This method isn't supported in Outlook on iOS or Android. For more information on supported APIs in Outlook mobile, see
|
|
16325
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
16326
|
+
*
|
|
16316
16327
|
* - In recent builds of classic Outlook on Windows, a bug was introduced that incorrectly appends an `Authorization: Bearer` header to
|
|
16317
|
-
* this action (whether using this API or the Outlook UI). To work around this issue,
|
|
16328
|
+
* this action (whether using this API or the Outlook UI). To work around this issue, use the `addFileAttachmentFromBase64` API
|
|
16318
16329
|
* introduced with requirement set 1.8.
|
|
16319
16330
|
*
|
|
16320
16331
|
* - The URI of the file to be attached must support caching in production. The server hosting the image shouldn't return a `Cache-Control` header that
|
|
@@ -16348,7 +16359,7 @@ declare namespace Office {
|
|
|
16348
16359
|
* The `addFileAttachmentAsync` method uploads the file at the specified URI and attaches it to the item in the compose form.
|
|
16349
16360
|
*
|
|
16350
16361
|
* @remarks
|
|
16351
|
-
* [Api set: Mailbox 1.1]
|
|
16362
|
+
* [Api set: Mailbox 1.1 for Outlook on Windows (classic) and on Mac, Mailbox 1.8 for Outlook on the web and new Outlook on Windows]
|
|
16352
16363
|
*
|
|
16353
16364
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read/write item**
|
|
16354
16365
|
*
|
|
@@ -16356,8 +16367,11 @@ declare namespace Office {
|
|
|
16356
16367
|
*
|
|
16357
16368
|
* **Important**:
|
|
16358
16369
|
*
|
|
16370
|
+
* - This method isn't supported in Outlook on iOS or Android. For more information on supported APIs in Outlook mobile, see
|
|
16371
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
16372
|
+
*
|
|
16359
16373
|
* - In recent builds of classic Outlook on Windows, a bug was introduced that incorrectly appends an `Authorization: Bearer` header to
|
|
16360
|
-
* this action (whether using this API or the Outlook UI). To work around this issue,
|
|
16374
|
+
* this action (whether using this API or the Outlook UI). To work around this issue, use the `addFileAttachmentFromBase64` API
|
|
16361
16375
|
* introduced with requirement set 1.8.
|
|
16362
16376
|
*
|
|
16363
16377
|
* - The URI of the file to be attached must support caching in production. The server hosting the image shouldn't return a `Cache-Control` header that
|
|
@@ -19158,6 +19172,9 @@ declare namespace Office {
|
|
|
19158
19172
|
*
|
|
19159
19173
|
* - Mac (new UI): No limit
|
|
19160
19174
|
*
|
|
19175
|
+
* In classic Outlook on Windows, the appointment organizer is included in the object returned by the `getAsync` method when you create a new appointment or edit an
|
|
19176
|
+
* existing one. In Outlook on the web and new Outlook on Windows, the organizer is only included in the returned object when you edit an existing appointment.
|
|
19177
|
+
*
|
|
19161
19178
|
* The `getAsync` method only returns recipients resolved by the Outlook client. A resolved recipient has the following characteristics.
|
|
19162
19179
|
*
|
|
19163
19180
|
* - If the recipient has a saved entry in the sender's address book, Outlook resolves the email address to the recipient's saved display name.
|
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.448",
|
|
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": "f5f3dd019545f4602c3c34a1e72602e3ee054c899f86d498709074bb14c1588e",
|
|
50
50
|
"typeScriptVersion": "4.9"
|
|
51
51
|
}
|