@integry/sdk 3.0.17-beta.5 → 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.
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -162,6 +162,12 @@ 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
|
+
}[];
|
|
170
|
+
added_in_mapping?: boolean;
|
|
165
171
|
}
|
|
166
172
|
interface TemplateStep {
|
|
167
173
|
id: number;
|
|
@@ -171,7 +177,7 @@ interface TemplateStep {
|
|
|
171
177
|
activity: Activity;
|
|
172
178
|
authorization_type: AuthorizationType;
|
|
173
179
|
template_fields: TemplateField[];
|
|
174
|
-
|
|
180
|
+
step_instance?: number | null;
|
|
175
181
|
allow_multiple_authorizations: boolean;
|
|
176
182
|
step_authorization: number | null;
|
|
177
183
|
button_text: string | null;
|