@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.
@@ -21,6 +21,10 @@ type IntegrySDKEvents = {
21
21
  templateTitle: string;
22
22
  templateDescription: string;
23
23
  }) => void;
24
+ "did-load-integration": (data: {
25
+ flowId: number;
26
+ integrationId: number;
27
+ }) => void;
24
28
  "did-save-integration": (data: {
25
29
  integrationId: number;
26
30
  name: string;
@@ -296,6 +300,7 @@ declare class IntegryJS {
296
300
  getAuthHash: (key: string, message: string) => Promise<string>;
297
301
  };
298
302
  private authModalId;
303
+ private forceRerender;
299
304
  constructor(config: ConfigWithObject | ConfigWithUrlParams);
300
305
  /**
301
306
  *
@@ -321,6 +326,7 @@ declare class IntegryJS {
321
326
  */
322
327
  renderFlowSetupForm: (data: {
323
328
  flowId?: string;
329
+ integrationId?: number;
324
330
  flowContainerId: string;
325
331
  }) => void;
326
332
  /**
@@ -342,6 +348,9 @@ declare class IntegryJS {
342
348
  * @param initConfig
343
349
  */
344
350
  init: (initConfig: InitConfig) => void;
351
+ verifyAuthConfig: () => Promise<{
352
+ config_verified: boolean;
353
+ } | null>;
345
354
  /**
346
355
  * Destroy SDK instance and cleanup store
347
356
  */