@openkaiden/api 0.3.2 → 0.3.3

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": "@openkaiden/api",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "API for Kaiden extensions",
5
5
  "repository": "https://github.com/openkaiden/kaiden",
6
6
  "publishConfig": {
@@ -5567,8 +5567,6 @@ declare module '@openkaiden/api' {
5567
5567
  constructor(url: string);
5568
5568
  }
5569
5569
 
5570
- export type Runtime = 'openshell' | 'podman';
5571
-
5572
5570
  export interface ModelType {
5573
5571
  readonly name: string;
5574
5572
  }
@@ -5613,7 +5611,6 @@ declare module '@openkaiden/api' {
5613
5611
  */
5614
5612
  readonly destinationSkillsFolder: string;
5615
5613
  isSupportedModelType?(type: ModelType): boolean | Promise<boolean>;
5616
- isSupportedRuntime?(runtime: Runtime): boolean | Promise<boolean>;
5617
5614
  preWorkspaceStart(context: AgentWorkspaceContext): Promise<void>;
5618
5615
  }
5619
5616