fix(idaa): resolve type mismatches in delete methods and liveQuery results

- Updated 'method' parameter types in IDAA edit components to match the expected union types in the V3 API helpers.
- Applied type casting to 'liveQuery' results in the Archives page to ensure 'topic_name' and other convenience fields are recognized by the compiler.
- Fixed casting for 'method' variable in delete operations across Archives, Bulletin Board, and Recovery Meetings.
This commit is contained in:
Scott Idem
2026-02-04 15:05:53 -05:00
parent bc30724628
commit 2e804ae01b
5 changed files with 6 additions and 6 deletions

View File

@@ -708,7 +708,7 @@
.delete_ae_obj_id__event({
api_cfg: $ae_api,
event_id: event_id,
method: method,
method: method as any,
log_lvl: log_lvl
})
.then(function (event_obj_delete_result) {