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