@bigfootai/bigfoot-types 4.4.26 → 4.4.27
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
@@ -2173,6 +2173,7 @@ export interface ArchiveSearchOutput {
|
|
2173
2173
|
export const SearchTagsInputQL = `
|
2174
2174
|
input SearchTagsInput {
|
2175
2175
|
tagType: String
|
2176
|
+
parentTagId: String
|
2176
2177
|
tagIds: [String]
|
2177
2178
|
search: String
|
2178
2179
|
email: String
|
@@ -2189,6 +2190,7 @@ input SearchTagsInput {
|
|
2189
2190
|
}`;
|
2190
2191
|
export interface SearchTagsInput {
|
2191
2192
|
tagType?: TagType;
|
2193
|
+
parentTagId?: string;
|
2192
2194
|
tagIds?: string[];
|
2193
2195
|
search?: string;
|
2194
2196
|
email?: string;
|