Minor clean up

This commit is contained in:
Scott Idem
2024-08-13 16:52:38 -04:00
parent 3639342356
commit e83623526c

View File

@@ -20,19 +20,19 @@ export interface Event {
conference: boolean;
type: string;
name: string;
summary: null|string;
description: null|string;
summary?: null|string;
description?: null|string;
start_datetime: Date;
end_datetime: Date;
timezone: null|string;
location_address_json: null|string;
start_datetime?: Date;
end_datetime?: Date;
timezone?: null|string;
location_address_json?: null|string;
mod_abstracts_json: null|key_val;
mod_badges_json: null|key_val;
mod_exhibits_json: null|key_val;
mod_pres_mgmt_json: null|key_val;
cfg_json: null|key_val;
mod_abstracts_json?: null|key_val;
mod_badges_json?: null|key_val;
mod_exhibits_json?: null|key_val;
mod_pres_mgmt_json?: null|key_val;
cfg_json?: null|key_val;
enable: null|boolean;
hide: null|boolean;
@@ -327,26 +327,26 @@ export interface Session {
event_id: string;
event_id_random: string;
event_location_id: null|string;
event_location_id_random: null|string;
event_location_id?: null|string;
event_location_id_random?: null|string;
poc_person_id: null|string;
poc_person_id_random: null|string;
poc_person_id?: null|string;
poc_person_id_random?: null|string;
name: string;
description: null|string;
description?: null|string;
start_datetime: null|Date;
end_datetime: null|Date;
start_datetime?: null|Date;
end_datetime?: null|Date;
passcode: null|string;
passcode?: null|string;
hide_event_launcher: null|boolean;
hide_event_launcher?: null|boolean;
alert: null|boolean;
alert_msg: null|string;
alert?: null|boolean;
alert_msg?: null|string;
data_json: null|string;
data_json?: null|string;
enable: null|boolean;
hide: null|boolean;