@types/office-js-preview 1.0.427 → 1.0.429

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: Wed, 25 Oct 2023 20:43:32 GMT
11
+ * Last updated: Mon, 30 Oct 2023 21:43:36 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
@@ -19948,6 +19948,38 @@ declare namespace Office {
19948
19948
  * @beta
19949
19949
  */
19950
19950
  export interface SpamReportingEventArgs {
19951
+ /**
19952
+ * The text provided by the user in the preprocessing dialog of a spam-reporting add-in.
19953
+ *
19954
+ * @remarks
19955
+ * [Api set: Mailbox preview]
19956
+ *
19957
+ * To add an optional text box to the preprocessing dialog of your spam-reporting add-in, you must configure the
19958
+ * {@link https://learn.microsoft.com/javascript/api/manifest/preprocessingdialog?view=outlook-js-preview&preserve-view=true#child-elements | FreeTextLabel}
19959
+ * element in the manifest of your add-in.
19960
+ *
19961
+ * To learn more about how to develop a spam-reporting add-in, see
19962
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/spam-reporting | Implement an integrated spam-reporting add-in (preview)}.
19963
+ *
19964
+ * @beta
19965
+ */
19966
+ freeText: string;
19967
+ /**
19968
+ * Returns `true` for each reporting option selected by the user in the preprocessing dialog of a spam-reporting add-in.
19969
+ *
19970
+ * @remarks
19971
+ * [Api set: Mailbox preview]
19972
+ *
19973
+ * The order of the booleans in the array corresponds to the order of the reporting options specified in the
19974
+ * {@link https://learn.microsoft.com/javascript/api/manifest/reportingoptions?view=outlook-js-preview&preserve-view=true | ReportingOptions}
19975
+ * element of your add-in's manifest.
19976
+ *
19977
+ * To learn more about how to develop a spam-reporting add-in, see
19978
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/spam-reporting | Implement an integrated spam-reporting add-in (preview)}.
19979
+ *
19980
+ * @beta
19981
+ */
19982
+ options: boolean[];
19951
19983
  /**
19952
19984
  * The type of event that was raised. For details, see {@link https://learn.microsoft.com/javascript/api/office/office.eventtype | Office.EventType}.
19953
19985
  *
@@ -122484,7 +122516,7 @@ declare namespace PowerPoint {
122484
122516
  getItemAt(index: number): PowerPoint.SlideLayout;
122485
122517
  /**
122486
122518
  * Gets a layout using its unique ID. If such a layout does not exist, an object with an `isNullObject` property set to true is returned. For further information,
122487
- see {@link https://docs.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
122519
+ see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
122488
122520
  *
122489
122521
  * @remarks
122490
122522
  * [Api set: PowerPointApi 1.3]
@@ -123923,7 +123955,7 @@ declare namespace PowerPoint {
123923
123955
  getItemAt(index: number): PowerPoint.Slide;
123924
123956
  /**
123925
123957
  * Gets a slide using its unique ID. If such a slide does not exist, an object with an `isNullObject` property set to true is returned. For further information,
123926
- see {@link https://docs.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods
123958
+ see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods
123927
123959
  and properties}.
123928
123960
  *
123929
123961
  * @remarks
@@ -123998,7 +124030,7 @@ declare namespace PowerPoint {
123998
124030
  getItemAt(index: number): PowerPoint.Slide;
123999
124031
  /**
124000
124032
  * Gets a slide using its unique ID. If such a slide does not exist, an object with an `isNullObject` property set to true is returned. For further information,
124001
- see {@link https://docs.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods
124033
+ see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods
124002
124034
  and properties}.
124003
124035
  *
124004
124036
  * @remarks
@@ -124073,7 +124105,7 @@ declare namespace PowerPoint {
124073
124105
  getItemAt(index: number): PowerPoint.SlideMaster;
124074
124106
  /**
124075
124107
  * Gets a Slide Master using its unique ID. If such a Slide Master does not exist, an object with an `isNullObject` property set to true is returned.
124076
- For further information, see {@link https://docs.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}."
124108
+ For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}."
124077
124109
  *
124078
124110
  * @remarks
124079
124111
  * [Api set: PowerPointApi 1.3]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js-preview",
3
- "version": "1.0.427",
3
+ "version": "1.0.429",
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,6 +45,6 @@
45
45
  },
46
46
  "scripts": {},
47
47
  "dependencies": {},
48
- "typesPublisherContentHash": "849b79eed46928e266977c6ce39e5f7d30e1267e6e543d4b20a107322f98a5e4",
48
+ "typesPublisherContentHash": "09757a6f1939be1e00a0bd3ef026f8212a3a87da72cf5b73fa2bdcab30ed964c",
49
49
  "typeScriptVersion": "4.5"
50
50
  }