@bigfootai/bigfoot-types 5.0.4 → 5.0.5

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 +1 -2
  2. package/model.ts +1 -3
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -847,9 +847,8 @@ class BlockProcessingRequest {
847
847
  }
848
848
  exports.BlockProcessingRequest = BlockProcessingRequest;
849
849
  class BlockProcessingResponse {
850
- constructor(referenceBlock, articleId) {
850
+ constructor(referenceBlock) {
851
851
  this.referenceBlock = referenceBlock;
852
- this.articleId = articleId;
853
852
  }
854
853
  }
855
854
  exports.BlockProcessingResponse = BlockProcessingResponse;
package/model.ts CHANGED
@@ -1330,12 +1330,10 @@ export class BlockProcessingRequest {
1330
1330
  }
1331
1331
 
1332
1332
  export class BlockProcessingResponse {
1333
- articleId: string;
1334
1333
  referenceBlock: ReferenceBlock;
1335
1334
 
1336
- constructor(referenceBlock: ReferenceBlock, articleId: string) {
1335
+ constructor(referenceBlock: ReferenceBlock) {
1337
1336
  this.referenceBlock = referenceBlock;
1338
- this.articleId = articleId;
1339
1337
  }
1340
1338
  }
1341
1339
 
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.5",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",