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:
Scott Idem
2026-01-08 12:24:34 -05:00
parent 59d5b81da0
commit 802c75bad9
17 changed files with 343 additions and 81 deletions

View File

@@ -69,7 +69,7 @@ core_obj_li = {
'account_name', 'account_short_name', 'default_no_reply_email',
'default_no_reply_name', 'confirm_email', 'help_event_email',
'help_general_email', 'help_tech_email', 'stripe_account_id',
'enable', 'hide', 'priority', 'sort', 'group', 'notes', 'created_on', 'updated_on'
'created_on', 'updated_on'
],
},
'address': {
@@ -220,7 +220,7 @@ core_obj_li = {
# V3 Search Security:
'searchable_fields': [
'user_id_random', 'for_type', 'for_id_random', 'code', 'name',
'description', 'enable', 'hide', 'priority', 'sort', 'group', 'notes', 'created_on', 'updated_on'
'description', 'enable', 'notes', 'created_on', 'updated_on'
],
},
'log_client_viewing': {
@@ -233,7 +233,7 @@ core_obj_li = {
'searchable_fields': [
'log_client_viewing_id_random', 'account_id_random', 'person_id_random',
'user_id_random', 'external_client_id', 'name', 'source', 'url_root',
'url_full_path', 'object_type', 'object_id', 'enable', 'hide', 'priority', 'sort', 'group', 'notes', 'created_on', 'updated_on'
'url_full_path', 'object_type', 'object_id', 'created_on', 'updated_on'
],
},
}