@openkaiden/api 0.3.1 → 0.4.0-next.202607072002-40273ef
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 -15
package/package.json
CHANGED
package/src/extension-api.d.ts
CHANGED
|
@@ -787,16 +787,6 @@ declare module '@openkaiden/api' {
|
|
|
787
787
|
create(params: { [key: string]: any }, logger?: Logger, token?: CancellationToken): Promise<void>;
|
|
788
788
|
}
|
|
789
789
|
|
|
790
|
-
export interface SemanticRouterCreateParams {
|
|
791
|
-
name: string;
|
|
792
|
-
config: string;
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
export interface SemanticRouterFactory extends ProviderConnectionFactory {
|
|
796
|
-
readonly type: string;
|
|
797
|
-
create(params: SemanticRouterCreateParams, logger?: Logger, token?: CancellationToken): Promise<void>;
|
|
798
|
-
}
|
|
799
|
-
|
|
800
790
|
// create a kubernetes provider
|
|
801
791
|
export interface KubernetesProviderConnectionFactory extends ProviderConnectionFactory {
|
|
802
792
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
@@ -1009,11 +999,6 @@ declare module '@openkaiden/api' {
|
|
|
1009
999
|
connectionAuditor?: Auditor,
|
|
1010
1000
|
): Disposable;
|
|
1011
1001
|
|
|
1012
|
-
setSemanticRouterConnectionFactory(
|
|
1013
|
-
semanticRouterConnectionFactory: SemanticRouterFactory,
|
|
1014
|
-
connectionAuditor?: Auditor,
|
|
1015
|
-
): Disposable;
|
|
1016
|
-
|
|
1017
1002
|
registerContainerProviderConnection(connection: ContainerProviderConnection): Disposable;
|
|
1018
1003
|
registerKubernetesProviderConnection(connection: KubernetesProviderConnection): Disposable;
|
|
1019
1004
|
registerVmProviderConnection(connection: VmProviderConnection): Disposable;
|