@acarmisc/backstage-plugin-litellm 0.16.0 → 0.17.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
@@ -26,6 +26,7 @@ export interface TeamInfo {
26
26
  team_id: string;
27
27
  team_alias?: string;
28
28
  max_budget?: number;
29
+ budget_duration?: string;
29
30
  spend: number;
30
31
  members_with_roles?: TeamMember[];
31
32
  models?: string[];
@@ -164,8 +165,8 @@ export interface LiteLlmConfig {
164
165
  teamManagement?: {
165
166
  /** True only when the permission framework is enabled AND an admin group is configured. */
166
167
  enabled: boolean;
167
- /** USD ceiling an admin may set as a team budget; null when unset. */
168
- maxBudgetCeiling: number | null;
168
+ /** USD ceiling an admin may set as a team budget (defaults to 1000). */
169
+ maxBudgetCeiling: number;
169
170
  /** Whether an admin may create a team with no budget cap. */
170
171
  allowUnlimitedBudget: boolean;
171
172
  /** Whether knowledge-base / MCP management routes are enabled (opt-in). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acarmisc/backstage-plugin-litellm",
3
- "version": "0.16.0",
3
+ "version": "0.17.0",
4
4
  "backstage": {
5
5
  "role": "frontend-plugin",
6
6
  "pluginId": "litellm",