feat: basics #1

Merged
albnnc merged 13 commits from specific-primate into main 2026-07-09 06:42:45 +00:00
7 changed files with 7 additions and 7 deletions
Showing only changes of commit bafe299249 - Show all commits
+1 -1
View File
@@ -14,4 +14,4 @@ export interface CalendarEvent {
body: string;
requiredAttendees: string[];
optionalAttendees: string[];
}
}
+1 -1
View File
@@ -29,4 +29,4 @@ export interface Attachment {
contentType: string;
attachmentId: string;
isInline: boolean;
}
}
+1 -1
View File
@@ -4,4 +4,4 @@ export interface Folder {
totalCount: number;
unreadCount: number;
childFolderCount: number;
}
}
+1 -1
View File
@@ -3,4 +3,4 @@ export interface FreeSlot {
start: string;
end: string;
durationMinutes: number;
}
}
+1 -1
View File
@@ -3,4 +3,4 @@ export interface LoginConfig {
email: string;
username: string;
domain?: string;
}
}
+1 -1
View File
@@ -8,4 +8,4 @@ export interface MeetingResult {
requiredAttendees: string[];
optionalAttendees: string[];
error: string;
}
}
+1 -1
View File
@@ -14,4 +14,4 @@ export interface Person {
phones: Record<string, string>;
address: string;
directReports: Array<{ name: string; email: string }>;
}
}