@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.
Files changed (3) hide show
  1. package/model.js +1 -1
  2. package/model.ts +2 -2
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1201,7 +1201,7 @@ type ArchiveSearchOutput {
1201
1201
  exports.SearchTagsInputQL = `
1202
1202
  input SearchTagsInput {
1203
1203
  tagType: String
1204
- parentTagId: String
1204
+ parentId: String
1205
1205
  _ids: [String]
1206
1206
  search: String
1207
1207
  email: String
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
- parentTagId: String
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
- parentTagId?: string;
2209
+ parentId?: string;
2210
2210
  _ids?: string[];
2211
2211
  search?: string;
2212
2212
  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.33",
4
+ "version": "4.4.34",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",