@bigfootai/bigfoot-types 2.12.9 → 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 +1 -2
- package/model.ts +6 -9
- 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;
|
@@ -690,7 +689,7 @@ input InsertNoteInput {
|
|
690
689
|
}`;
|
691
690
|
exports.UpsertNoteInputQL = `
|
692
691
|
input UpsertNoteInput {
|
693
|
-
_id: String
|
692
|
+
_id: String
|
694
693
|
document: String!
|
695
694
|
editor: EditorInput!
|
696
695
|
version: Float!
|
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
|
|
@@ -1331,7 +1328,7 @@ export interface InsertNoteInput {
|
|
1331
1328
|
|
1332
1329
|
export const UpsertNoteInputQL = `
|
1333
1330
|
input UpsertNoteInput {
|
1334
|
-
_id: String
|
1331
|
+
_id: String
|
1335
1332
|
document: String!
|
1336
1333
|
editor: EditorInput!
|
1337
1334
|
version: Float!
|