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:
Deepanshu 2026-07-25 13:28:08 -04:00
parent 74c24a0a1a
commit e9fc5e5063

View file

@ -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 */