@bigfootai/bigfoot-types 4.7.18 → 4.7.19

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