qlogicagent 2.23.12 → 2.23.13
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/cli.js +7 -7
- package/dist/index.js +284 -284
- package/dist/types/runtime/session/session-persistence.d.ts +4 -1
- package/package.json +1 -1
|
@@ -9,6 +9,9 @@ import type { HostSessionClient } from "../../transport/host-session-client.js";
|
|
|
9
9
|
import type { AppendMessageOutcome } from "./session-transcript-store.js";
|
|
10
10
|
import { getSessionMetadata, readSessionMetadata } from "./session-metadata-store.js";
|
|
11
11
|
import type { MessageDisplayMetadata, PersistedSession, SessionMetadataPatch, SessionStateSaveMetadata, SessionUsageSnapshot, TokenUsage } from "./session-types.js";
|
|
12
|
+
export declare class SessionAppendDrainTimeoutError extends Error {
|
|
13
|
+
constructor(sessionId: string, timeoutMs: number);
|
|
14
|
+
}
|
|
12
15
|
export declare function configureHostSessionPersistence(resolver: () => HostSessionClient | undefined): void;
|
|
13
16
|
export declare function isHostSessionPersistenceActive(): boolean;
|
|
14
17
|
export declare function requestHostGroupSplit(sessionId: string, operationId: string, reason: "idle" | "turn-limit", cas?: {
|
|
@@ -22,7 +25,7 @@ export declare function appendMessage(sessionId: string, message: ChatMessage, p
|
|
|
22
25
|
usage?: TokenUsage;
|
|
23
26
|
displayMetadata?: MessageDisplayMetadata;
|
|
24
27
|
}): Promise<AppendMessageOutcome>;
|
|
25
|
-
export declare function waitForSessionPersistenceAppends(sessionId: string, projectRoot: string): Promise<void>;
|
|
28
|
+
export declare function waitForSessionPersistenceAppends(sessionId: string, projectRoot: string, timeoutMs?: number): Promise<void>;
|
|
26
29
|
export declare function loadSessionForResume(sessionId: string, projectRoot: string, options?: {
|
|
27
30
|
includeDisplayMetadata?: boolean;
|
|
28
31
|
}): Promise<PersistedSession | null>;
|