@bigfootai/bigfoot-types 2.12.10 → 2.13.1

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 +6 -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,9 @@ export class Article extends Primitive {
632
631
  mentions?: EntityEntry[];
633
632
  relations?: RelationEntry[];
634
633
  linkUrls?: string[];
635
- tasks?: Task[];
634
+ sharingTags?: SharingTag[];
635
+ _changes?: Changes;
636
+ _tasks?: Task[];
636
637
 
637
638
  constructor(referenceBlock: ReferenceBlock) {
638
639
  super();
@@ -655,11 +656,9 @@ export class Block extends Primitive {
655
656
  version: number;
656
657
  blockType: BlockType;
657
658
  archived: boolean;
658
- _ignoreUpdate: boolean;
659
659
  document?: any;
660
- changes?: Changes;
661
- _sharedTags?: string[];
662
660
  reactions?: Reaction[];
661
+ _changes?: Changes;
663
662
 
664
663
  constructor(
665
664
  tenantIdCreated: string,
@@ -677,7 +676,6 @@ export class Block extends Primitive {
677
676
  this.blockType = blockType;
678
677
 
679
678
  this.archived = false;
680
- this._ignoreUpdate = false;
681
679
  }
682
680
  }
683
681
 
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.1",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",