@integry/sdk 3.1.5-beta.1 → 3.1.5-beta.12

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.
@@ -38,6 +38,16 @@ type IntegrySDKEvents = {
38
38
  userIdentity: string;
39
39
  isBrandingAppAuth: boolean;
40
40
  }[];
41
+ steps: {
42
+ id: number;
43
+ authorization: number | null;
44
+ template_step: number;
45
+ app_user_data: {
46
+ id: number;
47
+ value: string | null;
48
+ template_field: number;
49
+ }[];
50
+ }[];
41
51
  }) => void;
42
52
  "did-load-preview": (data: {
43
53
  flowId: number;
@@ -112,6 +122,7 @@ interface UserConfig {
112
122
  customComponents?: {
113
123
  flowCard?: (props: FlowCardProps) => VNode;
114
124
  };
125
+ defaultActivateMyFlowsTab?: boolean;
115
126
  }
116
127
  interface SDKConfig {
117
128
  env?: "staging" | "production";
@@ -352,7 +363,7 @@ declare class IntegryJS {
352
363
  } | undefined) => void;
353
364
  /**
354
365
  * Render the template form we ship
355
- * @param templateId
366
+ * @param params
356
367
  */
357
368
  renderPreview: (params: PreviewPayload) => void;
358
369
  /**