chore: ⬆️ Update @lysand-org/client for new types

This commit is contained in:
Jesse Wierzbinski 2024-06-11 15:02:30 -10:00
parent 18b4bc64b3
commit a889f8d142
No known key found for this signature in database
10 changed files with 19 additions and 15 deletions

View file

@ -1,3 +1,4 @@
import type { Role as LysandRole } from "~/composables/Identities";
import type { Emoji } from "./emoji";
import type { Field } from "./field";
import type { Role } from "./role";
@ -30,5 +31,6 @@ export type Account = {
bot: boolean | null;
source?: Source;
role?: Role;
roles: LysandRole[];
mute_expires_at?: string;
};