@kortex-app/api 0.0.1-next.202603311204-d1dcd8b06 → 0.0.1-next.202603311253-90bdfa355
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 +7 -0
package/package.json
CHANGED
package/src/extension-api.d.ts
CHANGED
|
@@ -940,6 +940,11 @@ declare module '@kortex-app/api' {
|
|
|
940
940
|
getExecution(id: string): Promise<ProviderScheduleExecution | undefined>;
|
|
941
941
|
}
|
|
942
942
|
|
|
943
|
+
export interface CreateSkillParams {
|
|
944
|
+
label: string;
|
|
945
|
+
path: string;
|
|
946
|
+
}
|
|
947
|
+
|
|
943
948
|
export interface Provider {
|
|
944
949
|
setContainerProviderConnectionFactory(
|
|
945
950
|
containerProviderConnectionFactory: ContainerProviderConnectionFactory,
|
|
@@ -972,6 +977,8 @@ declare module '@kortex-app/api' {
|
|
|
972
977
|
|
|
973
978
|
registerFlowProviderConnection(connection: FlowProviderConnection): Disposable;
|
|
974
979
|
|
|
980
|
+
registerSkill(skill: CreateSkillParams): Disposable;
|
|
981
|
+
|
|
975
982
|
registerLifecycle(lifecycle: ProviderLifecycle): Disposable;
|
|
976
983
|
|
|
977
984
|
// register installation flow
|