@bigfootai/bigfoot-types 4.1.10 → 4.1.12
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/model.ts +5 -1
- package/package.json +1 -1
package/model.ts
CHANGED
@@ -955,7 +955,6 @@ export class BusinessObject extends Block {
|
|
955
955
|
externalId: string; // An external identifier that can help us match the records
|
956
956
|
iconUrl?: string | null; // The url of an icon that represents the business object
|
957
957
|
externalResponse?: string; // The response from the external application as a JSON string
|
958
|
-
htmlContent?: string; // The content of this business object as html
|
959
958
|
|
960
959
|
constructor(
|
961
960
|
tenantIdCreated: string,
|
@@ -1285,6 +1284,7 @@ export class Todo extends BusinessObject {
|
|
1285
1284
|
steps?: TaskStep[];
|
1286
1285
|
dateRemindMe?: number;
|
1287
1286
|
recurrence?: RecurrenceRFC[];
|
1287
|
+
htmlContent?: string;
|
1288
1288
|
|
1289
1289
|
constructor(
|
1290
1290
|
tenantIdCreated: string,
|
@@ -1318,6 +1318,8 @@ export class Todo extends BusinessObject {
|
|
1318
1318
|
|
1319
1319
|
//// MESSAGING START
|
1320
1320
|
export class Thread extends BusinessObject {
|
1321
|
+
htmlContent?: string;
|
1322
|
+
|
1321
1323
|
constructor(
|
1322
1324
|
tenantIdCreated: string,
|
1323
1325
|
editors: Editor[],
|
@@ -1348,6 +1350,7 @@ export class Document extends BusinessObject {
|
|
1348
1350
|
title?: string;
|
1349
1351
|
description?: string;
|
1350
1352
|
previewImage?: string;
|
1353
|
+
htmlContent?: string;
|
1351
1354
|
|
1352
1355
|
constructor(
|
1353
1356
|
tenantIdCreated: string,
|
@@ -1379,6 +1382,7 @@ export class Website extends BusinessObject {
|
|
1379
1382
|
title?: string;
|
1380
1383
|
description?: string;
|
1381
1384
|
bannerImage?: string;
|
1385
|
+
htmlContent?: string;
|
1382
1386
|
|
1383
1387
|
constructor(
|
1384
1388
|
tenantIdCreated: string,
|