@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.
- package/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
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;
|