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

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