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