@bigfootai/bigfoot-types 4.5.17 → 4.5.18

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
@@ -462,6 +462,7 @@ class Folder extends SharedPrimitive {
462
462
  exports.Folder = Folder;
463
463
  exports.SearchQL = `
464
464
  type Search {${exports.SharedPrimitiveFields}
465
+ label: String
465
466
  search: String
466
467
  tagIds: [String]
467
468
  sentiment: String
package/model.ts CHANGED
@@ -675,6 +675,7 @@ export class Folder extends SharedPrimitive {
675
675
 
676
676
  export const SearchQL = `
677
677
  type Search {${SharedPrimitiveFields}
678
+ label: String
678
679
  search: String
679
680
  tagIds: [String]
680
681
  sentiment: String
@@ -685,6 +686,7 @@ type Search {${SharedPrimitiveFields}
685
686
  archived: Boolean!
686
687
  }`;
687
688
  export class Search extends SharedPrimitive {
689
+ label?: string;
688
690
  search?: string;
689
691
  tagIds?: string[];
690
692
  sentiment?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.5.17",
4
+ "version": "4.5.18",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",