@bigfootai/bigfoot-types 4.4.32 → 4.4.33
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 +3 -1
- package/model.ts +6 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1161,6 +1161,7 @@ input UpsertSearchInput {
|
|
1161
1161
|
_id: String
|
1162
1162
|
blockType: String
|
1163
1163
|
search: String
|
1164
|
+
_ids: [String]
|
1164
1165
|
tagIds: [String]
|
1165
1166
|
sentiment: String
|
1166
1167
|
sharingTags: [SharingTagInput]
|
@@ -1201,7 +1202,7 @@ exports.SearchTagsInputQL = `
|
|
1201
1202
|
input SearchTagsInput {
|
1202
1203
|
tagType: String
|
1203
1204
|
parentTagId: String
|
1204
|
-
|
1205
|
+
_ids: [String]
|
1205
1206
|
search: String
|
1206
1207
|
email: String
|
1207
1208
|
inviteStatus: Int
|
@@ -1219,6 +1220,7 @@ exports.SearchInputQL = `
|
|
1219
1220
|
input SearchInput {
|
1220
1221
|
blockType: String
|
1221
1222
|
search: String
|
1223
|
+
_ids: [String]
|
1222
1224
|
tagIds: [String]
|
1223
1225
|
sentiment: String
|
1224
1226
|
orderByDateUpdated: String
|
package/model.ts
CHANGED
@@ -2107,6 +2107,7 @@ input UpsertSearchInput {
|
|
2107
2107
|
_id: String
|
2108
2108
|
blockType: String
|
2109
2109
|
search: String
|
2110
|
+
_ids: [String]
|
2110
2111
|
tagIds: [String]
|
2111
2112
|
sentiment: String
|
2112
2113
|
sharingTags: [SharingTagInput]
|
@@ -2128,6 +2129,7 @@ export interface UpsertSearchInput {
|
|
2128
2129
|
_id: string;
|
2129
2130
|
blockType?: string;
|
2130
2131
|
search?: string;
|
2132
|
+
_ids?: string[];
|
2131
2133
|
tagIds?: string[];
|
2132
2134
|
sentiment?: string;
|
2133
2135
|
sharingTags?: SharingTag[];
|
@@ -2188,7 +2190,7 @@ export const SearchTagsInputQL = `
|
|
2188
2190
|
input SearchTagsInput {
|
2189
2191
|
tagType: String
|
2190
2192
|
parentTagId: String
|
2191
|
-
|
2193
|
+
_ids: [String]
|
2192
2194
|
search: String
|
2193
2195
|
email: String
|
2194
2196
|
inviteStatus: Int
|
@@ -2205,7 +2207,7 @@ input SearchTagsInput {
|
|
2205
2207
|
export interface SearchTagsInput {
|
2206
2208
|
tagType?: TagType;
|
2207
2209
|
parentTagId?: string;
|
2208
|
-
|
2210
|
+
_ids?: string[];
|
2209
2211
|
search?: string;
|
2210
2212
|
email?: string;
|
2211
2213
|
inviteStatus?: InviteStatus;
|
@@ -2224,6 +2226,7 @@ export const SearchInputQL = `
|
|
2224
2226
|
input SearchInput {
|
2225
2227
|
blockType: String
|
2226
2228
|
search: String
|
2229
|
+
_ids: [String]
|
2227
2230
|
tagIds: [String]
|
2228
2231
|
sentiment: String
|
2229
2232
|
orderByDateUpdated: String
|
@@ -2245,6 +2248,7 @@ input SearchInput {
|
|
2245
2248
|
export interface SearchInput {
|
2246
2249
|
blockType?: BlockType;
|
2247
2250
|
search?: string;
|
2251
|
+
_ids?: string[];
|
2248
2252
|
tagIds?: string[];
|
2249
2253
|
sentiment?: string;
|
2250
2254
|
orderByDateUpdated?: OrderByDirection;
|