@bigfootai/bigfoot-types 3.9.6 → 3.9.8

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 +5 -0
  2. package/model.ts +9 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -33,6 +33,7 @@ var TagType;
33
33
  TagType["Topic"] = "topic";
34
34
  TagType["Location"] = "location";
35
35
  TagType["Date"] = "date";
36
+ TagType["Unknown"] = "unknown";
36
37
  })(TagType || (exports.TagType = TagType = {}));
37
38
  var ClientType;
38
39
  (function (ClientType) {
@@ -939,6 +940,8 @@ input UpsertSearchInput {
939
940
  orderByDateCreated: String
940
941
  orderByDateDue: String
941
942
  orderByAlias: String
943
+ dateDueFrom: Float
944
+ dateDueTo: Float
942
945
  status: Int
943
946
  editorId: String
944
947
  editorGroupId: String
@@ -975,6 +978,8 @@ input SearchInput {
975
978
  orderByDateCreated: String
976
979
  orderByDateDue: String
977
980
  orderByAlias: String
981
+ dateDueFrom: Float
982
+ dateDueTo: Float
978
983
  status: Int
979
984
  originNoteId: String
980
985
  editorId: String
package/model.ts CHANGED
@@ -28,6 +28,7 @@ export enum TagType {
28
28
  Topic = 'topic',
29
29
  Location = 'location',
30
30
  Date = 'date',
31
+ Unknown = 'unknown',
31
32
  }
32
33
 
33
34
  export enum ClientType {
@@ -1705,6 +1706,8 @@ input UpsertSearchInput {
1705
1706
  orderByDateCreated: String
1706
1707
  orderByDateDue: String
1707
1708
  orderByAlias: String
1709
+ dateDueFrom: Float
1710
+ dateDueTo: Float
1708
1711
  status: Int
1709
1712
  editorId: String
1710
1713
  editorGroupId: String
@@ -1723,6 +1726,8 @@ export interface UpsertSearchInput {
1723
1726
  orderByDateCreated?: OrderByDirection;
1724
1727
  orderByDateDue?: OrderByDirection;
1725
1728
  orderByAlias?: OrderByDirection;
1729
+ dateDueFrom?: number;
1730
+ dateDueTo?: number;
1726
1731
  status?: number;
1727
1732
  editorId?: string;
1728
1733
  editorGroupId?: string;
@@ -1779,6 +1784,8 @@ input SearchInput {
1779
1784
  orderByDateCreated: String
1780
1785
  orderByDateDue: String
1781
1786
  orderByAlias: String
1787
+ dateDueFrom: Float
1788
+ dateDueTo: Float
1782
1789
  status: Int
1783
1790
  originNoteId: String
1784
1791
  editorId: String
@@ -1797,6 +1804,8 @@ export interface SearchInput {
1797
1804
  orderByDateCreated?: OrderByDirection;
1798
1805
  orderByDateDue?: OrderByDirection;
1799
1806
  orderByAlias?: OrderByDirection;
1807
+ dateDueFrom?: number;
1808
+ dateDueTo?: number;
1800
1809
  status?: TaskStatus;
1801
1810
  originNoteId?: string;
1802
1811
  editorId?: 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.6",
4
+ "version": "3.9.8",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",