@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 +1 -1
- package/src/extension-api.d.ts +0 -3
package/package.json
CHANGED
package/src/extension-api.d.ts
CHANGED
|
@@ -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
|
|