@types/office-js 1.0.411 → 1.0.413

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 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: Thu, 08 Aug 2024 16:08:15 GMT
11
+ * Last updated: Wed, 14 Aug 2024 20:07:48 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
office-js/index.d.ts CHANGED
@@ -10316,6 +10316,22 @@ declare namespace Office {
10316
10316
  * only support Normal and Private sensitivity levels.
10317
10317
  */
10318
10318
  sensitivity: Sensitivity;
10319
+ /**
10320
+ * Gets the object to get or set the {@link Office.SensitivityLabel | sensitivity label} of an appointment.
10321
+ *
10322
+ * @remarks
10323
+ * [Api set: Mailbox 1.13]
10324
+ *
10325
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read/write item**
10326
+ *
10327
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Organizer
10328
+ *
10329
+ * **Important**: To use the sensitivity label feature in your add-in, you must have a Microsoft 365 E5 subscription.
10330
+ *
10331
+ * To learn more about how to manage sensitivity labels in your add-in, see
10332
+ * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/sensitivity-label | Manage the sensitivity label of your message or appointment in compose mode}.
10333
+ */
10334
+ sensitivityLabel: SensitivityLabel;
10319
10335
  /**
10320
10336
  * Gets the ID of the series that an instance belongs to.
10321
10337
  *
@@ -12588,18 +12604,6 @@ declare namespace Office {
12588
12604
  * To use `appendOnSendAsync`, you must specify a supplementary permission in the manifest. Details vary with the type of manifest. See {@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Understanding Outlook add-in permissions}. To learn more
12589
12605
  * about append-on-send and its configuration, see
12590
12606
  * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/append-on-send | Implement append-on-send in your Outlook add-in}.
12591
- *
12592
- * **Important**: If the {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-on-send-addins?tabs=windows | on-send feature}
12593
- * is implemented with append-on-send, the following apply.
12594
- *
12595
- * - If the user is running add-ins that implement the on-send feature using `ItemSend` in the manifest, append-on-send runs before on-send functionality.
12596
- *
12597
- * - If your add-in implements the on-send feature and calls `appendOnSendAsync` in the `ItemSend` handler,
12598
- * the `appendOnSendAsync` call returns an error as this scenario isn't supported.
12599
- *
12600
- * **Recommended**: Call `getTypeAsync` then pass the returned value to the `options.coercionType` parameter.
12601
- *
12602
- * **Note**: To clear data from a previous `appendOnSendAsync` call, you can call it again with the `data` parameter set to `null`.
12603
12607
  *
12604
12608
  * @remarks
12605
12609
  * [Api set: Mailbox 1.9]
@@ -12608,6 +12612,22 @@ declare namespace Office {
12608
12612
  *
12609
12613
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
12610
12614
  *
12615
+ * **Recommended**: Call `getTypeAsync`, then pass its returned value to the `options.coercionType` parameter.
12616
+ *
12617
+ * **Important**:
12618
+ *
12619
+ * - If the user is running add-ins that implement the {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-on-send-addins | on-send feature}
12620
+ * using `ItemSend` in the manifest, append-on-send runs before on-send functionality.
12621
+ *
12622
+ * - If your add-in implements the on-send feature and calls `appendOnSendAsync` in the `ItemSend` handler,
12623
+ * the `appendOnSendAsync` call returns an error as this scenario isn't supported.
12624
+ *
12625
+ * - To clear data from a previous `appendOnSendAsync` call, you can call it again with the `data` parameter set to `null`.
12626
+ *
12627
+ * - SVG files aren't supported. Use JPG or PNG files instead.
12628
+ *
12629
+ * - The `appendOnSendAsync` method doesn't support inline CSS. Use internal or external CSS instead.
12630
+ *
12611
12631
  * **Errors**:
12612
12632
  *
12613
12633
  * - `DataExceedsMaximumSize`: The `data` parameter is longer than 5,000 characters.
@@ -12628,18 +12648,6 @@ declare namespace Office {
12628
12648
  * To use `appendOnSendAsync`, you must specify a supplementary permission in the manifest. Details vary with the type of manifest. See {@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Understanding Outlook add-in permissions}. To learn more
12629
12649
  * about append-on-send and its configuration, see
12630
12650
  * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/append-on-send | Implement append-on-send in your Outlook add-in}.
12631
- *
12632
- * **Important**: If the {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-on-send-addins?tabs=windows | on-send feature}
12633
- * is implemented with append-on-send, the following apply.
12634
- *
12635
- * - If the user is running add-ins that implement the on-send feature using `ItemSend` in the manifest, append-on-send runs before on-send functionality.
12636
- *
12637
- * - If your add-in implements the on-send feature and calls `appendOnSendAsync` in the `ItemSend` handler,
12638
- * the `appendOnSendAsync` call returns an error as this scenario isn't supported.
12639
- *
12640
- * **Recommended**: Call `getTypeAsync` then pass the returned value to the `options.coercionType` parameter.
12641
- *
12642
- * **Note**: To clear data from a previous `appendOnSendAsync` call, you can call it again with the `data` parameter set to `null`.
12643
12651
  *
12644
12652
  * @remarks
12645
12653
  * [Api set: Mailbox 1.9]
@@ -12648,6 +12656,22 @@ declare namespace Office {
12648
12656
  *
12649
12657
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
12650
12658
  *
12659
+ * **Recommended**: Call `getTypeAsync`, then pass its returned value to the `options.coercionType` parameter.
12660
+ *
12661
+ * **Important**:
12662
+ *
12663
+ * - If the user is running add-ins that implement the {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-on-send-addins | on-send feature}
12664
+ * using `ItemSend` in the manifest, append-on-send runs before on-send functionality.
12665
+ *
12666
+ * - If your add-in implements the on-send feature and calls `appendOnSendAsync` in the `ItemSend` handler,
12667
+ * the `appendOnSendAsync` call returns an error as this scenario isn't supported.
12668
+ *
12669
+ * - To clear data from a previous `appendOnSendAsync` call, you can call it again with the `data` parameter set to `null`.
12670
+ *
12671
+ * - SVG files aren't supported. Use JPG or PNG files instead.
12672
+ *
12673
+ * - The `appendOnSendAsync` method doesn't support inline CSS. Use internal or external CSS instead.
12674
+ *
12651
12675
  * **Errors**:
12652
12676
  *
12653
12677
  * - `DataExceedsMaximumSize`: The `data` parameter is longer than 5,000 characters.
@@ -12753,6 +12777,8 @@ declare namespace Office {
12753
12777
  *
12754
12778
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
12755
12779
  *
12780
+ * **Recommended**: Call `getTypeAsync`, then pass the returned value to the `options.coercionType` parameter.
12781
+ *
12756
12782
  * **Important**:
12757
12783
  *
12758
12784
  * - After the content is prepended, the position of the cursor depends on which client the add-in is running. In Outlook on the web and on Windows
@@ -12772,7 +12798,9 @@ declare namespace Office {
12772
12798
  * supported. For more information on supported APIs in Outlook mobile, see
12773
12799
  * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
12774
12800
  *
12775
- * **Recommended**: Call `getTypeAsync`, then pass the returned value to the `options.coercionType` parameter.
12801
+ * - SVG files aren't supported. Use JPG or PNG files instead.
12802
+ *
12803
+ * - The `prependAsync` method doesn't support inline CSS. Use internal or external CSS instead.
12776
12804
  *
12777
12805
  * **Errors**:
12778
12806
  *
@@ -12796,6 +12824,8 @@ declare namespace Office {
12796
12824
  *
12797
12825
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
12798
12826
  *
12827
+ * **Recommended**: Call `getTypeAsync`, then pass the returned value to the `options.coercionType` parameter.
12828
+ *
12799
12829
  * **Important**:
12800
12830
  *
12801
12831
  * - After the content is prepended, the position of the cursor depends on which client the add-in is running. In Outlook on the web and on Windows
@@ -12815,7 +12845,9 @@ declare namespace Office {
12815
12845
  * supported. For more information on supported APIs in Outlook mobile, see
12816
12846
  * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
12817
12847
  *
12818
- * **Recommended**: Call `getTypeAsync`, then pass the returned value to the `options.coercionType` parameter.
12848
+ * - SVG files aren't supported. Use JPG or PNG files instead.
12849
+ *
12850
+ * - The `prependAsync` method doesn't support inline CSS. Use internal or external CSS instead.
12819
12851
  *
12820
12852
  * **Errors**:
12821
12853
  *
@@ -12828,37 +12860,41 @@ declare namespace Office {
12828
12860
  prependAsync(data: string, callback?: (asyncResult: Office.AsyncResult<void>) => void): void;
12829
12861
  /**
12830
12862
  * Prepends HTML or plain text to the beginning of a message or appointment body when the mail item is sent.
12831
- *
12863
+ *
12832
12864
  * To use `prependOnSendAsync`, you must specify a supplementary permission in the manifest. Details vary with the type of manifest. For guidance,
12833
12865
  * see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Understanding Outlook add-in permissions}.
12834
- *
12866
+ *
12835
12867
  * @remarks
12836
12868
  * [Api set: Mailbox 1.13]
12837
- *
12869
+ *
12838
12870
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read/write item**
12839
12871
  *
12840
12872
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
12841
- *
12873
+ *
12842
12874
  * **Recommended**: Call `getTypeAsync`, then pass its returned value to the `options.coercionType` parameter.
12843
- *
12875
+ *
12844
12876
  * **Important**: When implementing `prependOnSendAsync`, keep the following in mind.
12845
- *
12877
+ *
12846
12878
  * - In a {@link https://learn.microsoft.com/office/dev/add-ins/outlook/onmessagesend-onappointmentsend-events | Smart Alerts add-in},
12847
12879
  * the prepend-on-send feature runs first.
12848
- *
12880
+ *
12849
12881
  * - A new line is added after the prepended content.
12850
- *
12882
+ *
12851
12883
  * - If multiple active add-ins call `prependOnSendAsync`, the order of the inserted content depends on the order in which the add-in runs.
12852
12884
  * The content of the last run add-in appears above previously prepended content.
12853
- *
12885
+ *
12854
12886
  * - If the add-in attempts to insert HTML into a plain text body, the content won't be prepended. Conversely, plain text will be inserted into an HTML body.
12855
- *
12887
+ *
12888
+ * - SVG files aren't supported. Use JPG or PNG files instead.
12889
+ *
12890
+ * - The `prependOnSendAsync` method doesn't support inline CSS. Use internal or external CSS instead.
12891
+ *
12856
12892
  * **Errors**:
12857
- *
12893
+ *
12858
12894
  * - `DataExceedsMaximumSize`: The `data` parameter exceeds 5,000 characters.
12859
- *
12895
+ *
12860
12896
  * - `InvalidFormatError`: The `options.coercionType` parameter is set to `Office.CoercionType.Html`, but the item body is in plain text format.
12861
- *
12897
+ *
12862
12898
  * @param data - The string to be prepended to the beginning of the message or appointment body. The string is limited to 5,000 characters.
12863
12899
  * @param options - An object literal that contains one or more of the following properties:-
12864
12900
  * `asyncContext`: Any object that can be accessed in the callback function.
@@ -12869,37 +12905,41 @@ declare namespace Office {
12869
12905
  prependOnSendAsync(data: string, options: Office.AsyncContextOptions & CoercionTypeOptions, callback?: (asyncResult: Office.AsyncResult<void>) => void): void;
12870
12906
  /**
12871
12907
  * Prepends HTML or plain text to the beginning of a message or appointment body when the mail item is sent.
12872
- *
12908
+ *
12873
12909
  * To use `prependOnSendAsync`, you must specify a supplementary permission in the manifest. Details vary with the type of manifest. For guidance,
12874
12910
  * see {@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Understanding Outlook add-in permissions}.
12875
- *
12911
+ *
12876
12912
  * @remarks
12877
12913
  * [Api set: Mailbox 1.13]
12878
- *
12914
+ *
12879
12915
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read/write item**
12880
12916
  *
12881
12917
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
12882
- *
12918
+ *
12883
12919
  * **Recommended**: Call `getTypeAsync`, then pass its returned value to the `options.coercionType` parameter.
12884
- *
12920
+ *
12885
12921
  * **Important**: When implementing `prependOnSendAsync`, keep the following in mind.
12886
- *
12922
+ *
12887
12923
  * - In a {@link https://learn.microsoft.com/office/dev/add-ins/outlook/onmessagesend-onappointmentsend-events | Smart Alerts add-in},
12888
12924
  * the prepend-on-send feature runs first.
12889
- *
12925
+ *
12890
12926
  * - A new line is added after the prepended content.
12891
- *
12927
+ *
12892
12928
  * - If multiple active add-ins call `prependOnSendAsync`, the order of the inserted content depends on the order in which the add-in runs.
12893
12929
  * The content of the last run add-in appears above previously prepended content.
12894
- *
12930
+ *
12895
12931
  * - If the add-in attempts to insert HTML into a plain text body, the content won't be prepended. Conversely, plain text will be inserted into an HTML body.
12896
- *
12932
+ *
12933
+ * - SVG files aren't supported. Use JPG or PNG files instead.
12934
+ *
12935
+ * - The `prependOnSendAsync` method doesn't support inline CSS. Use internal or external CSS instead.
12936
+ *
12897
12937
  * **Errors**:
12898
- *
12938
+ *
12899
12939
  * - `DataExceedsMaximumSize`: The `data` parameter exceeds 5,000 characters.
12900
- *
12940
+ *
12901
12941
  * - `InvalidFormatError`: The `options.coercionType` parameter is set to `Office.CoercionType.Html`, but the item body is in plain text format.
12902
- *
12942
+ *
12903
12943
  * @param data - The string to be prepended to the beginning of the message or appointment body. The string is limited to 5,000 characters.
12904
12944
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
12905
12945
  * of type `Office.AsyncResult`. Any errors encountered will be provided in the `asyncResult.error` property.
@@ -12915,6 +12955,8 @@ declare namespace Office {
12915
12955
  *
12916
12956
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
12917
12957
  *
12958
+ * **Recommended**: Call `getTypeAsync`, then pass the returned value to the `options.coercionType` parameter.
12959
+ *
12918
12960
  * **Important**:
12919
12961
  *
12920
12962
  * - After the body is replaced with the specified content, the position of the cursor depends on which client the add-in is running.
@@ -12936,7 +12978,9 @@ declare namespace Office {
12936
12978
  * supported. For more information on supported APIs in Outlook mobile, see
12937
12979
  * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
12938
12980
  *
12939
- * **Recommended**: Call `getTypeAsync`, then pass the returned value to the `options.coercionType` parameter.
12981
+ * - SVG files aren't supported. Use JPG or PNG files instead.
12982
+ *
12983
+ * - The `setAsync` method doesn't support inline CSS. Use internal or external CSS instead.
12940
12984
  *
12941
12985
  * **Errors**:
12942
12986
  *
@@ -12962,6 +13006,8 @@ declare namespace Office {
12962
13006
  *
12963
13007
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
12964
13008
  *
13009
+ * **Recommended**: Call `getTypeAsync`, then pass the returned value to the `options.coercionType` parameter.
13010
+ *
12965
13011
  * **Important**:
12966
13012
  *
12967
13013
  * - After the body is replaced with the specified content, the position of the cursor depends on which client the add-in is running.
@@ -12983,7 +13029,9 @@ declare namespace Office {
12983
13029
  * supported. For more information on supported APIs in Outlook mobile, see
12984
13030
  * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
12985
13031
  *
12986
- * **Recommended**: Call `getTypeAsync`, then pass the returned value to the `options.coercionType` parameter.
13032
+ * - SVG files aren't supported. Use JPG or PNG files instead.
13033
+ *
13034
+ * - The `setAsync` method doesn't support inline CSS. Use internal or external CSS instead.
12987
13035
  *
12988
13036
  * **Errors**:
12989
13037
  *
@@ -13003,11 +13051,6 @@ declare namespace Office {
13003
13051
  * the editor, it replaces the selected text. If the cursor was never in the body of the item, or if the body of the item lost focus in the
13004
13052
  * UI, the string will be inserted at the top of the body content. After insertion, the cursor is placed at the end of the inserted content.
13005
13053
  *
13006
- * When including links in HTML markup, you can disable online link preview by setting the `id` attribute on the anchor (\<a\>) to "LPNoLP"
13007
- * (see the **Examples** section for a sample).
13008
- *
13009
- * **Recommended**: Call `getTypeAsync` then pass the returned value to the `options.coercionType` parameter.
13010
- *
13011
13054
  * @remarks
13012
13055
  * [Api set: Mailbox 1.1]
13013
13056
  *
@@ -13015,6 +13058,17 @@ declare namespace Office {
13015
13058
  *
13016
13059
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
13017
13060
  *
13061
+ * **Recommended**: Call `getTypeAsync` then pass the returned value to the `options.coercionType` parameter.
13062
+ *
13063
+ * **Important*:
13064
+ *
13065
+ * - When including links in HTML markup, you can disable online link preview by setting the `id` attribute on the anchor (\<a\>) to "LPNoLP"
13066
+ * (see the **Examples** section for a sample).
13067
+ *
13068
+ * - SVG files aren't supported. Use JPG or PNG files instead.
13069
+ *
13070
+ * - The `setSelectedDataAsync` method doesn't support inline CSS. Use internal or external CSS instead.
13071
+ *
13018
13072
  * **Errors**:
13019
13073
  *
13020
13074
  * - `DataExceedsMaximumSize`: The `data` parameter is longer than 1,000,000 characters.
@@ -13036,11 +13090,6 @@ declare namespace Office {
13036
13090
  * the editor, it replaces the selected text. If the cursor was never in the body of the item, or if the body of the item lost focus in the
13037
13091
  * UI, the string will be inserted at the top of the body content. After insertion, the cursor is placed at the end of the inserted content.
13038
13092
  *
13039
- * When including links in HTML markup, you can disable online link preview by setting the `id` attribute on the anchor (\<a\>) to "LPNoLP"
13040
- * (see the **Examples** section for a sample).
13041
- *
13042
- * **Recommended**: Call `getTypeAsync` then pass the returned value to the `options.coercionType` parameter.
13043
- *
13044
13093
  * @remarks
13045
13094
  * [Api set: Mailbox 1.1]
13046
13095
  *
@@ -13048,6 +13097,17 @@ declare namespace Office {
13048
13097
  *
13049
13098
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
13050
13099
  *
13100
+ * **Recommended**: Call `getTypeAsync` then pass the returned value to the `options.coercionType` parameter.
13101
+ *
13102
+ * **Important*:
13103
+ *
13104
+ * - When including links in HTML markup, you can disable online link preview by setting the `id` attribute on the anchor (\<a\>) to "LPNoLP"
13105
+ * (see the **Examples** section for a sample).
13106
+ *
13107
+ * - SVG files aren't supported. Use JPG or PNG files instead.
13108
+ *
13109
+ * - The `setSelectedDataAsync` method doesn't support inline CSS. Use internal or external CSS instead.
13110
+ *
13051
13111
  * **Errors**:
13052
13112
  *
13053
13113
  * - `DataExceedsMaximumSize`: The `data` parameter is longer than 1,000,000 characters.
@@ -13084,6 +13144,10 @@ declare namespace Office {
13084
13144
  * When the user composes a new item (including reply or forward), the signature is set but doesn't modify the form. This means
13085
13145
  * if the user closes the form without making other edits, they won't be prompted to save changes.
13086
13146
  *
13147
+ * - SVG files aren't supported in mail signatures. Use JPG or PNG files instead.
13148
+ *
13149
+ * - The `setSignatureAsync` method doesn't support inline CSS. Use internal or external CSS instead.
13150
+ *
13087
13151
  * **Errors**:
13088
13152
  *
13089
13153
  * - `DataExceedsMaximumSize`: The `data` parameter is longer than 30,000 characters.
@@ -13124,6 +13188,10 @@ declare namespace Office {
13124
13188
  * When the user composes a new item (including reply or forward), the signature is set but doesn't modify the form. This means
13125
13189
  * if the user closes the form without making other edits, they won't be prompted to save changes.
13126
13190
  *
13191
+ * - SVG files aren't supported in mail signatures. Use JPG or PNG files instead.
13192
+ *
13193
+ * - The `setSignatureAsync` method doesn't support inline CSS. Use internal or external CSS instead.
13194
+ *
13127
13195
  * **Errors**:
13128
13196
  *
13129
13197
  * - `DataExceedsMaximumSize`: The `data` parameter is longer than 30,000 characters.
office-js/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js",
3
- "version": "1.0.411",
3
+ "version": "1.0.413",
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",
@@ -45,6 +45,6 @@
45
45
  },
46
46
  "scripts": {},
47
47
  "dependencies": {},
48
- "typesPublisherContentHash": "294aa411a4ab747a5fafc736077f6b749a4ee0ae4328b51d3ce5b0a9fa46aaaf",
48
+ "typesPublisherContentHash": "102afe8ae4a3b06daf1cf94a870f60e6ada39ee8652a90eb7c5c965c2bfabcc1",
49
49
  "typeScriptVersion": "4.8"
50
50
  }