From c7d63da8a1fc900e5b9d7c67af3afe7d62723885 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Thu, 15 Jan 2026 19:56:37 -0500 Subject: [PATCH] fix: Consolidate type and parameter fixes across multiple modules - API: Standardized 'order_by_li' types in event and archive modules. - API: Corrected 'enabled'/'hidden' parameter types in event exhibit and device search/list functions. - Type Safety: Addressed generic type casting issues in _process_generic_props across event modules. - Data Handling: Resolved return type consistency in journal creation and DB save operations. - Parameter Management: Fixed missing 'try_cache' parameters in event exhibit functions. - Core Logic: Ensured correct object properties in DB put operations for hosted files. --- src/lib/ae_api/api_post__crud_search_v3.ts | 2 +- src/lib/ae_core/ae_core_functions.ts | 6 +- src/lib/ae_events/ae_events__exhibit.ts | 16 +- src/lib/ae_journals/ae_journals__journal.ts | 20 +- svelte_check_output.txt | 3570 +++++++++++++++++++ 5 files changed, 3593 insertions(+), 21 deletions(-) create mode 100644 svelte_check_output.txt diff --git a/src/lib/ae_api/api_post__crud_search_v3.ts b/src/lib/ae_api/api_post__crud_search_v3.ts index c4efe308..f896c0a1 100644 --- a/src/lib/ae_api/api_post__crud_search_v3.ts +++ b/src/lib/ae_api/api_post__crud_search_v3.ts @@ -10,7 +10,7 @@ interface SearchAeObjV3Params { view?: string; for_obj_type?: string; for_obj_id?: string; - order_by_li?: Record | null; + order_by_li?: Record | Record[] | null; limit?: number; offset?: number; delay_ms?: number; diff --git a/src/lib/ae_core/ae_core_functions.ts b/src/lib/ae_core/ae_core_functions.ts index 571534c8..c4277f14 100644 --- a/src/lib/ae_core/ae_core_functions.ts +++ b/src/lib/ae_core/ae_core_functions.ts @@ -545,14 +545,14 @@ async function update_ae_obj_id_crud_v2({ `Not Patched - Field Name: ${field_name} with new Field Value: ${new_field_value}; Account ID: ${api_cfg.account_id}` ); patch_result = 'PATCH failed'; - return false; + return null; } - return true; + return null; }) .catch(function (error: any) { console.log('Something went wrong patching the record.'); console.log(error); - return false; + return null; }) .finally(function () { console.log('PATCH Promise finally'); diff --git a/src/lib/ae_events/ae_events__exhibit.ts b/src/lib/ae_events/ae_events__exhibit.ts index 4620c8c5..cd294c5e 100644 --- a/src/lib/ae_events/ae_events__exhibit.ts +++ b/src/lib/ae_events/ae_events__exhibit.ts @@ -141,7 +141,7 @@ async function _process_generic_props>({ for (const key in processed_obj) { if (key.endsWith('_random')) { const newKey = key.slice(0, -7); // Remove '_random' suffix - processed_obj[newKey] = processed_obj[key]; + (processed_obj as any)[newKey] = processed_obj[key]; } } // Ensure 'id' is set from '[obj_type]_id_random' @@ -279,8 +279,8 @@ export async function load_ae_obj_li__exhibit({ }): Promise { console.log(`*** load_ae_obj_li__exhibit() *** event_id=${event_id}`); - const enabled: string = params.qry__enabled ?? 'enabled'; // all, disabled, enabled - const hidden: string = params.qry__hidden ?? 'not_hidden'; // all, hidden, not_hidden + const enabled: 'enabled' | 'all' | 'not_enabled' = (params.qry__enabled as any) ?? 'enabled'; + const hidden: 'hidden' | 'all' | 'not_hidden' = (params.qry__hidden as any) ?? 'not_hidden'; const limit: number = params.qry__limit ?? 99; // 99 const offset: number = params.qry__offset ?? 0; // 0 @@ -458,8 +458,8 @@ export async function load_ae_obj_li__exhibit_tracking({ }): Promise { console.log(`*** load_ae_obj_li__exhibit_tracking() *** exhibit_id=${exhibit_id}`); - const enabled: string = params.qry__enabled ?? 'enabled'; // all, disabled, enabled - const hidden: string = params.qry__hidden ?? 'all'; // all, hidden, not_hidden + const enabled: 'enabled' | 'all' | 'not_enabled' = (params.qry__enabled as any) ?? 'enabled'; + const hidden: 'hidden' | 'all' | 'not_hidden' = (params.qry__hidden as any) ?? 'all'; const limit: number = params.qry__limit ?? 99; // 99 const offset: number = params.qry__offset ?? 0; // 0 @@ -540,14 +540,16 @@ export async function create_ae_obj__exhibit_tracking({ event_badge_id, external_person_id, params = {}, + try_cache = true, log_lvl = 0 }: { api_cfg: any; exhibit_id: string; event_badge_id: string; external_person_id: string; - params: key_val; - log_lvl: number; + params?: key_val; + try_cache?: boolean; + log_lvl?: number; }): Promise { console.log( `*** handle_create_ae_obj__exhibit_tracking() *** exhibit_id=${exhibit_id}, event_badge_id=${event_badge_id}` diff --git a/src/lib/ae_journals/ae_journals__journal.ts b/src/lib/ae_journals/ae_journals__journal.ts index c3154ed5..3fdaf075 100644 --- a/src/lib/ae_journals/ae_journals__journal.ts +++ b/src/lib/ae_journals/ae_journals__journal.ts @@ -308,7 +308,7 @@ export async function create_ae_obj__journal({ if (!account_id) { console.log(`ERROR: Journals - Journal - account_id required to create`); - return false; + return null; } ae_promises.create__journal = await api @@ -467,6 +467,14 @@ export async function qry__journal({ hidden = 'not_hidden', limit = 50, offset = 0, + order_by_li = { + priority: 'DESC', + sort: 'DESC', + start_datetime: 'ASC', + name: 'ASC', + updated_on: 'DESC', + created_on: 'DESC' + } as const, params = {}, try_cache = true, log_lvl = 0 @@ -480,6 +488,7 @@ export async function qry__journal({ hidden?: 'hidden' | 'all' | 'not_hidden' | undefined; // all, hidden, not_hidden limit?: number; offset?: number; + order_by_li?: Record | Record[]; params?: any; try_cache?: boolean; log_lvl?: number; @@ -525,15 +534,6 @@ export async function qry__journal({ search_query.and.push({ field: 'hidden', op: 'eq', value: false }); } - const order_by_li: Record = { - priority: 'DESC', - sort: 'DESC', - start_datetime: 'ASC', - name: 'ASC', - updated_on: 'DESC', - created_on: 'DESC' - }; - ae_promises.load__journal_obj_li = await api .search_ae_obj_v3({ api_cfg: api_cfg, diff --git a/svelte_check_output.txt b/svelte_check_output.txt new file mode 100644 index 00000000..c63f15ca --- /dev/null +++ b/svelte_check_output.txt @@ -0,0 +1,3570 @@ +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_core_functions.ts:404:15 +Error: Argument of type '(results: any) => Promise | Promise | Promise | ... 11 more ... | null' is not assignable to parameter of type '(value: any) => ae_Person | PromiseLike | null'. + Type 'Promise | Promise | Promise | ... 11 more ... | null' is not assignable to type 'ae_Person | PromiseLike | null'. + Type 'Promise' is not assignable to type 'ae_Person | PromiseLike | null'. + Type 'Promise' is not assignable to type 'PromiseLike'. + Types of property 'then' are incompatible. + Type '(onfulfilled?: ((value: ae_ArchiveContent | null) => TResult1 | PromiseLike) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike<...>) | ... 1 more ... | undefined) => Promise<...>' is not assignable to type '(onfulfilled?: ((value: ae_Person | null) => TResult1 | PromiseLike) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike<...>) | ... 1 more ... | undefined) => PromiseLike<...>'. + Types of parameters 'onfulfilled' and 'onfulfilled' are incompatible. + Types of parameters 'value' and 'value' are incompatible. + Type 'ae_ArchiveContent | null' is not assignable to type 'ae_Person | null'. + Type 'ae_ArchiveContent' is missing the following properties from type 'ae_Person': person_id, person_id_random, account_id, account_id_random + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_events/ae_events__exhibit.ts:578:21 +Error: Cannot find name 'try_cache'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_events/ae_events__exhibit.ts:656:21 +Error: Cannot find name 'try_cache'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/+page.ts:40:13 +Error: Object literal may only specify known properties, and 'inc_session_li' does not exist in type '{ api_cfg: any; for_obj_type?: string | undefined; for_obj_id: string; qry_conference?: boolean | null | undefined; enabled?: "enabled" | "all" | "not_enabled" | undefined; hidden?: "not_hidden" | "all" | "hidden" | undefined; ... 6 more ...; log_lvl?: number | undefined; }'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.ts:74:21 +Error: Type 'Promise' is missing the following properties from type 'ae_EventPresentation[]': length, pop, push, concat, and 35 more. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.ts:88:21 +Error: Type 'Promise' is missing the following properties from type 'ae_EventPresenter[]': length, pop, push, concat, and 35 more. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/hosted_files/+layout.ts:41:13 +Error: Type 'string | number' is not assignable to type 'number | undefined'. + Type 'string' is not assignable to type 'number'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/core__crud_generic.ts:62:9 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/core__crud_generic.ts:101:9 +Error: Type '"enabled" | "all" | "disabled"' is not assignable to type '"enabled" | "all" | "not_enabled" | undefined'. + Type '"disabled"' is not assignable to type '"enabled" | "all" | "not_enabled" | undefined'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/core__crud_generic.ts:146:9 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/core__crud_generic.ts:159:40 +Error: Property 'method' does not exist on type 'GenericCrudArgs'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/core__crud_generic.ts:168:9 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:25:33 +Error: Cannot find module 'electron' or its corresponding type declarations. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:108:9 +Error: This comparison appears to be unintentional because the types '() => Platform' and 'string' have no overlap. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:116:16 +Error: This comparison appears to be unintentional because the types '() => Platform' and 'string' have no overlap. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:122:23 +Error: Argument of type 'string | null' is not assignable to parameter of type 'PathLike'. + Type 'null' is not assignable to type 'PathLike'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:125:22 +Error: No overload matches this call. + Overload 1 of 3, '(path: PathLike, options?: Mode | (MakeDirectoryOptions & { recursive?: false | undefined; }) | null | undefined): void', gave the following error. + Argument of type 'string | null' is not assignable to parameter of type 'PathLike'. + Type 'null' is not assignable to type 'PathLike'. + Overload 2 of 3, '(path: PathLike, options?: MakeDirectoryOptions | Mode | null | undefined): string | undefined', gave the following error. + Argument of type 'string | null' is not assignable to parameter of type 'PathLike'. + Type 'null' is not assignable to type 'PathLike'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:134:29 +Error: Argument of type 'string | null' is not assignable to parameter of type 'string'. + Type 'null' is not assignable to type 'string'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:175:35 +Error: Argument of type 'NonSharedBuffer' is not assignable to parameter of type 'string'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:233:89 +Error: Parameter 'result' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:243:38 +Error: Parameter 'init_config' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:311:20 +Error: Parameter 'result' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:324:28 +Error: Parameter 'cfg' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:327:21 +Error: Cannot find name 'axios'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:349:34 +Error: Parameter 'progressEvent' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:367:25 +Error: Parameter 'response' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:378:26 +Error: Parameter 'error' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:401:46 +Error: Binding element 'local_file_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:401:63 +Error: Binding element 'filename' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:421:51 +Error: Binding element 'local_file_cache_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:421:74 +Error: Binding element 'hash' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:454:5 +Error: Binding element 'local_file_cache_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:455:5 +Error: Binding element 'hash' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:510:5 +Error: Binding element 'api_base_url' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:511:5 +Error: Binding element 'local_file_cache_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:535:13 +Error: Cannot find name 'check_hash'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:541:13 +Error: Cannot find name 'S'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:555:16 +Error: Parameter 'result' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:579:5 +Error: Binding element 'api_base_url' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:580:5 +Error: Binding element 'api_base_url_backup' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:581:5 +Error: Binding element 'local_file_cache_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:669:13 +Error: 'stats' is possibly 'null'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:692:22 +Error: Parameter 'result' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:735:22 +Error: Parameter 'result' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:753:32 +Error: Parameter 'result_backup' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:815:5 +Error: Binding element 'local_file_cache_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:816:5 +Error: Binding element 'hash' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:817:5 +Error: Binding element 'host_file_temp_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:818:5 +Error: Binding element 'filename' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:836:16 +Error: Parameter 'result' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:860:5 +Error: Binding element 'local_file_cache_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:861:5 +Error: Binding element 'hash' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:862:5 +Error: Binding element 'host_file_temp_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:863:5 +Error: Binding element 'filename' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:927:16 +Error: Parameter 'result' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:973:45 +Error: Binding element 'local_file_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:973:62 +Error: Binding element 'filename' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:990:16 +Error: Parameter 'result' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1064:35 +Error: Binding element 'api_base_url' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1064:49 +Error: Binding element 'local_file_cache_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1064:72 +Error: Binding element 'event_file_id' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1064:87 +Error: Binding element 'hash' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1087:63 +Error: Parameter 'event' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1087:70 +Error: Parameter 'response' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1120:34 +Error: Binding element 'local_file_cache_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1120:57 +Error: Binding element 'hash' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1120:63 +Error: Binding element 'host_file_temp_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1120:84 +Error: Binding element 'filename' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1145:5 +Error: Binding element 'local_file_cache_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1146:5 +Error: Binding element 'event_file_id' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1147:5 +Error: Binding element 'hash' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1148:5 +Error: Binding element 'host_file_temp_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1149:5 +Error: Binding element 'filename' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1156:52 +Error: Argument of type '{ local_file_cache_path: any; event_file_id: any; hash: any; }' is not assignable to parameter of type '{ api_base_url: any; local_file_cache_path: any; event_file_id: any; hash: any; }'. + Property 'api_base_url' is missing in type '{ local_file_cache_path: any; event_file_id: any; hash: any; }' but required in type '{ api_base_url: any; local_file_cache_path: any; event_file_id: any; hash: any; }'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1163:9 +Error: This condition will always return true since this 'Promise' is always defined. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1175:55 +Error: Parameter 'event' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1175:62 +Error: Parameter 'response' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1202:9 +Error: This comparison appears to be unintentional because the types '() => Platform' and 'string' have no overlap. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1246:9 +Error: This comparison appears to be unintentional because the types '() => Platform' and 'string' have no overlap. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1291:9 +Error: This comparison appears to be unintentional because the types '() => Platform' and 'string' have no overlap. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1302:33 +Error: Property 'length' does not exist on type 'never'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1349:37 +Error: No overload matches this call. + The last overload gave the following error. + Argument of type 'null' is not assignable to parameter of type 'string'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1368:41 +Error: No overload matches this call. + Overload 1 of 4, '(command: string, options: ExecSyncOptionsWithStringEncoding): string', gave the following error. + Argument of type 'null' is not assignable to parameter of type 'string'. + Overload 2 of 4, '(command: string, options: ExecSyncOptionsWithBufferEncoding): NonSharedBuffer', gave the following error. + Argument of type 'null' is not assignable to parameter of type 'string'. + Overload 3 of 4, '(command: string, options?: ExecSyncOptions | undefined): string | NonSharedBuffer', gave the following error. + Argument of type 'null' is not assignable to parameter of type 'string'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1368:47 +Error: Parameter 'err' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1368:52 +Error: Parameter 'stdout' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1368:60 +Error: Parameter 'stdin' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1402:41 +Error: No overload matches this call. + Overload 1 of 4, '(command: string, options: ExecSyncOptionsWithStringEncoding): string', gave the following error. + Argument of type 'null' is not assignable to parameter of type 'string'. + Overload 2 of 4, '(command: string, options: ExecSyncOptionsWithBufferEncoding): NonSharedBuffer', gave the following error. + Argument of type 'null' is not assignable to parameter of type 'string'. + Overload 3 of 4, '(command: string, options?: ExecSyncOptions | undefined): string | NonSharedBuffer', gave the following error. + Argument of type 'null' is not assignable to parameter of type 'string'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1477:9 +Error: Cannot find name 'filesAdded'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1491:5 +Error: Cannot find name 'filesAdded'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1496:9 +Error: Cannot find name 'filesAdded'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1508:5 +Error: Cannot find name 'filesAdded'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1517:9 +Error: This comparison appears to be unintentional because the types '() => Platform' and 'string' have no overlap. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_native.js:1535:16 +Error: This comparison appears to be unintentional because the types '() => Platform' and 'string' have no overlap. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:62:61 +Error: Binding element 'process_name_li' implicitly has an 'any[]' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:77:47 +Error: Cannot find name 'native_app'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:107:63 +Error: Binding element 'file_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:107:74 +Error: Binding element 'filename' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:125:40 +Error: Cannot find name 'native_app'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:141:69 +Error: Binding element 'file_path' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:141:80 +Error: Binding element 'filename' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:149:40 +Error: Cannot find name 'ipcRenderer'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:151:16 +Error: Parameter 'result' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:241:32 +Error: Cannot find name 'native_app'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:243:25 +Error: Parameter 'result' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:266:26 +Error: Cannot find name 'native_app'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:296:38 +Error: Cannot find name 'native_app'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:316:63 +Error: Binding element 'event_device_id' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/electron/electron_relay.js:321:40 +Error: Cannot find name 'native_app'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_api/api_get_object_v1.ts:117:56 +Error: 'progressEvent.total' is possibly 'undefined'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_api/api_get_object_v1.ts:332:56 +Error: 'progressEvent.total' is possibly 'undefined'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_api/api_get_object_v1.ts:417:51 +Error: Argument of type 'string | null' is not assignable to parameter of type 'string'. + Type 'null' is not assignable to type 'string'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_core__address.ts:62:5 +Error: Property 'order_by_li' does not exist on type '{ api_cfg: any; for_obj_type?: string | undefined; for_obj_id: string; enabled?: "enabled" | "all" | "not_enabled" | undefined; hidden?: "not_hidden" | "all" | "hidden" | undefined; ... 5 more ...; log_lvl?: number | undefined; }'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils__files.ts:67:59 +Error: Parameter 'file' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils__files.ts:72:17 +Error: 'file_reader.result' is possibly 'null'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils__files.ts:72:36 +Error: Property 'byteLength' does not exist on type 'string | ArrayBuffer'. + Property 'byteLength' does not exist on type 'string'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils__files.ts:77:71 +Error: Argument of type 'string | ArrayBuffer | null' is not assignable to parameter of type 'BufferSource'. + Type 'null' is not assignable to type 'BufferSource'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils__set_obj_prop_display_name.ts:5:5 +Error: Binding element 'prop_name' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils__return_obj_type_path.ts:64:25 +Error: 'obj_type_prop_name' is possibly 'null'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils__return_obj_type_path.ts:72:36 +Error: Property 'startsWith' does not exist on type 'never'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils__crypto.ts:82:28 +Error: Type 'Uint8Array' is not assignable to type 'BufferSource'. + Type 'Uint8Array' is not assignable to type 'ArrayBufferView'. + Types of property 'buffer' are incompatible. + Type 'ArrayBufferLike' is not assignable to type 'ArrayBuffer'. + Type 'SharedArrayBuffer' is missing the following properties from type 'ArrayBuffer': resizable, resize, detached, transfer, transferToFixedLength + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils__crypto.ts:99:31 +Error: Object is possibly 'null'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils.ts:36:26 +Error: Parameter 'x' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils.ts:82:5 +Error: Binding element 'account_id' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils.ts:83:5 +Error: Binding element 'base_url' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils.ts:84:5 +Error: Binding element 'hosted_file_id' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils.ts:94:5 +Error: Binding element 'account_id' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils.ts:95:5 +Error: Binding element 'base_url' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils.ts:96:5 +Error: Binding element 'hosted_file_id' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils.ts:125:5 +Error: Binding element 'account_id' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils.ts:126:5 +Error: Binding element 'base_url' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_utils/ae_utils.ts:127:5 +Error: Binding element 'hosted_file_id' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_journals/ae_journals_export_templates.ts:48:34 +Error: Property 'localeCompare' does not exist on type 'string | Date'. + Property 'localeCompare' does not exist on type 'Date'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:163:17 +Error: Type 'T' is generic and can only be indexed for reading. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:213:5 +Error: Cannot find name 'ae_promises'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:248:27 +Error: Cannot find name 'db_save_ae_obj_li__ae_obj'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:272:13 +Error: Cannot find name 'ae_promises'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:276:12 +Error: Cannot find name 'ae_promises'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:297:5 +Error: Cannot find name 'ae_promises'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:330:27 +Error: Cannot find name 'db_save_ae_obj_li__ae_obj'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:352:59 +Error: Cannot find name 'ae_promises'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:355:12 +Error: Cannot find name 'ae_promises'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:399:5 +Error: Cannot find name 'ae_promises'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:432:27 +Error: Cannot find name 'db_save_ae_obj_li__ae_obj'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:450:62 +Error: Cannot find name 'ae_promises'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:453:12 +Error: Cannot find name 'ae_promises'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:486:5 +Error: Cannot find name 'ae_promises'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:498:9 +Error: Cannot find name 'ae_promises'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_sponsorships/ae_sponsorships_functions.ts:500:12 +Error: Cannot find name 'ae_promises'. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/components/ui/button/button.svelte:59:51 +Error: Type 'ClassValue | null | undefined' is not assignable to type 'ClassNameValue'. + Type 'ClassArray' is not assignable to type 'ClassNameValue'. + Type 'ClassValue[]' is not assignable to type 'ClassNameArray'. + Type 'ClassValue' is not assignable to type 'ClassNameValue'. + Type 'number' is not assignable to type 'ClassNameValue'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/components/ui/button/button.svelte:68:51 +Error: Type 'ClassValue | null | undefined' is not assignable to type 'ClassNameValue'. + Type 'ClassArray' is not assignable to type 'ClassNameValue'. + Type 'ClassValue[]' is not assignable to type 'ClassNameArray'. + Type 'ClassValue' is not assignable to type 'ClassNameValue'. + Type 'number' is not assignable to type 'ClassNameValue'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/codemirror_modules.ts:130:9 +Error: Object literal may only specify known properties, but 'EditorSelection' does not exist in type '{ EditorView: any; EditorState: any; markdown?: any; markdownLanguage?: any; keymap?: any; defaultKeymap?: any; history?: any; historyKeymap?: any; lineNumbers?: any; highlightSpecialChars?: any; drawSelection?: any; ... 24 more ...; placeholderExt?: any; }'. Did you mean to write 'drawSelection'? + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/codemirror_modules.ts:136:33 +Error: Property 'languages' does not exist on type 'typeof import("/home/scott/OSIT_dev/aether_app_sveltekit/node_modules/@codemirror/language/dist/index")'. Did you mean 'language'? + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/not_used+layout.ts:6:30 +Error: Binding element 'parent' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/not_used+layout.ts:3:30 +Error: Binding element 'params' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/not_used+layout.ts:3:38 +Error: Binding element 'parent' implicitly has an 'any' type. + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:67:30 +Warn: This reference only captures the initial value of `qr_fps`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:67:45 +Warn: This reference only captures the initial value of `qr_viewfinder_width`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:554:5 +Warn: Do not use empty rulesets (css) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:110:70 +Error: Argument of type '{ formatsToSupport: Html5QrcodeSupportedFormats.QR_CODE[]; }' is not assignable to parameter of type 'boolean | Html5QrcodeFullConfig | undefined'. + Property 'verbose' is missing in type '{ formatsToSupport: Html5QrcodeSupportedFormats.QR_CODE[]; }' but required in type 'Html5QrcodeFullConfig'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:121:33 +Error: This comparison appears to be unintentional because the types '1' and '2' have no overlap. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:209:21 +Error: Parameter 'err' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:244:37 +Error: Parameter 'decoded_text' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:244:51 +Error: Parameter 'decoded_result' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:265:35 +Error: Parameter 'qr_error_message' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:265:53 +Error: Parameter 'qr_code_error' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:316:38 +Error: Parameter 'subject' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:316:47 +Error: Parameter 'message' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:439:25 +Error: Object literal may only specify known properties, and '"label"' does not exist in type 'HTMLProps<"input", HTMLAttributes>'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:440:32 +Error: Cannot find name 'search_query_str'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/element_qr_scanner_v2.svelte:442:36 +Error: Cannot find name 'handle_oninput_search_query_str'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_files_tbl.svelte:425:5 +Warn: Do not use empty rulesets (css) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_files_tbl.svelte:43:38 +Error: Parameter 'file_list' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_files_tbl.svelte:225:76 +Error: Type '{}' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_files_tbl.svelte:231:21 +Error: Type '{}' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_files_tbl.svelte:261:40 +Error: Parameter 'index' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_files_tbl.svelte:292:23 +Error: Property 'files' does not exist on type 'Element'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_clip_video_v1.svelte:64:26 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_clip_video_v1.svelte:77:9 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_clip_video_v1.svelte:172:46 +Error: Parameter 'input_upload_files' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_clip_video_v1.svelte:172:66 +Error: Parameter 'form_kv' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_clip_video_v1.svelte:172:75 +Error: Parameter 'task_id' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_clip_video_v1.svelte:299:36 +Error: Argument of type '(event: SubmitEvent) => Promise' is not assignable to parameter of type '(event: Event, ...args: unknown[]) => void'. + Types of parameters 'event' and 'event' are incompatible. + Property 'submitter' is missing in type 'Event' but required in type 'SubmitEvent'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_clip_video_v1.svelte:424:27 +Error: Variable 'download_clip_filename' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_download_button.svelte:69:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_download_button.svelte:71:76 +Warn: This reference only captures the initial value of `hosted_file_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_download_button.svelte:72:13 +Warn: This reference only captures the initial value of `hosted_file_obj`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_upload.svelte:66:26 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_upload.svelte:97:13 +Error: Object is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_upload.svelte:104:33 +Error: 'event.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_upload.svelte:104:33 +Error: Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'EventTarget'. + No index signature with a parameter of type 'string' was found on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_upload.svelte:105:32 +Error: 'event.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_upload.svelte:105:32 +Error: Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'EventTarget'. + No index signature with a parameter of type 'string' was found on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_upload.svelte:124:13 +Error: 'event.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_upload.svelte:124:26 +Error: Property 'reset' does not exist on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_core/ae_comp__hosted_files_upload.svelte:256:32 +Error: Argument of type '(event: SubmitEvent) => Promise' is not assignable to parameter of type '(event: Event, ...args: unknown[]) => void'. + Types of parameters 'event' and 'event' are incompatible. + Property 'submitter' is missing in type 'Event' but required in type 'SubmitEvent'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_codemirror_v5.svelte:176:5 +Warn: Do not use empty rulesets (css) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_codemirror_v5.svelte:46:9 +Error: Type 'HTMLDivElement | undefined' is not assignable to type 'HTMLDivElement'. + Type 'undefined' is not assignable to type 'HTMLDivElement'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_elements/AE_AITools.svelte:96:54 +Error: No overload matches this call. + Overload 3 of 3, '(body: ChatCompletionCreateParamsBase, options?: RequestOptions | undefined): APIPromise>', gave the following error. + Type 'string | undefined' is not assignable to type '(string & {}) | ChatModel'. + Type 'undefined' is not assignable to type '(string & {}) | ChatModel'. + Overload 3 of 3, '(body: ChatCompletionCreateParamsBase, options?: RequestOptions | undefined): APIPromise>', gave the following error. + Type '{ role: "system"; content: string | undefined; }' is not assignable to type 'ChatCompletionMessageParam'. + Types of property 'content' are incompatible. + Type 'string | undefined' is not assignable to type 'string | ChatCompletionContentPartText[]'. + Type 'undefined' is not assignable to type 'string | ChatCompletionContentPartText[]'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/ae_elements/AE_AITools.svelte:197:29 +Error: Cannot use 'bind:' with this property. It is declared as non-bindable inside the component. +To mark a property as bindable: 'let { theme_mode = $bindable() } = $props()' (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/analytics.svelte:8:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/analytics.svelte:19:13 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/analytics.svelte:13:16 +Error: Property 'dataLayer' does not exist on type 'Window & typeof globalThis'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/analytics.svelte:13:35 +Error: Property 'dataLayer' does not exist on type 'Window & typeof globalThis'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/analytics.svelte:14:16 +Error: Property 'gtag' does not exist on type 'Window & typeof globalThis'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/analytics.svelte:15:20 +Error: Property 'dataLayer' does not exist on type 'Window & typeof globalThis'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/analytics.svelte:17:16 +Error: Property 'gtag' does not exist on type 'Window & typeof globalThis'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/analytics.svelte:18:16 +Error: Property 'gtag' does not exist on type 'Window & typeof globalThis'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_access_type.svelte:147:13 +Error: Argument of type '() => Promise' is not assignable to parameter of type '() => void | (() => void)'. + Type 'Promise' is not assignable to type 'void | (() => void)'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_access_type.svelte:418:77 +Error: This comparison appears to be unintentional because the types '1' and '3' have no overlap. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_cfg.svelte:195:48 +Error: Expected 0 arguments, but got 1. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_clipboard.svelte:48:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_help_tech.svelte:77:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_help_tech.svelte:518:52 +Error: Expected 0 arguments, but got 1. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sign_in_out.svelte:39:23 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sign_in_out.svelte:40:24 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sign_in_out.svelte:41:29 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sign_in_out.svelte:42:26 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sign_in_out.svelte:414:69 +Error: 'e.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sign_in_out.svelte:414:78 +Error: Property 'value' does not exist on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sign_in_out.svelte:671:75 +Error: 'e.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sign_in_out.svelte:671:84 +Error: Property 'value' does not exist on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sign_in_out.svelte:678:76 +Error: 'e.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sign_in_out.svelte:678:85 +Error: Property 'value' does not exist on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sign_in_out.svelte:686:76 +Error: 'e.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sign_in_out.svelte:686:85 +Error: Property 'value' does not exist on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sign_in_out.svelte:693:76 +Error: 'e.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sign_in_out.svelte:693:85 +Error: Property 'value' does not exist on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/app_components/e_app_sys_menu.svelte:119:28 +Error: This comparison appears to be unintentional because the types '1' and '3' have no overlap. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_ae_crud.svelte:78:9 +Error: Type 'string | key_val | Promise | null | undefined' is not assignable to type 'string | key_val | Promise | null'. + Type 'undefined' is not assignable to type 'string | key_val | Promise | null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_ae_crud.svelte:119:42 +Error: Cannot find name 'core_func'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_ae_crud.svelte:130:29 +Error: Parameter 'results' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_ae_crud_v2.svelte:464:5 +Warn: Unused CSS selector ".ae_crud .field_editing_wrapper" +https://svelte.dev/e/css_unused_selector (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_ae_crud_v2.svelte:507:5 +Warn: Unused CSS selector ".ae_crud.show_crud.display_inline .field_editing_wrapper:hover" +https://svelte.dev/e/css_unused_selector (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_ae_crud_v2.svelte:512:5 +Warn: Unused CSS selector ".ae_crud.show_crud.display_inline .field_editing_wrapper" +https://svelte.dev/e/css_unused_selector (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_ae_crud_v2.svelte:535:5 +Warn: Unused CSS selector ".ae_crud.show_crud.display_inline .field_editing_wrapper.display_block_edit" +https://svelte.dev/e/css_unused_selector (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_codemirror_editor.svelte:13:9 +Error: Type 'HTMLDivElement | undefined' is not assignable to type 'HTMLDivElement'. + Type 'undefined' is not assignable to type 'HTMLDivElement'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_codemirror_editor_wrapper.svelte:21:13 +Error: Object literal may only specify known properties, and '"class"' does not exist in type 'Props'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:55:10 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:55:24 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:117:68 +Warn: This reference only captures the initial value of `ds_code`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:128:9 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:129:9 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:130:9 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:132:40 +Warn: This reference only captures the initial value of `ds_code`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:132:62 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:133:34 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:137:28 +Warn: This reference only captures the initial value of `expire_minutes`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:139:48 +Warn: This reference only captures the initial value of `ds_code`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:156:10 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:156:24 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:12:28 +Error: Block-scoped variable 'ds_code' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:12:28 +Error: Variable 'ds_code' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:12:48 +Error: Block-scoped variable 'for_type' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:12:48 +Error: Variable 'for_type' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:12:67 +Error: Block-scoped variable 'for_id' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:12:67 +Error: Variable 'for_id' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:16:9 +Error: Type 'key_val | Promise | undefined' is not assignable to type 'key_val | Promise'. + Type 'undefined' is not assignable to type 'key_val | Promise'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:18:9 +Error: Type 'key_val | Promise | undefined' is not assignable to type 'key_val | Promise'. + Type 'undefined' is not assignable to type 'key_val | Promise'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:28:15 +Error: Block-scoped variable 'ds_code' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:28:15 +Error: Variable 'ds_code' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:29:15 +Error: Block-scoped variable 'ds_name' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:29:15 +Error: Variable 'ds_name' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:30:15 +Error: Block-scoped variable 'ds_type' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:30:15 +Error: Variable 'ds_type' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:44:9 +Error: Type 'key_val | undefined' is not assignable to type 'key_val'. + Type 'undefined' is not assignable to type 'key_val'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:45:51 +Error: Block-scoped variable 'ds_code' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:45:51 +Error: Variable 'ds_code' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:46:32 +Error: Argument of type 'string | null' is not assignable to parameter of type 'string'. + Type 'null' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:46:63 +Error: Block-scoped variable 'ds_code' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:46:63 +Error: Variable 'ds_code' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:53:44 +Error: Block-scoped variable 'ds_code' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:53:44 +Error: Variable 'ds_code' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:117:37 +Error: Argument of type 'string | null' is not assignable to parameter of type 'string'. + Type 'null' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:381:26 +Error: Argument of type '(ds_val_result: any) => void' is not assignable to parameter of type '() => void'. + Target signature provides too few arguments. Expected 1 or more, but got 0. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:381:36 +Error: Parameter 'ds_val_result' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:415:48 +Error: Binding element 'obj_type' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:415:58 +Error: Binding element 'data' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:439:22 +Error: Argument of type '(create__obj_result: any) => any' is not assignable to parameter of type '() => void'. + Target signature provides too few arguments. Expected 1 or more, but got 0. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:439:32 +Error: Parameter 'create__obj_result' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:447:48 +Error: Binding element 'obj_type' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:447:58 +Error: Binding element 'obj_id' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:447:66 +Error: Binding element 'data' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:472:22 +Error: Argument of type '(update__obj_result: any) => any' is not assignable to parameter of type '() => void'. + Target signature provides too few arguments. Expected 1 or more, but got 0. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store.svelte:472:32 +Error: Parameter 'update__obj_result' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:81:15 +Warn: This reference only captures the initial value of `ds_code`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:82:15 +Warn: This reference only captures the initial value of `ds_name`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:83:15 +Warn: This reference only captures the initial value of `ds_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:98:20 +Warn: This reference only captures the initial value of `try_cache`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:98:64 +Warn: This reference only captures the initial value of `ds_code`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:99:13 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:100:67 +Warn: This reference only captures the initial value of `ds_code`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:102:63 +Warn: This reference only captures the initial value of `ds_code`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:103:13 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:105:44 +Warn: This reference only captures the initial value of `ds_code`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:106:17 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:123:9 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:124:9 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:125:9 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:127:40 +Warn: This reference only captures the initial value of `ds_code`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:127:62 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:128:34 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:132:28 +Warn: This reference only captures the initial value of `expire_minutes`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:134:48 +Warn: This reference only captures the initial value of `ds_code`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:151:10 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:151:24 +Warn: This reference only captures the initial value of `ae_ds_tmp`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:155:20 +Warn: This reference only captures the initial value of `mount_reload_sec`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:157:52 +Warn: This reference only captures the initial value of `mount_reload_sec`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:158:13 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:27:9 +Error: Type 'key_val | Promise | undefined' is not assignable to type 'key_val | Promise'. + Type 'undefined' is not assignable to type 'key_val | Promise'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:28:9 +Error: Type 'key_val | Promise | undefined' is not assignable to type 'key_val | Promise'. + Type 'undefined' is not assignable to type 'key_val | Promise'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:97:9 +Error: Type 'key_val | undefined' is not assignable to type 'key_val'. + Type 'undefined' is not assignable to type 'key_val'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:390:26 +Error: Argument of type '(ds_val_result: any) => void' is not assignable to parameter of type '() => void'. + Target signature provides too few arguments. Expected 1 or more, but got 0. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:390:36 +Error: Parameter 'ds_val_result' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:456:22 +Error: Argument of type '(create__obj_result: any) => any' is not assignable to parameter of type '() => void'. + Target signature provides too few arguments. Expected 1 or more, but got 0. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:456:32 +Error: Parameter 'create__obj_result' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:499:22 +Error: Argument of type '(update__obj_result: any) => any' is not assignable to parameter of type '() => void'. + Target signature provides too few arguments. Expected 1 or more, but got 0. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_data_store_v2.svelte:499:32 +Error: Parameter 'update__obj_result' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_file.svelte:448:5 +Warn: Do not use empty rulesets (css) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_file.svelte:53:38 +Error: Parameter 'file_list' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_file.svelte:235:76 +Error: Type '{}' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_file.svelte:241:21 +Error: Type '{}' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_file.svelte:271:40 +Error: Parameter 'index' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_file.svelte:302:23 +Error: Property 'files' does not exist on type 'Element'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:148:9 +Warn: This reference only captures the initial value of `type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:160:16 +Warn: This reference only captures the initial value of `type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:163:9 +Warn: This reference only captures the initial value of `type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:165:76 +Warn: This reference only captures the initial value of `value_date`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:165:101 +Warn: This reference only captures the initial value of `value_time`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:165:128 +Warn: This reference only captures the initial value of `date_time_tz`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:6:22 +Error: Cannot find module './utilities.js' or its corresponding type declarations. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:10:31 +Error: Block-scoped variable 'name' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:10:31 +Error: Variable 'name' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:10:45 +Error: Block-scoped variable 'value' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:10:45 +Error: Variable 'value' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:12:35 +Error: Block-scoped variable 'original_value' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:12:35 +Error: Variable 'original_value' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:13:31 +Error: Block-scoped variable 'data_type' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:13:31 +Error: Variable 'data_type' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:15:34 +Error: Parameter 'node' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:19:42 +Error: Block-scoped variable 'type' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:19:42 +Error: Variable 'type' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:26:31 +Error: Block-scoped variable 'name' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:26:31 +Error: Variable 'name' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:26:45 +Error: Block-scoped variable 'value' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:26:45 +Error: Variable 'value' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:26:59 +Error: Block-scoped variable 'type' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:26:59 +Error: Variable 'type' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:32:37 +Error: Block-scoped variable 'input_mode' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:32:37 +Error: Variable 'input_mode' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:38:9 +Error: Block-scoped variable 'type' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:38:9 +Error: Variable 'type' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:39:44 +Error: Block-scoped variable 'size' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:39:44 +Error: Variable 'size' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:39:57 +Error: Block-scoped variable 'rows' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:39:57 +Error: Variable 'rows' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:39:70 +Error: Block-scoped variable 'cols' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:39:70 +Error: Variable 'cols' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:138:9 +Error: Type 'null' is not assignable to type 'number'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:328:19 +Error: 'event.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:328:32 +Error: Property 'name' does not exist on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:357:26 +Error: Cannot find name 'Quill'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:467:17 +Error: Type '(event: InputEvent) => void' is not assignable to type 'FormEventHandler'. + Types of parameters 'event' and 'event' are incompatible. + Type 'Event & { currentTarget: EventTarget & HTMLInputElement; }' is missing the following properties from type 'InputEvent': data, dataTransfer, inputType, isComposing, and 5 more. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:498:17 +Error: Type '(event: InputEvent) => void' is not assignable to type 'FormEventHandler'. + Types of parameters 'event' and 'event' are incompatible. + Type 'Event & { currentTarget: EventTarget & HTMLInputElement; }' is missing the following properties from type 'InputEvent': data, dataTransfer, inputType, isComposing, and 5 more. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:528:22 +Error: Type 'unknown' is not assignable to type 'boolean | null | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:529:21 +Error: Type '(event: InputEvent) => void' is not assignable to type 'FormEventHandler'. + Types of parameters 'event' and 'event' are incompatible. + Type 'Event & { currentTarget: EventTarget & HTMLInputElement; }' is missing the following properties from type 'InputEvent': data, dataTransfer, inputType, isComposing, and 5 more. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:533:14 +Error: Variable 'checkbox_li' is used before being assigned. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:538:35 +Error: No overload matches this call. + Overload 1 of 2, '(o: { [s: string]: unknown; } | ArrayLike): [string, unknown][]', gave the following error. + Argument of type 'undefined' is not assignable to parameter of type '{ [s: string]: unknown; } | ArrayLike'. + Overload 2 of 2, '(o: {}): [string, any][]', gave the following error. + Argument of type 'undefined' is not assignable to parameter of type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:539:44 +Error: 'value' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:547:29 +Error: Type '(event: InputEvent) => void' is not assignable to type 'FormEventHandler'. + Types of parameters 'event' and 'event' are incompatible. + Type 'Event & { currentTarget: EventTarget & HTMLInputElement; }' is missing the following properties from type 'InputEvent': data, dataTransfer, inputType, isComposing, and 5 more. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:557:29 +Error: Type '(event: InputEvent) => void' is not assignable to type 'FormEventHandler'. + Types of parameters 'event' and 'event' are incompatible. + Type 'Event & { currentTarget: EventTarget & HTMLInputElement; }' is missing the following properties from type 'InputEvent': data, dataTransfer, inputType, isComposing, and 5 more. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:585:18 +Error: Type 'unknown' is not assignable to type 'boolean | null | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:586:17 +Error: Type '(event: InputEvent) => void' is not assignable to type 'FormEventHandler'. + Types of parameters 'event' and 'event' are incompatible. + Type 'Event & { currentTarget: EventTarget & HTMLInputElement; }' is missing the following properties from type 'InputEvent': data, dataTransfer, inputType, isComposing, and 5 more. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:596:27 +Error: 'radio_option_class_li' is possibly 'undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:605:22 +Error: Type 'unknown' is not assignable to type 'boolean | null | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:606:21 +Error: Type '(event: InputEvent) => void' is not assignable to type 'FormEventHandler'. + Types of parameters 'event' and 'event' are incompatible. + Type 'Event & { currentTarget: EventTarget & HTMLInputElement; }' is missing the following properties from type 'InputEvent': data, dataTransfer, inputType, isComposing, and 5 more. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:626:33 +Error: Type '(event: InputEvent) => void' is not assignable to type 'FormEventHandler'. + Types of parameters 'event' and 'event' are incompatible. + Type 'Event & { currentTarget: EventTarget & HTMLInputElement; }' is missing the following properties from type 'InputEvent': data, dataTransfer, inputType, isComposing, and 5 more. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:638:33 +Error: Type '(event: InputEvent) => void' is not assignable to type 'FormEventHandler'. + Types of parameters 'event' and 'event' are incompatible. + Type 'Event & { currentTarget: EventTarget & HTMLInputElement; }' is missing the following properties from type 'InputEvent': data, dataTransfer, inputType, isComposing, and 5 more. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:649:33 +Error: Type '(event: InputEvent) => void' is not assignable to type 'FormEventHandler'. + Types of parameters 'event' and 'event' are incompatible. + Type 'Event & { currentTarget: EventTarget & HTMLInputElement; }' is missing the following properties from type 'InputEvent': data, dataTransfer, inputType, isComposing, and 5 more. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:684:18 +Error: Type 'unknown' is not assignable to type 'boolean | null | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:685:17 +Error: Type '(event: InputEvent) => void' is not assignable to type 'FormEventHandler'. + Types of parameters 'event' and 'event' are incompatible. + Type 'Event & { currentTarget: EventTarget & HTMLInputElement; }' is missing the following properties from type 'InputEvent': data, dataTransfer, inputType, isComposing, and 5 more. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:717:13 +Error: Type '(event: InputEvent) => void' is not assignable to type 'FormEventHandler'. + Types of parameters 'event' and 'event' are incompatible. + Type 'Event & { currentTarget: EventTarget & HTMLTextAreaElement; }' is missing the following properties from type 'InputEvent': data, dataTransfer, inputType, isComposing, and 5 more. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:760:13 +Error: Type '(event: InputEvent) => void' is not assignable to type 'FormEventHandler'. + Types of parameters 'event' and 'event' are incompatible. + Type 'Event & { currentTarget: EventTarget & HTMLSelectElement; }' is missing the following properties from type 'InputEvent': data, dataTransfer, inputType, isComposing, and 5 more. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_input_v2.svelte:768:39 +Error: No overload matches this call. + Overload 1 of 2, '(o: { [s: string]: unknown; } | ArrayLike): [string, unknown][]', gave the following error. + Argument of type 'undefined' is not assignable to parameter of type '{ [s: string]: unknown; } | ArrayLike'. + Overload 2 of 2, '(o: {}): [string, any][]', gave the following error. + Argument of type 'undefined' is not assignable to parameter of type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_event_file_li.svelte:580:83 +Error: 'e.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_event_file_li.svelte:580:92 +Error: Property 'value' does not exist on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_event_file_li.svelte:585:71 +Error: 'e.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_event_file_li.svelte:585:80 +Error: Property 'value' does not exist on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_event_file_li.svelte:620:92 +Error: Property 'disabled' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_event_file_li.svelte:622:96 +Error: Property 'hidden' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_event_file_li.svelte:625:83 +Error: Property 'name' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_event_file_li_all.svelte:44:36 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_event_file_li_all.svelte:45:36 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_event_file_li_direct.svelte:46:36 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_event_file_li_direct.svelte:47:43 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_hosted_file_li_all.svelte:48:55 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_hosted_file_li_all.svelte:48:83 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_hosted_file_li_all.svelte:59:36 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_hosted_file_li_all.svelte:60:36 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_hosted_file_li_all.svelte:82:33 +Error: 'x.content_type' is possibly 'undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_hosted_file_li_all.svelte:91:33 +Error: 'x.content_type' is possibly 'undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_hosted_file_li_all.svelte:98:33 +Error: 'x.content_type' is possibly 'undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_manage_hosted_file_li_all.svelte:105:33 +Error: 'x.content_type' is possibly 'undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:27:17 +Warn: This reference only captures the initial value of `obj`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:28:24 +Warn: This reference only captures the initial value of `obj`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:24:9 +Error: Type 'null' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:76:29 +Error: Type 'string' is not assignable to type 'null | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:84:29 +Error: Type 'string' is not assignable to type 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:85:29 +Error: Type 'unknown' is not assignable to type 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:88:29 +Error: Type 'string' is not assignable to type 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:89:29 +Error: Type 'unknown' is not assignable to type 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:100:37 +Error: Type 'string' is not assignable to type 'null | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:103:49 +Error: Property 'substring' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:121:29 +Error: Type 'string' is not assignable to type 'null | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:129:29 +Error: Type 'string' is not assignable to type 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:130:29 +Error: Type 'unknown' is not assignable to type 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:133:29 +Error: Type 'string' is not assignable to type 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:134:29 +Error: Type 'unknown' is not assignable to type 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:137:28 +Error: Type 'unknown' is not assignable to type 'string | null | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:144:25 +Error: Type 'string' is not assignable to type 'null | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:150:63 +Error: Property 'length' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_obj_tbl_row.svelte:151:45 +Error: Property 'substring' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_sql_qry.svelte:65:35 +Error: Parameter 'qry' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_sql_qry.svelte:65:40 +Error: Parameter 'data' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_websocket_v2.svelte:87:36 +Error: Binding element 'group_id' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_websocket_v2.svelte:87:46 +Error: Binding element 'client_id' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_websocket_v2.svelte:333:13 +Error: Type 'string' is not assignable to type 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_websocket_v2.svelte:537:41 +Error: Property 'group_id' does not exist on type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_websocket_v2.svelte:538:40 +Error: Property 'client_id' does not exist on type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_websocket_v2.svelte:540:40 +Error: Property 'target' does not exist on type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_websocket_v2.svelte:543:40 +Error: Property 'type' does not exist on type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/lib/elements/element_websocket_v2.svelte:546:41 +Error: Property 'cmd' does not exist on type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:69:53 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:73:24 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:77:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:360:20 +Warn: This reference only captures the initial value of `flag_clear_idb`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:446:20 +Warn: This reference only captures the initial value of `flag_reload`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:461:13 +Warn: This reference only captures the initial value of `flag_clear_local`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:468:13 +Warn: This reference only captures the initial value of `flag_clear_sess`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:584:22 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:615:13 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:616:37 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:617:36 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:620:13 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:621:40 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:622:47 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+layout.svelte:877:44 +Error: Expected 0 arguments, but got 1. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+page.svelte:73:44 +Error: Expected 0 arguments, but got 1. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+page.svelte:106:44 +Error: Expected 0 arguments, but got 1. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/+page.svelte:124:13 +Error: Object literal may only specify known properties, and '"display"' does not exist in type 'Props'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/admin/+layout.svelte:44:24 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/admin/+layout.svelte:46:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/admin/+layout.svelte:44:29 +Error: Property 'account_id' does not exist on type 'LayoutData'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/admin/+layout.svelte:46:19 +Error: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type 'LayoutData'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/admin/+page.svelte:2:49 +Error: Block-scoped variable 'data' used before its declaration. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/admin/+page.svelte:55:9 +Error: Object literal may only specify known properties, and '"display"' does not exist in type 'Props'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/admin/+page.svelte:104:17 +Error: Object literal may only specify known properties, and '"display"' does not exist in type 'Props'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/admin/+page.svelte:124:17 +Error: Object literal may only specify known properties, and '"display"' does not exist in type 'Props'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/+page.svelte:12:24 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/person_view.svelte:41:31 +Warn: This reference only captures the initial value of `person_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/accounts/+page.svelte:79:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/accounts/+page.svelte:102:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/accounts/+page.svelte:111:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/accounts/[account_id]/+page.svelte:112:25 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/accounts/[account_id]/+page.svelte:116:25 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/accounts/[account_id]/+page.svelte:120:25 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/accounts/[account_id]/+page.svelte:124:25 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/accounts/[account_id]/+page.svelte:150:25 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/accounts/[account_id]/+page.svelte:154:25 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/accounts/[account_id]/+page.svelte:19:13 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/accounts/[account_id]/+page.svelte:45:13 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/accounts/[account_id]/+page.svelte:61:13 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/activity_logs/+page.svelte:75:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/activity_logs/+page.svelte:93:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:22:23 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:23:28 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:24:17 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:25:17 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:26:17 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:27:15 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:28:25 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:29:22 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:30:18 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:32:19 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:33:19 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:34:20 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:35:16 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:36:17 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:37:15 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:38:19 +Warn: This reference only captures the initial value of `address`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:132:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:137:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:142:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:148:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:152:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:164:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:168:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:175:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:179:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:193:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:202:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:209:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/ae_comp__address_form.svelte:238:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/+page.svelte:83:13 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/[address_id]/+page.svelte:24:13 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/addresses/[address_id]/+page.svelte:42:13 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:22:16 +Warn: This reference only captures the initial value of `contact`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:23:18 +Warn: This reference only captures the initial value of `contact`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:24:16 +Warn: This reference only captures the initial value of `contact`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:25:23 +Warn: This reference only captures the initial value of `contact`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:26:23 +Warn: This reference only captures the initial value of `contact`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:27:22 +Warn: This reference only captures the initial value of `contact`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:28:23 +Warn: This reference only captures the initial value of `contact`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:29:24 +Warn: This reference only captures the initial value of `contact`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:30:23 +Warn: This reference only captures the initial value of `contact`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:31:16 +Warn: This reference only captures the initial value of `contact`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:32:17 +Warn: This reference only captures the initial value of `contact`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:33:15 +Warn: This reference only captures the initial value of `contact`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:34:19 +Warn: This reference only captures the initial value of `contact`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:128:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:133:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:138:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:152:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:159:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:168:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:181:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:190:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:197:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/ae_comp__contact_form.svelte:226:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/+page.svelte:83:13 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/[contact_id]/+page.svelte:24:13 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/contacts/[contact_id]/+page.svelte:42:13 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/lookups/+page.svelte:20:21 +Error: Property 'get_ae_obj_li_for_lu' does not exist on type '{ delete_object: ({ api_cfg, endpoint, headers, params, data, timeout, return_meta, log_lvl, retry_count }: { api_cfg: any; endpoint: string; headers?: any; params?: any; data?: any; timeout?: number | undefined; return_meta?: boolean | undefined; log_lvl?: number | undefined; retry_count?: number | undefined; }) =>...'. Did you mean 'get_ae_obj_id_crud'? (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/lookups/+page.svelte:21:21 +Error: Property 'get_ae_obj_li_for_lu' does not exist on type '{ delete_object: ({ api_cfg, endpoint, headers, params, data, timeout, return_meta, log_lvl, retry_count }: { api_cfg: any; endpoint: string; headers?: any; params?: any; data?: any; timeout?: number | undefined; return_meta?: boolean | undefined; log_lvl?: number | undefined; retry_count?: number | undefined; }) =>...'. Did you mean 'get_ae_obj_id_crud'? (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_search.svelte:48:13 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_search.svelte:72:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_search.svelte:81:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:22:21 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:23:22 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:24:22 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:25:17 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:25:35 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:26:17 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:26:35 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:27:19 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:28:29 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:29:23 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:30:24 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:31:16 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:32:18 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:33:16 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:34:25 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:35:17 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:36:15 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:37:19 +Warn: This reference only captures the initial value of `person`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:151:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:155:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:162:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:166:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:172:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:185:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:193:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:202:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:215:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:223:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:251:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/ae_comp__person_form.svelte:262:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/[person_id]/+page.svelte:46:24 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/[person_id]/+page.svelte:47:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/[person_id]/+page.svelte:49:26 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/people/[person_id]/+page.svelte:446:5 +Warn: Unused CSS selector "section.ae_quick_popover" +https://svelte.dev/e/css_unused_selector (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/sites/+page.svelte:82:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/sites/+page.svelte:105:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/sites/+page.svelte:114:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/sites/[site_id]/+page.svelte:142:29 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/sites/[site_id]/+page.svelte:146:29 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/sites/[site_id]/+page.svelte:150:29 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/sites/[site_id]/+page.svelte:154:29 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/sites/[site_id]/+page.svelte:171:33 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/sites/[site_id]/+page.svelte:29:13 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/sites/[site_id]/+page.svelte:34:13 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/sites/[site_id]/+page.svelte:61:13 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/sites/[site_id]/+page.svelte:74:13 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/sites/[site_id]/+page.svelte:84:13 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/sites/[site_id]/+page.svelte:96:13 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/users/+page.svelte:85:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/users/+page.svelte:109:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/users/+page.svelte:118:21 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/users/[user_id]/+page.svelte:29:23 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a derived instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/users/[user_id]/+page.svelte:116:25 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/users/[user_id]/+page.svelte:120:25 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/core/users/[user_id]/+page.svelte:124:25 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/+layout.svelte:41:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/+layout.svelte:44:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_file_obj_tbl.svelte:81:39 +Error: Parameter 'ae_obj_li' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_file_obj_tbl.svelte:201:9 +Error: Object is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte:48:38 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte:48:67 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte:58:44 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte:59:39 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_files_upload.svelte:66:26 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_files_upload.svelte:91:13 +Error: 'event.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_files_upload.svelte:91:13 +Error: Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'EventTarget'. + No index signature with a parameter of type 'string' was found on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_files_upload.svelte:97:33 +Error: 'event.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_files_upload.svelte:97:33 +Error: Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'EventTarget'. + No index signature with a parameter of type 'string' was found on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_files_upload.svelte:98:32 +Error: 'event.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_files_upload.svelte:98:32 +Error: Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'EventTarget'. + No index signature with a parameter of type 'string' was found on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_files_upload.svelte:113:13 +Error: 'event.target' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_files_upload.svelte:113:26 +Error: Property 'reset' does not exist on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_files_upload.svelte:134:46 +Error: Parameter 'input_upload_files' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_files_upload.svelte:134:66 +Error: Parameter 'task_id' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte:49:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte:50:38 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte:50:67 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte:342:63 +Error: 'new_person_obj' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li_wrapper.svelte:27:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li_wrapper.svelte:28:38 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li_wrapper.svelte:28:67 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li_wrapper.svelte:36:44 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li_wrapper.svelte:37:39 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_session_obj_li_wrapper.svelte:38:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_session_obj_li_wrapper.svelte:39:58 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_session_obj_li_wrapper.svelte:39:87 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_session_obj_li_wrapper.svelte:41:64 +Warn: This reference only captures the initial value of `event_session_id_random_li`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_session_obj_li_wrapper.svelte:50:44 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_session_obj_li_wrapper.svelte:51:39 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_session_obj_tbl.svelte:35:36 +Warn: This reference only captures the initial value of `container_class_li`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_session_obj_tbl.svelte:35:81 +Warn: This reference only captures the initial value of `show_location_fields`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_session_obj_tbl_wrapper.svelte:40:38 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_session_obj_tbl_wrapper.svelte:40:67 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_session_obj_tbl_wrapper.svelte:50:44 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/ae_comp__event_session_obj_tbl_wrapper.svelte:51:39 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/+layout.svelte:44:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/+layout.svelte:50:46 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/+page.svelte:47:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/+page.svelte:48:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/+page.svelte:52:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/+page.svelte:53:43 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/+page.svelte:57:20 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/+page.svelte:425:19 +Error: Object literal may only specify known properties, and 'data' does not exist in type 'Props'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/sign_in_out.svelte:38:29 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/sign_in_out.svelte:39:31 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/sign_in_out.svelte:40:35 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/sign_in_out.svelte:41:32 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/sign_in_out.svelte:42:30 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/sign_in_out.svelte:82:13 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/sign_in_out.svelte:83:13 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/sign_in_out.svelte:84:13 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/sign_in_out.svelte:85:13 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/sign_in_out.svelte:86:13 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/sign_in_out.svelte:88:27 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/sign_in_out.svelte:213:81 +Error: Property 'value' does not exist on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/sign_in_out.svelte:220:86 +Error: Property 'value' does not exist on type 'EventTarget'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte:193:21 +Error: Type 'string' is not assignable to type '"all" | "printed" | "not_printed" | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte:203:56 +Error: Property 'length' does not exist on type 'false | ae_EventBadge[]'. + Property 'length' does not exist on type 'false'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte:204:47 +Error: Element implicitly has an 'any' type because expression of type 'number' can't be used to index type 'false | ae_EventBadge[]'. + No index signature with a parameter of type 'number' was found on type 'false | ae_EventBadge[]'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte:351:21 +Error: Object literal may only specify known properties, and '"suggest"' does not exist in type 'HTMLProps<"input", HTMLAttributes>'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_obj_li.svelte:40:63 +Error: 'item' is possibly 'undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_obj_li.svelte:74:34 +Error: 'event_badge_obj.print_count' is possibly 'null' or 'undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_obj_li.svelte:86:46 +Error: 'event_badge_obj.print_count' is possibly 'null' or 'undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_obj_li.svelte:119:46 +Error: 'event_badge_obj.print_count' is possibly 'null' or 'undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_create_form.svelte:15:9 +Warn: `full_name_override` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_create_form.svelte:16:9 +Warn: `professional_title_override` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_create_form.svelte:17:9 +Warn: `affiliations_override` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_create_form.svelte:18:9 +Warn: `location_override` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_create_form.svelte:19:9 +Warn: `email` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_create_form.svelte:20:9 +Warn: `allow_tracking` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_create_form.svelte:21:9 +Warn: `badge_type_code` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_create_form.svelte:23:9 +Warn: `submit_status` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte:16:9 +Warn: `selected_file` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte:17:9 +Warn: `upload_status` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte:18:9 +Warn: `upload_message` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte:19:9 +Warn: `processed_badges_count` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte:20:9 +Warn: `total_badges_in_file` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte:100:60 +Error: 'error' is of type 'unknown'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/+page.svelte:53:24 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/+page.svelte:105:17 +Error: Object literal may only specify known properties, and 'show' does not exist in type 'ModalProps'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/+page.svelte:105:12 +Error: Cannot use 'bind:' with this property. It is declared as non-bindable inside the component. +To mark a property as bindable: 'let { show = $bindable() } = $props()' (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/+page.svelte:112:21 +Error: Cannot find name 'ae_triggers'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/+page.svelte:121:17 +Error: Object literal may only specify known properties, and 'show' does not exist in type 'ModalProps'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/+page.svelte:121:12 +Error: Cannot use 'bind:' with this property. It is declared as non-bindable inside the component. +To mark a property as bindable: 'let { show = $bindable() } = $props()' (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/+page.svelte:128:21 +Error: Cannot find name 'ae_triggers'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/+page.svelte:139:58 +Error: Property 'name' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/+page.svelte:214:9 +Error: Object literal may only specify known properties, and '"qry_str"' does not exist in type 'Props'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:71:28 +Warn: This reference only captures the initial value of `event_badge_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:190:13 +Error: Cannot find name 'longest_full_name_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:191:17 +Error: Cannot find name 'longest_full_name_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:193:24 +Error: Cannot find name 'longest_full_name_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:199:13 +Error: Cannot find name 'longest_professional_title_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:200:17 +Error: Cannot find name 'longest_professional_title_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:202:24 +Error: Cannot find name 'longest_professional_title_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:204:24 +Error: Cannot find name 'longest_professional_title_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:210:13 +Error: Cannot find name 'longest_affiliations_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:211:17 +Error: Cannot find name 'longest_affiliations_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:213:24 +Error: Cannot find name 'longest_affiliations_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:215:24 +Error: Cannot find name 'longest_affiliations_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:217:24 +Error: Cannot find name 'longest_affiliations_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:219:24 +Error: Cannot find name 'longest_affiliations_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:221:24 +Error: Cannot find name 'longest_affiliations_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:230:13 +Error: Cannot find name 'longest_location_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:231:17 +Error: Cannot find name 'longest_location_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:233:24 +Error: Cannot find name 'longest_location_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:235:24 +Error: Cannot find name 'longest_location_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:237:24 +Error: Cannot find name 'longest_location_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:239:24 +Error: Cannot find name 'longest_location_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:241:24 +Error: Cannot find name 'longest_location_override_part'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:298:13 +Error: Argument of type '() => Promise' is not assignable to parameter of type '() => void | (() => void)'. + Type 'Promise' is not assignable to type 'void | (() => void)'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:313:36 +Error: 'error' is of type 'unknown'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:343:32 +Error: 'error' is of type 'unknown'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:407:58 +Error: Argument of type '{ api_cfg: key_val; event_badge_id: any; data_kv: key_val; log_lvl: number; }' is not assignable to parameter of type '{ api_cfg: any; event_id: string; event_badge_id: string; data_kv: key_val; params?: key_val | undefined; try_cache?: boolean | undefined; log_lvl?: number | undefined; }'. + Property 'event_id' is missing in type '{ api_cfg: key_val; event_badge_id: any; data_kv: key_val; log_lvl: number; }' but required in type '{ api_cfg: any; event_id: string; event_badge_id: string; data_kv: key_val; params?: key_val | undefined; try_cache?: boolean | undefined; log_lvl?: number | undefined; }'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:488:45 +Error: Cannot find name 'use_badge_type_code'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:793:34 +Error: Cannot find name 'option_ticket_1_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:798:34 +Error: Cannot find name 'option_ticket_2_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:801:34 +Error: Cannot find name 'option_ticket_3_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:853:26 +Error: Cannot find name 'option_other_1_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:857:31 +Error: Cannot find name 'option_other_1_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:859:37 +Error: Cannot find name 'option_other_1_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:867:26 +Error: Cannot find name 'option_other_2_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:871:31 +Error: Cannot find name 'option_other_2_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:873:37 +Error: Cannot find name 'option_other_2_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:1091:42 +Error: Cannot find name 'option_other_1_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:1092:44 +Error: Cannot find name 'option_other_1_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:1093:47 +Error: Cannot find name 'option_other_1_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:1094:50 +Error: Cannot find name 'option_other_1_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:1101:42 +Error: Cannot find name 'option_other_2_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:1102:44 +Error: Cannot find name 'option_other_2_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:1103:47 +Error: Cannot find name 'option_other_2_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:1104:50 +Error: Cannot find name 'option_other_2_override'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:1113:52 +Error: Property 'exhibitor_info' does not exist on type 'Badge_template'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:1120:52 +Error: Property 'presenter_info' does not exist on type 'Badge_template'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:1127:52 +Error: Property 'staff_info' does not exist on type 'Badge_template'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:1134:52 +Error: Property 'vip_info' does not exist on type 'Badge_template'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:1141:52 +Error: Property 'vote_info' does not exist on type 'Badge_template'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte:1200:46 +Error: Cannot find name 'allow_tracking'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/+page.svelte:41:26 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/+page.svelte:43:24 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/[badge_id]/+page.svelte:71:13 +Error: Type 'Event | undefined' is not assignable to type 'null'. + Type 'undefined' is not assignable to type 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte:14:28 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte:15:48 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte:16:49 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte:25:66 +Error: Argument of type '{ log_lvl: number; printed_status?: string; type_code?: string; api_cfg: key_val; event_id: string; limit: number; }' is not assignable to parameter of type '{ api_cfg: any; event_id: string; type_code?: string | null | undefined; printed_status?: "all" | "printed" | "not_printed" | undefined; affiliations_qry_str?: string | null | undefined; ... 11 more ...; log_lvl?: number | undefined; }'. + Types of property 'printed_status' are incompatible. + Type 'string | undefined' is not assignable to type '"all" | "printed" | "not_printed" | undefined'. + Type 'string' is not assignable to type '"all" | "printed" | "not_printed" | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte:82:30 +Error: Property 'length' does not exist on type 'Observable'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte:84:24 +Error: Argument of type 'Observable' is not assignable to parameter of type 'ArrayLike | Iterable | null | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte:84:54 +Error: 'badge_obj' is of type 'unknown'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte:88:45 +Error: 'badge_obj' is of type 'unknown'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:24:9 +Warn: `name` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:25:9 +Warn: `header_path` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:26:9 +Warn: `logo_path` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:27:9 +Warn: `header_row_1` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:28:9 +Warn: `header_row_2` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:29:9 +Warn: `secondary_header_path` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:30:9 +Warn: `footer_text` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:31:9 +Warn: `show_qr_front` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:32:9 +Warn: `show_qr_back` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:33:9 +Warn: `wireless_ssid` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:34:9 +Warn: `wireless_password` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:35:9 +Warn: `ticket_1_text` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:36:9 +Warn: `ticket_2_text` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:37:9 +Warn: `ticket_3_text` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:39:9 +Warn: `submit_status` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte:42:13 +Error: Argument of type '() => Promise' is not assignable to parameter of type '() => void | (() => void)'. + Type 'Promise' is not assignable to type 'void | (() => void)'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/hold+page.svelte:15:28 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/hold+page.svelte:91:24 +Error: Property 'length' does not exist on type 'Observable'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/hold+page.svelte:94:28 +Error: Argument of type 'Observable' is not assignable to parameter of type 'ArrayLike | Iterable | null | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/hold+page.svelte:94:51 +Error: 'template' is of type 'unknown'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/hold+page.svelte:96:36 +Error: 'template' is of type 'unknown'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/hold+page.svelte:101:55 +Error: 'template' is of type 'unknown'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/hold+page.svelte:108:57 +Error: 'template' is of type 'unknown'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/hold+page.svelte:126:17 +Error: Object literal may only specify known properties, and 'show' does not exist in type 'ModalProps'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/hold+page.svelte:126:12 +Error: Cannot use 'bind:' with this property. It is declared as non-bindable inside the component. +To mark a property as bindable: 'let { show = $bindable() } = $props()' (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/hold+page.svelte:138:17 +Error: Object literal may only specify known properties, and 'show' does not exist in type 'ModalProps'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(badges)/templates/hold+page.svelte:138:12 +Error: Cannot use 'bind:' with this property. It is declared as non-bindable inside the component. +To mark a property as bindable: 'let { show = $bindable() } = $props()' (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte:105:50 +Warn: This reference only captures the initial value of `event_file_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte:169:58 +Error: Cannot find name 'native_app'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte:181:54 +Error: Cannot find name 'native_app'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte:195:27 +Error: Cannot find name 'native_app'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte:263:64 +Error: Cannot find name 'native_app'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/menu_location_list.svelte:134:37 +Error: Type 'null' cannot be used as an index type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/menu_session_list.svelte:135:50 +Error: 'load_results' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/menu_session_list.svelte:135:63 +Error: Property 'event_file_li' does not exist on type 'ae_EventSession'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/menu_session_list.svelte:136:58 +Error: 'load_results' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte:61:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte:107:29 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte:108:38 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte:109:37 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte:360:57 +Error: Type 'Session[] | undefined' must have a '[Symbol.iterator]()' method that returns an iterator. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte:696:31 +Error: Cannot find name 'close_event_file_as_modal'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte:699:25 +Error: Property 'launcher' does not exist on type 'Writable'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte:1231:5 +Error: Type '"w-md"' is not assignable to type '"default" | "full" | "half" | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte:1285:5 +Error: Type '"min-h-96 h-1/2"' is not assignable to type '"default" | "full" | "half" | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte:1321:5 +Error: Type '""' is not assignable to type '"md" | "none" | "sm" | "lg" | "xs" | "xl" | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte:1334:8 +Error: Argument of type '"close"' is not assignable to parameter of type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:61:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:66:30 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:67:29 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:69:39 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:70:38 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:179:43 +Error: Parameter 'event_device_id' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:190:13 +Error: Element implicitly has an 'any' type because expression of type '"other_json"' can't be used to index type '{}'. + Property 'other_json' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:192:13 +Error: Element implicitly has an 'any' type because expression of type '"info_hostname"' can't be used to index type '{}'. + Property 'info_hostname' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:208:21 +Error: Element implicitly has an 'any' type because expression of type '"name"' can't be used to index type '{}'. + Property 'name' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:214:25 +Error: Element implicitly has an 'any' type because expression of type '"address"' can't be used to index type '{}'. + Property 'address' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:215:25 +Error: Element implicitly has an 'any' type because expression of type '"mac"' can't be used to index type '{}'. + Property 'mac' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:224:13 +Error: Element implicitly has an 'any' type because expression of type '"meta_json"' can't be used to index type '{}'. + Property 'meta_json' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:225:25 +Error: Element implicitly has an 'any' type because expression of type '"meta_json"' can't be used to index type '{}'. + Property 'meta_json' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:227:13 +Error: Element implicitly has an 'any' type because expression of type '"info_ip_list"' can't be used to index type '{}'. + Property 'info_ip_list' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:228:25 +Error: Element implicitly has an 'any' type because expression of type '"info_ip_list"' can't be used to index type '{}'. + Property 'info_ip_list' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:230:13 +Error: Cannot find name 'event_device_obj_up_promise'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:230:43 +Error: Cannot find name 'update_event_device_obj'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte:235:33 +Error: Parameter 'up_event_device_result' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte:45:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte:46:57 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte:46:86 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte:61:9 +Warn: This reference only captures the initial value of `auto_refresh`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte:63:32 +Warn: This reference only captures the initial value of `auto_refresh`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte:65:20 +Warn: This reference only captures the initial value of `auto_refresh`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte:66:32 +Warn: This reference only captures the initial value of `auto_refresh`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li_wrapper.svelte:27:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li_wrapper.svelte:29:57 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li_wrapper.svelte:29:86 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li_wrapper.svelte:38:44 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li_wrapper.svelte:39:39 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/location_view.svelte:422:5 +Warn: Unused CSS selector "div.ae_quick_modal_container" +https://svelte.dev/e/css_unused_selector (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/location_view.svelte:435:5 +Warn: Unused CSS selector "section.ae_quick_popover" +https://svelte.dev/e/css_unused_selector (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte:58:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte:61:26 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte:58:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte:61:26 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte:155:6 +Error: Property 'link_to_id' is missing in type '{ lq__event_location_obj_li: Observable; }' but required in type 'Props'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl.svelte:43:36 +Warn: This reference only captures the initial value of `container_class_li`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl.svelte:43:85 +Warn: This reference only captures the initial value of `show_presentation_fields`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl.svelte:43:135 +Warn: This reference only captures the initial value of `show_session_fields`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl.svelte:63:44 +Error: Parameter 'ae_obj_li' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl.svelte:142:9 +Error: Object is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl_wrapper.svelte:43:38 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl_wrapper.svelte:43:67 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl_wrapper.svelte:53:44 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl_wrapper.svelte:54:39 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte:62:38 +Error: Argument of type 'EventTarget | null' is not assignable to parameter of type 'HTMLFormElement | undefined'. + Type 'null' is not assignable to type 'HTMLFormElement | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte:104:53 +Error: Binding element 'obj_type' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte:104:63 +Error: Binding element 'obj_id' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte:104:71 +Error: Binding element 'data' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/presenter_view.svelte:1167:53 +Error: Element implicitly has an 'any' type because expression of type '""' can't be used to index type '{}'. + Property '' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/presenter_view.svelte:1169:90 +Error: Property 'last_first_name' does not exist on type 'ae_Person'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/presenter_view.svelte:1170:57 +Error: Element implicitly has an 'any' type because expression of type 'string' can't be used to index type '{}'. + No index signature with a parameter of type 'string' was found on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/presenter_view.svelte:1297:62 +Error: 'new_person_obj' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte:50:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte:51:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte:55:26 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte:131:27 +Error: Object literal may only specify known properties, and 'data' does not exist in type 'Props'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte:263:37 +Error: Type 'string | null | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/reports/reports_files.svelte:488:51 +Error: Property 'name' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte:45:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte:66:9 +Error: Type 'string[] | undefined' is not assignable to type 'string[]'. + Type 'undefined' is not assignable to type 'string[]'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte:67:9 +Error: Type 'string[] | undefined' is not assignable to type 'string[]'. + Type 'undefined' is not assignable to type 'string[]'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_form_agree.svelte:61:38 +Error: Argument of type 'EventTarget | null' is not assignable to parameter of type 'HTMLFormElement | undefined'. + Type 'null' is not assignable to type 'HTMLFormElement | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/session_view.svelte:20:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/session_view.svelte:531:49 +Error: Element implicitly has an 'any' type because expression of type '""' can't be used to index type '{}'. + Property '' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/session_view.svelte:536:57 +Error: Element implicitly has an 'any' type because expression of type 'string' can't be used to index type '{}'. + No index signature with a parameter of type 'string' was found on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/session_view.svelte:792:49 +Error: Element implicitly has an 'any' type because expression of type '""' can't be used to index type '{}'. + Property '' does not exist on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/session_view.svelte:794:86 +Error: Property 'last_first_name' does not exist on type 'ae_Person'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/session_view.svelte:795:53 +Error: Element implicitly has an 'any' type because expression of type 'string' can't be used to index type '{}'. + No index signature with a parameter of type 'string' was found on type '{}'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte:62:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte:65:26 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:25:13 +Error: Type 'Event | undefined' is not assignable to type 'null'. + Type 'undefined' is not assignable to type 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:45:17 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:82:50 +Error: Property 'cfg_json' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:89:59 +Error: Property 'cfg_json' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:93:28 +Error: Argument of type '"change"' is not assignable to parameter of type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:94:29 +Error: 'event_obj' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:94:52 +Error: Property 'detail' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:99:64 +Error: 'event_obj' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:118:60 +Error: Property 'mod_pres_mgmt_json' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:125:59 +Error: Property 'mod_pres_mgmt_json' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:129:28 +Error: Argument of type '"change"' is not assignable to parameter of type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:130:29 +Error: 'event_obj' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:130:62 +Error: Property 'detail' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:136:63 +Error: 'event_obj' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:156:57 +Error: Property 'mod_badges_json' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:163:59 +Error: Property 'mod_badges_json' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:167:28 +Error: Argument of type '"change"' is not assignable to parameter of type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:168:29 +Error: 'event_obj' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:168:59 +Error: Property 'detail' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:173:71 +Error: 'event_obj' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:193:60 +Error: Property 'mod_abstracts_json' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:200:59 +Error: Property 'mod_abstracts_json' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:204:28 +Error: Argument of type '"change"' is not assignable to parameter of type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:205:29 +Error: 'event_obj' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:205:62 +Error: Property 'detail' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:211:63 +Error: 'event_obj' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:224:55 +Error: Property 'mod_exhibits_json' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:228:24 +Error: Argument of type '"change"' is not assignable to parameter of type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:229:25 +Error: 'event_obj' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:229:57 +Error: Property 'detail' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:234:69 +Error: 'event_obj' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:246:55 +Error: Property 'mod_meetings_json' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:250:24 +Error: Argument of type '"change"' is not assignable to parameter of type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:251:25 +Error: 'event_obj' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:251:57 +Error: Property 'detail' does not exist on type 'never'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/events/[event_id]/settings/+page.svelte:256:69 +Error: 'event_obj' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/+layout.svelte:191:18 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/+layout.svelte:31:26 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/+layout.svelte:32:22 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/+layout.svelte:35:45 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/+layout.svelte:39:13 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/+layout.svelte:40:35 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/+layout.svelte:42:13 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/+layout.svelte:43:55 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/+layout.svelte:47:13 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/+layout.svelte:48:59 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/+layout.svelte:25:56 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/+layout.svelte:29:24 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/+layout.svelte:31:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte:51:9 +Warn: This reference only captures the initial value of `lu_time_zone_list`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte:51:30 +Warn: This reference only captures the initial value of `lu_time_zone_list`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte:59:26 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte:107:38 +Error: Argument of type 'EventTarget | null' is not assignable to parameter of type 'HTMLFormElement | undefined'. + Type 'null' is not assignable to type 'HTMLFormElement | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte:273:17 +Error: Type 'string' is not assignable to type '"delete" | "soft_delete" | "disable" | "hide" | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte:107:9 +Warn: This reference only captures the initial value of `lu_time_zone_list`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte:107:30 +Warn: This reference only captures the initial value of `lu_time_zone_list`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte:115:26 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte:163:38 +Error: Argument of type 'EventTarget | null' is not assignable to parameter of type 'HTMLFormElement | undefined'. + Type 'null' is not assignable to type 'HTMLFormElement | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte:1052:33 +Error: Type 'string' is not assignable to type '"delete" | "soft_delete" | "disable" | "hide" | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte:1090:37 +Error: Type 'string' is not assignable to type '"delete" | "soft_delete" | "disable" | "hide" | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__modal_media_player.svelte:24:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__modal_media_player.svelte:25:49 +Warn: This reference only captures the initial value of `lq__archive_content_obj`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte:69:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte:327:36 +Error: Property 'topic_name' does not exist on type 'Archive'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte:329:82 +Error: Property 'topic_name' does not exist on type 'Archive'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/+layout.svelte:34:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/+layout.svelte:35:62 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/+layout.svelte:39:24 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/+layout.svelte:41:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/+layout.svelte:42:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_options.svelte:41:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/+page.svelte:62:62 +Error: No overload matches this call. + Overload 1 of 4, '(value: string | number | Date): Date', gave the following error. + Argument of type 'Date | undefined' is not assignable to parameter of type 'string | number | Date'. + Type 'undefined' is not assignable to type 'string | number | Date'. + Overload 2 of 4, '(value: string | number): Date', gave the following error. + Argument of type 'Date | undefined' is not assignable to parameter of type 'string | number'. + Type 'undefined' is not assignable to type 'string | number'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/+page.svelte:226:6 +Error: Property 'data' is missing in type '{ lq__post_obj_li: Observable; }' but required in type 'Props'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_comment_obj_id_edit.svelte:278:17 +Error: Type 'string' is not assignable to type '"delete" | "soft_delete" | "disable" | "hide" | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte:262:17 +Error: Type 'string' is not assignable to type '"delete" | "soft_delete" | "disable" | "hide" | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte:499:25 +Error: Object literal may only specify known properties, and '"default_minimal"' does not exist in type 'Props'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte:667:67 +Error: Parameter 'hosted_file_obj' implicitly has an 'any' type. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte:338:14 +Error: Object literal may only specify known properties, and 'lq__post_comment_obj' does not exist in type 'Props'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte:355:30 +Error: Object literal may only specify known properties, and 'lq__post_comment_obj' does not exist in type 'Props'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte:44:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/+layout.svelte:35:65 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/+layout.svelte:39:24 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/+layout.svelte:41:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte:715:39 +Error: Property 'handle_download_export__obj_type' does not exist on type '{ check_hosted_file_obj_w_hash: ({ api_cfg, hosted_file_hash, check_for_local, params, return_meta, log_lvl }: { api_cfg: any; hosted_file_hash: string; check_for_local?: boolean | undefined; params?: key_val | undefined; return_meta?: boolean | undefined; log_lvl?: number | undefined; }) => Promise<...>; ... 31 mor...'. Did you mean 'download_export__obj_type'? (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte:42:13 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte:43:42 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte:43:71 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte:587:5 +Warn: Do not use empty rulesets (css) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte:39:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte:40:50 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte:40:79 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte:42:9 +Warn: This reference only captures the initial value of `log_lvl`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte:43:56 +Warn: This reference only captures the initial value of `event_id_random_li`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte:51:44 +Warn: This reference only captures the initial value of `link_to_type`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte:52:39 +Warn: This reference only captures the initial value of `link_to_id`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/+page.svelte:261:29 +Error: Object literal may only specify known properties, and 'qry_conference' does not exist in type '{ api_cfg: any; for_obj_type?: string | undefined; for_obj_id: string; qry_str?: string | undefined; qry_person_id?: string | null | undefined; enabled?: "enabled" | "all" | "not_enabled" | undefined; ... 5 more ...; log_lvl?: number | undefined; }'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte:212:9 +Warn: This reference only captures the initial value of `lu_country_list`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte:212:28 +Warn: This reference only captures the initial value of `lu_country_list`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte:213:51 +Warn: This reference only captures the initial value of `lu_country_list`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte:213:77 +Warn: This reference only captures the initial value of `lu_country_list`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte:250:9 +Warn: This reference only captures the initial value of `lu_country_subdivision_list`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte:251:9 +Warn: This reference only captures the initial value of `lu_country_subdivision_list`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte:255:55 +Warn: This reference only captures the initial value of `lu_country_subdivision_list`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte:256:13 +Warn: This reference only captures the initial value of `lu_country_subdivision_list`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte:2788:20 +Warn: Unused CSS selector ".event__recurring .ae_group" +https://svelte.dev/e/css_unused_selector (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte:711:17 +Error: Type 'string' is not assignable to type '"delete" | "soft_delete" | "disable" | "hide" | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte:1737:39 +Error: This comparison appears to be unintentional because the types '1' and '3' have no overlap. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte:45:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte:248:125 +Error: '$lq__event_obj.contact_li_json' is possibly 'null' or 'undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte:248:160 +Error: Property 'email' does not exist on type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/video_conferences/+page.svelte:374:3 +Error: Type 'string | null' is not assignable to type 'string'. + Type 'null' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/idaa/(idaa)/video_conferences/+page.svelte:375:3 +Error: Type 'string | null' is not assignable to type 'string'. + Type 'null' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/+layout.svelte:35:24 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/+layout.svelte:41:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/+layout.svelte:48:9 +Warn: `box` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates +https://svelte.dev/e/non_reactive_update (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/+page.svelte:189:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/+page.svelte:198:17 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/ae_comp__journal_entry_obj_li.svelte:258:66 +Error: 'result' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/ae_comp__journal_entry_obj_li.svelte:258:100 +Error: 'result' is possibly 'null'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/ae_comp__journal_entry_obj_qry.svelte:72:13 +Error: Argument of type '() => Promise' is not assignable to parameter of type '() => void | (() => void)'. + Type 'Promise' is not assignable to type 'void | (() => void)'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/ae_comp__modal_journal_export.svelte:134:13 +Warn: A form label must be associated with a control +https://svelte.dev/e/a11y_label_has_associated_control (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/ae_comp__obj_core_props.svelte:279:25 +Error: Type 'string' is not assignable to type '"delete" | "soft_delete" | "disable" | "hide" | undefined'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/[journal_id]/+layout.svelte:27:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/[journal_id]/+layout.svelte:383:29 +Error: Type 'string | undefined' is not assignable to type 'string'. + Type 'undefined' is not assignable to type 'string'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/[journal_id]/+page.svelte:79:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/[journal_id]/+page.svelte:367:9 +Error: Type '(Journal_Entry | undefined)[]' is not assignable to type 'ae_JournalEntry[]'. + Type 'Journal_Entry | undefined' is not assignable to type 'ae_JournalEntry'. + Type 'undefined' is not assignable to type 'ae_JournalEntry'. (ts) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte:53:19 +Warn: This reference only captures the initial value of `data`. Did you mean to reference it inside a closure instead? +https://svelte.dev/e/state_referenced_locally (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/testing/+page.svelte:186:17 +Warn: Self-closing HTML tags for non-void elements are ambiguous — use `
` rather than `
` +https://svelte.dev/e/element_invalid_self_closing_tag (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/testing/+page.svelte:191:17 +Warn: Self-closing HTML tags for non-void elements are ambiguous — use `
` rather than `
` +https://svelte.dev/e/element_invalid_self_closing_tag (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/testing/+page.svelte:301:29 +Warn: Self-closing HTML tags for non-void elements are ambiguous — use `
` rather than `
` +https://svelte.dev/e/element_invalid_self_closing_tag (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/testing/+page.svelte:302:29 +Warn: Self-closing HTML tags for non-void elements are ambiguous — use `
` rather than `
` +https://svelte.dev/e/element_invalid_self_closing_tag (svelte) + +/home/scott/OSIT_dev/aether_app_sveltekit/src/routes/testing/+page.svelte:303:29 +Warn: Self-closing HTML tags for non-void elements are ambiguous — use `
` rather than `
` +https://svelte.dev/e/element_invalid_self_closing_tag (svelte) + +==================================== +svelte-check found 594 errors and 401 warnings in 149 files