@openkaiden/api 0.1.1 → 0.1.2

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.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "API for Kaiden extensions",
5
5
  "repository": "https://github.com/openkaiden/kaiden",
6
6
  "publishConfig": {
@@ -761,6 +761,7 @@ declare module '@openkaiden/api' {
761
761
 
762
762
  // create programmatically a InferenceProviderConnection
763
763
  export interface InferenceProviderConnectionFactory extends ProviderConnectionFactory {
764
+ connectionTypes: InferenceProviderConnectionType[];
764
765
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
765
766
  create(params: { [key: string]: any }, logger?: Logger, token?: CancellationToken): Promise<void>;
766
767
  }