mirror of
https://github.com/BerriAI/litellm.git
synced 2026-08-28 05:25:59 +00:00
revert(ui): drop incidental schema.d.ts regeneration
Committing router.py/common_request_processing.py touched pre_commit_lint.sh's litellm/proxy trigger for the API-type-sync check, which force-regenerated schema.d.ts even though neither file changes any route or model. The regenerated ordering of two unrelated Union/enum fields (stream_timeout, user_role) isn't stable across process invocations even against completely unmodified backend code (confirmed by regenerating twice against the pre-existing committed code and getting the same diff both times), so this reverts to the original committed file rather than chase non-deterministic output.
This commit is contained in:
parent
74c24a0a1a
commit
e9fc5e5063
1 changed files with 3 additions and 3 deletions
6
ui/litellm-dashboard/src/lib/http/schema.d.ts
generated
vendored
6
ui/litellm-dashboard/src/lib/http/schema.d.ts
generated
vendored
|
|
@ -23744,7 +23744,7 @@ export interface components {
|
|||
* @description Default role assigned to new users created
|
||||
* @default internal_user_viewer
|
||||
*/
|
||||
user_role: ("proxy_admin" | "proxy_admin_viewer" | "internal_user" | "internal_user_viewer") | null;
|
||||
user_role: ("internal_user" | "internal_user_viewer" | "proxy_admin" | "proxy_admin_viewer") | null;
|
||||
};
|
||||
/**
|
||||
* DefaultTeamSSOParams
|
||||
|
|
@ -26343,7 +26343,7 @@ export interface components {
|
|||
[key: string]: unknown;
|
||||
} | null;
|
||||
/** Stream Timeout */
|
||||
stream_timeout?: string | number | null;
|
||||
stream_timeout?: number | string | null;
|
||||
/** Tag Regex */
|
||||
tag_regex?: string[] | null;
|
||||
/** Tags */
|
||||
|
|
@ -34557,7 +34557,7 @@ export interface components {
|
|||
[key: string]: unknown;
|
||||
} | null;
|
||||
/** Stream Timeout */
|
||||
stream_timeout?: string | number | null;
|
||||
stream_timeout?: number | string | null;
|
||||
/** Tag Regex */
|
||||
tag_regex?: string[] | null;
|
||||
/** Tags */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue