@bigfootai/bigfoot-types 5.1.5 → 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 +3 -2
- package/model.ts +4 -2
- 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) {
|
@@ -1627,10 +1628,10 @@ exports.GraphSearchInputFields = `
|
|
1627
1628
|
size: Int
|
1628
1629
|
`;
|
1629
1630
|
exports.GraphSearchInputQL = `
|
1630
|
-
|
1631
|
+
input GraphSearchInput {${exports.GraphSearchInputFields}
|
1631
1632
|
}`;
|
1632
1633
|
exports.GraphSearchEventsInputQL = `
|
1633
|
-
|
1634
|
+
input GraphSearchEventsInput {${exports.GraphSearchInputFields}
|
1634
1635
|
calendarId: String
|
1635
1636
|
dateStart: NumberFilterInput
|
1636
1637
|
dateEnd: NumberFilterInput
|
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,
|
@@ -2864,7 +2866,7 @@ export const GraphSearchInputFields = `
|
|
2864
2866
|
size: Int
|
2865
2867
|
`;
|
2866
2868
|
export const GraphSearchInputQL = `
|
2867
|
-
|
2869
|
+
input GraphSearchInput {${GraphSearchInputFields}
|
2868
2870
|
}`;
|
2869
2871
|
export interface GraphSearchInput {
|
2870
2872
|
// Used for context based searching
|
@@ -2895,7 +2897,7 @@ export interface GraphSearchInput {
|
|
2895
2897
|
}
|
2896
2898
|
|
2897
2899
|
export const GraphSearchEventsInputQL = `
|
2898
|
-
|
2900
|
+
input GraphSearchEventsInput {${GraphSearchInputFields}
|
2899
2901
|
calendarId: String
|
2900
2902
|
dateStart: NumberFilterInput
|
2901
2903
|
dateEnd: NumberFilterInput
|