@integry/sdk 4.6.47 → 4.6.49

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.
@@ -234,6 +234,11 @@ type RenderFlowStepOptions = {
234
234
  tagsTree: any;
235
235
  showMappingMenu?: boolean;
236
236
  };
237
+ type RenderMappingMenuOptions = {
238
+ containerId: string;
239
+ tagsTree: any;
240
+ onTagSelect: (tag: any) => void;
241
+ };
237
242
  type ShowFunctionOptions = {
238
243
  params?: Record<string, any>;
239
244
  payload?: Record<string, any>;
@@ -720,6 +725,7 @@ declare class IntegryJS {
720
725
  multipurposeFieldProps: MultipurposeFieldType;
721
726
  }) => void;
722
727
  renderFlowStep: (options?: RenderFlowStepOptions) => void;
728
+ renderMappingMenu: (options?: RenderMappingMenuOptions) => void;
723
729
  verifyAuthConfig: () => Promise<{
724
730
  config_verified: boolean;
725
731
  meta: any;