It has been a long two or three weeks...

This commit is contained in:
Scott Idem
2024-03-15 17:48:14 -04:00
parent 68b0efb6c9
commit 0400aa429b
13 changed files with 725 additions and 222 deletions

View File

@@ -3,6 +3,8 @@ import Dexie, { type Table } from 'dexie';
export interface Badge {
// id?: number;
id_random: string;
event_badge_id_random: string;
event_id_random: string;
full_name: string;
full_name_override: null|string;
email: string;
@@ -23,14 +25,26 @@ export interface Badge {
export interface Exhibit {
// id?: number;
id_random: string;
event_exhibit_id_random: string;
event_id_random: string;
code: string;
name: string;
tagline: null|string;
description: null|string;
staff_passcode: null
data_json: string;
data_json: null|string;
leads_api_access: null|boolean;
leads_custom_questions_json: null|string;
leads_device_sm_qty: null|number;
leads_device_lg_qty: null|number;
license_max: number;
license_li_json: string;
license_li_json: null|string;
cfg_json: string;
enable: boolean;
hide: boolean;
priority: boolean
sort: number;
group: string;
created_on: Date;
updated_on: Date;
}