@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.
- package/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
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 = `
|