feat(v3-events): update events_general object definition with virtual/physical and external ID fields

This commit is contained in:
Scott Idem
2026-02-05 16:37:49 -05:00
parent ac516c4d77
commit 907ff9a2f8
2 changed files with 3 additions and 2 deletions

View File

@@ -79,7 +79,7 @@
- Reduced `hosted_file.py` (1596 -> 361 lines). - Reduced `hosted_file.py` (1596 -> 361 lines).
- Implemented Zoom Events OAuth2 and Sync backend. - Implemented Zoom Events OAuth2 and Sync backend.
- Verified Full File Lifecycle (Upload -> Download -> Delete) via standardized E2E test. - Verified Full File Lifecycle (Upload -> Download -> Delete) via standardized E2E test.
- **Immediate Next Step:** Finalize wrap-up by registering new agent 'Inara' in `agents_sync`. - **Immediate Next Step:** Verify V3 Search and CRUD for Events modules.
--- ---

View File

@@ -47,7 +47,8 @@ events_general_obj_li = {
'account_id', 'event_id', 'account_id', 'event_id',
'event_id_random', 'account_id_random', 'event_code', 'conference', 'event_id_random', 'account_id_random', 'event_code', 'conference',
'type', 'name', 'summary', 'description', 'format', 'timezone', 'type', 'name', 'summary', 'description', 'format', 'timezone',
'location_text', 'status', 'enable', 'hide', 'priority', 'sort', 'location_text', 'physical', 'virtual', 'external_person_id',
'status', 'enable', 'hide', 'priority', 'sort',
'group', 'notes', 'created_on', 'updated_on', 'default_qry_str' 'group', 'notes', 'created_on', 'updated_on', 'default_qry_str'
], ],
}, },