@bigfootai/bigfoot-types 4.4.29 → 4.4.31

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 +4 -2
  2. package/model.ts +8 -2
  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;
@@ -1127,8 +1129,8 @@ input UpdateTaskInput {
1127
1129
  _id: String
1128
1130
  editor: EditorInput!
1129
1131
  status: Int!
1130
- dateDue: Float!
1131
- snoozed: Boolean!
1132
+ dateDue: Float
1133
+ snoozed: Boolean
1132
1134
  steps: [TaskStepInput]
1133
1135
  dateRemindMe: Float
1134
1136
  recurrence: [String]
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
 
@@ -2037,8 +2043,8 @@ input UpdateTaskInput {
2037
2043
  _id: String
2038
2044
  editor: EditorInput!
2039
2045
  status: Int!
2040
- dateDue: Float!
2041
- snoozed: Boolean!
2046
+ dateDue: Float
2047
+ snoozed: Boolean
2042
2048
  steps: [TaskStepInput]
2043
2049
  dateRemindMe: Float
2044
2050
  recurrence: [String]
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.31",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",