Concat plugin to app (#1799)

This commit is contained in:
Archer
2024-06-19 14:38:21 +08:00
committed by GitHub
parent b17d14bb7d
commit 565bfc8486
220 changed files with 5018 additions and 4667 deletions

View File

@@ -11,7 +11,6 @@ export type AppUpdateParams = {
nodes?: AppSchema['modules'];
edges?: AppSchema['edges'];
chatConfig?: AppSchema['chatConfig'];
permission?: AppSchema['permission'];
teamTags?: AppSchema['teamTags'];
defaultPermission?: AppSchema['defaultPermission'];
};
@@ -28,4 +27,5 @@ export type PostRevertAppProps = {
// edit workflow
editNodes: AppSchema['modules'];
editEdges: AppSchema['edges'];
editChatConfig: AppSchema['chatConfig'];
};

View File

@@ -6,8 +6,7 @@ export type PostWorkflowDebugProps = {
nodes: RuntimeNodeItemType[];
edges: RuntimeEdgeItemType[];
variables: Record<string, any>;
appId?: string;
pluginId?: string;
appId: string;
};
export type PostWorkflowDebugResponse = {