@volter-ai-dev/supercode-ui 0.1.60 → 0.1.61

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/controller.d.ts CHANGED
@@ -37,6 +37,8 @@ export interface ClientProjectionOptions {
37
37
  /** Host bootstrap phase before the controller itself is ready. */
38
38
  startup?: StartupPhase;
39
39
  attention?: SessionAttention[];
40
+ /** Host-loaded child inventory/detail. Kept on demand and outside the controller's root list. */
41
+ subagentInspector?: SupercodeUiState['subagentInspector'];
40
42
  savedDraft?: string;
41
43
  history?: Partial<SupercodeUiState['history']>;
42
44
  exportBackTarget?: SessionFormat | null;
package/controller.mjs CHANGED
@@ -609,6 +609,7 @@ function projectClientSnapshotInternal(snapshot, options, imageRegistry) {
609
609
  savedDraft: options.savedDraft ?? '',
610
610
  attention: options.attention ?? [],
611
611
  sessions,
612
+ subagentInspector: options.subagentInspector ?? null,
612
613
  attached: active,
613
614
  owned,
614
615
  attachError: options.attachError ?? null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volter-ai-dev/supercode-ui",
3
- "version": "0.1.60",
3
+ "version": "0.1.61",
4
4
  "type": "module",
5
5
  "description": "Composable default UI kit for Supercode-powered coding-agent experiences",
6
6
  "exports": {