release v2.0.0 #4

Merged
crimsen merged 481 commits from develop into master 2024-01-18 15:15:08 +00:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 7fe59f67f5 - Show all commits

View File

@ -15,6 +15,7 @@ declare namespace FG {
mail: string; mail: string;
birthday?: Date; birthday?: Date;
roles: Array<string>; roles: Array<string>;
permissions?: list;
avatar_url?: string; avatar_url?: string;
} }
type Permission = string; type Permission = string;
@ -36,8 +37,9 @@ declare namespace FG {
interface Event { interface Event {
id: number; id: number;
start: Date; start: Date;
end: Date;
description?: string; description?: string;
type?: EventType; type: EventType;
jobs: Array<Job>; jobs: Array<Job>;
} }
interface EventType { interface EventType {