Plumb through total neighbor count from radio and expose that in the UI. Closes #310.

This commit is contained in:
Jack Kingsman
2026-07-08 14:09:08 -07:00
parent 7fe15d0fd4
commit a6c64279e8
5 changed files with 50 additions and 2 deletions
+8
View File
@@ -672,6 +672,14 @@ class RepeaterNeighborsResponse(BaseModel):
neighbors: list[NeighborInfo] = Field(
default_factory=list, description="List of neighbors seen by repeater"
)
reported_count: int | None = Field(
default=None,
description=(
"Total neighbor count reported by the repeater firmware, independent of "
"how many entries were actually returned. May exceed len(neighbors) when a "
"multi-chunk fetch is incomplete (dropped follow-up query / duty-cycle throttle)."
),
)
class RepeaterAclResponse(BaseModel):