@bigfootai/bigfoot-types 3.9.4 → 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.
- package/model.js +5 -0
- package/model.ts +9 -1
- 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
|
@@ -927,6 +930,7 @@ type ArchiveTaskOutput {
|
|
927
930
|
exports.UpsertSearchInputQL = `
|
928
931
|
input UpsertSearchInput {
|
929
932
|
_id: String
|
933
|
+
blockType: String
|
930
934
|
search: String
|
931
935
|
tagIds: [String]
|
932
936
|
sentiment: String
|
@@ -963,6 +967,7 @@ type ArchiveSearchOutput {
|
|
963
967
|
}`;
|
964
968
|
exports.SearchInputQL = `
|
965
969
|
input SearchInput {
|
970
|
+
blockType: String
|
966
971
|
search: String
|
967
972
|
tagIds: [String]
|
968
973
|
sentiment: 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;
|
@@ -1692,6 +1696,7 @@ export interface ArchiveTaskOutput {
|
|
1692
1696
|
export const UpsertSearchInputQL = `
|
1693
1697
|
input UpsertSearchInput {
|
1694
1698
|
_id: String
|
1699
|
+
blockType: String
|
1695
1700
|
search: String
|
1696
1701
|
tagIds: [String]
|
1697
1702
|
sentiment: String
|
@@ -1709,6 +1714,7 @@ input UpsertSearchInput {
|
|
1709
1714
|
}`;
|
1710
1715
|
export interface UpsertSearchInput {
|
1711
1716
|
_id: string;
|
1717
|
+
blockType?: string;
|
1712
1718
|
search?: string;
|
1713
1719
|
tagIds?: string[];
|
1714
1720
|
sentiment?: string;
|
@@ -1765,6 +1771,7 @@ export interface ArchiveSearchOutput {
|
|
1765
1771
|
|
1766
1772
|
export const SearchInputQL = `
|
1767
1773
|
input SearchInput {
|
1774
|
+
blockType: String
|
1768
1775
|
search: String
|
1769
1776
|
tagIds: [String]
|
1770
1777
|
sentiment: String
|
@@ -1782,6 +1789,7 @@ input SearchInput {
|
|
1782
1789
|
size: Int
|
1783
1790
|
}`;
|
1784
1791
|
export interface SearchInput {
|
1792
|
+
blockType?: BlockType;
|
1785
1793
|
search?: string;
|
1786
1794
|
tagIds?: string[];
|
1787
1795
|
sentiment?: string;
|
@@ -1789,7 +1797,7 @@ export interface SearchInput {
|
|
1789
1797
|
orderByDateCreated?: OrderByDirection;
|
1790
1798
|
orderByDateDue?: OrderByDirection;
|
1791
1799
|
orderByAlias?: OrderByDirection;
|
1792
|
-
status?:
|
1800
|
+
status?: TaskStatus;
|
1793
1801
|
originNoteId?: string;
|
1794
1802
|
editorId?: string;
|
1795
1803
|
editorGroupId?: string;
|