@bigfootai/bigfoot-types 4.3.1 → 4.3.2
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 -2
- package/model.ts +2 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -222,8 +222,8 @@ exports.SharingTagInputQL = `
|
|
222
222
|
input SharingTagInput {
|
223
223
|
tagId: String!
|
224
224
|
shared: Boolean!
|
225
|
-
sharingApproach:
|
226
|
-
sharingLevel:
|
225
|
+
sharingApproach: Int!
|
226
|
+
sharingLevel: Int!
|
227
227
|
confidence: Float
|
228
228
|
text: String
|
229
229
|
}`;
|
package/model.ts
CHANGED
@@ -239,8 +239,8 @@ export const SharingTagInputQL = `
|
|
239
239
|
input SharingTagInput {
|
240
240
|
tagId: String!
|
241
241
|
shared: Boolean!
|
242
|
-
sharingApproach:
|
243
|
-
sharingLevel:
|
242
|
+
sharingApproach: Int!
|
243
|
+
sharingLevel: Int!
|
244
244
|
confidence: Float
|
245
245
|
text: String
|
246
246
|
}`;
|