@bigfootai/bigfoot-types 5.1.45 → 5.1.46

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 +1 -1
  2. package/model.ts +2 -2
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1675,7 +1675,7 @@ input AddReactionInput {
1675
1675
  exports.RemoveReactionInputQL = `
1676
1676
  input RemoveReactionInput {
1677
1677
  _id: String!
1678
- tagType: TagType!
1678
+ blockType: BlockType!
1679
1679
  unified: String!
1680
1680
  }`;
1681
1681
  exports.ParentItemFields = `
package/model.ts CHANGED
@@ -2995,12 +2995,12 @@ export interface AddReactionInput {
2995
2995
  export const RemoveReactionInputQL = `
2996
2996
  input RemoveReactionInput {
2997
2997
  _id: String!
2998
- tagType: TagType!
2998
+ blockType: BlockType!
2999
2999
  unified: String!
3000
3000
  }`;
3001
3001
  export interface RemoveReactionInput {
3002
3002
  _id: string;
3003
- tagType: TagType;
3003
+ blockType: BlockType;
3004
3004
  unified: string;
3005
3005
  }
3006
3006
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.45",
4
+ "version": "5.1.46",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",