@acarmisc/backstage-plugin-litellm 0.10.2 → 0.11.0

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/types.d.ts CHANGED
@@ -135,6 +135,13 @@ export interface GenerateKeyResponse {
135
135
  export interface LiteLlmConfig {
136
136
  /** Publicly reachable LiteLLM proxy base URL (for snippet generation). */
137
137
  baseUrl: string;
138
+ /** Controls for the "Generate New Key" form, set via litellm.keyGeneration in app-config.yaml. */
139
+ keyGeneration?: {
140
+ /** When false (default), the "Unlimited budget" checkbox is hidden and a budget is always required. */
141
+ allowUnlimitedBudget: boolean;
142
+ /** When true (default), a team must be selected before a key can be generated. */
143
+ teamRequired: boolean;
144
+ };
138
145
  }
139
146
  export interface DateRange {
140
147
  start: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acarmisc/backstage-plugin-litellm",
3
- "version": "0.10.2",
3
+ "version": "0.11.0",
4
4
  "backstage": {
5
5
  "role": "frontend-plugin",
6
6
  "pluginId": "litellm",