Fix(Events): Isolate IDAA Search to V2 and Refine V3 Search Pattern

- IDAA Isolation: Created  using legacy V2 endpoints and  for Recovery Meetings stability.
- V3 Refinement: Implemented 'Body + Header' injection in  to fix 'Integer Trap' while maintaining Auth scope.
- API Upgrade: Enhanced  to support custom headers.
- Docs: Updated migration guide and development history with final isolation strategy.
This commit is contained in:
Scott Idem
2026-01-20 15:06:26 -05:00
parent 6707b6826b
commit 07d7b4ec6d
7 changed files with 164 additions and 11 deletions

View File

@@ -14,6 +14,7 @@ interface SearchAeObjV3Params {
limit?: number;
offset?: number;
delay_ms?: number;
headers?: any;
log_lvl?: number;
}
@@ -30,6 +31,7 @@ export async function search_ae_obj_v3({
limit = 100,
offset = 0,
delay_ms = 0,
headers = {},
log_lvl = 0
}: SearchAeObjV3Params) {
const endpoint = `/v3/crud/${obj_type}/search`;
@@ -60,6 +62,7 @@ export async function search_ae_obj_v3({
api_cfg,
endpoint,
params,
headers,
data: search_query,
log_lvl
});