@integry/sdk 4.5.8 → 4.5.10

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.
@@ -223,6 +223,13 @@ type SetupIntegrationOptions = {
223
223
  integrationId?: number;
224
224
  params?: Record<string, string>;
225
225
  };
226
+ type RenderFlowStepOptions = {
227
+ containerId: string;
228
+ step: any;
229
+ connectedAccountId: string;
230
+ tagsComponent?: any;
231
+ onFieldChangeCallback: (fieldId: string, value: any) => void;
232
+ };
226
233
  type TemplateType = Template;
227
234
  type FlowCardProps = {
228
235
  id: number | string;
@@ -697,7 +704,7 @@ declare class IntegryJS {
697
704
  containerId: string;
698
705
  multipurposeFieldProps: MultipurposeFieldType;
699
706
  }) => void;
700
- renderFlowStep: (containerId: string, step: any, connectedAccountId: string, tagsTree?: {}, onFieldChangeCallback?: ((fieldId: string, value: string) => void) | undefined) => void;
707
+ renderFlowStep: (options?: RenderFlowStepOptions) => void;
701
708
  verifyAuthConfig: () => Promise<{
702
709
  config_verified: boolean;
703
710
  meta: any;