@integry/sdk 3.10.0-beta.9 → 4.0.0-beta.10

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,16 @@ interface TemplateField {
321
322
  app_user_data?: {
322
323
  app_user: number;
323
324
  id: number;
324
- value: string | number;
325
- is_changed:
325
+ value: string
326
326
  /**
327
327
  * Render the template form we ship
328
328
  * @param data
329
329
  */
330
- boolean;
330
+ | /**
331
+ * Render the template form we ship
332
+ * @param data
333
+ */ number;
334
+ is_changed: boolean;
331
335
  changed_dynamic_fields: string;
332
336
  }[];
333
337
  added_in_mapping?: boolean;