@bigfootai/bigfoot-types 4.4.28 → 4.4.30

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 +8 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -615,6 +615,7 @@ class Article extends Primitive {
615
615
  this.favorite = false;
616
616
  this.snoozed = false;
617
617
  this.referenceBlock = referenceBlock;
618
+ this._empty = false;
618
619
  }
619
620
  }
620
621
  exports.Article = Article;
@@ -637,6 +638,7 @@ class Block extends SharedPrimitive {
637
638
  this.blockType = blockType;
638
639
  this.archived = false;
639
640
  this.favorite = false;
641
+ this._empty = false;
640
642
  }
641
643
  }
642
644
  exports.Block = Block;
package/model.ts CHANGED
@@ -928,8 +928,11 @@ export class Article extends Primitive {
928
928
  _entitiesOrganization?: EntityEntry[];
929
929
  _entitiesTopic?: EntityEntry[];
930
930
  _emails?: EntityEntry[];
931
+ _parentSharingTagIds?: string[];
932
+ _parentTagIds?: string[];
931
933
  _sharingTagIds?: string[];
932
934
  _tagIds?: string[];
935
+ _empty: boolean;
933
936
 
934
937
  constructor(referenceBlock: ReferenceBlock) {
935
938
  super();
@@ -939,6 +942,8 @@ export class Article extends Primitive {
939
942
  this.snoozed = false;
940
943
 
941
944
  this.referenceBlock = referenceBlock;
945
+
946
+ this._empty = false;
942
947
  }
943
948
  }
944
949
 
@@ -965,6 +970,7 @@ export class Block extends SharedPrimitive {
965
970
  _changes?: Changes;
966
971
  _timeZone?: string;
967
972
  _locale?: string;
973
+ _empty: boolean;
968
974
 
969
975
  constructor(
970
976
  tenantIdCreated: string,
@@ -982,6 +988,8 @@ export class Block extends SharedPrimitive {
982
988
 
983
989
  this.archived = false;
984
990
  this.favorite = false;
991
+
992
+ this._empty = false;
985
993
  }
986
994
  }
987
995
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.4.28",
4
+ "version": "4.4.30",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",