@deepdesk/deepdesk-sdk 10.1.11 → 10.1.13

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.
package/dist/index.d.mts CHANGED
@@ -210,14 +210,12 @@ interface InputEventMap {
210
210
  */
211
211
  change: (event: {
212
212
  plainText: string;
213
- rawHtml: string | null;
214
213
  }) => void;
215
214
  /**
216
215
  * Updated value after User, platform and plugin changes
217
216
  */
218
217
  updated: (event: {
219
218
  plainText: string;
220
- rawHtml: string | null;
221
219
  }) => void;
222
220
  /**
223
221
  * Changed selection of input
@@ -1783,7 +1781,7 @@ declare class DeepdeskSDK {
1783
1781
  static version: string;
1784
1782
  static count: number;
1785
1783
  private deepdeskApi;
1786
- private inputMediator;
1784
+ inputMediator: InputMediator<any> | null;
1787
1785
  private version;
1788
1786
  private broadcastEvents;
1789
1787
  private eventListeners;
package/dist/index.d.ts CHANGED
@@ -210,14 +210,12 @@ interface InputEventMap {
210
210
  */
211
211
  change: (event: {
212
212
  plainText: string;
213
- rawHtml: string | null;
214
213
  }) => void;
215
214
  /**
216
215
  * Updated value after User, platform and plugin changes
217
216
  */
218
217
  updated: (event: {
219
218
  plainText: string;
220
- rawHtml: string | null;
221
219
  }) => void;
222
220
  /**
223
221
  * Changed selection of input
@@ -1783,7 +1781,7 @@ declare class DeepdeskSDK {
1783
1781
  static version: string;
1784
1782
  static count: number;
1785
1783
  private deepdeskApi;
1786
- private inputMediator;
1784
+ inputMediator: InputMediator<any> | null;
1787
1785
  private version;
1788
1786
  private broadcastEvents;
1789
1787
  private eventListeners;