@bigfootai/bigfoot-types 4.5.16 → 4.5.17
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
@@ -1226,6 +1226,7 @@ exports.UpsertSearchInputQL = `
|
|
1226
1226
|
input UpsertSearchInput {
|
1227
1227
|
_id: String
|
1228
1228
|
blockType: String
|
1229
|
+
label: String
|
1229
1230
|
search: String
|
1230
1231
|
_ids: [String]
|
1231
1232
|
tagIds: [String]
|
@@ -1286,6 +1287,7 @@ input SearchTagsInput {
|
|
1286
1287
|
exports.SearchInputQL = `
|
1287
1288
|
input SearchInput {
|
1288
1289
|
blockType: String
|
1290
|
+
label: String
|
1289
1291
|
search: String
|
1290
1292
|
_ids: [String]
|
1291
1293
|
tagIds: [String]
|
package/model.ts
CHANGED
@@ -2230,6 +2230,7 @@ export const UpsertSearchInputQL = `
|
|
2230
2230
|
input UpsertSearchInput {
|
2231
2231
|
_id: String
|
2232
2232
|
blockType: String
|
2233
|
+
label: String
|
2233
2234
|
search: String
|
2234
2235
|
_ids: [String]
|
2235
2236
|
tagIds: [String]
|
@@ -2252,6 +2253,7 @@ input UpsertSearchInput {
|
|
2252
2253
|
export interface UpsertSearchInput {
|
2253
2254
|
_id?: string;
|
2254
2255
|
blockType?: string;
|
2256
|
+
label?: string;
|
2255
2257
|
search?: string;
|
2256
2258
|
_ids?: string[];
|
2257
2259
|
tagIds?: string[];
|
@@ -2351,6 +2353,7 @@ export interface SearchTagsInput {
|
|
2351
2353
|
export const SearchInputQL = `
|
2352
2354
|
input SearchInput {
|
2353
2355
|
blockType: String
|
2356
|
+
label: String
|
2354
2357
|
search: String
|
2355
2358
|
_ids: [String]
|
2356
2359
|
tagIds: [String]
|
@@ -2373,6 +2376,7 @@ input SearchInput {
|
|
2373
2376
|
}`;
|
2374
2377
|
export interface SearchInput {
|
2375
2378
|
blockType?: BlockType;
|
2379
|
+
label?: string;
|
2376
2380
|
search?: string;
|
2377
2381
|
_ids?: string[];
|
2378
2382
|
tagIds?: string[];
|