@bigfootai/bigfoot-types 5.1.6 → 5.1.7

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
@@ -1054,6 +1054,7 @@ type Document {${exports.BusinessObjectFields}
1054
1054
  description: String
1055
1055
  previewImage: String
1056
1056
  htmlContent: String
1057
+ metadataType: String
1057
1058
  }`;
1058
1059
  class Document extends BusinessObject {
1059
1060
  constructor(tenantIdCreated, editors, sharingTags, provider, application, uri, externalId) {
package/model.ts CHANGED
@@ -1784,12 +1784,14 @@ type Document {${BusinessObjectFields}
1784
1784
  description: String
1785
1785
  previewImage: String
1786
1786
  htmlContent: String
1787
+ metadataType: String
1787
1788
  }`;
1788
1789
  export class Document extends BusinessObject {
1789
1790
  title?: string;
1790
1791
  description?: string;
1791
1792
  previewImage?: string;
1792
1793
  htmlContent?: string;
1794
+ metadataType?: string;
1793
1795
 
1794
1796
  constructor(
1795
1797
  tenantIdCreated: string,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.6",
4
+ "version": "5.1.7",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",