@bigfootai/bigfoot-types 3.7.13 → 3.8.0

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 +8 -0
  2. package/model.ts +18 -2
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -929,7 +929,11 @@ input UpsertSearchInput {
929
929
  sharingTags: [SharingTagInput]
930
930
  orderByDateUpdated: String
931
931
  orderByDateCreated: String
932
+ orderByDateDue: String
932
933
  orderByAlias: String
934
+ status: Int
935
+ parentId: String
936
+ groupId: String
933
937
  favorite: Boolean
934
938
  size: Int
935
939
  }`;
@@ -959,7 +963,11 @@ input SearchInput {
959
963
  sentiment: String
960
964
  orderByDateUpdated: String
961
965
  orderByDateCreated: String
966
+ orderByDateDue: String
962
967
  orderByAlias: String
968
+ status: Int
969
+ parentId: String
970
+ groupId: String
963
971
  favorite: Boolean
964
972
  page: Int
965
973
  size: Int
package/model.ts CHANGED
@@ -780,6 +780,7 @@ export class Article extends Primitive {
780
780
  relations?: RelationEntry[];
781
781
  archived: boolean;
782
782
  favorite: boolean;
783
+ status: TaskStatus;
783
784
  groupId?: string;
784
785
  parentId?: string;
785
786
  _changes?: Changes;
@@ -1686,7 +1687,11 @@ input UpsertSearchInput {
1686
1687
  sharingTags: [SharingTagInput]
1687
1688
  orderByDateUpdated: String
1688
1689
  orderByDateCreated: String
1690
+ orderByDateDue: String
1689
1691
  orderByAlias: String
1692
+ status: Int
1693
+ parentId: String
1694
+ groupId: String
1690
1695
  favorite: Boolean
1691
1696
  size: Int
1692
1697
  }`;
@@ -1698,8 +1703,12 @@ export interface UpsertSearchInput {
1698
1703
  sharingTags?: SharingTag[];
1699
1704
  orderByDateUpdated?: OrderByDirection;
1700
1705
  orderByDateCreated?: OrderByDirection;
1706
+ orderByDateDue?: OrderByDirection;
1701
1707
  orderByAlias?: OrderByDirection;
1702
- favorite: boolean;
1708
+ status?: number;
1709
+ parentId?: string;
1710
+ groupId?: string;
1711
+ favorite?: boolean;
1703
1712
  size?: number;
1704
1713
  }
1705
1714
 
@@ -1748,7 +1757,11 @@ input SearchInput {
1748
1757
  sentiment: String
1749
1758
  orderByDateUpdated: String
1750
1759
  orderByDateCreated: String
1760
+ orderByDateDue: String
1751
1761
  orderByAlias: String
1762
+ status: Int
1763
+ parentId: String
1764
+ groupId: String
1752
1765
  favorite: Boolean
1753
1766
  page: Int
1754
1767
  size: Int
@@ -1758,8 +1771,11 @@ export interface SearchInput {
1758
1771
  tagIds?: string[];
1759
1772
  sentiment?: string;
1760
1773
  orderByDateUpdated?: OrderByDirection;
1761
- orderByDateCreated?: OrderByDirection;
1774
+ orderByDateDue?: OrderByDirection;
1762
1775
  orderByAlias?: OrderByDirection;
1776
+ status?: number;
1777
+ parentId?: string;
1778
+ groupId?: string;
1763
1779
  favorite?: boolean;
1764
1780
  page?: number;
1765
1781
  size?: number;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "3.7.13",
4
+ "version": "3.8.0",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",