@integry/sdk 4.4.32 → 4.4.33

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.
@@ -622,9 +622,19 @@ declare class IntegryJS {
622
622
  showFunctionUI: (functionName: string, functionArguments?: {
623
623
  [key: string]: any;
624
624
  }, connectedAccountId?: string | undefined) => Promise<Record<any, any>>;
625
+ showFunction: (functionName: string, params?: {
626
+ [key: string]: any;
627
+ }, vars?: {
628
+ [key: string]: any;
629
+ }, autoMapVars?: boolean, connectedAccountId?: string | undefined) => Promise<Record<any, any>>;
625
630
  invokeFunction: (functionName: string, params: {
626
631
  [key: string]: any;
627
632
  }, connectedAccountId: string) => Promise<Record<any, any>>;
633
+ callFunction: (functionName: string, params: {
634
+ [key: string]: any;
635
+ }, vars: {
636
+ [key: string]: any;
637
+ } | undefined, connectedAccountId: string) => Promise<Record<any, any>>;
628
638
  connectApp: (appName: string) => Promise<string>;
629
639
  disconnectApp: (appName: string, connectedAccountId?: string | undefined) => Promise<any>;
630
640
  isAppConnected: (appName: string) => Promise<any>;