@integry/sdk 4.5.9 → 4.5.11

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,14 @@ 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
+ tagsTree: any;
233
+ };
226
234
  type TemplateType = Template;
227
235
  type FlowCardProps = {
228
236
  id: number | string;
@@ -697,7 +705,7 @@ declare class IntegryJS {
697
705
  containerId: string;
698
706
  multipurposeFieldProps: MultipurposeFieldType;
699
707
  }) => void;
700
- renderFlowStep: (containerId: string, step: any, connectedAccountId: string, tagsTree?: {}, onFieldChangeCallback?: ((fieldId: string, value: string) => void) | undefined) => void;
708
+ renderFlowStep: (options?: RenderFlowStepOptions) => void;
701
709
  verifyAuthConfig: () => Promise<{
702
710
  config_verified: boolean;
703
711
  meta: any;