@integry/sdk 4.4.32 → 4.4.34

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.
@@ -577,6 +577,7 @@ declare class IntegryJS {
577
577
  // allow customers to use template tagging
578
578
  static html: (strings: TemplateStringsArray, ...values: any[]) => import("preact").VNode<{}>;
579
579
  static RenderModes: typeof RenderModes;
580
+ static TemplateFormRenderModes: typeof TemplateFormRenderModes;
580
581
  static Layouts: typeof Layouts;
581
582
  static ViewStyles: typeof ViewStyles;
582
583
  static MarketplaceRenderModes: typeof MarketplaceRenderModes;
@@ -622,9 +623,19 @@ declare class IntegryJS {
622
623
  showFunctionUI: (functionName: string, functionArguments?: {
623
624
  [key: string]: any;
624
625
  }, connectedAccountId?: string | undefined) => Promise<Record<any, any>>;
626
+ showFunction: (functionName: string, params?: {
627
+ [key: string]: any;
628
+ }, vars?: {
629
+ [key: string]: any;
630
+ }, autoMapVars?: boolean, connectedAccountId?: string | undefined) => Promise<Record<any, any>>;
625
631
  invokeFunction: (functionName: string, params: {
626
632
  [key: string]: any;
627
633
  }, connectedAccountId: string) => Promise<Record<any, any>>;
634
+ callFunction: (functionName: string, params: {
635
+ [key: string]: any;
636
+ }, vars: {
637
+ [key: string]: any;
638
+ } | undefined, connectedAccountId: string) => Promise<Record<any, any>>;
628
639
  connectApp: (appName: string) => Promise<string>;
629
640
  disconnectApp: (appName: string, connectedAccountId?: string | undefined) => Promise<any>;
630
641
  isAppConnected: (appName: string) => Promise<any>;