refactor: remove session syncing metadata

This commit is contained in:
Peter Steinberger
2025-12-23 00:50:42 +01:00
parent c0c20ebf3e
commit ce04308c17
11 changed files with 1 additions and 175 deletions

View File

@@ -111,7 +111,6 @@ export type GatewaySessionRow = {
totalTokens?: number;
model?: string;
contextTokens?: number;
syncing?: boolean | string;
};
export type SessionsListResult = {
@@ -131,7 +130,6 @@ export type SessionsPatchResult = {
updatedAt?: number;
thinkingLevel?: string;
verboseLevel?: string;
syncing?: boolean | string;
};
};
@@ -248,4 +246,3 @@ export type SkillStatusReport = {
export type StatusSummary = Record<string, unknown>;
export type HealthSnapshot = Record<string, unknown>;