@bigfootai/bigfoot-types 5.1.53 → 5.1.54

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
@@ -1678,7 +1678,7 @@ input FindTagsVisibilityInput {
1678
1678
  }`;
1679
1679
  exports.ReactionQL = `
1680
1680
  type Reaction {
1681
- unified: String!
1681
+ shortcodes: String!
1682
1682
  tagIds: [String]
1683
1683
  }`;
1684
1684
  exports.FindReactionsInputQL = `
package/model.ts CHANGED
@@ -2992,11 +2992,11 @@ export interface FindTagsVisibilityInput {
2992
2992
 
2993
2993
  export const ReactionQL = `
2994
2994
  type Reaction {
2995
- unified: String!
2995
+ shortcodes: String!
2996
2996
  tagIds: [String]
2997
2997
  }`;
2998
2998
  export interface Reaction {
2999
- unified: string;
2999
+ shortcodes: string;
3000
3000
  tagIds: string[];
3001
3001
  }
3002
3002
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.53",
4
+ "version": "5.1.54",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",