@kilocode/plugin 7.3.8 → 7.3.9

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.
Files changed (2) hide show
  1. package/dist/tui.d.ts +3 -1
  2. package/package.json +2 -2
package/dist/tui.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { AgentPart, KiloClient, Event, FilePart, LspStatus, McpStatus, Todo, Message, Part, Provider, PermissionRequest, QuestionRequest, SessionStatus, TextPart, Config as SdkConfig } from "@kilocode/sdk/v2";
1
+ import type { AgentPart, KiloClient, Event, FilePart, LspStatus, McpStatus, Todo, Message, Part, Provider, PermissionRequest, QuestionRequest, SessionStatus, BackgroundProcessInfo, TextPart, Config as SdkConfig } from "@kilocode/sdk/v2";
2
2
  import type { CliRenderer, ParsedKey, RGBA, SlotMode } from "@opentui/core";
3
3
  import type { JSX, SolidPlugin } from "@opentui/solid";
4
4
  import type { Config as PluginConfig, PluginOptions } from "./index.js";
@@ -234,6 +234,7 @@ export type TuiState = {
234
234
  count: () => number;
235
235
  diff: (sessionID: string) => ReadonlyArray<TuiSidebarFileItem>;
236
236
  todo: (sessionID: string) => ReadonlyArray<TuiSidebarTodoItem>;
237
+ processes: (sessionID: string) => ReadonlyArray<TuiSidebarBackgroundProcessItem>;
237
238
  messages: (sessionID: string) => ReadonlyArray<Message>;
238
239
  status: (sessionID: string) => SessionStatus | undefined;
239
240
  permission: (sessionID: string) => ReadonlyArray<PermissionRequest>;
@@ -259,6 +260,7 @@ export type TuiSidebarMcpItem = {
259
260
  };
260
261
  export type TuiSidebarLspItem = Pick<LspStatus, "id" | "root" | "status">;
261
262
  export type TuiSidebarTodoItem = Pick<Todo, "content" | "status">;
263
+ export type TuiSidebarBackgroundProcessItem = Pick<BackgroundProcessInfo, "id" | "pid" | "command" | "cwd" | "description" | "ports" | "status" | "output">;
262
264
  export type TuiSidebarFileItem = {
263
265
  file: string;
264
266
  additions: number;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@kilocode/plugin",
4
- "version": "7.3.8",
4
+ "version": "7.3.9",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -26,7 +26,7 @@
26
26
  "dist"
27
27
  ],
28
28
  "dependencies": {
29
- "@kilocode/sdk": "7.3.8",
29
+ "@kilocode/sdk": "7.3.9",
30
30
  "effect": "4.0.0-beta.59",
31
31
  "zod": "4.1.8"
32
32
  },