@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.
Files changed (3) hide show
  1. package/model.js +3 -2
  2. package/model.ts +3 -2
  3. 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 GraphSearchInput {${exports.GraphSearchInputFields}
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 GraphSearchInput {${GraphSearchInputFields}
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}`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.3",
4
+ "version": "5.1.5",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",