@bigfootai/bigfoot-types 3.9.5 → 3.9.7

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 +4 -0
  2. package/model.ts +6 -1
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -31,6 +31,9 @@ var TagType;
31
31
  TagType["Person"] = "person";
32
32
  TagType["Organization"] = "organization";
33
33
  TagType["Topic"] = "topic";
34
+ TagType["Location"] = "location";
35
+ TagType["Date"] = "date";
36
+ TagType["Unknown"] = "unknown";
34
37
  })(TagType || (exports.TagType = TagType = {}));
35
38
  var ClientType;
36
39
  (function (ClientType) {
@@ -454,6 +457,7 @@ exports.TagRecommendationQL = `
454
457
  type TagRecommendation {
455
458
  id: String!
456
459
  type: String!
460
+ tagType: String!
457
461
  tags: [Tag]!
458
462
  entity: EntityEntry!
459
463
  variation: String
package/model.ts CHANGED
@@ -26,6 +26,9 @@ export enum TagType {
26
26
  Person = 'person',
27
27
  Organization = 'organization',
28
28
  Topic = 'topic',
29
+ Location = 'location',
30
+ Date = 'date',
31
+ Unknown = 'unknown',
29
32
  }
30
33
 
31
34
  export enum ClientType {
@@ -676,6 +679,7 @@ export const TagRecommendationQL = `
676
679
  type TagRecommendation {
677
680
  id: String!
678
681
  type: String!
682
+ tagType: String!
679
683
  tags: [Tag]!
680
684
  entity: EntityEntry!
681
685
  variation: String
@@ -683,6 +687,7 @@ type TagRecommendation {
683
687
  export interface TagRecommendation {
684
688
  id: string;
685
689
  type: TagRecommendationType;
690
+ tagType: TagType;
686
691
  tags: Tag[];
687
692
  entity: EntityEntry;
688
693
  variation?: TagRecommendationVariation;
@@ -1793,7 +1798,7 @@ export interface SearchInput {
1793
1798
  orderByDateCreated?: OrderByDirection;
1794
1799
  orderByDateDue?: OrderByDirection;
1795
1800
  orderByAlias?: OrderByDirection;
1796
- status?: number;
1801
+ status?: TaskStatus;
1797
1802
  originNoteId?: string;
1798
1803
  editorId?: string;
1799
1804
  editorGroupId?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "3.9.5",
4
+ "version": "3.9.7",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",