@bigfootai/bigfoot-types 2.12.10 → 2.13.0

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 +0 -1
  2. package/model.ts +5 -8
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -421,7 +421,6 @@ class Block extends Primitive {
421
421
  this.version = version;
422
422
  this.blockType = blockType;
423
423
  this.archived = false;
424
- this._ignoreUpdate = false;
425
424
  }
426
425
  }
427
426
  exports.Block = Block;
package/model.ts CHANGED
@@ -555,6 +555,7 @@ export class Tenant extends Primitive {
555
555
  familyName?: string;
556
556
  givenName?: string;
557
557
  connectedProviders?: ConnectedProvider[];
558
+ accessToken?: string;
558
559
 
559
560
  constructor(
560
561
  domainMemberships: string[],
@@ -619,9 +620,7 @@ type Article {${PrimitiveFields}
619
620
  }`;
620
621
  export class Article extends Primitive {
621
622
  referenceBlock: ReferenceBlock;
622
- changes?: Changes;
623
- embedding?: any;
624
- text?: string;
623
+ embedding?: number[];
625
624
  sentiment?: DocumentSentiment;
626
625
  dates?: EntityEntry[];
627
626
  locations?: EntityEntry[];
@@ -632,7 +631,8 @@ export class Article extends Primitive {
632
631
  mentions?: EntityEntry[];
633
632
  relations?: RelationEntry[];
634
633
  linkUrls?: string[];
635
- tasks?: Task[];
634
+ _changes?: Changes;
635
+ _tasks?: Task[];
636
636
 
637
637
  constructor(referenceBlock: ReferenceBlock) {
638
638
  super();
@@ -655,11 +655,9 @@ export class Block extends Primitive {
655
655
  version: number;
656
656
  blockType: BlockType;
657
657
  archived: boolean;
658
- _ignoreUpdate: boolean;
659
658
  document?: any;
660
- changes?: Changes;
661
- _sharedTags?: string[];
662
659
  reactions?: Reaction[];
660
+ _changes?: Changes;
663
661
 
664
662
  constructor(
665
663
  tenantIdCreated: string,
@@ -677,7 +675,6 @@ export class Block extends Primitive {
677
675
  this.blockType = blockType;
678
676
 
679
677
  this.archived = false;
680
- this._ignoreUpdate = false;
681
678
  }
682
679
  }
683
680
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "2.12.10",
4
+ "version": "2.13.0",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",