@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.
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
@@ -1195,6 +1195,7 @@ type ArchiveSearchOutput {
1195
1195
  exports.SearchTagsInputQL = `
1196
1196
  input SearchTagsInput {
1197
1197
  tagType: String
1198
+ parentTagId: String
1198
1199
  tagIds: [String]
1199
1200
  search: String
1200
1201
  email: String
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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.4.26",
4
+ "version": "4.4.27",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",