This commit is contained in:
Peter Maquiran
2024-02-29 09:40:51 +01:00
parent fcc75eb8e2
commit b47154d313
56 changed files with 225 additions and 3383 deletions
+1 -1
View File
@@ -40,4 +40,4 @@ export interface days {
activeEvent: number
events: CustomCalendarEvent[]
}
}
}
+20
View File
@@ -33,9 +33,29 @@ export class Event{
EventRecurrence: EventRecurrence;
Name?: string
Attachments?: Attachment[];
HumanDate?: string;
IsAllDayEvent?: boolean;
}
interface EventList {
HasAttachments: boolean;
IsAllDayEvent: boolean;
EventId: string;
Subject: string;
Location: string;
CalendarId: string;
CalendarName: string;
StartDate: string;
EndDate: string;
Schedule: string;
RequiredAttendees: any; // Adjust type as per your data
OptionalAttendees: any; // Adjust type as per your data
HumanDate: string;
TimeZone: string;
IsPrivate: boolean;
}
// event to approve details ================================================
export interface Originator {
email: string;
+2 -2
View File
@@ -6,6 +6,6 @@ export class Folder{
SourceType:string;
SourceId:string;
DeadlineType: string;
SubjectTypes: string[];
SubjectTypes: string;
NumberPDPP:string;
}
}