@acarmisc/backstage-plugin-litellm 0.8.0 → 0.9.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
@@ -108,7 +108,8 @@ export interface GenerateKeyRequest {
108
108
  models?: string[];
109
109
  team_id?: string;
110
110
  duration?: string;
111
- max_budget?: number;
111
+ /** Positive number caps spend; null/undefined means unlimited. */
112
+ max_budget?: number | null;
112
113
  tpm_limit?: number;
113
114
  rpm_limit?: number;
114
115
  key_type?: string;
@@ -128,6 +129,10 @@ export interface GenerateKeyResponse {
128
129
  expires_at?: string;
129
130
  max_budget?: number;
130
131
  }
132
+ export interface LiteLlmConfig {
133
+ /** Publicly reachable LiteLLM proxy base URL (for snippet generation). */
134
+ baseUrl: string;
135
+ }
131
136
  export interface DateRange {
132
137
  start: Date;
133
138
  end: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acarmisc/backstage-plugin-litellm",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "backstage": {
5
5
  "role": "frontend-plugin",
6
6
  "pluginId": "litellm",
@@ -11,6 +11,11 @@
11
11
  "publishConfig": {
12
12
  "access": "public"
13
13
  },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/acarmisc/backstage-plugin-litellm-govai"
17
+ },
18
+ "homepage": "https://github.com/acarmisc/backstage-plugin-litellm-govai#readme",
14
19
  "license": "Apache-2.0",
15
20
  "sideEffects": false,
16
21
  "exports": {