V3: Standardize Primary AE Objects and Synchronize Search Whitelists.
- Synchronized searchable_fields (V3 whitelists) across all Primary and Active AE objects (Identity, People, Events, Journals, Posts, Archives, Business).
- Standardized Pydantic models for core objects to include the 10 common fields (id, id_random, enable, hide, priority, sort, group, notes, created_on, updated_on).
- Fixed field aliases and uncommented valid database columns in User_Base and Organization_Base.
- Pruned non-existent fields from searchable lists in legacy or config-specific definitions (account_cfg, user_role, log_client_viewing).
- Added system discovery and validation tools:
- ae_object_info.py: AE object status and metadata browser.
- export_all_interfaces.py: E2E TypeScript interface generator.
- Verification scripts for searchable field consistency.
- Updated Jan 8 milestone progress and platform roadmap in GEMINI.md.
This commit is contained in:
@@ -44,8 +44,8 @@ events_registration_obj_li = {
|
||||
# V3 Search Security:
|
||||
'searchable_fields': [
|
||||
'event_badge_template_id_random', 'event_id_random', 'name',
|
||||
'description', 'layout', 'notes', 'enable', 'hide', 'priority',
|
||||
'sort', 'group', 'created_on', 'updated_on'
|
||||
'description', 'layout', 'notes', 'enable',
|
||||
'created_on', 'updated_on'
|
||||
],
|
||||
},
|
||||
'event_person': {
|
||||
@@ -87,7 +87,7 @@ events_registration_obj_li = {
|
||||
'contact_id_random', 'event_id_random', 'event_person_id_random',
|
||||
'organization_id_random', 'pronouns', 'informal_name', 'given_name',
|
||||
'family_name', 'professional_title', 'full_name', 'affiliations',
|
||||
'email', 'enable', 'hide', 'priority', 'sort', 'group', 'notes', 'created_on',
|
||||
'email', 'enable', 'priority', 'sort', 'group', 'notes', 'created_on',
|
||||
'updated_on'
|
||||
],
|
||||
},
|
||||
@@ -105,8 +105,7 @@ events_registration_obj_li = {
|
||||
'searchable_fields': [
|
||||
'event_person_tracking_id_random', 'event_id_random',
|
||||
'event_session_id_random', 'event_person_id_random',
|
||||
'check_in_out', 'in_datetime', 'out_datetime', 'enable', 'hide',
|
||||
'priority', 'sort', 'group', 'notes',
|
||||
'check_in_out', 'in_datetime', 'out_datetime', 'enable', 'notes',
|
||||
'created_on', 'updated_on'
|
||||
],
|
||||
},
|
||||
@@ -126,7 +125,7 @@ events_registration_obj_li = {
|
||||
'searchable_fields': [
|
||||
'event_registration_id_random', 'account_id_random',
|
||||
'event_id_random', 'organization_id_random', 'contact_id_random',
|
||||
'person_id_random', 'enable', 'hide', 'priority', 'sort', 'group', 'notes', 'created_on',
|
||||
'person_id_random', 'notes', 'created_on',
|
||||
'updated_on'
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user