Merge branch 'master' into chat-relays

This commit is contained in:
spaced4ndy
2026-03-06 19:27:07 +04:00
19 changed files with 500 additions and 63 deletions
+29 -9
View File
@@ -1485,15 +1485,35 @@ LARGE:
## ConnStatus
**Enum type**:
- "new"
- "prepared"
- "joined"
- "requested"
- "accepted"
- "snd-ready"
- "ready"
- "deleted"
**Discriminated union type**:
New:
- type: "new"
Prepared:
- type: "prepared"
Joined:
- type: "joined"
Requested:
- type: "requested"
Accepted:
- type: "accepted"
SndReady:
- type: "sndReady"
Ready:
- type: "ready"
Deleted:
- type: "deleted"
Failed:
- type: "failed"
- connError: string
---