@integry/sdk 3.2.18-beta.1 → 3.2.20-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,7 @@ interface UserConfig {
143
143
  autoRedirectToMyFlows?: boolean;
144
144
  isReadOnly?: boolean;
145
145
  marketplaceModalTitle?: string;
146
+ buttonLabelToSaveIntegration?: string;
146
147
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
147
148
  [other: string]: any;
148
149
  }
@@ -256,12 +257,14 @@ interface TemplateField {
256
257
  regex_msg: string | null;
257
258
  is_visible: boolean;
258
259
  app_user_data?: {
259
- app_user: number;
260
- id: number;
261
- value: string | number; /**
260
+ app_user:
261
+ /**
262
262
  * Render the template form we ship
263
263
  * @param data
264
264
  */
265
+ number;
266
+ id: number;
267
+ value: string | number;
265
268
  is_changed: boolean;
266
269
  changed_dynamic_fields: string;
267
270
  }[];