@code-inspector/core 2.0.0-beta.4 → 2.0.0-beta.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-inspector/core",
3
- "version": "2.0.0-beta.4",
3
+ "version": "2.0.0-beta.5",
4
4
  "main": "dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "types/index.d.ts",
@@ -16,6 +16,7 @@ export interface PersistedAIState {
16
16
  left: string;
17
17
  top: string;
18
18
  } | null;
19
+ turnStatus: 'idle' | 'running' | 'done' | 'interrupt';
19
20
  }
20
21
  /**
21
22
  * 保存 AI 状态到 sessionStorage
@@ -233,6 +233,7 @@ export declare class CodeInspectorComponent extends LitElement {
233
233
  handleChatDragEnd: () => void;
234
234
  handleOverlayClick: () => void;
235
235
  sendChatMessage: () => Promise<void>;
236
+ private resumeAITask;
236
237
  /**
237
238
  * Attach all event listeners
238
239
  */