@blueking/bkflow-canvas-editor 1.0.3 → 1.0.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
@@ -207,7 +207,7 @@ interface Variable {
207
207
  show_type: 'show' | 'hide';
208
208
  source_info: Record<string, string[]>;
209
209
  source_tag: string;
210
- source_type: 'custom' | 'component_inputs' | 'component_outputs' | 'system';
210
+ source_type: 'custom' | 'component_inputs' | 'component_outputs' | 'system' | 'space';
211
211
  validation: string;
212
212
  value?: string | number | boolean | Record<string, any>;
213
213
  version?: string;
@@ -715,7 +715,7 @@ interface FlowEditApiConfig extends FlowViewApiConfig {
715
715
  fetchBkFlowThirdPartyPluginTags: () => Promise<BkflowThirdPartyPluginGroupItem[]>;
716
716
  fetchBkFlowThirdPartyPluginMeta: (plugin_code: string) => Promise<BkflowThirdPartyPluginMetaDetail>;
717
717
  fetchBkFlowThirdPartyPluginDetail: (plugin_code: string, plugin_version: string) => Promise<BkflowThirdPartyPluginDetail>;
718
- fetchBkFlowThirdPartyPluginAppDetail: (plugin_code: string) => Promise<BkflowThirdPartyPluginAppDetail>;
718
+ fetchBkFlowThirdPartyPluginAppDetail: (plugin_code: string, plugin_version: string) => Promise<BkflowThirdPartyPluginAppDetail>;
719
719
  fetchPluginGroupList: () => Promise<PluginGroupConfig[]>;
720
720
  fetchCategoryPlugins: (category: string) => Promise<PluginMetaItem[]>;
721
721
  fetchAllPluginGroups: () => Promise<GroupsPluginItem[]>;