@bigfootai/bigfoot-types 4.2.6 → 4.2.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 +3 -1
- package/model.ts +5 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1021,12 +1021,14 @@ type ArchiveSearchOutput {
|
|
1021
1021
|
archived: Boolean!
|
1022
1022
|
}`;
|
1023
1023
|
exports.SearchTagsInputQL = `
|
1024
|
-
input
|
1024
|
+
input SearchTagsInput {
|
1025
1025
|
tagType: String
|
1026
1026
|
search: String
|
1027
1027
|
email: String
|
1028
1028
|
inviteStatus: Int
|
1029
1029
|
archived Boolean
|
1030
|
+
orderByAlias: String
|
1031
|
+
orderByFriendlyName: String
|
1030
1032
|
orderByDateUpdated: String
|
1031
1033
|
orderByDateCreated: String
|
1032
1034
|
page: Int
|
package/model.ts
CHANGED
@@ -1900,12 +1900,14 @@ export interface ArchiveSearchOutput {
|
|
1900
1900
|
}
|
1901
1901
|
|
1902
1902
|
export const SearchTagsInputQL = `
|
1903
|
-
input
|
1903
|
+
input SearchTagsInput {
|
1904
1904
|
tagType: String
|
1905
1905
|
search: String
|
1906
1906
|
email: String
|
1907
1907
|
inviteStatus: Int
|
1908
1908
|
archived Boolean
|
1909
|
+
orderByAlias: String
|
1910
|
+
orderByFriendlyName: String
|
1909
1911
|
orderByDateUpdated: String
|
1910
1912
|
orderByDateCreated: String
|
1911
1913
|
page: Int
|
@@ -1917,6 +1919,8 @@ export interface SearchTagsInput {
|
|
1917
1919
|
email?: string;
|
1918
1920
|
inviteStatus?: InviteStatus;
|
1919
1921
|
archived?: boolean;
|
1922
|
+
orderByAlias?: OrderByDirection;
|
1923
|
+
orderByFriendlyName?: OrderByDirection;
|
1920
1924
|
orderByDateUpdated?: OrderByDirection;
|
1921
1925
|
orderByDateCreated?: OrderByDirection;
|
1922
1926
|
page?: number;
|