mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-23 00:41:40 +00:00
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:
parent
b939bb0b72
commit
ba42ccb1a7
1 changed files with 2 additions and 0 deletions
2
ui/litellm-dashboard/src/lib/http/schema.d.ts
generated
vendored
2
ui/litellm-dashboard/src/lib/http/schema.d.ts
generated
vendored
|
|
@ -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') */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue