@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.
Files changed (3) hide show
  1. package/model.js +1 -0
  2. package/model.ts +7 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -271,6 +271,7 @@ class Block extends Primitive {
271
271
  this.sharingTags = sharingTags;
272
272
  this.version = version;
273
273
  this.blockType = blockType;
274
+ this.archived = false;
274
275
  }
275
276
  }
276
277
  exports.Block = Block;
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,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "2.10.10",
4
+ "version": "2.10.12",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",