@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.
@@ -233,6 +233,11 @@ type RenderFlowStepOptions = {
233
233
  tagsTree: any;
234
234
  showMappingMenu?: boolean;
235
235
  };
236
+ type RenderMappingMenuOptions = {
237
+ containerId: string;
238
+ tagsTree: any;
239
+ onTagSelect: (tag: any) => void;
240
+ };
236
241
  type ShowFunctionOptions = {
237
242
  params?: Record<string, any>;
238
243
  payload?: Record<string, any>;
@@ -711,6 +716,7 @@ declare class IntegryJS {
711
716
  multipurposeFieldProps: MultipurposeFieldType;
712
717
  }) => void;
713
718
  renderFlowStep: (options?: RenderFlowStepOptions) => void;
719
+ renderMappingMenu: (options?: RenderMappingMenuOptions) => void;
714
720
  verifyAuthConfig: () => Promise<{
715
721
  config_verified: boolean;
716
722
  meta: any;