@bigfootai/bigfoot-types 4.1.0 → 4.1.1

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 -2
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -592,8 +592,8 @@ class BusinessObjectIngestionRequest extends Primitive {
592
592
  super();
593
593
  this.tenantIdCreated = tenantIdCreated;
594
594
  this.uri = uri;
595
- this.processingStage == ProcessingStage.NotProcessed;
596
- this.processingAttempts == 0;
595
+ this.processingStage = ProcessingStage.NotProcessed;
596
+ this.processingAttempts = 0;
597
597
  this.dateProcessed = 0;
598
598
  this.dateToProcess = Date.now();
599
599
  }
package/model.ts CHANGED
@@ -925,8 +925,8 @@ export class BusinessObjectIngestionRequest extends Primitive {
925
925
  this.tenantIdCreated = tenantIdCreated;
926
926
  this.uri = uri;
927
927
 
928
- this.processingStage == ProcessingStage.NotProcessed;
929
- this.processingAttempts == 0;
928
+ this.processingStage = ProcessingStage.NotProcessed;
929
+ this.processingAttempts = 0;
930
930
  this.dateProcessed = 0;
931
931
  this.dateToProcess = Date.now();
932
932
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.1.0",
4
+ "version": "4.1.1",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",