@bigfootai/bigfoot-types 4.4.29 → 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 +6 -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
@@ -932,6 +932,7 @@ export class Article extends Primitive {
932
932
  _parentTagIds?: string[];
933
933
  _sharingTagIds?: string[];
934
934
  _tagIds?: string[];
935
+ _empty: boolean;
935
936
 
936
937
  constructor(referenceBlock: ReferenceBlock) {
937
938
  super();
@@ -941,6 +942,8 @@ export class Article extends Primitive {
941
942
  this.snoozed = false;
942
943
 
943
944
  this.referenceBlock = referenceBlock;
945
+
946
+ this._empty = false;
944
947
  }
945
948
  }
946
949
 
@@ -967,6 +970,7 @@ export class Block extends SharedPrimitive {
967
970
  _changes?: Changes;
968
971
  _timeZone?: string;
969
972
  _locale?: string;
973
+ _empty: boolean;
970
974
 
971
975
  constructor(
972
976
  tenantIdCreated: string,
@@ -984,6 +988,8 @@ export class Block extends SharedPrimitive {
984
988
 
985
989
  this.archived = false;
986
990
  this.favorite = false;
991
+
992
+ this._empty = false;
987
993
  }
988
994
  }
989
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.29",
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",