@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.
- package/model.js +2 -2
- package/model.ts +2 -2
- 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
|
596
|
-
this.processingAttempts
|
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
|
929
|
-
this.processingAttempts
|
928
|
+
this.processingStage = ProcessingStage.NotProcessed;
|
929
|
+
this.processingAttempts = 0;
|
930
930
|
this.dateProcessed = 0;
|
931
931
|
this.dateToProcess = Date.now();
|
932
932
|
}
|