@integry/sdk 3.1.3-beta.5 → 3.1.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.
@@ -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;
@@ -306,6 +310,7 @@ declare class IntegryJS {
306
310
  getAuthHash: (key: string, message: string) => Promise<string>;
307
311
  };
308
312
  private authModalId;
313
+ private forceRerender;
309
314
  constructor(config: ConfigWithObject | ConfigWithUrlParams);
310
315
  /**
311
316
  *
@@ -331,6 +336,7 @@ declare class IntegryJS {
331
336
  */
332
337
  renderFlowSetupForm: (data: {
333
338
  flowId?: string;
339
+ integrationId?: number;
334
340
  flowContainerId: string;
335
341
  }) => void;
336
342
  /**
@@ -352,6 +358,9 @@ declare class IntegryJS {
352
358
  * @param initConfig
353
359
  */
354
360
  init: (initConfig: InitConfig) => void;
361
+ verifyAuthConfig: () => Promise<{
362
+ config_verified: boolean;
363
+ } | null>;
355
364
  /**
356
365
  * Destroy SDK instance and cleanup store
357
366
  */