set wifi timestamp

This commit is contained in:
2025-02-08 20:54:06 +01:00
parent 5e4fd59148
commit 93f0c71a6c
2 changed files with 13 additions and 5 deletions

View File

@ -5,12 +5,14 @@ interface CreateWifiScanParams {
lp_ttn_end_device_uplinks_id: string;
mac: string;
rssi: number;
scanned_at_timestamp?: Date;
}
interface UpdateWifiScanParams {
wifi_scan_id: string;
mac?: string;
rssi?: number;
scanned_at_timestamp?: Date;
}
@injectable()