refactor: drop skill file, rework client #3

Merged
albnnc merged 8 commits from able-swan into main 2026-07-11 08:52:56 +00:00
4 changed files with 0 additions and 51 deletions
Showing only changes of commit 8dcdab97ce - Show all commits
-17
View File
@@ -1,17 +0,0 @@
export interface CalendarEvent {
subject: string;
start: string;
end: string;
location: string;
isAllDay: boolean;
isCancelled: boolean;
isMeeting: boolean;
isRecurring: boolean;
organizer: string;
organizerEmail: string;
myResponse: string;
itemId: string;
body: string;
requiredAttendees: string[];
optionalAttendees: string[];
}
-6
View File
@@ -1,6 +0,0 @@
export interface FreeSlot {
date: string;
start: string;
end: string;
durationMinutes: number;
}
-11
View File
@@ -1,11 +0,0 @@
export interface MeetingResult {
success: boolean;
subject: string;
date: string;
startTime: string;
endTime: string;
location: string;
requiredAttendees: string[];
optionalAttendees: string[];
error: string;
}
-17
View File
@@ -1,17 +0,0 @@
export interface Person {
name: string;
email: string;
mailboxType: string;
firstName: string;
lastName: string;
jobTitle: string;
department: string;
company: string;
office: string;
alias: string;
manager: string;
managerEmail: string;
phones: Record<string, string>;
address: string;
directReports: Array<{ name: string; email: string }>;
}