import { n as MsgContext } from "./templating-DqpRyvA4.js"; import { a as SessionEntry, n as GroupKeyResolution, o as SessionScope } from "./types-qvAUPWLC.js"; import { g as ResolvedSessionMaintenanceConfig } from "./session-key-O6OHhg-A.js"; //#region src/config/sessions/group.d.ts /** * Resolves channel/group chat context into the persisted group session key. * * Provider-prefixed ids use channel-owned normalization, while legacy plugin resolvers remain a * fallback for older channel surfaces that cannot yet express the generic route shape. */ declare function resolveGroupSessionKey(ctx: MsgContext): GroupKeyResolution | null; //#endregion //#region src/config/sessions/artifacts.d.ts /** Returns true for archived session artifacts and legacy store backup names. */ declare function isSessionArchiveArtifactName(fileName: string): boolean; /** Returns true for transcript files counted in usage, including reset/deleted archives. */ declare function isUsageCountedSessionTranscriptFileName(fileName: string): boolean; /** Extracts the session id from a usage-counted transcript filename. */ declare function parseUsageCountedSessionIdFromFileName(fileName: string): string | null; //#endregion //#region src/config/sessions/main-session.d.ts /** Canonicalizes main-session aliases to the current scoped session key. */ declare function canonicalizeMainSessionAlias(params: { cfg?: { session?: { scope?: SessionScope; mainKey?: string; }; }; agentId: string; sessionKey: string; }): string; //#endregion //#region src/config/sessions/transcript.d.ts type AssistantTranscriptText = { id?: string; text: string; timestamp?: number; }; type LatestAssistantTranscriptText = AssistantTranscriptText; declare function readLatestAssistantTextFromSessionTranscript(sessionFile: string | undefined): Promise; //#endregion //#region src/config/sessions/session-file.d.ts /** Resolves a transcript file path and persists it into the session store when needed. */ declare function resolveAndPersistSessionFile(params: { sessionId: string; sessionKey: string; sessionStore: Record; storePath: string; sessionEntry?: SessionEntry; agentId?: string; sessionsDir?: string; fallbackSessionFile?: string; activeSessionKey?: string; maintenanceConfig?: ResolvedSessionMaintenanceConfig; }): Promise<{ sessionFile: string; sessionEntry: SessionEntry; }>; //#endregion export { isUsageCountedSessionTranscriptFileName as a, isSessionArchiveArtifactName as i, readLatestAssistantTextFromSessionTranscript as n, parseUsageCountedSessionIdFromFileName as o, canonicalizeMainSessionAlias as r, resolveGroupSessionKey as s, resolveAndPersistSessionFile as t };