@types/office-js 1.0.563 → 1.0.564
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 +23 -14
- 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: Wed, 17 Dec 2025 22:37:01 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -16454,8 +16454,9 @@ declare namespace Office {
|
|
|
16454
16454
|
*
|
|
16455
16455
|
* **Important**:
|
|
16456
16456
|
*
|
|
16457
|
-
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
|
|
16458
|
-
* In
|
|
16457
|
+
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
|
|
16458
|
+
* 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
|
|
16459
|
+
* {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
|
|
16459
16460
|
*
|
|
16460
16461
|
* - The `recipientType` property of the `EmailAddressDetails` object in the `from` property is undefined.
|
|
16461
16462
|
*/
|
|
@@ -16659,8 +16660,9 @@ declare namespace Office {
|
|
|
16659
16660
|
*
|
|
16660
16661
|
* **Important**:
|
|
16661
16662
|
*
|
|
16662
|
-
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
|
|
16663
|
-
* In
|
|
16663
|
+
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
|
|
16664
|
+
* 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
|
|
16665
|
+
* {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
|
|
16664
16666
|
*
|
|
16665
16667
|
* - The `recipientType` property of the `EmailAddressDetails` object in the `sender` property is undefined.
|
|
16666
16668
|
*/
|
|
@@ -20630,11 +20632,6 @@ declare namespace Office {
|
|
|
20630
20632
|
/**
|
|
20631
20633
|
* Gets the email address of the sender of a message.
|
|
20632
20634
|
*
|
|
20633
|
-
* The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
|
|
20634
|
-
* In that case, the `from` property represents the delegator, and the `sender` property represents the delegate.
|
|
20635
|
-
*
|
|
20636
|
-
* **Note**: The `recipientType` property of the `EmailAddressDetails` object in the `from` property is undefined.
|
|
20637
|
-
*
|
|
20638
20635
|
* The `from` property returns an `EmailAddressDetails` object.
|
|
20639
20636
|
*
|
|
20640
20637
|
* @remarks
|
|
@@ -20642,6 +20639,15 @@ declare namespace Office {
|
|
|
20642
20639
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
|
|
20643
20640
|
*
|
|
20644
20641
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Read
|
|
20642
|
+
*
|
|
20643
|
+
*
|
|
20644
|
+
* **Important**:
|
|
20645
|
+
*
|
|
20646
|
+
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
|
|
20647
|
+
* 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
|
|
20648
|
+
* {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
|
|
20649
|
+
*
|
|
20650
|
+
* - The `recipientType` property of the `EmailAddressDetails` object in the `from` property is undefined.
|
|
20645
20651
|
*/
|
|
20646
20652
|
from: EmailAddressDetails;
|
|
20647
20653
|
/**
|
|
@@ -20824,16 +20830,19 @@ declare namespace Office {
|
|
|
20824
20830
|
/**
|
|
20825
20831
|
* Gets the email address of the sender of an email message.
|
|
20826
20832
|
*
|
|
20827
|
-
* The `from` and `sender` properties represent the same person unless the message is sent by a delegate.
|
|
20828
|
-
* In that case, the `from` property represents the delegator, and the `sender` property represents the delegate.
|
|
20829
|
-
*
|
|
20830
|
-
* **Note**: The `recipientType` property of the `EmailAddressDetails` object in the `sender` property is undefined.
|
|
20831
|
-
*
|
|
20832
20833
|
* @remarks
|
|
20833
20834
|
*
|
|
20834
20835
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read item**
|
|
20835
20836
|
*
|
|
20836
20837
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Read
|
|
20838
|
+
*
|
|
20839
|
+
* **Important**:
|
|
20840
|
+
*
|
|
20841
|
+
* - The `from` and `sender` properties represent the same person unless the message is sent by a delegate with **Send on behalf** permissions.
|
|
20842
|
+
* 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
|
|
20843
|
+
* {@link https://learn.microsoft.com/exchange/recipients-in-exchange-online/manage-permissions-for-recipients | Manage permissions for recipients in Exchange Online}.
|
|
20844
|
+
*
|
|
20845
|
+
* - The `recipientType` property of the `EmailAddressDetails` object in the `sender` property is undefined.
|
|
20837
20846
|
*/
|
|
20838
20847
|
sender: EmailAddressDetails;
|
|
20839
20848
|
/**
|
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.564",
|
|
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": "16dbbeb1dda8b368e1f30acbf2a0b765a492cd412a8f859b4fb04bad7037fa38",
|
|
50
50
|
"typeScriptVersion": "5.2"
|
|
51
51
|
}
|