@bigfootai/bigfoot-types 3.9.4 → 3.9.5
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 +2 -0
- package/model.ts +4 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -927,6 +927,7 @@ type ArchiveTaskOutput {
|
|
927
927
|
exports.UpsertSearchInputQL = `
|
928
928
|
input UpsertSearchInput {
|
929
929
|
_id: String
|
930
|
+
blockType: String
|
930
931
|
search: String
|
931
932
|
tagIds: [String]
|
932
933
|
sentiment: String
|
@@ -963,6 +964,7 @@ type ArchiveSearchOutput {
|
|
963
964
|
}`;
|
964
965
|
exports.SearchInputQL = `
|
965
966
|
input SearchInput {
|
967
|
+
blockType: String
|
966
968
|
search: String
|
967
969
|
tagIds: [String]
|
968
970
|
sentiment: String
|
package/model.ts
CHANGED
@@ -1692,6 +1692,7 @@ export interface ArchiveTaskOutput {
|
|
1692
1692
|
export const UpsertSearchInputQL = `
|
1693
1693
|
input UpsertSearchInput {
|
1694
1694
|
_id: String
|
1695
|
+
blockType: String
|
1695
1696
|
search: String
|
1696
1697
|
tagIds: [String]
|
1697
1698
|
sentiment: String
|
@@ -1709,6 +1710,7 @@ input UpsertSearchInput {
|
|
1709
1710
|
}`;
|
1710
1711
|
export interface UpsertSearchInput {
|
1711
1712
|
_id: string;
|
1713
|
+
blockType?: string;
|
1712
1714
|
search?: string;
|
1713
1715
|
tagIds?: string[];
|
1714
1716
|
sentiment?: string;
|
@@ -1765,6 +1767,7 @@ export interface ArchiveSearchOutput {
|
|
1765
1767
|
|
1766
1768
|
export const SearchInputQL = `
|
1767
1769
|
input SearchInput {
|
1770
|
+
blockType: String
|
1768
1771
|
search: String
|
1769
1772
|
tagIds: [String]
|
1770
1773
|
sentiment: String
|
@@ -1782,6 +1785,7 @@ input SearchInput {
|
|
1782
1785
|
size: Int
|
1783
1786
|
}`;
|
1784
1787
|
export interface SearchInput {
|
1788
|
+
blockType?: BlockType;
|
1785
1789
|
search?: string;
|
1786
1790
|
tagIds?: string[];
|
1787
1791
|
sentiment?: string;
|