@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.
@@ -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 = {