@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.
Files changed (3) hide show
  1. package/model.js +2 -2
  2. package/model.ts +2 -2
  3. 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: String!
226
- sharingLevel: String!
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: String!
243
- sharingLevel: String!
242
+ sharingApproach: Int!
243
+ sharingLevel: Int!
244
244
  confidence: Float
245
245
  text: String
246
246
  }`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.3.1",
4
+ "version": "4.3.2",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",