@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.
- package/model.js +1 -0
- package/model.ts +2 -0
- 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,
|