mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
* refactor: expand acp core package * chore: drop acp core package symlink * fix: keep acp core dependency graph stable * fix: add acp core tsconfig subpaths * fix: sync acp core boundary path artifacts * fix: use kysely for cron run-log queries * fix: resolve acp core subpaths in loaders
21 lines
971 B
TypeScript
21 lines
971 B
TypeScript
import { SessionAcpIdentity, SessionAcpMeta } from "../types.mjs";
|
|
|
|
//#region src/runtime/session-identifiers.d.ts
|
|
declare const ACP_SESSION_IDENTITY_RENDERER_VERSION = "v1";
|
|
type AcpSessionIdentifierRenderMode = "status" | "thread";
|
|
declare function resolveAcpSessionIdentifierLines(params: {
|
|
sessionKey: string;
|
|
meta?: SessionAcpMeta;
|
|
}): string[];
|
|
declare function resolveAcpSessionIdentifierLinesFromIdentity(params: {
|
|
backend: string;
|
|
identity?: SessionAcpIdentity;
|
|
mode?: AcpSessionIdentifierRenderMode;
|
|
}): string[];
|
|
declare function resolveAcpSessionCwd(meta?: SessionAcpMeta): string | undefined;
|
|
declare function resolveAcpThreadSessionDetailLines(params: {
|
|
sessionKey: string;
|
|
meta?: SessionAcpMeta;
|
|
}): string[];
|
|
//#endregion
|
|
export { ACP_SESSION_IDENTITY_RENDERER_VERSION, AcpSessionIdentifierRenderMode, resolveAcpSessionCwd, resolveAcpSessionIdentifierLines, resolveAcpSessionIdentifierLinesFromIdentity, resolveAcpThreadSessionDetailLines }; |