feat: pagination for invites

This commit is contained in:
2026-09-01 11:13:33 +02:00
parent a30101f841
commit 14563e5204
5 changed files with 223 additions and 21 deletions
+6
View File
@@ -4,3 +4,9 @@ export interface Invite {
expires_at?: string
consumed_at?: string
}
export interface PaginatedInvites {
data: Invite[]
total: number
count: number
}