@bigfootai/bigfoot-types 3.7.1 → 3.7.3
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 +6 -7
- package/model.ts +0 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -365,7 +365,6 @@ type Search {${exports.SharedPrimitiveFields}
|
|
365
365
|
search: String
|
366
366
|
tagIds: [String]
|
367
367
|
sentiment: String
|
368
|
-
sharingTags: [SharingTag]
|
369
368
|
orderByDateUpdated: String
|
370
369
|
orderByDateCreated: String
|
371
370
|
orderByAlias: String
|
@@ -908,9 +907,9 @@ input UpsertSearchInput {
|
|
908
907
|
tagIds: [String]
|
909
908
|
sentiment: String
|
910
909
|
sharingTags: [SharingTag]
|
911
|
-
orderByDateUpdated String
|
912
|
-
orderByDateCreated String
|
913
|
-
orderByAlias String
|
910
|
+
orderByDateUpdated: String
|
911
|
+
orderByDateCreated: String
|
912
|
+
orderByAlias: String
|
914
913
|
size: Int
|
915
914
|
}`;
|
916
915
|
exports.FindSearchInputQL = `
|
@@ -937,9 +936,9 @@ input SearchInput {
|
|
937
936
|
search: String
|
938
937
|
tagIds: [String]
|
939
938
|
sentiment: String
|
940
|
-
orderByDateUpdated String
|
941
|
-
orderByDateCreated String
|
942
|
-
orderByAlias String
|
939
|
+
orderByDateUpdated: String
|
940
|
+
orderByDateCreated: String
|
941
|
+
orderByAlias: String
|
943
942
|
page: Int
|
944
943
|
size: Int
|
945
944
|
}`;
|
package/model.ts
CHANGED