@integry/sdk 3.2.13-beta.1 → 3.2.14

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.
@@ -143,6 +143,8 @@ interface UserConfig {
143
143
  autoRedirectToMyFlows?: boolean;
144
144
  isReadOnly?: boolean;
145
145
  marketplaceModalTitle?: string;
146
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
147
+ [other: string]: any;
146
148
  }
147
149
  interface SDKConfig {
148
150
  env?: "staging" | "production";
@@ -256,7 +258,17 @@ interface TemplateField {
256
258
  app_user_data?: {
257
259
  app_user: number;
258
260
  id: number;
259
- value: string | number;
261
+ value: string
262
+ /**
263
+ * Render the template form we ship
264
+ * @param data
265
+ */
266
+ |
267
+ /**
268
+ * Render the template form we ship
269
+ * @param data
270
+ */
271
+ number;
260
272
  is_changed: boolean;
261
273
  changed_dynamic_fields: string;
262
274
  }[];