feat(client): Add full 0.8 Role API

This commit is contained in:
Jesse Wierzbinski 2024-11-28 11:11:18 +01:00
parent 122842c00e
commit 382374e4d6
No known key found for this signature in database
2 changed files with 125 additions and 15 deletions

View file

@ -3,9 +3,9 @@ export type VersiaRole = {
name: string;
permissions: RolePermission[];
priority: number;
description: string | null;
description?: string;
visible: boolean;
icon: string | null;
icon?: string;
};
// Last updated: 2024-11-28