@integry/sdk 3.1.5-beta.10 → 3.1.5-beta.13

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.
@@ -122,6 +122,7 @@ interface UserConfig {
122
122
  customComponents?: {
123
123
  flowCard?: (props: FlowCardProps) => VNode;
124
124
  };
125
+ autoRedirectToMyFlows?: boolean;
125
126
  }
126
127
  interface SDKConfig {
127
128
  env?: "staging" | "production";
@@ -371,6 +372,10 @@ declare class IntegryJS {
371
372
  */
372
373
  init: (initConfig: InitConfig) => void;
373
374
  verifyAuthConfig: () => Promise<{
375
+ /**
376
+ * Render the template form we ship
377
+ * @param params
378
+ */
374
379
  config_verified: boolean;
375
380
  } | null>;
376
381
  /**