From ba42ccb1a779b110c452faf77c0e5c125919a63a Mon Sep 17 00:00:00 2001 From: Taranum01 Date: Sun, 13 Sep 2026 21:26:17 +0530 Subject: [PATCH] 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. --- ui/litellm-dashboard/src/lib/http/schema.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/litellm-dashboard/src/lib/http/schema.d.ts b/ui/litellm-dashboard/src/lib/http/schema.d.ts index 4690eaa6734..839aa52fa84 100644 --- a/ui/litellm-dashboard/src/lib/http/schema.d.ts +++ b/ui/litellm-dashboard/src/lib/http/schema.d.ts @@ -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') */