@integry/sdk 3.0.17-beta.1 → 3.0.17-beta.10

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,12 @@ interface TemplateField {
158
162
  regex: string | null;
159
163
  regex_msg: string | null;
160
164
  is_visible: boolean;
165
+ app_user_data?: {
166
+ app_user: number;
167
+ id: number;
168
+ value: string | number;
169
+ }[];
170
+ added_in_mapping?: boolean;
161
171
  }
162
172
  interface TemplateStep {
163
173
  id: number;
@@ -167,7 +177,7 @@ interface TemplateStep {
167
177
  activity: Activity;
168
178
  authorization_type: AuthorizationType;
169
179
  template_fields: TemplateField[];
170
- // step_instance: unknown | null;
180
+ step_instance?: number | null;
171
181
  allow_multiple_authorizations: boolean;
172
182
  step_authorization: number | null;
173
183
  button_text: string | null;