Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bafe299249 | |||
| 66b1fa0ecc |
@@ -0,0 +1,5 @@
|
|||||||
|
FROM node:26-slim
|
||||||
|
WORKDIR /app
|
||||||
|
COPY . .
|
||||||
|
RUN npm install
|
||||||
|
CMD ["npm", "start"]
|
||||||
@@ -14,4 +14,4 @@ export interface CalendarEvent {
|
|||||||
body: string;
|
body: string;
|
||||||
requiredAttendees: string[];
|
requiredAttendees: string[];
|
||||||
optionalAttendees: string[];
|
optionalAttendees: string[];
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -29,4 +29,4 @@ export interface Attachment {
|
|||||||
contentType: string;
|
contentType: string;
|
||||||
attachmentId: string;
|
attachmentId: string;
|
||||||
isInline: boolean;
|
isInline: boolean;
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -4,4 +4,4 @@ export interface Folder {
|
|||||||
totalCount: number;
|
totalCount: number;
|
||||||
unreadCount: number;
|
unreadCount: number;
|
||||||
childFolderCount: number;
|
childFolderCount: number;
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -3,4 +3,4 @@ export interface FreeSlot {
|
|||||||
start: string;
|
start: string;
|
||||||
end: string;
|
end: string;
|
||||||
durationMinutes: number;
|
durationMinutes: number;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,4 +3,4 @@ export interface LoginConfig {
|
|||||||
email: string;
|
email: string;
|
||||||
username: string;
|
username: string;
|
||||||
domain?: string;
|
domain?: string;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,4 +8,4 @@ export interface MeetingResult {
|
|||||||
requiredAttendees: string[];
|
requiredAttendees: string[];
|
||||||
optionalAttendees: string[];
|
optionalAttendees: string[];
|
||||||
error: string;
|
error: string;
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -14,4 +14,4 @@ export interface Person {
|
|||||||
phones: Record<string, string>;
|
phones: Record<string, string>;
|
||||||
address: string;
|
address: string;
|
||||||
directReports: Array<{ name: string; email: string }>;
|
directReports: Array<{ name: string; email: string }>;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user