Now with a new recent files report.

This commit is contained in:
Scott Idem
2024-07-12 16:20:23 -04:00
parent 47c742d004
commit 997f470ebe
8 changed files with 522 additions and 23 deletions

View File

@@ -238,6 +238,19 @@ export interface File {
hosted_file_content_type: string;
file_size: number; // In bytes
hosted_file_size?: number; // In bytes
event_location_code?: null|string;
event_location_name?: null|string;
event_session_code?: null|string;
event_session_name?: string;
event_session_start_datetime?: null|Date;
event_presentation_code?: null|string;
event_presentation_name?: string;
event_presentation_start_datetime?: null|Date;
event_presenter_given_name?: null|string;
event_presenter_family_name?: null|string;
event_presenter_full_name?: null|string;
event_presenter_email?: null|string;
}