@integry/sdk 4.7.14 → 4.7.16

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.
package/.eslintignore ADDED
@@ -0,0 +1 @@
1
+ **/*.test.ts
@@ -9,6 +9,7 @@
9
9
  "request": "launch",
10
10
  "name": "Open Integry SDK sample code (44).html",
11
11
  "file": "/Users/yasir/Downloads/Flows - Integry SDK sample (41).html"
12
+ // "file": "/Users/yasir/Downloads/CF User - MUST DELETE.html"
12
13
  // "file": "/Users/yasir/Downloads/Flows of an app - Integry SDK sample (Thryv 7) For All (2).html"
13
14
  }
14
15
  ]
@@ -251,6 +251,7 @@ type ShowFunctionOptions = {
251
251
  payload?: Record<string, any>;
252
252
  connectedAccountId?: string;
253
253
  autoMapPayload?: boolean;
254
+ version?: string | null;
254
255
  };
255
256
  type TemplateType = Template;
256
257
  type FlowCardProps = {
@@ -686,7 +687,7 @@ declare class IntegryJS {
686
687
  [key: string]: any;
687
688
  }, vars: {
688
689
  [key: string]: any;
689
- } | undefined, connectedAccountId: string) => Promise<Record<any, any>>;
690
+ } | undefined, connectedAccountId: string, version?: string | null) => Promise<Record<any, any>>;
690
691
  connectApp: (appName: string) => Promise<string>;
691
692
  disconnectApp: (appName: string, connectedAccountId?: string | undefined) => Promise<any>;
692
693
  isAppConnected: (appName: string) => Promise<any>;