@cryptiklemur/lattice 1.16.2 → 1.16.3

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.
@@ -1,5 +1,34 @@
1
1
  import { useState, useCallback, useRef } from "react";
2
2
 
3
+ interface SpeechRecognitionResult {
4
+ readonly transcript: string;
5
+ readonly confidence: number;
6
+ readonly isFinal: boolean;
7
+ }
8
+
9
+ interface SpeechRecognitionResultItem {
10
+ readonly length: number;
11
+ readonly isFinal: boolean;
12
+ item(index: number): SpeechRecognitionResult;
13
+ [index: number]: SpeechRecognitionResult;
14
+ }
15
+
16
+ interface SpeechRecognitionResultList {
17
+ readonly length: number;
18
+ item(index: number): SpeechRecognitionResultItem;
19
+ [index: number]: SpeechRecognitionResultItem;
20
+ }
21
+
22
+ interface SpeechRecognitionEvent extends Event {
23
+ readonly resultIndex: number;
24
+ readonly results: SpeechRecognitionResultList;
25
+ }
26
+
27
+ interface SpeechRecognitionErrorEvent extends Event {
28
+ readonly error: string;
29
+ readonly message: string;
30
+ }
31
+
3
32
  interface SpeechRecognitionLike extends EventTarget {
4
33
  continuous: boolean;
5
34
  interimResults: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptiklemur/lattice",
3
- "version": "1.16.2",
3
+ "version": "1.16.3",
4
4
  "description": "Multi-machine agentic dashboard for Claude Code. Monitor sessions, manage MCP servers and skills, orchestrate across mesh-networked nodes.",
5
5
  "license": "MIT",
6
6
  "author": "Aaron Scherer <me@aaronscherer.me>",