fix(ui): regenerate schema.d.ts after enabling audit search param

The audit-logging endpoint in enterprise/litellm_enterprise added a
``search`` query parameter; the regenerated types hadn't picked it up.

Run ``pnpm run gen:api`` from ui/litellm-dashboard (which loads the
local litellm_enterprise edit-install so the audit endpoint is in the
spec) and commit the result. ``Check UI API Types Sync`` is happy again.
This commit is contained in:
Taranum01 2026-09-13 21:26:17 +05:30
parent b939bb0b72
commit ba42ccb1a7

View file

@ -41641,6 +41641,8 @@ export interface operations {
object_team_id?: string | null;
/** @description Filter by token (key hash) present in before_value or updated_values JSON (PostgreSQL only) */
object_key_hash?: string | null;
/** @description Match a row whose id, object_id, changed_by, or changed_by_api_key equals this value */
search?: string | null;
/** @description Column to sort by (e.g. 'updated_at', 'action', 'table_name') */
sort_by?: string | null;
/** @description Sort order ('asc' or 'desc') */