@acarmisc/backstage-plugin-litellm 0.10.0 → 0.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api.d.ts +0 -2
- package/dist/components/KeysTable.d.ts +0 -1
- package/dist/index.cjs.js +24 -96
- package/dist/index.cjs.js.map +2 -2
- package/dist/index.esm.js +24 -96
- package/dist/index.esm.js.map +2 -2
- package/dist/types.d.ts +1 -4
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export interface UserInfo {
|
|
|
14
14
|
}
|
|
15
15
|
export interface TeamMember {
|
|
16
16
|
user_id: string;
|
|
17
|
+
user_email?: string;
|
|
17
18
|
role: 'admin' | 'user';
|
|
18
19
|
}
|
|
19
20
|
export interface TeamInfo {
|
|
@@ -115,10 +116,6 @@ export interface GenerateKeyRequest {
|
|
|
115
116
|
tpm_limit?: number;
|
|
116
117
|
rpm_limit?: number;
|
|
117
118
|
key_type?: string;
|
|
118
|
-
/** When true, LiteLLM rotates the key on a schedule. */
|
|
119
|
-
auto_rotate?: boolean;
|
|
120
|
-
/** Rotation interval in days (LiteLLM-enforced when auto_rotate is true). */
|
|
121
|
-
rotation_interval_days?: number;
|
|
122
119
|
}
|
|
123
120
|
export interface UpdateKeyRequest {
|
|
124
121
|
key_alias?: string;
|