@acarmisc/backstage-plugin-litellm-backend 0.11.1 → 0.12.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/client.js CHANGED
@@ -98,6 +98,7 @@ class LiteLLMClient {
98
98
  teams: teamIds,
99
99
  models: inner.models ?? raw?.models,
100
100
  max_budget: inner.max_budget ?? raw?.max_budget,
101
+ budget_duration: inner.budget_duration ?? raw?.budget_duration,
101
102
  spend: inner.spend ?? raw?.spend,
102
103
  current_spend: inner.current_spend ?? raw?.current_spend,
103
104
  soft_limit: inner.soft_limit ?? raw?.soft_limit,
@@ -162,6 +163,7 @@ class LiteLLMClient {
162
163
  expires_at: k.expires ?? undefined,
163
164
  spend: k.spend ?? 0,
164
165
  max_budget: k.max_budget ?? undefined,
166
+ budget_duration: k.budget_duration ?? undefined,
165
167
  tpm_limit: k.tpm_limit ?? undefined,
166
168
  rpm_limit: k.rpm_limit ?? undefined,
167
169
  models: k.models ?? [],
package/dist/index.cjs.js CHANGED
@@ -8099,6 +8099,7 @@ var LiteLLMClient = class {
8099
8099
  teams: teamIds,
8100
8100
  models: inner.models ?? raw?.models,
8101
8101
  max_budget: inner.max_budget ?? raw?.max_budget,
8102
+ budget_duration: inner.budget_duration ?? raw?.budget_duration,
8102
8103
  spend: inner.spend ?? raw?.spend,
8103
8104
  current_spend: inner.current_spend ?? raw?.current_spend,
8104
8105
  soft_limit: inner.soft_limit ?? raw?.soft_limit,
@@ -8161,6 +8162,7 @@ var LiteLLMClient = class {
8161
8162
  expires_at: k.expires ?? void 0,
8162
8163
  spend: k.spend ?? 0,
8163
8164
  max_budget: k.max_budget ?? void 0,
8165
+ budget_duration: k.budget_duration ?? void 0,
8164
8166
  tpm_limit: k.tpm_limit ?? void 0,
8165
8167
  rpm_limit: k.rpm_limit ?? void 0,
8166
8168
  models: k.models ?? [],