diff --git a/frontend/src/api/generated/model/runtimeUsageBurnRate.ts b/frontend/src/api/generated/model/runtimeUsageBurnRate.ts index d1eebaa..f25bca8 100644 --- a/frontend/src/api/generated/model/runtimeUsageBurnRate.ts +++ b/frontend/src/api/generated/model/runtimeUsageBurnRate.ts @@ -10,5 +10,6 @@ */ export interface RuntimeUsageBurnRate { tokens_per_minute: number; + output_tokens_per_minute?: number; cost_usd_per_minute: number; } diff --git a/frontend/src/api/generated/model/runtimeUsageCurrent.ts b/frontend/src/api/generated/model/runtimeUsageCurrent.ts index c3e1b84..b00ad41 100644 --- a/frontend/src/api/generated/model/runtimeUsageCurrent.ts +++ b/frontend/src/api/generated/model/runtimeUsageCurrent.ts @@ -11,8 +11,11 @@ export interface RuntimeUsageCurrent { total_cost_usd: number; total_tokens: number; + total_output_tokens?: number; total_calls: number; + /** @deprecated Use typed limit fields below */ token_limit?: number | null; + /** @deprecated Use typed limit pct fields */ token_pct?: number | null; cost_limit_usd?: number | null; cost_pct?: number | null; @@ -20,4 +23,14 @@ export interface RuntimeUsageCurrent { token_limit_source?: string | null; /** Source of the cost limit data */ cost_limit_source?: string | null; + // Typed limits (Phase 4) + output_token_limit?: number | null; + output_token_limit_pct?: number | null; + output_token_limit_source?: string | null; + total_token_limit?: number | null; + total_token_limit_pct?: number | null; + total_token_limit_source?: string | null; + message_limit?: number | null; + message_pct?: number | null; + message_limit_source?: string | null; } diff --git a/frontend/src/api/generated/model/runtimeUsagePredictions.ts b/frontend/src/api/generated/model/runtimeUsagePredictions.ts index 915a6bc..a253ab3 100644 --- a/frontend/src/api/generated/model/runtimeUsagePredictions.ts +++ b/frontend/src/api/generated/model/runtimeUsagePredictions.ts @@ -11,4 +11,5 @@ export interface RuntimeUsagePredictions { time_to_limit_ms?: number | null; safe: boolean; + limit_kind?: string; }