@bigfootai/bigfoot-types 4.1.7 → 4.1.9

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 (2) hide show
  1. package/model.ts +2 -1
  2. package/package.json +1 -1
package/model.ts CHANGED
@@ -915,7 +915,6 @@ export class BusinessObjectIngestionRequest extends Primitive {
915
915
  processingReason?: string; // The reason the processing is at this stage
916
916
  dateProcessed: number; // The date this document was last processed
917
917
  dateToProcess: number; // The date this ingestion should be processed - default is now
918
- externalResponse?: any; // The full response from the external system that created this object
919
918
  originReferenceBlock: ReferenceBlock; // The block that this request originally came from (though the ingestion may be referenced from many future blocks)
920
919
 
921
920
  constructor(
@@ -955,6 +954,8 @@ export class BusinessObject extends Block {
955
954
  uri: string; // A uri to locate the specific instance of the business object
956
955
  externalId: string; // An external identifier that can help us match the records
957
956
  iconUrl?: string | null; // The url of an icon that represents the business object
957
+ externalResponse?: string; // The response from the external application as a JSON string
958
+ htmlContent: string; // The content of this business object as html
958
959
 
959
960
  constructor(
960
961
  tenantIdCreated: string,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.1.7",
4
+ "version": "4.1.9",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",