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