@bigfootai/bigfoot-types 5.1.4 → 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.
Files changed (3) hide show
  1. package/model.js +2 -2
  2. package/model.ts +2 -2
  3. 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
- type GraphSearchInput {${exports.GraphSearchInputFields}
1630
+ input GraphSearchInput {${exports.GraphSearchInputFields}
1631
1631
  }`;
1632
1632
  exports.GraphSearchEventsInputQL = `
1633
- type GraphSearchInput {${exports.GraphSearchInputFields}
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
- type GraphSearchInput {${GraphSearchInputFields}
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
- type GraphSearchInput {${GraphSearchInputFields}
2898
+ input GraphSearchEventsInput {${GraphSearchInputFields}
2899
2899
  calendarId: String
2900
2900
  dateStart: NumberFilterInput
2901
2901
  dateEnd: NumberFilterInput
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.4",
4
+ "version": "5.1.6",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",