@design.estate/dees-catalog 4.8.1 → 4.10.0

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.
@@ -63,6 +63,8 @@ export interface IHarnessMessage {
63
63
  error?: string;
64
64
  /** model that produced this message, e.g. "anthropic/claude-opus-5" */
65
65
  model?: string;
66
+ /** reasoning-effort variant this message ran with, e.g. "high" */
67
+ effort?: string;
66
68
  /** consumer passthrough; never interpreted by the components */
67
69
  meta?: Record<string, unknown>;
68
70
  }
@@ -203,6 +205,8 @@ export interface IHarnessPermissionResponseDetail {
203
205
 
204
206
  // ------------------------------------------------------- sessions & status
205
207
 
208
+ export type THarnessSessionCardState = 'normal' | 'working' | 'finished' | 'attention' | 'error';
209
+
206
210
  export interface IHarnessSessionMeta {
207
211
  id: string;
208
212
  title: string;
@@ -212,6 +216,12 @@ export interface IHarnessSessionMeta {
212
216
  preview?: string;
213
217
  /** Optional dees-icon name (e.g. 'lucide:Terminal') shown before the title. */
214
218
  icon?: string;
219
+ /** Visual card state. Defaults to `normal`. */
220
+ state?: THarnessSessionCardState;
221
+ /** Independent activity signal used for idle-to-working auto-expansion. */
222
+ working?: boolean;
223
+ /** Set false for pinned, non-sortable entries such as terminals. Defaults to true. */
224
+ draggable?: boolean;
215
225
  }
216
226
 
217
227
  /** Detail of `harness-session-context`, fired on right-click of a session item. */
@@ -236,8 +246,10 @@ export interface IHarnessSessionMoveDetail {
236
246
  sessionId: string;
237
247
  /** Target group, or null for the ungrouped section. */
238
248
  groupId: string | null;
239
- /** Insertion index within the target section's current display order. */
249
+ /** Compatibility insertion index using the pre-drag order for same-section moves. */
240
250
  index: number;
251
+ /** Stable target anchor in the dragged-card-excluded order; absent means append. */
252
+ beforeSessionId?: string;
241
253
  }
242
254
 
243
255
  /** Detail of `harness-group-context`, fired on right-click of a group header. */