@hydra-acp/cli 0.1.98 → 0.1.100

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/index.d.ts CHANGED
@@ -2001,6 +2001,7 @@ type AmendPromptResult = z.infer<typeof AmendPromptResult>;
2001
2001
  interface SessionCapabilities {
2002
2002
  attach?: Record<string, never>;
2003
2003
  list?: Record<string, never>;
2004
+ resume?: Record<string, never>;
2004
2005
  }
2005
2006
  interface PromptCapabilities {
2006
2007
  image?: boolean;
@@ -2906,6 +2907,7 @@ interface SessionInit {
2906
2907
  scheduleCompaction?: (opts?: {
2907
2908
  targetAgentId?: string;
2908
2909
  }) => void;
2910
+ resolveAgentId?: (id: string) => Promise<string | undefined>;
2909
2911
  getCompactionState?: () => Promise<CompactionState | undefined>;
2910
2912
  getPendingAgentSwap?: () => Promise<string | undefined>;
2911
2913
  createdAt?: number;
@@ -2994,6 +2996,7 @@ declare class Session {
2994
2996
  private titleHandlers;
2995
2997
  private scheduleSynopsisHook?;
2996
2998
  private scheduleCompactionHook?;
2999
+ private resolveAgentIdHook?;
2997
3000
  private getCompactionStateHook?;
2998
3001
  private getPendingAgentSwapHook?;
2999
3002
  private _liveCompactionPhase;