@integry/sdk 3.2.13-beta.1 → 3.2.15-beta.1

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,10 @@ interface TemplateField {
256
258
  app_user_data?: {
257
259
  app_user: number;
258
260
  id: number;
259
- value: string | number;
261
+ value: string | number; /**
262
+ * Render the template form we ship
263
+ * @param data
264
+ */
260
265
  is_changed: boolean;
261
266
  changed_dynamic_fields: string;
262
267
  }[];