@bigfootai/bigfoot-types 3.7.14 → 3.8.1
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 +8 -0
- package/model.ts +17 -1
- 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
@@ -1687,7 +1687,11 @@ input UpsertSearchInput {
|
|
1687
1687
|
sharingTags: [SharingTagInput]
|
1688
1688
|
orderByDateUpdated: String
|
1689
1689
|
orderByDateCreated: String
|
1690
|
+
orderByDateDue: String
|
1690
1691
|
orderByAlias: String
|
1692
|
+
status: Int
|
1693
|
+
parentId: String
|
1694
|
+
groupId: String
|
1691
1695
|
favorite: Boolean
|
1692
1696
|
size: Int
|
1693
1697
|
}`;
|
@@ -1699,8 +1703,12 @@ export interface UpsertSearchInput {
|
|
1699
1703
|
sharingTags?: SharingTag[];
|
1700
1704
|
orderByDateUpdated?: OrderByDirection;
|
1701
1705
|
orderByDateCreated?: OrderByDirection;
|
1706
|
+
orderByDateDue?: OrderByDirection;
|
1702
1707
|
orderByAlias?: OrderByDirection;
|
1703
|
-
|
1708
|
+
status?: number;
|
1709
|
+
parentId?: string;
|
1710
|
+
groupId?: string;
|
1711
|
+
favorite?: boolean;
|
1704
1712
|
size?: number;
|
1705
1713
|
}
|
1706
1714
|
|
@@ -1749,7 +1757,11 @@ input SearchInput {
|
|
1749
1757
|
sentiment: String
|
1750
1758
|
orderByDateUpdated: String
|
1751
1759
|
orderByDateCreated: String
|
1760
|
+
orderByDateDue: String
|
1752
1761
|
orderByAlias: String
|
1762
|
+
status: Int
|
1763
|
+
parentId: String
|
1764
|
+
groupId: String
|
1753
1765
|
favorite: Boolean
|
1754
1766
|
page: Int
|
1755
1767
|
size: Int
|
@@ -1760,7 +1772,11 @@ export interface SearchInput {
|
|
1760
1772
|
sentiment?: string;
|
1761
1773
|
orderByDateUpdated?: OrderByDirection;
|
1762
1774
|
orderByDateCreated?: OrderByDirection;
|
1775
|
+
orderByDateDue?: OrderByDirection;
|
1763
1776
|
orderByAlias?: OrderByDirection;
|
1777
|
+
status?: number;
|
1778
|
+
parentId?: string;
|
1779
|
+
groupId?: string;
|
1764
1780
|
favorite?: boolean;
|
1765
1781
|
page?: number;
|
1766
1782
|
size?: number;
|