@bigfootai/bigfoot-types 4.5.15 → 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 +3 -0
- package/model.ts +6 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1198,6 +1198,7 @@ exports.UpsertFolderInputQL = `
|
|
1198
1198
|
input UpsertFolderInput {
|
1199
1199
|
_id: String
|
1200
1200
|
sharingTags: [SharingTagInput]
|
1201
|
+
icon: String
|
1201
1202
|
label: String!
|
1202
1203
|
description: String
|
1203
1204
|
searchIds: [String]
|
@@ -1225,6 +1226,7 @@ exports.UpsertSearchInputQL = `
|
|
1225
1226
|
input UpsertSearchInput {
|
1226
1227
|
_id: String
|
1227
1228
|
blockType: String
|
1229
|
+
label: String
|
1228
1230
|
search: String
|
1229
1231
|
_ids: [String]
|
1230
1232
|
tagIds: [String]
|
@@ -1285,6 +1287,7 @@ input SearchTagsInput {
|
|
1285
1287
|
exports.SearchInputQL = `
|
1286
1288
|
input SearchInput {
|
1287
1289
|
blockType: String
|
1290
|
+
label: String
|
1288
1291
|
search: String
|
1289
1292
|
_ids: [String]
|
1290
1293
|
tagIds: [String]
|
package/model.ts
CHANGED
@@ -2173,6 +2173,7 @@ export const UpsertFolderInputQL = `
|
|
2173
2173
|
input UpsertFolderInput {
|
2174
2174
|
_id: String
|
2175
2175
|
sharingTags: [SharingTagInput]
|
2176
|
+
icon: String
|
2176
2177
|
label: String!
|
2177
2178
|
description: String
|
2178
2179
|
searchIds: [String]
|
@@ -2180,6 +2181,7 @@ input UpsertFolderInput {
|
|
2180
2181
|
export interface UpsertFolderInput {
|
2181
2182
|
_id?: string;
|
2182
2183
|
sharingTags?: SharingTag[];
|
2184
|
+
icon?: string;
|
2183
2185
|
label: string;
|
2184
2186
|
description?: string;
|
2185
2187
|
searchIds?: string[];
|
@@ -2228,6 +2230,7 @@ export const UpsertSearchInputQL = `
|
|
2228
2230
|
input UpsertSearchInput {
|
2229
2231
|
_id: String
|
2230
2232
|
blockType: String
|
2233
|
+
label: String
|
2231
2234
|
search: String
|
2232
2235
|
_ids: [String]
|
2233
2236
|
tagIds: [String]
|
@@ -2250,6 +2253,7 @@ input UpsertSearchInput {
|
|
2250
2253
|
export interface UpsertSearchInput {
|
2251
2254
|
_id?: string;
|
2252
2255
|
blockType?: string;
|
2256
|
+
label?: string;
|
2253
2257
|
search?: string;
|
2254
2258
|
_ids?: string[];
|
2255
2259
|
tagIds?: string[];
|
@@ -2349,6 +2353,7 @@ export interface SearchTagsInput {
|
|
2349
2353
|
export const SearchInputQL = `
|
2350
2354
|
input SearchInput {
|
2351
2355
|
blockType: String
|
2356
|
+
label: String
|
2352
2357
|
search: String
|
2353
2358
|
_ids: [String]
|
2354
2359
|
tagIds: [String]
|
@@ -2371,6 +2376,7 @@ input SearchInput {
|
|
2371
2376
|
}`;
|
2372
2377
|
export interface SearchInput {
|
2373
2378
|
blockType?: BlockType;
|
2379
|
+
label?: string;
|
2374
2380
|
search?: string;
|
2375
2381
|
_ids?: string[];
|
2376
2382
|
tagIds?: string[];
|