@bigfootai/bigfoot-types 5.0.4 → 5.0.6

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 -2
  2. package/model.ts +2 -3
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -835,6 +835,7 @@ class Block extends SharedPrimitive {
835
835
  this.blockType = blockType;
836
836
  this.archived = false;
837
837
  this.favorite = false;
838
+ this.snoozed = false;
838
839
  this._dateDueUserAssigned = false;
839
840
  this._empty = false;
840
841
  }
@@ -847,9 +848,8 @@ class BlockProcessingRequest {
847
848
  }
848
849
  exports.BlockProcessingRequest = BlockProcessingRequest;
849
850
  class BlockProcessingResponse {
850
- constructor(referenceBlock, articleId) {
851
+ constructor(referenceBlock) {
851
852
  this.referenceBlock = referenceBlock;
852
- this.articleId = articleId;
853
853
  }
854
854
  }
855
855
  exports.BlockProcessingResponse = BlockProcessingResponse;
package/model.ts CHANGED
@@ -1314,6 +1314,7 @@ export class Block extends SharedPrimitive {
1314
1314
 
1315
1315
  this.archived = false;
1316
1316
  this.favorite = false;
1317
+ this.snoozed = false;
1317
1318
 
1318
1319
  this._dateDueUserAssigned = false;
1319
1320
 
@@ -1330,12 +1331,10 @@ export class BlockProcessingRequest {
1330
1331
  }
1331
1332
 
1332
1333
  export class BlockProcessingResponse {
1333
- articleId: string;
1334
1334
  referenceBlock: ReferenceBlock;
1335
1335
 
1336
- constructor(referenceBlock: ReferenceBlock, articleId: string) {
1336
+ constructor(referenceBlock: ReferenceBlock) {
1337
1337
  this.referenceBlock = referenceBlock;
1338
- this.articleId = articleId;
1339
1338
  }
1340
1339
  }
1341
1340
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.0.4",
4
+ "version": "5.0.6",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",