@bigfootai/bigfoot-types 4.5.17 → 4.5.19
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 +3 -0
- package/model.ts +6 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -462,6 +462,7 @@ class Folder extends SharedPrimitive {
|
|
462
462
|
exports.Folder = Folder;
|
463
463
|
exports.SearchQL = `
|
464
464
|
type Search {${exports.SharedPrimitiveFields}
|
465
|
+
label: String
|
465
466
|
search: String
|
466
467
|
tagIds: [String]
|
467
468
|
sentiment: String
|
@@ -643,6 +644,7 @@ type Article {${exports.PrimitiveFields}
|
|
643
644
|
editorId: String
|
644
645
|
editorGroupId: String
|
645
646
|
parentId: String
|
647
|
+
score: Float
|
646
648
|
}`;
|
647
649
|
class Article extends Primitive {
|
648
650
|
constructor(referenceBlock) {
|
@@ -662,6 +664,7 @@ exports.BlockFields = `${exports.SharedPrimitiveFields}
|
|
662
664
|
archived: Boolean!
|
663
665
|
favorite: Boolean!
|
664
666
|
parentId: String
|
667
|
+
score: Float
|
665
668
|
originNoteId: String
|
666
669
|
document: String
|
667
670
|
reactions: [Reaction]`;
|
package/model.ts
CHANGED
@@ -675,6 +675,7 @@ export class Folder extends SharedPrimitive {
|
|
675
675
|
|
676
676
|
export const SearchQL = `
|
677
677
|
type Search {${SharedPrimitiveFields}
|
678
|
+
label: String
|
678
679
|
search: String
|
679
680
|
tagIds: [String]
|
680
681
|
sentiment: String
|
@@ -685,6 +686,7 @@ type Search {${SharedPrimitiveFields}
|
|
685
686
|
archived: Boolean!
|
686
687
|
}`;
|
687
688
|
export class Search extends SharedPrimitive {
|
689
|
+
label?: string;
|
688
690
|
search?: string;
|
689
691
|
tagIds?: string[];
|
690
692
|
sentiment?: string;
|
@@ -963,6 +965,7 @@ type Article {${PrimitiveFields}
|
|
963
965
|
editorId: String
|
964
966
|
editorGroupId: String
|
965
967
|
parentId: String
|
968
|
+
score: Float
|
966
969
|
}`;
|
967
970
|
export class Article extends Primitive {
|
968
971
|
referenceBlock: ReferenceBlock;
|
@@ -986,6 +989,7 @@ export class Article extends Primitive {
|
|
986
989
|
editorId?: string;
|
987
990
|
editorGroupId?: string;
|
988
991
|
parentId?: string;
|
992
|
+
score?: number;
|
989
993
|
_timeZone?: string;
|
990
994
|
_locale?: string;
|
991
995
|
_changes?: Changes;
|
@@ -1020,6 +1024,7 @@ export const BlockFields = `${SharedPrimitiveFields}
|
|
1020
1024
|
archived: Boolean!
|
1021
1025
|
favorite: Boolean!
|
1022
1026
|
parentId: String
|
1027
|
+
score: Float
|
1023
1028
|
originNoteId: String
|
1024
1029
|
document: String
|
1025
1030
|
reactions: [Reaction]`;
|
@@ -1030,6 +1035,7 @@ export class Block extends SharedPrimitive {
|
|
1030
1035
|
archived: boolean;
|
1031
1036
|
favorite: boolean;
|
1032
1037
|
parentId?: string;
|
1038
|
+
score?: number;
|
1033
1039
|
originNoteId?: string;
|
1034
1040
|
document?: any;
|
1035
1041
|
reactions?: Reaction[];
|