@bigfootai/bigfoot-types 5.1.44 → 5.1.45

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 +4 -4
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1664,12 +1664,12 @@ type Reaction {
1664
1664
  exports.FindReactionsInputQL = `
1665
1665
  input FindReactionsInput {
1666
1666
  _id: String!
1667
- tagType: TagType!
1667
+ blockType: BlockType!
1668
1668
  }`;
1669
1669
  exports.AddReactionInputQL = `
1670
1670
  input AddReactionInput {
1671
1671
  _id: String!
1672
- tagType: TagType!
1672
+ blockType: BlockType!
1673
1673
  unified: String!
1674
1674
  }`;
1675
1675
  exports.RemoveReactionInputQL = `
package/model.ts CHANGED
@@ -2973,22 +2973,22 @@ export interface Reaction {
2973
2973
  export const FindReactionsInputQL = `
2974
2974
  input FindReactionsInput {
2975
2975
  _id: String!
2976
- tagType: TagType!
2976
+ blockType: BlockType!
2977
2977
  }`;
2978
2978
  export interface FindReactionsInput {
2979
2979
  _id: string;
2980
- tagType: TagType;
2980
+ blockType: BlockType;
2981
2981
  }
2982
2982
 
2983
2983
  export const AddReactionInputQL = `
2984
2984
  input AddReactionInput {
2985
2985
  _id: String!
2986
- tagType: TagType!
2986
+ blockType: BlockType!
2987
2987
  unified: String!
2988
2988
  }`;
2989
2989
  export interface AddReactionInput {
2990
2990
  _id: string;
2991
- tagType: TagType;
2991
+ blockType: BlockType;
2992
2992
  unified: string;
2993
2993
  }
2994
2994
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.44",
4
+ "version": "5.1.45",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",