resolved conflicts from develop

This commit is contained in:
2025-10-03 10:31:05 +01:00
16 changed files with 570 additions and 290 deletions

View File

@@ -302,3 +302,42 @@ type AddAction = {
};
export type SoundAction = UpdateAction | AddAction;
export type WifiSettingValues = {
ssid: string;
password: string;
encryption: string;
};
export type ModemConfigPayload = {
property: string;
value: string;
};
export type WifiConfigPayload = {
property: string;
value: string;
};
export type WifiConfig = {
id: string;
fields: WifiConfigPayload[];
};
export type ModemConfig = {
id: string;
fields: ModemConfigPayload[];
};
export type ZoomInOptions = {
camera: string;
multiplier: number;
};
export type zoomConfig = {
camera: string;
};
export type ModemSettingsType = {
apn: string;
username: string;
password: string;
authenticationType: string;
};