@bigfootai/bigfoot-types 5.1.53 → 5.1.55
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 +3 -3
- package/model.ts +6 -6
- 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
|
-
|
1681
|
+
shortcodes: String!
|
1682
1682
|
tagIds: [String]
|
1683
1683
|
}`;
|
1684
1684
|
exports.FindReactionsInputQL = `
|
@@ -1690,13 +1690,13 @@ exports.AddReactionInputQL = `
|
|
1690
1690
|
input AddReactionInput {
|
1691
1691
|
_id: String!
|
1692
1692
|
blockType: BlockType!
|
1693
|
-
|
1693
|
+
shortcodes: String!
|
1694
1694
|
}`;
|
1695
1695
|
exports.RemoveReactionInputQL = `
|
1696
1696
|
input RemoveReactionInput {
|
1697
1697
|
_id: String!
|
1698
1698
|
blockType: BlockType!
|
1699
|
-
|
1699
|
+
shortcodes: String!
|
1700
1700
|
}`;
|
1701
1701
|
exports.ParentItemFields = `
|
1702
1702
|
_id: String
|
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
|
|
@@ -3014,24 +3014,24 @@ export const AddReactionInputQL = `
|
|
3014
3014
|
input AddReactionInput {
|
3015
3015
|
_id: String!
|
3016
3016
|
blockType: BlockType!
|
3017
|
-
|
3017
|
+
shortcodes: String!
|
3018
3018
|
}`;
|
3019
3019
|
export interface AddReactionInput {
|
3020
3020
|
_id: string;
|
3021
3021
|
blockType: BlockType;
|
3022
|
-
|
3022
|
+
shortcodes: string;
|
3023
3023
|
}
|
3024
3024
|
|
3025
3025
|
export const RemoveReactionInputQL = `
|
3026
3026
|
input RemoveReactionInput {
|
3027
3027
|
_id: String!
|
3028
3028
|
blockType: BlockType!
|
3029
|
-
|
3029
|
+
shortcodes: String!
|
3030
3030
|
}`;
|
3031
3031
|
export interface RemoveReactionInput {
|
3032
3032
|
_id: string;
|
3033
3033
|
blockType: BlockType;
|
3034
|
-
|
3034
|
+
shortcodes: string;
|
3035
3035
|
}
|
3036
3036
|
|
3037
3037
|
export const ParentItemFields = `
|