@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.
- package/model.js +0 -1
- package/model.ts +5 -8
- package/package.json +1 -1
package/model.js
CHANGED
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
|
-
|
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
|
-
|
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
|
|