Fix some doc gaps

This commit is contained in:
Jack Kingsman
2026-03-03 12:01:58 -08:00
parent 73f082c06c
commit 31afb7b9c0
5 changed files with 14 additions and 5 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ from pydantic import BaseModel, Field
class Contact(BaseModel):
public_key: str = Field(description="Public key (64-char hex)")
name: str | None = None
type: int = 0 # 0=unknown, 1=client, 2=repeater, 3=room
type: int = 0 # 0=unknown, 1=client, 2=repeater, 3=room, 4=sensor
flags: int = 0
last_path: str | None = None
last_path_len: int = -1