@bigfootai/bigfoot-types 5.1.3 → 5.1.5
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 +3 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1630,7 +1630,7 @@ exports.GraphSearchInputQL = `
|
|
1630
1630
|
type GraphSearchInput {${exports.GraphSearchInputFields}
|
1631
1631
|
}`;
|
1632
1632
|
exports.GraphSearchEventsInputQL = `
|
1633
|
-
type
|
1633
|
+
type GraphSearchEventsInput {${exports.GraphSearchInputFields}
|
1634
1634
|
calendarId: String
|
1635
1635
|
dateStart: NumberFilterInput
|
1636
1636
|
dateEnd: NumberFilterInput
|
@@ -1767,4 +1767,5 @@ ${exports.NumberFilterInputQL}
|
|
1767
1767
|
${exports.StringFilterInputQL}
|
1768
1768
|
${exports.BusinessObjectFilterInputQL}
|
1769
1769
|
${exports.SortOptionInputQL}
|
1770
|
-
${exports.GraphSearchInputQL}
|
1770
|
+
${exports.GraphSearchInputQL}
|
1771
|
+
${exports.GraphSearchEventsInputQL}`;
|
package/model.ts
CHANGED
@@ -2895,7 +2895,7 @@ export interface GraphSearchInput {
|
|
2895
2895
|
}
|
2896
2896
|
|
2897
2897
|
export const GraphSearchEventsInputQL = `
|
2898
|
-
type
|
2898
|
+
type GraphSearchEventsInput {${GraphSearchInputFields}
|
2899
2899
|
calendarId: String
|
2900
2900
|
dateStart: NumberFilterInput
|
2901
2901
|
dateEnd: NumberFilterInput
|
@@ -3045,4 +3045,5 @@ ${NumberFilterInputQL}
|
|
3045
3045
|
${StringFilterInputQL}
|
3046
3046
|
${BusinessObjectFilterInputQL}
|
3047
3047
|
${SortOptionInputQL}
|
3048
|
-
${GraphSearchInputQL}
|
3048
|
+
${GraphSearchInputQL}
|
3049
|
+
${GraphSearchEventsInputQL}`;
|