@integry/sdk 3.0.16 → 3.0.17-beta.11

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",
@@ -132,6 +136,7 @@ interface TemplateField {
132
136
  weight: number;
133
137
  is_required: boolean;
134
138
  child_fields: string | null;
139
+ placeholder: string | null;
135
140
  is_dynamic: boolean;
136
141
  data_src: string | null;
137
142
  data_src_endpoint: number | null;
@@ -157,6 +162,12 @@ interface TemplateField {
157
162
  regex: string | null;
158
163
  regex_msg: string | null;
159
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;
160
171
  }
161
172
  interface TemplateStep {
162
173
  id: number;
@@ -166,7 +177,7 @@ interface TemplateStep {
166
177
  activity: Activity;
167
178
  authorization_type: AuthorizationType;
168
179
  template_fields: TemplateField[];
169
- // step_instance: unknown | null;
180
+ step_instance?: number | null;
170
181
  allow_multiple_authorizations: boolean;
171
182
  step_authorization: number | null;
172
183
  button_text: string | null;