@integry/sdk 4.8.3 → 4.8.5

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.
@@ -235,6 +235,7 @@ type RenderFlowStepOptions = {
235
235
  hideMappingMenu?: boolean;
236
236
  isReadOnly?: boolean;
237
237
  showMenuOnLeft?: boolean;
238
+ chatBotUI?: boolean;
238
239
  };
239
240
  type RenderMappingMenuOptions = {
240
241
  containerId: string;
@@ -701,7 +702,7 @@ declare class IntegryJS {
701
702
  showFunctionUI: (functionName: string, functionArguments?: {
702
703
  [key: string]: any;
703
704
  }, connectedAccountId?: string | undefined, isReadOnly?: boolean) => Promise<Record<any, any>>;
704
- showFunction: (functionName: string, options?: ShowFunctionOptions, renderMode?: RenderModes, containerId?: string | undefined) => Promise<Record<any, any>>;
705
+ showFunction: (functionName: string, options?: ShowFunctionOptions, renderMode?: RenderModes, containerId?: string | undefined, chatBotUI?: boolean) => Promise<Record<any, any>>;
705
706
  invokeFunction: (functionName: string, params: {
706
707
  [key: string]: any;
707
708
  }, connectedAccountId: string) => Promise<Record<any, any>>;