@deepdesk/deepdesk-sdk 11.6.1-beta.4 → 11.6.1-beta.6

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
@@ -1519,6 +1519,7 @@ declare enum FetchState {
1519
1519
  ERROR = "error"
1520
1520
  }
1521
1521
 
1522
+ type KeyboardMetric = Pick<KeyboardEvent, 'key' | 'shiftKey' | 'ctrlKey' | 'altKey' | 'metaKey'>;
1522
1523
  type StageSuggestion = {
1523
1524
  text: string;
1524
1525
  suggestion: TextSuggestion;
@@ -1548,9 +1549,10 @@ type State$6 = {
1548
1549
  text: string;
1549
1550
  html: string | null;
1550
1551
  selection: SelectionRange;
1551
- beforeKeyUp: {
1552
+ beforeInputChange: {
1552
1553
  text: string;
1553
1554
  selection: SelectionRange;
1555
+ keyDown: KeyboardMetric;
1554
1556
  } | null;
1555
1557
  mixedSuggestion: TextSuggestion | null;
1556
1558
  metrics: MetricState;
package/dist/index.d.ts CHANGED
@@ -1519,6 +1519,7 @@ declare enum FetchState {
1519
1519
  ERROR = "error"
1520
1520
  }
1521
1521
 
1522
+ type KeyboardMetric = Pick<KeyboardEvent, 'key' | 'shiftKey' | 'ctrlKey' | 'altKey' | 'metaKey'>;
1522
1523
  type StageSuggestion = {
1523
1524
  text: string;
1524
1525
  suggestion: TextSuggestion;
@@ -1548,9 +1549,10 @@ type State$6 = {
1548
1549
  text: string;
1549
1550
  html: string | null;
1550
1551
  selection: SelectionRange;
1551
- beforeKeyUp: {
1552
+ beforeInputChange: {
1552
1553
  text: string;
1553
1554
  selection: SelectionRange;
1555
+ keyDown: KeyboardMetric;
1554
1556
  } | null;
1555
1557
  mixedSuggestion: TextSuggestion | null;
1556
1558
  metrics: MetricState;