@blueking/bkflow-canvas-editor 1.1.0-beta.3 → 1.1.0-beta.5

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/dist/index.d.ts CHANGED
@@ -864,7 +864,7 @@ interface FlowEditApiConfig extends FlowViewApiConfig {
864
864
  fetchBkFlowThirdPartyPluginTags: () => Promise<BkflowThirdPartyPluginGroupItem[]>;
865
865
  fetchBkFlowThirdPartyPluginMeta: (plugin_code: string) => Promise<BkflowThirdPartyPluginMetaDetail>;
866
866
  fetchBkFlowThirdPartyPluginDetail: (plugin_code: string, plugin_version: string) => Promise<BkflowThirdPartyPluginDetail>;
867
- fetchBkFlowThirdPartyPluginAppDetail: (plugin_code: string) => Promise<BkflowThirdPartyPluginAppDetail>;
867
+ fetchBkFlowThirdPartyPluginAppDetail: (plugin_code: string, plugin_version: string) => Promise<BkflowThirdPartyPluginAppDetail>;
868
868
  fetchPluginGroupList: () => Promise<PluginGroupConfig[]>;
869
869
  fetchCategoryPlugins: (category: string) => Promise<PluginMetaItem[]>;
870
870
  fetchAllPluginGroups: () => Promise<GroupsPluginItem[]>;
@@ -1302,6 +1302,7 @@ type __VLS_Props$1 = {
1302
1302
  apiConfig: FlowApiConfig;
1303
1303
  permissions?: {
1304
1304
  canEdit?: boolean;
1305
+ canExecute?: boolean;
1305
1306
  };
1306
1307
  onEdit?: () => void;
1307
1308
  onBack?: () => void;
@@ -1339,6 +1340,7 @@ declare const __VLS_base$1: vue.DefineComponent<__VLS_Props$1, {}, {}, {}, {}, v
1339
1340
  enableVersion: boolean;
1340
1341
  permissions: {
1341
1342
  canEdit?: boolean;
1343
+ canExecute?: boolean;
1342
1344
  };
1343
1345
  showHeaderActions: boolean;
1344
1346
  enableDebug: boolean;
@@ -1616,7 +1618,8 @@ declare function exportToPipelineTree(flowModel: FlowModel): PipelineTree;
1616
1618
  * 若目标是 placeholder 且删后无入边,级联删除该 placeholder
1617
1619
  * - edge.reconnect:若源从条件网关迁出,清理旧条件
1618
1620
  * - node.remove:主动查找将被级联删除的边,清理对应网关条件;
1619
- * 若删除的是分支网关,级联删除关联的 placeholder 节点
1621
+ * 若删除的是分支网关,级联删除关联的 placeholder 节点;
1622
+ * 同时清理全局变量中对被删除节点的 source_info 引用,并删除已无引用的变量
1620
1623
  */
1621
1624
  declare function createBkflowPlugin(): CanvasPlugin;
1622
1625