Add timestamps of locations providers #18

Merged
localhorst merged 9 commits from feat/timestamps into main 2025-02-14 21:22:58 +01:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 52d521a6ad - Show all commits
+1 -1
View File
@@ -72,7 +72,7 @@ router.post(
lp_ttn_end_device_uplinks_id,
mac: w.mac,
rssi: w.rssi,
scanned_at_timestamp: wifiTimestamp,
scanned_at_utc: wifiTimestamp,
})) ?? [];
const ttnGatewayReceptions = message.uplink_message.rx_metadata.map(
+2 -2
View File
@@ -5,14 +5,14 @@ interface CreateWifiScanParams {
lp_ttn_end_device_uplinks_id: string;
mac: string;
rssi: number;
scanned_at_timestamp?: Date;
scanned_at_utc?: Date;
}
interface UpdateWifiScanParams {
wifi_scan_id: string;
mac?: string;
rssi?: number;
scanned_at_timestamp?: Date;
scanned_at_utc?: Date;
}
@injectable()