@bigfootai/bigfoot-types 5.1.54 → 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 +2 -2
- package/model.ts +4 -4
- package/package.json +1 -1
package/model.js
CHANGED
@@ -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
@@ -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 = `
|