@bigfootai/bigfoot-types 4.7.19 → 4.7.20

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 +0 -1
  2. package/model.ts +0 -2
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1007,7 +1007,6 @@ type Document {${exports.BusinessObjectFields}
1007
1007
  description: String
1008
1008
  previewImage: String
1009
1009
  htmlContent: String
1010
- metadata: DocumentMetadata
1011
1010
  }`;
1012
1011
  class Document extends BusinessObject {
1013
1012
  constructor(tenantIdCreated, editors, sharingTags, version, provider, application, uri, externalId) {
package/model.ts CHANGED
@@ -1755,14 +1755,12 @@ type Document {${BusinessObjectFields}
1755
1755
  description: String
1756
1756
  previewImage: String
1757
1757
  htmlContent: String
1758
- metadata: DocumentMetadata
1759
1758
  }`;
1760
1759
  export class Document extends BusinessObject {
1761
1760
  title?: string;
1762
1761
  description?: string;
1763
1762
  previewImage?: string;
1764
1763
  htmlContent?: string;
1765
- metadata?: DocumentMetadata;
1766
1764
 
1767
1765
  constructor(
1768
1766
  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.7.19",
4
+ "version": "4.7.20",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",