refactor: update api and client to reference humanIds

This commit is contained in:
talksik
2026-03-24 19:08:51 -07:00
parent 3bf3f16be7
commit 57a1cbc696
24 changed files with 666 additions and 416 deletions
+8 -2
View File
@@ -5,9 +5,15 @@ import "time"
type Network struct {
ID string
Name string
AdminEmail string
MemberEmails []string
AdminHumanId string
MemberHumanIds []string
OpenStreamCapacity int
OpenStreamCount int
CreatedAt time.Time
}
type Invitation struct {
NetworkID string
Email string
CreatedAt time.Time
}