@integry/sdk 3.10.0-beta.19 → 3.10.0-beta.20
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.
- package/dist/esm/index.csm.d.ts +10 -1
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +1 -0
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -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,7 +322,15 @@ interface TemplateField {
|
|
|
321
322
|
app_user_data?: {
|
|
322
323
|
app_user: number;
|
|
323
324
|
id: number;
|
|
324
|
-
value: string
|
|
325
|
+
value: string
|
|
326
|
+
/**
|
|
327
|
+
* Render the template form we ship
|
|
328
|
+
* @param data
|
|
329
|
+
*/
|
|
330
|
+
| /**
|
|
331
|
+
* Render the template form we ship
|
|
332
|
+
* @param data
|
|
333
|
+
*/ number;
|
|
325
334
|
is_changed: boolean;
|
|
326
335
|
changed_dynamic_fields: string;
|
|
327
336
|
}[];
|