@integry/sdk 3.10.0-beta.8 → 4.0.0-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.
@@ -282,6 +282,7 @@ interface TemplateField {
282
282
  description: string;
283
283
  summary: string | null;
284
284
  activity_field: {
285
+ is_editable?: boolean;
285
286
  id: number;
286
287
  machine_name: string;
287
288
  type: string;
@@ -321,13 +322,14 @@ interface TemplateField {
321
322
  app_user_data?: {
322
323
  app_user: number;
323
324
  id: number;
324
- value: string | number;
325
- is_changed:
326
- /**
325
+ value: string /**
327
326
  * Render the template form we ship
328
327
  * @param data
329
- */
330
- boolean;
328
+ */ | /**
329
+ * Render the template form we ship
330
+ * @param data
331
+ */ number;
332
+ is_changed: boolean;
331
333
  changed_dynamic_fields: string;
332
334
  }[];
333
335
  added_in_mapping?: boolean;