@types/office-js-preview 1.0.450 → 1.0.452
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-preview/README.md +1 -1
- office-js-preview/index.d.ts +20 -18
- office-js-preview/package.json +2 -2
office-js-preview/README.md
CHANGED
|
@@ -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:
|
|
11
|
+
* Last updated: Fri, 09 Feb 2024 17:35:52 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js-preview/index.d.ts
CHANGED
|
@@ -12479,29 +12479,33 @@ declare namespace Office {
|
|
|
12479
12479
|
size: number;
|
|
12480
12480
|
}
|
|
12481
12481
|
/**
|
|
12482
|
-
* Provides information about
|
|
12482
|
+
* Provides information about an attachment on a mail item that raised the
|
|
12483
|
+
* `Office.EventType.AttachmentsChanged` event.
|
|
12483
12484
|
*
|
|
12484
12485
|
* @remarks
|
|
12485
12486
|
* [Api set: Mailbox 1.8]
|
|
12486
12487
|
*/
|
|
12487
12488
|
export interface AttachmentsChangedEventArgs {
|
|
12488
12489
|
/**
|
|
12489
|
-
*
|
|
12490
|
-
*
|
|
12490
|
+
* Gets the object that represents the attachment that was added or removed from
|
|
12491
|
+
* a mail item. The object contains the `id`, `name`, `size`, and `attachmentType` properties
|
|
12492
|
+
* of the attachment.
|
|
12491
12493
|
*
|
|
12492
12494
|
* @remarks
|
|
12493
12495
|
* [Api set: Mailbox 1.8]
|
|
12494
12496
|
*/
|
|
12495
|
-
attachmentDetails: object
|
|
12497
|
+
attachmentDetails: object;
|
|
12496
12498
|
/**
|
|
12497
|
-
*
|
|
12499
|
+
* Specifies whether the attachment was added or removed from a mail item. For details, see
|
|
12500
|
+
* {@link Office.MailboxEnums.AttachmentStatus | MailboxEnums.AttachmentStatus}.
|
|
12498
12501
|
*
|
|
12499
12502
|
* @remarks
|
|
12500
12503
|
* [Api set: Mailbox 1.8]
|
|
12501
12504
|
*/
|
|
12502
12505
|
attachmentStatus: MailboxEnums.AttachmentStatus | string;
|
|
12503
12506
|
/**
|
|
12504
|
-
* Gets the type of
|
|
12507
|
+
* Gets the type of event that was raised. For details, see
|
|
12508
|
+
* {@link https://learn.microsoft.com/javascript/api/office/office.eventtype | Office.EventType}.
|
|
12505
12509
|
*
|
|
12506
12510
|
* @remarks
|
|
12507
12511
|
* [Api set: Mailbox 1.8]
|
|
@@ -13012,14 +13016,13 @@ declare namespace Office {
|
|
|
13012
13016
|
*
|
|
13013
13017
|
* - In Outlook on the web, `setSignatureAsync` only works on messages.
|
|
13014
13018
|
*
|
|
13015
|
-
* - This method is supported in Message Compose on Outlook on Android
|
|
13016
|
-
* rolled out. For a sample scenario, see
|
|
13019
|
+
* - This method is supported in Message Compose on Outlook on Android and on iOS starting in Version 4.2352.0. For a sample scenario, see
|
|
13017
13020
|
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/mobile-event-based | Implement event-based activation in Outlook mobile add-ins}.
|
|
13018
13021
|
* To learn more about APIs supported in Outlook mobile, see
|
|
13019
13022
|
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
13020
13023
|
*
|
|
13021
13024
|
* - The behavior of `setSignatureAsync` differs if you call it in the event handler of an add-in that implements the
|
|
13022
|
-
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/autolaunch | event-based activation feature using
|
|
13025
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/autolaunch | event-based activation feature using LaunchEvent in the manifest}.
|
|
13023
13026
|
* When the user composes a new item (including reply or forward), the signature is set but doesn't modify the form. This means
|
|
13024
13027
|
* if the user closes the form without making other edits, they won't be prompted to save changes.
|
|
13025
13028
|
*
|
|
@@ -13052,14 +13055,13 @@ declare namespace Office {
|
|
|
13052
13055
|
*
|
|
13053
13056
|
* - In Outlook on the web, `setSignatureAsync` only works on messages.
|
|
13054
13057
|
*
|
|
13055
|
-
* - This method is supported in Message Compose on Outlook on Android
|
|
13056
|
-
* rolled out. For a sample scenario, see
|
|
13058
|
+
* - This method is supported in Message Compose on Outlook on Android and on iOS starting in Version 4.2352.0. For a sample scenario, see
|
|
13057
13059
|
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/mobile-event-based | Implement event-based activation in Outlook mobile add-ins}.
|
|
13058
13060
|
* To learn more about APIs supported in Outlook mobile, see
|
|
13059
13061
|
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
13060
13062
|
*
|
|
13061
13063
|
* - The behavior of `setSignatureAsync` differs if you call it in the event handler of an add-in that implements the
|
|
13062
|
-
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/autolaunch | event-based activation feature using
|
|
13064
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/autolaunch | event-based activation feature using LaunchEvent in the manifest}.
|
|
13063
13065
|
* When the user composes a new item (including reply or forward), the signature is set but doesn't modify the form. This means
|
|
13064
13066
|
* if the user closes the form without making other edits, they won't be prompted to save changes.
|
|
13065
13067
|
*
|
|
@@ -16405,8 +16407,8 @@ declare namespace Office {
|
|
|
16405
16407
|
*
|
|
16406
16408
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
|
|
16407
16409
|
*
|
|
16408
|
-
* **Important**: This method is supported in Message Compose
|
|
16409
|
-
*
|
|
16410
|
+
* **Important**: This method is supported in Message Compose on Outlook on Android and on iOS starting in Version 4.2352.0.
|
|
16411
|
+
* For more information on supported APIs in Outlook mobile, see
|
|
16410
16412
|
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
16411
16413
|
*
|
|
16412
16414
|
* @param options - An object literal that contains one or more of the following properties:-
|
|
@@ -16435,8 +16437,8 @@ declare namespace Office {
|
|
|
16435
16437
|
*
|
|
16436
16438
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
|
|
16437
16439
|
*
|
|
16438
|
-
* **Important**: This method is supported in Message Compose
|
|
16439
|
-
*
|
|
16440
|
+
* **Important**: This method is supported in Message Compose on Outlook on Android and on iOS starting in Version 4.2352.0.
|
|
16441
|
+
* For more information on supported APIs in Outlook mobile, see
|
|
16440
16442
|
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
16441
16443
|
*
|
|
16442
16444
|
* @param callback - Optional. When the method completes, the function passed in the callback parameter is called with a single parameter,
|
|
@@ -16546,7 +16548,7 @@ declare namespace Office {
|
|
|
16546
16548
|
*
|
|
16547
16549
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
|
|
16548
16550
|
*
|
|
16549
|
-
* **Important**: This method is supported in Outlook on Android
|
|
16551
|
+
* **Important**: This method is supported in Outlook on Android and on iOS starting in Version 4.2352.0.
|
|
16550
16552
|
* For more information on supported APIs in Outlook mobile, see
|
|
16551
16553
|
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
16552
16554
|
*
|
|
@@ -16571,7 +16573,7 @@ declare namespace Office {
|
|
|
16571
16573
|
*
|
|
16572
16574
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
|
|
16573
16575
|
*
|
|
16574
|
-
* **Important**: This method is supported in Outlook on Android
|
|
16576
|
+
* **Important**: This method is supported in Outlook on Android and on iOS starting in Version 4.2352.0.
|
|
16575
16577
|
* For more information on supported APIs in Outlook mobile, see
|
|
16576
16578
|
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
16577
16579
|
*
|
office-js-preview/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js-preview",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.452",
|
|
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",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
|
-
"typesPublisherContentHash": "
|
|
48
|
+
"typesPublisherContentHash": "9a725aac6969fcf22bb5900250be600501c37b8d493d4c06e1d1e5053d38494d",
|
|
49
49
|
"typeScriptVersion": "4.6",
|
|
50
50
|
"nonNpm": true
|
|
51
51
|
}
|