@bigfootai/bigfoot-types 3.7.6 → 3.7.7
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 +2 -0
- package/model.ts +4 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -923,6 +923,7 @@ input UpsertSearchInput {
|
|
923
923
|
orderByDateUpdated: String
|
924
924
|
orderByDateCreated: String
|
925
925
|
orderByAlias: String
|
926
|
+
favorite: Boolean
|
926
927
|
size: Int
|
927
928
|
}`;
|
928
929
|
exports.FindSearchInputQL = `
|
@@ -952,6 +953,7 @@ input SearchInput {
|
|
952
953
|
orderByDateUpdated: String
|
953
954
|
orderByDateCreated: String
|
954
955
|
orderByAlias: String
|
956
|
+
favorite: Boolean
|
955
957
|
page: Int
|
956
958
|
size: Int
|
957
959
|
}`;
|
package/model.ts
CHANGED
@@ -1676,6 +1676,7 @@ input UpsertSearchInput {
|
|
1676
1676
|
orderByDateUpdated: String
|
1677
1677
|
orderByDateCreated: String
|
1678
1678
|
orderByAlias: String
|
1679
|
+
favorite: Boolean
|
1679
1680
|
size: Int
|
1680
1681
|
}`;
|
1681
1682
|
export interface UpsertSearchInput {
|
@@ -1687,6 +1688,7 @@ export interface UpsertSearchInput {
|
|
1687
1688
|
orderByDateUpdated?: OrderByDirection;
|
1688
1689
|
orderByDateCreated?: OrderByDirection;
|
1689
1690
|
orderByAlias?: OrderByDirection;
|
1691
|
+
favorite: boolean;
|
1690
1692
|
size?: number;
|
1691
1693
|
}
|
1692
1694
|
|
@@ -1736,6 +1738,7 @@ input SearchInput {
|
|
1736
1738
|
orderByDateUpdated: String
|
1737
1739
|
orderByDateCreated: String
|
1738
1740
|
orderByAlias: String
|
1741
|
+
favorite: Boolean
|
1739
1742
|
page: Int
|
1740
1743
|
size: Int
|
1741
1744
|
}`;
|
@@ -1746,6 +1749,7 @@ export interface SearchInput {
|
|
1746
1749
|
orderByDateUpdated?: OrderByDirection;
|
1747
1750
|
orderByDateCreated?: OrderByDirection;
|
1748
1751
|
orderByAlias?: OrderByDirection;
|
1752
|
+
favorite?: boolean;
|
1749
1753
|
page?: number;
|
1750
1754
|
size?: number;
|
1751
1755
|
}
|