@integry/sdk 4.4.1 → 4.4.3

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.
@@ -587,9 +587,9 @@ declare class IntegryJS {
587
587
  versionId?: number;
588
588
  viewStyle?: string;
589
589
  }) => void;
590
- showFunctionUI: (functionName: string, functionArguments: {
590
+ showFunctionUI: (functionName: string, functionArguments?: {
591
591
  [key: string]: any;
592
- }, connectedAccountId: string) => Promise<Record<any, any>>;
592
+ }, connectedAccountId?: string | undefined) => Promise<Record<any, any>>;
593
593
  invokeFunction: (functionName: string, params: {
594
594
  [key: string]: any;
595
595
  }, connectedAccountId: string) => Promise<Record<any, any>>;