@bigfootai/bigfoot-types 4.1.2 → 4.1.3
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 +7 -3
- package/package.json +1 -1
package/model.js
CHANGED
@@ -588,10 +588,10 @@ class BlockProcessingResponse {
|
|
588
588
|
}
|
589
589
|
exports.BlockProcessingResponse = BlockProcessingResponse;
|
590
590
|
class BusinessObjectIngestionRequest extends Primitive {
|
591
|
-
constructor(tenantIdCreated,
|
591
|
+
constructor(tenantIdCreated, originReferenceBlock, uri) {
|
592
592
|
super();
|
593
593
|
this.tenantIdCreated = tenantIdCreated;
|
594
|
-
this.
|
594
|
+
this.originReferenceBlock = originReferenceBlock;
|
595
595
|
this.uri = uri;
|
596
596
|
this.processingStage = ProcessingStage.NotProcessed;
|
597
597
|
this.processingAttempts = 0;
|
package/model.ts
CHANGED
@@ -918,13 +918,17 @@ export class BusinessObjectIngestionRequest extends Primitive {
|
|
918
918
|
dateProcessed: number; // The date this document was last processed
|
919
919
|
dateToProcess: number; // The date this ingestion should be processed - default is now
|
920
920
|
externalResponse?: any; // The full response from the external system that created this object
|
921
|
-
|
921
|
+
originReferenceBlock: ReferenceBlock; // The block that this request originally came from (though the ingestion may be referenced from many future blocks)
|
922
922
|
|
923
|
-
constructor(
|
923
|
+
constructor(
|
924
|
+
tenantIdCreated: string,
|
925
|
+
originReferenceBlock: ReferenceBlock,
|
926
|
+
uri: string
|
927
|
+
) {
|
924
928
|
super();
|
925
929
|
|
926
930
|
this.tenantIdCreated = tenantIdCreated;
|
927
|
-
this.
|
931
|
+
this.originReferenceBlock = originReferenceBlock;
|
928
932
|
this.uri = uri;
|
929
933
|
|
930
934
|
this.processingStage = ProcessingStage.NotProcessed;
|