@bigfootai/bigfoot-types 4.3.0 → 4.3.1
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
@@ -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
@@ -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
|
}`;
|