@bigfootai/bigfoot-types 4.6.13 → 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 -4
  2. package/model.ts +39 -5
  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
@@ -593,7 +607,6 @@ type ProviderRecommendation {
593
607
  exports.TenantQL = `
594
608
  type Tenant {${exports.PrimitiveFields}
595
609
  domainMemberships: [String]!
596
- _id: String!
597
610
  email: String!
598
611
  tagId: String!
599
612
  picture: String
@@ -1267,6 +1280,8 @@ input UpsertSearchInput {
1267
1280
  search: String
1268
1281
  _ids: [String]
1269
1282
  tagIds: [String]
1283
+ linkUrls: [String]
1284
+ emails: [String]
1270
1285
  sentiment: String
1271
1286
  sharingTags: [SharingTagInput]
1272
1287
  orderByDateUpdated: String
@@ -1329,6 +1344,8 @@ input SearchInput {
1329
1344
  search: String
1330
1345
  _ids: [String]
1331
1346
  tagIds: [String]
1347
+ linkUrls: [String]
1348
+ emails: [String]
1332
1349
  sentiment: String
1333
1350
  orderByDateUpdated: String
1334
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;
@@ -896,7 +923,6 @@ export interface ProviderRecommendation {
896
923
  export const TenantQL = `
897
924
  type Tenant {${PrimitiveFields}
898
925
  domainMemberships: [String]!
899
- _id: String!
900
926
  email: String!
901
927
  tagId: String!
902
928
  picture: String
@@ -2296,6 +2322,8 @@ input UpsertSearchInput {
2296
2322
  search: String
2297
2323
  _ids: [String]
2298
2324
  tagIds: [String]
2325
+ linkUrls: [String]
2326
+ emails: [String]
2299
2327
  sentiment: String
2300
2328
  sharingTags: [SharingTagInput]
2301
2329
  orderByDateUpdated: String
@@ -2319,6 +2347,8 @@ export interface UpsertSearchInput {
2319
2347
  search?: string;
2320
2348
  _ids?: string[];
2321
2349
  tagIds?: string[];
2350
+ linkUrls?: string[];
2351
+ emails?: string[];
2322
2352
  sentiment?: string;
2323
2353
  sharingTags?: SharingTag[];
2324
2354
  orderByDateUpdated?: OrderByDirection;
@@ -2421,6 +2451,8 @@ input SearchInput {
2421
2451
  search: String
2422
2452
  _ids: [String]
2423
2453
  tagIds: [String]
2454
+ linkUrls: [String]
2455
+ emails: [String]
2424
2456
  sentiment: String
2425
2457
  orderByDateUpdated: String
2426
2458
  orderByDateCreated: String
@@ -2444,6 +2476,8 @@ export interface SearchInput {
2444
2476
  search?: string;
2445
2477
  _ids?: string[];
2446
2478
  tagIds?: string[];
2479
+ linkUrls?: string[];
2480
+ emails?: string[];
2447
2481
  sentiment?: string;
2448
2482
  orderByDateUpdated?: OrderByDirection;
2449
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.13",
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",