@integry/sdk 3.0.17-beta.3 → 3.0.17-beta.7

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.
@@ -36,11 +36,15 @@ type IntegrySDKEvents = {
36
36
  identity: string;
37
37
  authorizationId: number;
38
38
  flowId: number;
39
+ appId: number;
39
40
  alreadyExists: boolean;
40
41
  }) => void;
41
42
  "did-remove-authorization": (data: {
42
43
  authorizationId: number;
43
44
  }) => void;
45
+ "did-begin-remove-authorization": (data: {
46
+ authorizationId: number;
47
+ }) => void;
44
48
  };
45
49
  declare enum TemplateFormRenderModes {
46
50
  MODAL = "MODAL",
@@ -158,6 +162,7 @@ interface TemplateField {
158
162
  regex: string | null;
159
163
  regex_msg: string | null;
160
164
  is_visible: boolean;
165
+ added_in_mapping?: boolean;
161
166
  }
162
167
  interface TemplateStep {
163
168
  id: number;