@bigfootai/bigfoot-types 2.10.10 → 2.10.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.js +1 -0
- package/model.ts +7 -0
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
|
@@ -503,6 +503,8 @@ export class Person extends Tag {
|
|
|
503
503
|
|
|
504
504
|
export class Article extends Primitive {
|
|
505
505
|
referenceBlock: ReferenceBlock;
|
|
506
|
+
document?: any;
|
|
507
|
+
changes?: Changes;
|
|
506
508
|
embedding?: any;
|
|
507
509
|
text?: string;
|
|
508
510
|
sentiment?: DocumentSentiment;
|
|
@@ -529,6 +531,7 @@ export class Block extends Primitive {
|
|
|
529
531
|
sharingTags: SharingTag[];
|
|
530
532
|
version: number;
|
|
531
533
|
blockType: BlockType;
|
|
534
|
+
archived: boolean;
|
|
532
535
|
document?: any;
|
|
533
536
|
changes?: Changes;
|
|
534
537
|
_sharedTags?: string[];
|
|
@@ -548,6 +551,8 @@ export class Block extends Primitive {
|
|
|
548
551
|
this.sharingTags = sharingTags;
|
|
549
552
|
this.version = version;
|
|
550
553
|
this.blockType = blockType;
|
|
554
|
+
|
|
555
|
+
this.archived = false;
|
|
551
556
|
}
|
|
552
557
|
}
|
|
553
558
|
|
|
@@ -569,6 +574,8 @@ export class Task extends Block {
|
|
|
569
574
|
steps?: Step[];
|
|
570
575
|
dateRemindMe?: number;
|
|
571
576
|
recurrence?: RecurrenceRFC[];
|
|
577
|
+
parentId?: string;
|
|
578
|
+
groupId?: string;
|
|
572
579
|
|
|
573
580
|
constructor(
|
|
574
581
|
tenantIdCreated: string,
|