@types/office-js-preview 1.0.671 → 1.0.672

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: Mon, 15 Dec 2025 18:43:33 GMT
11
+ * Last updated: Wed, 17 Dec 2025 22:37:01 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
@@ -16993,8 +16993,9 @@ declare namespace Office {
16993
16993
  *
16994
16994
  * **Important**:
16995
16995
  *
16996
- * - The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
16997
- * In that case, the `from` property represents the delegator, and the `sender` property represents the delegate.
16996
+ * - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
16997
+ * In this case, the `from` property returns the delegator's email address and the `sender` property returns the delegate's address. For information about mailbox delegation, see
16998
+ * {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
16998
16999
  *
16999
17000
  * - The `recipientType` property of the `EmailAddressDetails` object in the `from` property is undefined.
17000
17001
  */
@@ -17198,8 +17199,9 @@ declare namespace Office {
17198
17199
  *
17199
17200
  * **Important**:
17200
17201
  *
17201
- * - The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
17202
- * In that case, the `from` property represents the delegator, and the `sender` property represents the delegate.
17202
+ * - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
17203
+ * In this case, the `from` property returns the delegator's email address and the `sender` property returns the delegate's address. For information about mailbox delegation, see
17204
+ * {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
17203
17205
  *
17204
17206
  * - The `recipientType` property of the `EmailAddressDetails` object in the `sender` property is undefined.
17205
17207
  */
@@ -21290,11 +21292,6 @@ declare namespace Office {
21290
21292
  /**
21291
21293
  * Gets the email address of the sender of a message.
21292
21294
  *
21293
- * The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
21294
- * In that case, the `from` property represents the delegator, and the `sender` property represents the delegate.
21295
- *
21296
- * **Note**: The `recipientType` property of the `EmailAddressDetails` object in the `from` property is undefined.
21297
- *
21298
21295
  * The `from` property returns an `EmailAddressDetails` object.
21299
21296
  *
21300
21297
  * @remarks
@@ -21302,6 +21299,14 @@ declare namespace Office {
21302
21299
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
21303
21300
  *
21304
21301
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Read
21302
+ *
21303
+ * **Important**:
21304
+ *
21305
+ * - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
21306
+ * In this case, the `from` property returns the delegator's email address and the `sender` property returns the delegate's address. For information about mailbox delegation, see
21307
+ * {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
21308
+ *
21309
+ * - The `recipientType` property of the `EmailAddressDetails` object in the `from` property is undefined.
21305
21310
  */
21306
21311
  from: EmailAddressDetails;
21307
21312
  /**
@@ -21484,16 +21489,19 @@ declare namespace Office {
21484
21489
  /**
21485
21490
  * Gets the email address of the sender of an email message.
21486
21491
  *
21487
- * The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
21488
- * In that case, the `from` property represents the delegator, and the `sender` property represents the delegate.
21489
- *
21490
- * **Note**: The `recipientType` property of the `EmailAddressDetails` object in the `sender` property is undefined.
21491
- *
21492
21492
  * @remarks
21493
21493
  *
21494
21494
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
21495
21495
  *
21496
21496
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Read
21497
+ *
21498
+ * **Important**:
21499
+ *
21500
+ * - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
21501
+ * In this case, the `from` property returns the delegator's email address and the `sender` property returns the delegate's address. For information about mailbox delegation, see
21502
+ * {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
21503
+ *
21504
+ * - The `recipientType` property of the `EmailAddressDetails` object in the `sender` property is undefined.
21497
21505
  */
21498
21506
  sender: EmailAddressDetails;
21499
21507
  /**
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js-preview",
3
- "version": "1.0.671",
3
+ "version": "1.0.672",
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": "c4827a63efc2918f74e38cd235870bdfff83f6892d36032f1cccb51a8da6c189",
49
+ "typesPublisherContentHash": "d2c807df70fa1b96a93a01e404e2925bdda923448a0f52fd04256daeb4c8ce79",
50
50
  "typeScriptVersion": "5.2",
51
51
  "nonNpm": true
52
52
  }