feat(k1): add local connection matrix
This commit is contained in:
@@ -65,6 +65,7 @@ export interface XgridsCompatibilityState {
|
||||
firmware_claim?: string | null;
|
||||
vendor_writes_enabled?: boolean;
|
||||
camera_preview?: string | null;
|
||||
attestation?: CompatibilityAttestation | null;
|
||||
}
|
||||
|
||||
export interface XgridsModelingControlSafety {
|
||||
@@ -289,7 +290,7 @@ export interface XgridsK1State {
|
||||
devices?: BleDevice[];
|
||||
selected_device_id?: string | null;
|
||||
k1_ip?: string | null;
|
||||
connection_mode?: "bridge" | null;
|
||||
connection_mode?: "bridge" | "quick-connect" | "direct-connect" | null;
|
||||
foxglove_ws_url?: string | null;
|
||||
foxglove_viewer_url?: string | null;
|
||||
rerun_grpc_url?: string | null;
|
||||
@@ -322,7 +323,7 @@ export interface ScanRequest {
|
||||
|
||||
export interface CompatibilityAttestation {
|
||||
firmware_version: "3.0.2";
|
||||
topology: "direct-lan";
|
||||
topology: "direct-lan" | "device-ap" | "controller-hotspot";
|
||||
verification: "live-device-info";
|
||||
}
|
||||
|
||||
@@ -330,7 +331,7 @@ export interface ConnectRequest {
|
||||
device_id: string;
|
||||
ssid: string;
|
||||
password: string;
|
||||
connection_mode: "bridge";
|
||||
connection_mode: "bridge" | "quick-connect" | "direct-connect";
|
||||
compatibility_attestation: CompatibilityAttestation;
|
||||
operation_id?: string;
|
||||
idempotency_key?: string;
|
||||
|
||||
Reference in New Issue
Block a user