@bigfootai/bigfoot-types 5.3.12 → 5.3.13

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 +1 -0
  2. package/model.ts +2 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1714,6 +1714,7 @@ input SearchTagsInput {
1714
1714
  orderByDateCreated: String
1715
1715
  page: Int
1716
1716
  size: Int
1717
+ generateDashboard: Boolean
1717
1718
  }`;
1718
1719
  exports.SearchInputQL = `
1719
1720
  input SearchInput {
package/model.ts CHANGED
@@ -3054,6 +3054,7 @@ input SearchTagsInput {
3054
3054
  orderByDateCreated: String
3055
3055
  page: Int
3056
3056
  size: Int
3057
+ generateDashboard: Boolean
3057
3058
  }`;
3058
3059
  export interface SearchTagsInput {
3059
3060
  tagType?: TagType;
@@ -3074,6 +3075,7 @@ export interface SearchTagsInput {
3074
3075
  orderByDateCreated?: OrderByDirection;
3075
3076
  page?: number;
3076
3077
  size?: number;
3078
+ generateDashboard?: boolean;
3077
3079
  }
3078
3080
 
3079
3081
  export const SearchInputQL = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.3.12",
4
+ "version": "5.3.13",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",