@bigfootai/bigfoot-types 4.4.33 → 4.4.34
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 -1
- package/model.ts +2 -2
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -2189,7 +2189,7 @@ export interface ArchiveSearchOutput {
|
|
2189
2189
|
export const SearchTagsInputQL = `
|
2190
2190
|
input SearchTagsInput {
|
2191
2191
|
tagType: String
|
2192
|
-
|
2192
|
+
parentId: String
|
2193
2193
|
_ids: [String]
|
2194
2194
|
search: String
|
2195
2195
|
email: String
|
@@ -2206,7 +2206,7 @@ input SearchTagsInput {
|
|
2206
2206
|
}`;
|
2207
2207
|
export interface SearchTagsInput {
|
2208
2208
|
tagType?: TagType;
|
2209
|
-
|
2209
|
+
parentId?: string;
|
2210
2210
|
_ids?: string[];
|
2211
2211
|
search?: string;
|
2212
2212
|
email?: string;
|