@integry/sdk 3.1.3-beta.6 → 3.1.4-beta.1

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.
@@ -22,6 +22,10 @@ type IntegrySDKEvents = {
22
22
  templateTitle: string;
23
23
  templateDescription: string;
24
24
  }) => void;
25
+ "did-load-integration": (data: {
26
+ flowId: number;
27
+ integrationId: number;
28
+ }) => void;
25
29
  "did-save-integration": (data: {
26
30
  integrationId: number;
27
31
  name: string;
@@ -332,6 +336,7 @@ declare class IntegryJS {
332
336
  */
333
337
  renderFlowSetupForm: (data: {
334
338
  flowId?: string;
339
+ integrationId?: number;
335
340
  flowContainerId: string;
336
341
  }) => void;
337
342
  /**
@@ -353,6 +358,9 @@ declare class IntegryJS {
353
358
  * @param initConfig
354
359
  */
355
360
  init: (initConfig: InitConfig) => void;
361
+ verifyAuthConfig: () => Promise<{
362
+ config_verified: boolean;
363
+ } | null>;
356
364
  /**
357
365
  * Destroy SDK instance and cleanup store
358
366
  */