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