@bigfootai/bigfoot-types 4.6.14 → 4.6.15

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.
Files changed (3) hide show
  1. package/model.js +21 -3
  2. package/model.ts +39 -4
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -470,13 +470,27 @@ class Folder extends SharedPrimitive {
470
470
  exports.Folder = Folder;
471
471
  exports.SearchQL = `
472
472
  type Search {${exports.SharedPrimitiveFields}
473
- label: String
474
- search: String
475
- tagIds: [String]
473
+ label: String
474
+ search: String
475
+ blockType: String
476
+ _ids: [String]
477
+ tagIds: [String]
478
+ linkUrls: [String]
479
+ emails: [String]
476
480
  sentiment: String
477
481
  orderByDateUpdated: String
478
482
  orderByDateCreated: String
483
+ orderByDateDue: String
479
484
  orderByAlias: String
485
+ dateDueFrom: Float
486
+ dateDueTo: Float
487
+ status: Int
488
+ originNoteId: String
489
+ editorId: String
490
+ editorGroupId: String
491
+ parentId: String
492
+ favorite: Boolean
493
+ snoozed: Boolean
480
494
  size: Int
481
495
  archived: Boolean!
482
496
  favoriteTagId: String
@@ -1266,6 +1280,8 @@ input UpsertSearchInput {
1266
1280
  search: String
1267
1281
  _ids: [String]
1268
1282
  tagIds: [String]
1283
+ linkUrls: [String]
1284
+ emails: [String]
1269
1285
  sentiment: String
1270
1286
  sharingTags: [SharingTagInput]
1271
1287
  orderByDateUpdated: String
@@ -1328,6 +1344,8 @@ input SearchInput {
1328
1344
  search: String
1329
1345
  _ids: [String]
1330
1346
  tagIds: [String]
1347
+ linkUrls: [String]
1348
+ emails: [String]
1331
1349
  sentiment: String
1332
1350
  orderByDateUpdated: String
1333
1351
  orderByDateCreated: String
package/model.ts CHANGED
@@ -682,26 +682,53 @@ export class Folder extends SharedPrimitive {
682
682
 
683
683
  export const SearchQL = `
684
684
  type Search {${SharedPrimitiveFields}
685
- label: String
686
- search: String
687
- tagIds: [String]
685
+ label: String
686
+ search: String
687
+ blockType: String
688
+ _ids: [String]
689
+ tagIds: [String]
690
+ linkUrls: [String]
691
+ emails: [String]
688
692
  sentiment: String
689
693
  orderByDateUpdated: String
690
694
  orderByDateCreated: String
695
+ orderByDateDue: String
691
696
  orderByAlias: String
697
+ dateDueFrom: Float
698
+ dateDueTo: Float
699
+ status: Int
700
+ originNoteId: String
701
+ editorId: String
702
+ editorGroupId: String
703
+ parentId: String
704
+ favorite: Boolean
705
+ snoozed: Boolean
692
706
  size: Int
693
707
  archived: Boolean!
694
708
  favoriteTagId: String
695
709
  }`;
696
710
  export class Search extends SharedPrimitive {
711
+ blockType?: BlockType;
697
712
  label?: string;
698
713
  search?: string;
714
+ _ids?: string[];
699
715
  tagIds?: string[];
716
+ linkUrls?: string[];
717
+ emails?: string[];
700
718
  sentiment?: string;
701
719
  orderByDateUpdated?: OrderByDirection;
702
720
  orderByDateCreated?: OrderByDirection;
721
+ orderByDateDue?: OrderByDirection;
703
722
  orderByAlias?: OrderByDirection;
704
- page?: number;
723
+ dateDueFrom?: number;
724
+ dateDueTo?: number;
725
+ status?: TaskStatus;
726
+ originNoteId?: string;
727
+ editorId?: string;
728
+ editorGroupId?: string;
729
+ parentId?: string;
730
+ favorite?: boolean;
731
+ snoozed?: boolean;
705
732
  size?: number;
706
733
  archived: boolean;
707
734
  favoriteTagId?: string;
@@ -2295,6 +2322,8 @@ input UpsertSearchInput {
2295
2322
  search: String
2296
2323
  _ids: [String]
2297
2324
  tagIds: [String]
2325
+ linkUrls: [String]
2326
+ emails: [String]
2298
2327
  sentiment: String
2299
2328
  sharingTags: [SharingTagInput]
2300
2329
  orderByDateUpdated: String
@@ -2318,6 +2347,8 @@ export interface UpsertSearchInput {
2318
2347
  search?: string;
2319
2348
  _ids?: string[];
2320
2349
  tagIds?: string[];
2350
+ linkUrls?: string[];
2351
+ emails?: string[];
2321
2352
  sentiment?: string;
2322
2353
  sharingTags?: SharingTag[];
2323
2354
  orderByDateUpdated?: OrderByDirection;
@@ -2420,6 +2451,8 @@ input SearchInput {
2420
2451
  search: String
2421
2452
  _ids: [String]
2422
2453
  tagIds: [String]
2454
+ linkUrls: [String]
2455
+ emails: [String]
2423
2456
  sentiment: String
2424
2457
  orderByDateUpdated: String
2425
2458
  orderByDateCreated: String
@@ -2443,6 +2476,8 @@ export interface SearchInput {
2443
2476
  search?: string;
2444
2477
  _ids?: string[];
2445
2478
  tagIds?: string[];
2479
+ linkUrls?: string[];
2480
+ emails?: string[];
2446
2481
  sentiment?: string;
2447
2482
  orderByDateUpdated?: OrderByDirection;
2448
2483
  orderByDateCreated?: OrderByDirection;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.6.14",
4
+ "version": "4.6.15",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",