@bigfootai/bigfoot-types 4.3.0 → 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 +4 -4
- package/model.ts +4 -4
- 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
|
}`;
|
@@ -965,12 +965,12 @@ type ArchiveTagOutput {
|
|
965
965
|
archived: Boolean!
|
966
966
|
}`;
|
967
967
|
exports.SetSharingTagInputQL = `
|
968
|
-
|
968
|
+
input SetSharingTagInput {
|
969
969
|
referenceBlock: ReferenceBlockInput!
|
970
970
|
sharingTag: SharingTagInput!
|
971
971
|
}`;
|
972
972
|
exports.DeleteSharingTagInputQL = `
|
973
|
-
|
973
|
+
input DeleteSharingTagInput {
|
974
974
|
referenceBlock: ReferenceBlockInput!
|
975
975
|
tagId: String!
|
976
976
|
}`;
|
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
|
}`;
|
@@ -1775,7 +1775,7 @@ export interface ArchiveTagOutput {
|
|
1775
1775
|
}
|
1776
1776
|
|
1777
1777
|
export const SetSharingTagInputQL = `
|
1778
|
-
|
1778
|
+
input SetSharingTagInput {
|
1779
1779
|
referenceBlock: ReferenceBlockInput!
|
1780
1780
|
sharingTag: SharingTagInput!
|
1781
1781
|
}`;
|
@@ -1785,7 +1785,7 @@ export interface SetSharingTagInput {
|
|
1785
1785
|
}
|
1786
1786
|
|
1787
1787
|
export const DeleteSharingTagInputQL = `
|
1788
|
-
|
1788
|
+
input DeleteSharingTagInput {
|
1789
1789
|
referenceBlock: ReferenceBlockInput!
|
1790
1790
|
tagId: String!
|
1791
1791
|
}`;
|