@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.
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
@@ -965,12 +965,12 @@ type ArchiveTagOutput {
965
965
  archived: Boolean!
966
966
  }`;
967
967
  exports.SetSharingTagInputQL = `
968
- type SetSharingTagInput {
968
+ input SetSharingTagInput {
969
969
  referenceBlock: ReferenceBlockInput!
970
970
  sharingTag: SharingTagInput!
971
971
  }`;
972
972
  exports.DeleteSharingTagInputQL = `
973
- type DeleteSharingTagInput {
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
- type SetSharingTagInput {
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
- type DeleteSharingTagInput {
1788
+ input DeleteSharingTagInput {
1789
1789
  referenceBlock: ReferenceBlockInput!
1790
1790
  tagId: String!
1791
1791
  }`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.3.0",
4
+ "version": "4.3.1",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",