@bigfootai/bigfoot-types 4.5.18 → 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.
Files changed (3) hide show
  1. package/model.js +2 -0
  2. package/model.ts +4 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -644,6 +644,7 @@ type Article {${exports.PrimitiveFields}
644
644
  editorId: String
645
645
  editorGroupId: String
646
646
  parentId: String
647
+ score: Float
647
648
  }`;
648
649
  class Article extends Primitive {
649
650
  constructor(referenceBlock) {
@@ -663,6 +664,7 @@ exports.BlockFields = `${exports.SharedPrimitiveFields}
663
664
  archived: Boolean!
664
665
  favorite: Boolean!
665
666
  parentId: String
667
+ score: Float
666
668
  originNoteId: String
667
669
  document: String
668
670
  reactions: [Reaction]`;
package/model.ts CHANGED
@@ -965,6 +965,7 @@ type Article {${PrimitiveFields}
965
965
  editorId: String
966
966
  editorGroupId: String
967
967
  parentId: String
968
+ score: Float
968
969
  }`;
969
970
  export class Article extends Primitive {
970
971
  referenceBlock: ReferenceBlock;
@@ -988,6 +989,7 @@ export class Article extends Primitive {
988
989
  editorId?: string;
989
990
  editorGroupId?: string;
990
991
  parentId?: string;
992
+ score?: number;
991
993
  _timeZone?: string;
992
994
  _locale?: string;
993
995
  _changes?: Changes;
@@ -1022,6 +1024,7 @@ export const BlockFields = `${SharedPrimitiveFields}
1022
1024
  archived: Boolean!
1023
1025
  favorite: Boolean!
1024
1026
  parentId: String
1027
+ score: Float
1025
1028
  originNoteId: String
1026
1029
  document: String
1027
1030
  reactions: [Reaction]`;
@@ -1032,6 +1035,7 @@ export class Block extends SharedPrimitive {
1032
1035
  archived: boolean;
1033
1036
  favorite: boolean;
1034
1037
  parentId?: string;
1038
+ score?: number;
1035
1039
  originNoteId?: string;
1036
1040
  document?: any;
1037
1041
  reactions?: Reaction[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.5.18",
4
+ "version": "4.5.19",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",