@bigfootai/bigfoot-types 3.9.5 → 3.9.6

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