@easbot/types 0.2.27 → 0.2.30

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.cts CHANGED
@@ -635,6 +635,7 @@ interface SubAgentHandler {
635
635
  isRunning(): boolean;
636
636
  execute(input: SubAgentInput): Promise<SubAgentResult>;
637
637
  interrupt(): Promise<void>;
638
+ checkHealth?(): Promise<boolean>;
638
639
  }
639
640
 
640
641
  type GatewayMessagePromptPart = AgentPromptPart;
package/dist/index.d.ts CHANGED
@@ -635,6 +635,7 @@ interface SubAgentHandler {
635
635
  isRunning(): boolean;
636
636
  execute(input: SubAgentInput): Promise<SubAgentResult>;
637
637
  interrupt(): Promise<void>;
638
+ checkHealth?(): Promise<boolean>;
638
639
  }
639
640
 
640
641
  type GatewayMessagePromptPart = AgentPromptPart;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@easbot/types",
3
- "version": "0.2.27",
3
+ "version": "0.2.30",
4
4
  "description": "Shared types library for EASBOT ecosystem",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",