@hachej/boring-workspace 0.1.32 → 0.1.33
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/{FileTree-BltQETt9.js → FileTree-SmsE0Raq.js} +1 -1
- package/dist/{MarkdownEditor-heUJdK4j.js → MarkdownEditor-zbp8ezds.js} +1 -1
- package/dist/{WorkspaceLoadingState-InXsc_8G.js → WorkspaceLoadingState-BlvZXmFg.js} +1 -1
- package/dist/{WorkspaceProvider-Cg-J1wxr.js → WorkspaceProvider-CuIZx1ua.js} +342 -326
- package/dist/app-front.d.ts +3 -0
- package/dist/app-front.js +237 -234
- package/dist/testing.js +1 -1
- package/dist/workspace.css +5 -0
- package/dist/workspace.d.ts +4 -1
- package/dist/workspace.js +5 -5
- package/package.json +3 -3
package/dist/app-front.d.ts
CHANGED
|
@@ -456,6 +456,8 @@ export declare interface WorkspaceAgentSession {
|
|
|
456
456
|
export declare interface WorkspaceAgentSessionsApi<TSession extends WorkspaceAgentSession = WorkspaceAgentSession> {
|
|
457
457
|
sessions: TSession[];
|
|
458
458
|
loading: boolean;
|
|
459
|
+
loadingMore?: boolean;
|
|
460
|
+
hasMore?: boolean;
|
|
459
461
|
error?: Error | null;
|
|
460
462
|
activeSessionId?: string | null;
|
|
461
463
|
activeSession?: TSession | null;
|
|
@@ -464,6 +466,7 @@ export declare interface WorkspaceAgentSessionsApi<TSession extends WorkspaceAge
|
|
|
464
466
|
title?: string;
|
|
465
467
|
}) => void | Promise<unknown>;
|
|
466
468
|
delete: (id: string) => void | Promise<unknown>;
|
|
469
|
+
loadMore?: () => void | Promise<unknown>;
|
|
467
470
|
}
|
|
468
471
|
|
|
469
472
|
declare type WorkspaceAttentionBlocker = {
|