@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.
- package/model.js +0 -1
- package/model.ts +6 -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,9 @@ export class Article extends Primitive {
|
|
632
631
|
mentions?: EntityEntry[];
|
633
632
|
relations?: RelationEntry[];
|
634
633
|
linkUrls?: string[];
|
635
|
-
|
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
|
|