@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.
- package/model.js +1 -1
- package/model.ts +2 -2
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -2992,11 +2992,11 @@ export interface FindTagsVisibilityInput {
|
|
2992
2992
|
|
2993
2993
|
export const ReactionQL = `
|
2994
2994
|
type Reaction {
|
2995
|
-
|
2995
|
+
shortcodes: String!
|
2996
2996
|
tagIds: [String]
|
2997
2997
|
}`;
|
2998
2998
|
export interface Reaction {
|
2999
|
-
|
2999
|
+
shortcodes: string;
|
3000
3000
|
tagIds: string[];
|
3001
3001
|
}
|
3002
3002
|
|