@bigfootai/bigfoot-types 3.9.7 → 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 +4 -0
  2. package/model.ts +8 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -940,6 +940,8 @@ input UpsertSearchInput {
940
940
  orderByDateCreated: String
941
941
  orderByDateDue: String
942
942
  orderByAlias: String
943
+ dateDueFrom: Float
944
+ dateDueTo: Float
943
945
  status: Int
944
946
  editorId: String
945
947
  editorGroupId: String
@@ -976,6 +978,8 @@ input SearchInput {
976
978
  orderByDateCreated: String
977
979
  orderByDateDue: String
978
980
  orderByAlias: String
981
+ dateDueFrom: Float
982
+ dateDueTo: Float
979
983
  status: Int
980
984
  originNoteId: String
981
985
  editorId: String
package/model.ts CHANGED
@@ -1706,6 +1706,8 @@ input UpsertSearchInput {
1706
1706
  orderByDateCreated: String
1707
1707
  orderByDateDue: String
1708
1708
  orderByAlias: String
1709
+ dateDueFrom: Float
1710
+ dateDueTo: Float
1709
1711
  status: Int
1710
1712
  editorId: String
1711
1713
  editorGroupId: String
@@ -1724,6 +1726,8 @@ export interface UpsertSearchInput {
1724
1726
  orderByDateCreated?: OrderByDirection;
1725
1727
  orderByDateDue?: OrderByDirection;
1726
1728
  orderByAlias?: OrderByDirection;
1729
+ dateDueFrom?: number;
1730
+ dateDueTo?: number;
1727
1731
  status?: number;
1728
1732
  editorId?: string;
1729
1733
  editorGroupId?: string;
@@ -1780,6 +1784,8 @@ input SearchInput {
1780
1784
  orderByDateCreated: String
1781
1785
  orderByDateDue: String
1782
1786
  orderByAlias: String
1787
+ dateDueFrom: Float
1788
+ dateDueTo: Float
1783
1789
  status: Int
1784
1790
  originNoteId: String
1785
1791
  editorId: String
@@ -1798,6 +1804,8 @@ export interface SearchInput {
1798
1804
  orderByDateCreated?: OrderByDirection;
1799
1805
  orderByDateDue?: OrderByDirection;
1800
1806
  orderByAlias?: OrderByDirection;
1807
+ dateDueFrom?: number;
1808
+ dateDueTo?: number;
1801
1809
  status?: TaskStatus;
1802
1810
  originNoteId?: string;
1803
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.7",
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",