@bigfootai/bigfoot-types 5.1.44 → 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 +3 -3
  2. package/model.ts +6 -6
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1664,18 +1664,18 @@ 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 = `
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
@@ -2973,34 +2973,34 @@ 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
 
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.44",
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",