@integry/sdk 4.7.23 → 4.7.25

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.
@@ -594,6 +594,12 @@ interface MultipurposeFieldType {
594
594
  fieldId?: string;
595
595
  enableTagify?: boolean;
596
596
  }
597
+ interface FunctionFieldType {
598
+ onChange?: (val: any) => void;
599
+ isReadOnly?: boolean;
600
+ field: TemplateField;
601
+ tagsTree?: any;
602
+ }
597
603
  /**
598
604
  *
599
605
  * @param key Key to sign hash
@@ -736,6 +742,7 @@ declare class IntegryJS {
736
742
  containerId: string;
737
743
  multipurposeFieldProps: MultipurposeFieldType;
738
744
  }) => void;
745
+ renderFunctionField: (containerId: string, functionFieldProps: FunctionFieldType) => void;
739
746
  renderFlowStep: (options?: RenderFlowStepOptions) => void;
740
747
  renderMappingMenu: (options?: RenderMappingMenuOptions) => void;
741
748
  verifyAuthConfig: () => Promise<{